CI Build Artifacts (commit: b97017e07635df141e34a3a9cefd3f9856e00693, version: 1.8.1-dev)
BIN
assets/harvester/harvester-1.8.1-dev.tgz
Normal file
@ -1,6 +1,28 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
entries:
|
entries:
|
||||||
harvester:
|
harvester:
|
||||||
|
- annotations:
|
||||||
|
catalog.cattle.io/certified: rancher
|
||||||
|
catalog.cattle.io/display-name: Harvester
|
||||||
|
catalog.cattle.io/kube-version: '>= 1.16.0-0'
|
||||||
|
catalog.cattle.io/namespace: cattle-ui-plugin-system
|
||||||
|
catalog.cattle.io/os: linux
|
||||||
|
catalog.cattle.io/permits-os: linux, windows
|
||||||
|
catalog.cattle.io/rancher-version: '>= 2.14.0-0'
|
||||||
|
catalog.cattle.io/scope: management
|
||||||
|
catalog.cattle.io/ui-component: plugins
|
||||||
|
catalog.cattle.io/ui-extensions-version: '>= 3.0.0 < 4.0.0'
|
||||||
|
apiVersion: v2
|
||||||
|
appVersion: 1.8.1-dev
|
||||||
|
created: "2026-04-28T07:53:08.331788253Z"
|
||||||
|
description: Rancher UI Extension for Harvester
|
||||||
|
digest: b7be79f4aa7b0dbdce212350a95ecc632430e5e456296c95196de24b82ce90ab
|
||||||
|
icon: https://raw.githubusercontent.com/harvester/harvester-ui-extension/main/pkg/harvester/icon.svg
|
||||||
|
name: harvester
|
||||||
|
type: application
|
||||||
|
urls:
|
||||||
|
- assets/harvester/harvester-1.8.1-dev.tgz
|
||||||
|
version: 1.8.1-dev
|
||||||
- annotations:
|
- annotations:
|
||||||
catalog.cattle.io/certified: rancher
|
catalog.cattle.io/certified: rancher
|
||||||
catalog.cattle.io/display-name: Harvester
|
catalog.cattle.io/display-name: Harvester
|
||||||
@ -485,4 +507,4 @@ entries:
|
|||||||
urls:
|
urls:
|
||||||
- assets/harvester/harvester-1.0.0.tgz
|
- assets/harvester/harvester-1.0.0.tgz
|
||||||
version: 1.0.0
|
version: 1.0.0
|
||||||
generated: "2026-04-27T08:04:42.463524936Z"
|
generated: "2026-04-28T07:53:08.331314218Z"
|
||||||
|
|||||||
19
charts/harvester/1.8.1-dev/Chart.yaml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
annotations:
|
||||||
|
catalog.cattle.io/certified: rancher
|
||||||
|
catalog.cattle.io/namespace: cattle-ui-plugin-system
|
||||||
|
catalog.cattle.io/os: linux
|
||||||
|
catalog.cattle.io/permits-os: linux, windows
|
||||||
|
catalog.cattle.io/scope: management
|
||||||
|
catalog.cattle.io/ui-component: plugins
|
||||||
|
catalog.cattle.io/display-name: Harvester
|
||||||
|
catalog.cattle.io/kube-version: '>= 1.16.0-0'
|
||||||
|
catalog.cattle.io/rancher-version: '>= 2.14.0-0'
|
||||||
|
catalog.cattle.io/ui-extensions-version: '>= 3.0.0 < 4.0.0'
|
||||||
|
apiVersion: v2
|
||||||
|
appVersion: 1.8.1-dev
|
||||||
|
description: Rancher UI Extension for Harvester
|
||||||
|
name: harvester
|
||||||
|
type: application
|
||||||
|
version: 1.8.1-dev
|
||||||
|
icon: >-
|
||||||
|
https://raw.githubusercontent.com/harvester/harvester-ui-extension/main/pkg/harvester/icon.svg
|
||||||
177
charts/harvester/1.8.1-dev/README.md
Normal file
@ -0,0 +1,177 @@
|
|||||||
|
# harvester-ui-extension
|
||||||
|
|
||||||
|
The Harvester UI Extension is a Rancher extension that provides the user interface for [Harvester](https://harvesterhci.io) within the [Rancher Dashboard](https://github.com/rancher/dashboard).
|
||||||
|
|
||||||
|
> **Note:**
|
||||||
|
> This extension is available starting from **Rancher 2.10.0**. Ensure your Rancher version is **2.10.0 or later** to access Harvester integration.
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
For Harvester UI extension installation instructions, please refer to the page **Rancher Integration** -> **Harvester UI Extension** in [official Harvester documentation](https://docs.harvesterhci.io).
|
||||||
|
|
||||||
|
## Development Setup
|
||||||
|
|
||||||
|
Ensure **Node.js v20 or later** is installed for development and debugging.
|
||||||
|
|
||||||
|
### Standalone Mode
|
||||||
|
|
||||||
|
Run the extension standalone with hot reload at `https://localhost:8005`.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Install dependencies
|
||||||
|
yarn install
|
||||||
|
|
||||||
|
# Start the development server
|
||||||
|
RANCHER_ENV=harvester API=https://your-harvester-ip yarn dev
|
||||||
|
|
||||||
|
# Example with specific server version
|
||||||
|
RANCHER_ENV=harvester VUE_APP_SERVER_VERSION=v1.5.0 API=https://192.168.1.123 yarn dev
|
||||||
|
```
|
||||||
|
|
||||||
|
You may also define environment variables in a `.env` file:
|
||||||
|
|
||||||
|
```env
|
||||||
|
RANCHER_ENV=harvester
|
||||||
|
VUE_APP_SERVER_VERSION=v1.5.0
|
||||||
|
API=https://192.168.1.123
|
||||||
|
```
|
||||||
|
|
||||||
|
### Rancher Integration Mode
|
||||||
|
|
||||||
|
To run as a Rancher extension, follow the [Rancher UI Extension Guide](https://extensions.rancher.io/extensions/next/extensions-getting-started#running-the-app).
|
||||||
|
|
||||||
|
```bash
|
||||||
|
API=https://your-rancher-ip yarn dev
|
||||||
|
```
|
||||||
|
|
||||||
|
## Commit Message Guidelines
|
||||||
|
|
||||||
|
This project uses [commit-lint](https://commitlint.js.org/) with [Conventional Commits](https://www.conventionalcommits.org/) to ensure consistent and meaningful commit messages.
|
||||||
|
|
||||||
|
### Commit Message Format
|
||||||
|
|
||||||
|
All commit messages must follow the conventional commit format:
|
||||||
|
|
||||||
|
```
|
||||||
|
<type>[optional scope]: <description>
|
||||||
|
|
||||||
|
[optional body]
|
||||||
|
|
||||||
|
[optional footer(s)]
|
||||||
|
```
|
||||||
|
|
||||||
|
### Supported Types
|
||||||
|
|
||||||
|
- **feat**: New features
|
||||||
|
- **fix**: Bug fixes
|
||||||
|
- **docs**: Documentation changes
|
||||||
|
- **style**: Code style changes (formatting, missing semicolons, etc.)
|
||||||
|
- **refactor**: Code refactoring
|
||||||
|
- **perf**: Performance improvements
|
||||||
|
- **test**: Adding or updating tests
|
||||||
|
- **build**: Build system or external dependencies
|
||||||
|
- **ci**: CI/CD changes
|
||||||
|
- **chore**: Other changes that don't modify src or test files
|
||||||
|
- **revert**: Reverts a previous commit
|
||||||
|
- **wip**: Work in progress
|
||||||
|
- **deps**: Dependency updates
|
||||||
|
- **security**: Security fixes
|
||||||
|
|
||||||
|
### Examples
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Feature
|
||||||
|
git commit -m "feat: add new virtual machine creation wizard"
|
||||||
|
|
||||||
|
# Bug fix
|
||||||
|
git commit -m "fix: resolve memory leak in VM console"
|
||||||
|
|
||||||
|
# Documentation
|
||||||
|
git commit -m "docs: update installation instructions"
|
||||||
|
|
||||||
|
# Breaking change
|
||||||
|
git commit -m "feat!: change API endpoint structure
|
||||||
|
|
||||||
|
BREAKING CHANGE: The /api/v1/vms endpoint has been replaced with /api/v2/vms"
|
||||||
|
```
|
||||||
|
|
||||||
|
### Git Hooks
|
||||||
|
|
||||||
|
The project uses [Husky](https://typicode.github.io/husky/) to automatically validate commit messages and run linting before commits:
|
||||||
|
|
||||||
|
- **pre-commit**: Runs ESLint to ensure code quality
|
||||||
|
- **commit-msg**: Validates commit message format using commit-lint
|
||||||
|
|
||||||
|
These hooks are automatically installed when you run `yarn install`.
|
||||||
|
|
||||||
|
### Manual Validation
|
||||||
|
|
||||||
|
You can manually validate commit messages:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Validate the last commit
|
||||||
|
yarn commitlint
|
||||||
|
|
||||||
|
# Validate a specific commit
|
||||||
|
npx commitlint --from <commit-hash>
|
||||||
|
|
||||||
|
# Validate a range of commits
|
||||||
|
npx commitlint --from <start-hash> --to <end-hash>
|
||||||
|
```
|
||||||
|
|
||||||
|
## Branch Structure
|
||||||
|
|
||||||
|
- **`main`** – Main development branch
|
||||||
|
- **`release-harvester-vX.Y`** – Stable release branches per version series
|
||||||
|
- **`vX.Y-head`** – Testing branches for ongoing changes to extension builds in each release series
|
||||||
|
|
||||||
|
> **Note:**
|
||||||
|
> The `vX.Y-head` branches are auto-generated and kept in sync with release branches. Use these for testing the latest changes in each version series.
|
||||||
|
|
||||||
|
## Testing Guidelines
|
||||||
|
|
||||||
|
### UI Extension Testing
|
||||||
|
|
||||||
|
To validate changes in a release series, switch to the appropriate `vX.Y-head` branch. For main branch testing, use `main-head`.
|
||||||
|
|
||||||
|
- Examples:
|
||||||
|
- Test `1.0.x` series → `v1.0-head`
|
||||||
|
- Test `1.5.x` series → `v1.5-head`
|
||||||
|
|
||||||
|
**Steps:**
|
||||||
|
1. Navigate to **Rancher UI** → **Local** → **App** → **Repositories**
|
||||||
|
2. Refresh the Harvester repository using the target `vX.Y-head` branch
|
||||||
|
3. Go to the **Extensions** page and install the desired version
|
||||||
|
|
||||||
|
### Standalone Mode Testing
|
||||||
|
|
||||||
|
To test the standalone UI, configure Harvester to load the UI from an external source.
|
||||||
|
|
||||||
|
- Examples of `ui-index`:
|
||||||
|
- Main branch → `https://releases.rancher.com/harvester-ui/dashboard/latest/index.html`
|
||||||
|
- Release series `1.5.x` → `https://releases.rancher.com/harvester-ui/dashboard/release-harvester-v1.5/index.html`
|
||||||
|
|
||||||
|
**Steps:**
|
||||||
|
1. Go to **Harvester UI** → **Advanced** → **Settings** → **UI**
|
||||||
|
2. Set **ui-source** to `External`
|
||||||
|
3. Set **ui-index** to the desired URL
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
If you want to contribute, start by reading this document, then visit our [Getting Started guide](https://extensions.rancher.io/extensions/next/extensions-getting-started) to learn how to develop and submit changes.
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
Copyright (c) 2014-2026 [SUSE, LLC.](https://www.suse.com/)
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
[http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
63
charts/harvester/1.8.1-dev/templates/_helpers.tpl
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
{{/*
|
||||||
|
Expand the name of the chart.
|
||||||
|
*/}}
|
||||||
|
{{- define "extension-server.name" -}}
|
||||||
|
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
{{/*
|
||||||
|
Create a default fully qualified app name.
|
||||||
|
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
|
||||||
|
If release name contains chart name it will be used as a full name.
|
||||||
|
*/}}
|
||||||
|
{{- define "extension-server.fullname" -}}
|
||||||
|
{{- if .Values.fullnameOverride }}
|
||||||
|
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }}
|
||||||
|
{{- else }}
|
||||||
|
{{- $name := default .Chart.Name .Values.nameOverride }}
|
||||||
|
{{- if contains $name .Release.Name }}
|
||||||
|
{{- .Release.Name | trunc 63 | trimSuffix "-" }}
|
||||||
|
{{- else }}
|
||||||
|
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
|
||||||
|
{{/*
|
||||||
|
Create chart name and version as used by the chart label.
|
||||||
|
*/}}
|
||||||
|
{{- define "extension-server.chart" -}}
|
||||||
|
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
{{/*
|
||||||
|
Common labels
|
||||||
|
*/}}
|
||||||
|
{{- define "extension-server.labels" -}}
|
||||||
|
helm.sh/chart: {{ include "extension-server.chart" . }}
|
||||||
|
{{ include "extension-server.selectorLabels" . }}
|
||||||
|
{{- if .Chart.AppVersion }}
|
||||||
|
app.kubernetes.io/version: {{ .Chart.AppVersion | replace "+" "_" | quote }}
|
||||||
|
{{- end }}
|
||||||
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
{{/*
|
||||||
|
Selector labels
|
||||||
|
*/}}
|
||||||
|
{{- define "extension-server.selectorLabels" -}}
|
||||||
|
app.kubernetes.io/name: {{ include "extension-server.name" . }}
|
||||||
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
{{/*
|
||||||
|
Pkg annotations
|
||||||
|
*/}}
|
||||||
|
{{- define "extension-server.pluginMetadata" -}}
|
||||||
|
{{- with .Values.plugin.metadata }}
|
||||||
|
{{- range $key, $value := . }}
|
||||||
|
{{ $key }}: {{ $value | quote }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
15
charts/harvester/1.8.1-dev/templates/cr.yaml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
apiVersion: catalog.cattle.io/v1
|
||||||
|
kind: UIPlugin
|
||||||
|
metadata:
|
||||||
|
name: {{ include "extension-server.fullname" . }}
|
||||||
|
namespace: {{ .Release.Namespace }}
|
||||||
|
labels: {{ include "extension-server.labels" . | nindent 4 }}
|
||||||
|
spec:
|
||||||
|
plugin:
|
||||||
|
name: {{ include "extension-server.fullname" . }}
|
||||||
|
version: {{ (semver (default .Chart.AppVersion .Values.plugin.versionOverride)).Original }}
|
||||||
|
endpoint: {{ .Values.plugin.endpoint | quote }}
|
||||||
|
compressedEndpoint: {{ .Values.plugin.compressedEndpoint | quote }}
|
||||||
|
noCache: {{ .Values.plugin.noCache }}
|
||||||
|
noAuth: {{ .Values.plugin.noAuth }}
|
||||||
|
metadata: {{ include "extension-server.pluginMetadata" . | indent 6 }}
|
||||||
16
charts/harvester/1.8.1-dev/values.yaml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
nameOverride: ""
|
||||||
|
fullnameOverride: ""
|
||||||
|
plugin:
|
||||||
|
enabled: true
|
||||||
|
versionOverride: ""
|
||||||
|
endpoint: >-
|
||||||
|
https://raw.githubusercontent.com/harvester/harvester-ui-extension/v1.8-head/extensions/harvester/1.8.1-dev
|
||||||
|
compressedEndpoint: >-
|
||||||
|
https://raw.githubusercontent.com/harvester/harvester-ui-extension/v1.8-head/extensions/harvester/1.8.1-dev.tgz
|
||||||
|
noCache: false
|
||||||
|
noAuth: false
|
||||||
|
metadata:
|
||||||
|
catalog.cattle.io/display-name: Harvester
|
||||||
|
catalog.cattle.io/kube-version: ">= 1.16.0-0"
|
||||||
|
catalog.cattle.io/rancher-version: ">= 2.14.0-0"
|
||||||
|
catalog.cattle.io/ui-extensions-version: ">= 3.0.0 < 4.0.0"
|
||||||
BIN
extensions/harvester/1.8.1-dev.tgz
Normal file
213
extensions/harvester/1.8.1-dev/files.txt
Normal file
@ -0,0 +1,213 @@
|
|||||||
|
plugin/harvester-1.8.1-dev.umd.min.131.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.131.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.189.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.189.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.191.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.191.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.238.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.238.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.277.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.277.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.303.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.303.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.327.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.327.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.37.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.37.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.416.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.416.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.431.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.431.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.446.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.446.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.452.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.452.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.456.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.456.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.564.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.564.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.60.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.60.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.682.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.682.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.728.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.728.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.77.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.77.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.818.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.818.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.819.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.819.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.856.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.856.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.88.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.88.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.882.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.882.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.961.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.961.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.csv.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.csv.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.detail.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.detail.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.dialog.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.dialog.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.edit.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.edit.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.formatters.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.formatters.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.list.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.list.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.promptRemove.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.promptRemove.js.map
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.xterm.js
|
||||||
|
plugin/harvester-1.8.1-dev.umd.min.xterm.js.map
|
||||||
|
plugin/img/activedirectory.0baa2998.svg
|
||||||
|
plugin/img/adfs.6e70726e.svg
|
||||||
|
plugin/img/aliyun-black.a9967561.svg
|
||||||
|
plugin/img/aliyun.d05bff3f.svg
|
||||||
|
plugin/img/aliyunecs-black.93dd5b27.svg
|
||||||
|
plugin/img/aliyunecs.b57b715b.svg
|
||||||
|
plugin/img/amazonec2-black.5d49a518.svg
|
||||||
|
plugin/img/amazonec2.259f7435.svg
|
||||||
|
plugin/img/amazoneks-black.e3999509.svg
|
||||||
|
plugin/img/amazoneks.44a8a254.svg
|
||||||
|
plugin/img/aws.988ade4f.svg
|
||||||
|
plugin/img/azure-black.4bcdbe6b.svg
|
||||||
|
plugin/img/azure.7d30d447.svg
|
||||||
|
plugin/img/azuread-black.d272db7e.svg
|
||||||
|
plugin/img/azuread.774efe5f.svg
|
||||||
|
plugin/img/azuread.7914bb78.svg
|
||||||
|
plugin/img/azureaks-black.09cdc074.svg
|
||||||
|
plugin/img/azureaks.239d69fb.svg
|
||||||
|
plugin/img/baidu-black.32fb0569.svg
|
||||||
|
plugin/img/baidu.063c3510.svg
|
||||||
|
plugin/img/banner.00f803a6.svg
|
||||||
|
plugin/img/banner.245c572a.svg
|
||||||
|
plugin/img/banner.e66743c3.svg
|
||||||
|
plugin/img/banner.ee2db63b.svg
|
||||||
|
plugin/img/cloud-native.9cfd7ba8.svg
|
||||||
|
plugin/img/cloud-native.f640653c.svg
|
||||||
|
plugin/img/cloudca-black.2c8fc541.svg
|
||||||
|
plugin/img/cloudca.fb088dd5.svg
|
||||||
|
plugin/img/cloudscale-black.87d94917.svg
|
||||||
|
plugin/img/cloudscale.dd348191.svg
|
||||||
|
plugin/img/cognito.0f11062a.svg
|
||||||
|
plugin/img/custom.2ff19310.svg
|
||||||
|
plugin/img/custom.6f45244d.svg
|
||||||
|
plugin/img/decoration-cloud-big-white.4229596e.svg
|
||||||
|
plugin/img/decoration-ground.3f64fcbb.svg
|
||||||
|
plugin/img/digitalocean-black.3d5310a1.svg
|
||||||
|
plugin/img/digitalocean.b0aa5786.svg
|
||||||
|
plugin/img/email.b67ceff2.svg
|
||||||
|
plugin/img/equinix-black.0870820e.svg
|
||||||
|
plugin/img/equinix.c112c186.svg
|
||||||
|
plugin/img/error-desert-landscape.2a9d44f4.svg
|
||||||
|
plugin/img/exoscale.af115826.svg
|
||||||
|
plugin/img/favicon.20240f8a.png
|
||||||
|
plugin/img/featured.e7faac8a.jpg
|
||||||
|
plugin/img/field-valid.b378b909.svg
|
||||||
|
plugin/img/freeipa.ef110cc0.svg
|
||||||
|
plugin/img/gcp.f7a1243c.svg
|
||||||
|
plugin/img/generic-catalog.1842a50e.svg
|
||||||
|
plugin/img/generic-driver.7f81adcc.svg
|
||||||
|
plugin/img/generic-plugin.f1ebdd74.svg
|
||||||
|
plugin/img/github.9c864145.svg
|
||||||
|
plugin/img/githubapp.9c864145.svg
|
||||||
|
plugin/img/gke-black.64bdd882.svg
|
||||||
|
plugin/img/gke.4c1ecbcd.svg
|
||||||
|
plugin/img/google.789cf860.svg
|
||||||
|
plugin/img/googlegke-black.64bdd882.svg
|
||||||
|
plugin/img/googlegke.4c1ecbcd.svg
|
||||||
|
plugin/img/googleoauth.4619a2a5.svg
|
||||||
|
plugin/img/grafana.2db31bb8.svg
|
||||||
|
plugin/img/half-logo.1bc560ee.svg
|
||||||
|
plugin/img/harvester.0168283e.svg
|
||||||
|
plugin/img/harvester.20240f8a.png
|
||||||
|
plugin/img/huaweicce-black.d378b855.svg
|
||||||
|
plugin/img/huaweicce.22b4ecea.svg
|
||||||
|
plugin/img/icon.42954c0f.svg
|
||||||
|
plugin/img/import.ac396542.svg
|
||||||
|
plugin/img/jaeger.1c7d1266.svg
|
||||||
|
plugin/img/k3s-black.b4765216.svg
|
||||||
|
plugin/img/k3s.f0881505.svg
|
||||||
|
plugin/img/key.3451c981.svg
|
||||||
|
plugin/img/keycloak.ca7b4848.svg
|
||||||
|
plugin/img/kiali.d0e257dd.svg
|
||||||
|
plugin/img/kubernetes-black.2ade6358.svg
|
||||||
|
plugin/img/kubernetes.ac396542.svg
|
||||||
|
plugin/img/linode.642005fe.svg
|
||||||
|
plugin/img/linodelke-black.81aa799d.svg
|
||||||
|
plugin/img/linodelke.642005fe.svg
|
||||||
|
plugin/img/linux.a96776e5.svg
|
||||||
|
plugin/img/local-cluster.272d4fc9.svg
|
||||||
|
plugin/img/login-landscape.0a4b1a5f.svg
|
||||||
|
plugin/img/login-landscape.60cd520b.svg
|
||||||
|
plugin/img/login-landscape.6734e5cc.svg
|
||||||
|
plugin/img/login-landscape.6e1253bb.svg
|
||||||
|
plugin/img/longhorn.4809470b.svg
|
||||||
|
plugin/img/minikube-black.94055a38.svg
|
||||||
|
plugin/img/minikube.117e4a38.svg
|
||||||
|
plugin/img/neuvector.513801d3.svg
|
||||||
|
plugin/img/nutanix.862c3637.svg
|
||||||
|
plugin/img/oci-black.cd3524de.svg
|
||||||
|
plugin/img/oci-open-containers.a7329d94.svg
|
||||||
|
plugin/img/oci.3a81eed0.svg
|
||||||
|
plugin/img/okta.58a2aa35.svg
|
||||||
|
plugin/img/openid.451743dd.svg
|
||||||
|
plugin/img/openldap.59040f23.svg
|
||||||
|
plugin/img/openstack-black.af3ac5a0.svg
|
||||||
|
plugin/img/openstack.475580f8.svg
|
||||||
|
plugin/img/oracle.74aae75e.svg
|
||||||
|
plugin/img/oracleoke-black.ec0a34a2.svg
|
||||||
|
plugin/img/oracleoke.64fac528.svg
|
||||||
|
plugin/img/otc-black.5629758c.svg
|
||||||
|
plugin/img/otc.1b7d926f.svg
|
||||||
|
plugin/img/otccce.1b7d926f.svg
|
||||||
|
plugin/img/outscale.d0d823da.svg
|
||||||
|
plugin/img/ovhcloudmks.612c966f.svg
|
||||||
|
plugin/img/ovhcloudpubliccloud.612c966f.svg
|
||||||
|
plugin/img/packet-black.5fc90c03.svg
|
||||||
|
plugin/img/packet.ef1f45fa.svg
|
||||||
|
plugin/img/pagerduty.9871fbd3.svg
|
||||||
|
plugin/img/ping.5b5afc6e.svg
|
||||||
|
plugin/img/pinganyunecs-black.bf0b3440.svg
|
||||||
|
plugin/img/pinganyunecs.b74db865.svg
|
||||||
|
plugin/img/pnap-black.a7948015.svg
|
||||||
|
plugin/img/pnap.81704b7a.svg
|
||||||
|
plugin/img/prometheus.be8ac54d.svg
|
||||||
|
plugin/img/rackspace-black.0e8f8bc4.svg
|
||||||
|
plugin/img/rackspace.5e8dcb5a.svg
|
||||||
|
plugin/img/rancher-logo.487fcd1d.svg
|
||||||
|
plugin/img/rancher-logo.788ed883.svg
|
||||||
|
plugin/img/rancher-logo.8dca6972.svg
|
||||||
|
plugin/img/rancher-logo.920195b3.svg
|
||||||
|
plugin/img/rancher-logo.af9af640.svg
|
||||||
|
plugin/img/rancher-logo.d26f6ac6.svg
|
||||||
|
plugin/img/rancher-logo.db10c962.svg
|
||||||
|
plugin/img/rancher-logo.ef1ab5b0.svg
|
||||||
|
plugin/img/rancher-logo.f190bd21.svg
|
||||||
|
plugin/img/rancher-logo.fd684d42.svg
|
||||||
|
plugin/img/rke.a01f31e7.svg
|
||||||
|
plugin/img/rke2.a01f31e7.svg
|
||||||
|
plugin/img/setup-step-one.7b236b40.svg
|
||||||
|
plugin/img/shibboleth.35ea1d68.svg
|
||||||
|
plugin/img/shield.8516dabb.svg
|
||||||
|
plugin/img/shield.d1ed84b4.svg
|
||||||
|
plugin/img/sks.af115826.svg
|
||||||
|
plugin/img/slack.34dfd73f.svg
|
||||||
|
plugin/img/softlayer.5d9a5c2a.svg
|
||||||
|
plugin/img/sunglasses.157dca2a.svg
|
||||||
|
plugin/img/suse.61974c8d.svg
|
||||||
|
plugin/img/suse.bc943e43.svg
|
||||||
|
plugin/img/tencenttke-black.140c30e5.svg
|
||||||
|
plugin/img/tencenttke.42042615.svg
|
||||||
|
plugin/img/traefik.6be4ff82.png
|
||||||
|
plugin/img/vmwarevsphere-black.454d68ed.svg
|
||||||
|
plugin/img/vmwarevsphere.94d59db3.svg
|
||||||
|
plugin/img/webhook.f86c012b.svg
|
||||||
|
plugin/img/wechat-qr-code.c0468b45.jpg
|
||||||
|
plugin/img/windows.f862ed7d.svg
|
||||||
|
plugin/package.json
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
"use strict";(("undefined"!==typeof self?self:this)["webpackChunkharvester_1_8_1_dev"]=("undefined"!==typeof self?self:this)["webpackChunkharvester_1_8_1_dev"]||[]).push([[277],{28277:function(e,n,t){t.r(n),t.d(n,{default:function(){return f}});var r=t(9274);function s(e,n,t,s,o,c){const u=(0,r.resolveComponent)("ResourceDetail");return(0,r.openBlock)(),(0,r.createBlock)(u)}var o=t(56825),c={name:"ClusterResourceNamespaceId",components:{ResourceDetail:o.A}},u=t(47433);const a=(0,u.A)(c,[["render",s]]);var f=a}}]);
|
||||||
|
//# sourceMappingURL=harvester-1.8.1-dev.umd.min.277.js.map
|
||||||
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"harvester-1.8.1-dev.umd.min.277.js","mappings":"qWAUEA,EAAAA,EAAAA,aAAkBC,E,gBAPpB,GACEC,KAAY,6BACZC,WAAY,CAAEC,eAAcA,EAAAA,I,WCA9B,MAAMC,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,KAEpE,O","sources":["webpack://harvester-1.8.1-dev/../../node_modules/@rancher/shell/pages/c/_cluster/_product/_resource/_namespace/_id.vue","webpack://harvester-1.8.1-dev/../../node_modules/@rancher/shell/pages/c/_cluster/_product/_resource/_namespace/_id.vue?9724"],"sourcesContent":["<script>\nimport ResourceDetail from '@shell/components/ResourceDetail';\n\nexport default {\n name: 'ClusterResourceNamespaceId',\n components: { ResourceDetail },\n};\n</script>\n\n<template>\n <ResourceDetail />\n</template>\n","import { render } from \"./_id.vue?vue&type=template&id=36f5b1f9\"\nimport script from \"./_id.vue?vue&type=script&lang=js\"\nexport * from \"./_id.vue?vue&type=script&lang=js\"\n\nimport exportComponent from \"../../../../../../../../vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__"],"names":["_createBlock","_component_ResourceDetail","name","components","ResourceDetail","__exports__","render"],"sourceRoot":""}
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
"use strict";(("undefined"!==typeof self?self:this)["webpackChunkharvester_1_8_1_dev"]=("undefined"!==typeof self?self:this)["webpackChunkharvester_1_8_1_dev"]||[]).push([[303],{66303:function(e,n,t){t.r(n),t.d(n,{default:function(){return f}});var r=t(9274);function s(e,n,t,s,o,u){const c=(0,r.resolveComponent)("ResourceDetail");return(0,r.openBlock)(),(0,r.createBlock)(c)}var o=t(56825),u={name:"ClusterResourcedId",components:{ResourceDetail:o.A}},c=t(47433);const a=(0,c.A)(u,[["render",s]]);var f=a}}]);
|
||||||
|
//# sourceMappingURL=harvester-1.8.1-dev.umd.min.303.js.map
|
||||||
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"harvester-1.8.1-dev.umd.min.303.js","mappings":"qWAUEA,EAAAA,EAAAA,aAAkBC,E,gBAPpB,GACEC,KAAY,qBACZC,WAAY,CAAEC,eAAcA,EAAAA,I,WCA9B,MAAMC,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,KAEpE,O","sources":["webpack://harvester-1.8.1-dev/../../node_modules/@rancher/shell/pages/c/_cluster/_product/_resource/_id.vue","webpack://harvester-1.8.1-dev/../../node_modules/@rancher/shell/pages/c/_cluster/_product/_resource/_id.vue?96bb"],"sourcesContent":["<script>\nimport ResourceDetail from '@shell/components/ResourceDetail';\n\nexport default {\n name: 'ClusterResourcedId',\n components: { ResourceDetail },\n};\n</script>\n\n<template>\n <ResourceDetail />\n</template>\n","import { render } from \"./_id.vue?vue&type=template&id=7d01dbfe\"\nimport script from \"./_id.vue?vue&type=script&lang=js\"\nexport * from \"./_id.vue?vue&type=script&lang=js\"\n\nimport exportComponent from \"../../../../../../../vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__"],"names":["_createBlock","_component_ResourceDetail","name","components","ResourceDetail","__exports__","render"],"sourceRoot":""}
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
"use strict";(("undefined"!==typeof self?self:this)["webpackChunkharvester_1_8_1_dev"]=("undefined"!==typeof self?self:this)["webpackChunkharvester_1_8_1_dev"]||[]).push([[446],{36446:function(e,n,t){t.r(n),t.d(n,{default:function(){return i}});var s=t(9274);function r(e,n,t,r,o,u){const c=(0,s.resolveComponent)("ResourceList");return(0,s.openBlock)(),(0,s.createBlock)(c)}var o=t(21758),u={name:"ClusterResourcedList",components:{ResourceList:o.A}},c=t(47433);const f=(0,c.A)(u,[["render",r]]);var i=f}}]);
|
||||||
|
//# sourceMappingURL=harvester-1.8.1-dev.umd.min.446.js.map
|
||||||
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"harvester-1.8.1-dev.umd.min.446.js","mappings":"mWAUEA,EAAAA,EAAAA,aAAgBC,E,gBAPlB,GACEC,KAAY,uBACZC,WAAY,CAAEC,aAAYA,EAAAA,I,WCA5B,MAAMC,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,KAEpE,O","sources":["webpack://harvester-1.8.1-dev/../../node_modules/@rancher/shell/pages/c/_cluster/_product/_resource/index.vue","webpack://harvester-1.8.1-dev/../../node_modules/@rancher/shell/pages/c/_cluster/_product/_resource/index.vue?1ef3"],"sourcesContent":["<script>\nimport ResourceList from '@shell/components/ResourceList';\n\nexport default {\n name: 'ClusterResourcedList',\n components: { ResourceList },\n};\n</script>\n\n<template>\n <ResourceList />\n</template>\n","import { render } from \"./index.vue?vue&type=template&id=00d07840\"\nimport script from \"./index.vue?vue&type=script&lang=js\"\nexport * from \"./index.vue?vue&type=script&lang=js\"\n\nimport exportComponent from \"../../../../../../../vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__"],"names":["_createBlock","_component_ResourceList","name","components","ResourceList","__exports__","render"],"sourceRoot":""}
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
(("undefined"!==typeof self?self:this)["webpackChunkharvester_1_8_1_dev"]=("undefined"!==typeof self?self:this)["webpackChunkharvester_1_8_1_dev"]||[]).push([[60],{45060:function(e,t,n){var o,a,i,r=n(4364);(function(n,r){a=[],o=r,i="function"===typeof o?o.apply(t,a):o,void 0===i||(e.exports=i)})(0,function(){"use strict";function t(e,t){return"undefined"==typeof t?t={autoBom:!1}:"object"!=typeof t&&(r.warn("Deprecated: Expected third argument to be a object"),t={autoBom:!t}),t.autoBom&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(e.type)?new Blob(["\ufeff",e],{type:e.type}):e}function o(e,t,n){var o=new XMLHttpRequest;o.open("GET",e),o.responseType="blob",o.onload=function(){s(o.response,t,n)},o.onerror=function(){r.error("could not download file")},o.send()}function a(e){var t=new XMLHttpRequest;t.open("HEAD",e,!1);try{t.send()}catch(e){}return 200<=t.status&&299>=t.status}function i(e){try{e.dispatchEvent(new MouseEvent("click"))}catch(o){var t=document.createEvent("MouseEvents");t.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),e.dispatchEvent(t)}}var c="object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof n.g&&n.g.global===n.g?n.g:void 0,s=c.saveAs||("object"!=typeof window||window!==c?function(){}:"download"in HTMLAnchorElement.prototype?function(e,t,n){var r=c.URL||c.webkitURL,s=document.createElement("a");t=t||e.name||"download",s.download=t,s.rel="noopener","string"==typeof e?(s.href=e,s.origin===location.origin?i(s):a(s.href)?o(e,t,n):i(s,s.target="_blank")):(s.href=r.createObjectURL(e),setTimeout(function(){r.revokeObjectURL(s.href)},4e4),setTimeout(function(){i(s)},0))}:"msSaveOrOpenBlob"in navigator?function(e,n,r){if(n=n||e.name||"download","string"!=typeof e)navigator.msSaveOrOpenBlob(t(e,r),n);else if(a(e))o(e,n,r);else{var c=document.createElement("a");c.href=e,c.target="_blank",setTimeout(function(){i(c)})}}:function(e,t,n,a){if(a=a||open("","_blank"),a&&(a.document.title=a.document.body.innerText="downloading..."),"string"==typeof e)return o(e,t,n);var i="application/octet-stream"===e.type,r=/constructor/i.test(c.HTMLElement)||c.safari,s=/CriOS\/[\d]+/.test(navigator.userAgent);if((s||i&&r)&&"object"==typeof FileReader){var f=new FileReader;f.onloadend=function(){var e=f.result;e=s?e:e.replace(/^data:[^;]*;/,"data:attachment/file;"),a?a.location.href=e:location=e,a=null},f.readAsDataURL(e)}else{var l=c.URL||c.webkitURL,u=l.createObjectURL(e);a?a.location=u:location.href=u,a=null,setTimeout(function(){l.revokeObjectURL(u)},4e4)}});c.saveAs=s.saveAs=s,e.exports=s})}}]);
|
||||||
|
//# sourceMappingURL=harvester-1.8.1-dev.umd.min.60.js.map
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
"use strict";(("undefined"!==typeof self?self:this)["webpackChunkharvester_1_8_1_dev"]=("undefined"!==typeof self?self:this)["webpackChunkharvester_1_8_1_dev"]||[]).push([[856],{13856:function(e,t,n){n.r(t),n.d(t,{default:function(){return f}});var r=n(9274);function s(e,t,n,s,o,c){const u=(0,r.resolveComponent)("ResourceDetail");return(0,r.openBlock)(),(0,r.createBlock)(u,{"component-testid":"cluster-manager-create"})}var o=n(56825),c={name:"ClusterResourceCreate",components:{ResourceDetail:o.A}},u=n(47433);const a=(0,u.A)(c,[["render",s]]);var f=a}}]);
|
||||||
|
//# sourceMappingURL=harvester-1.8.1-dev.umd.min.856.js.map
|
||||||
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"harvester-1.8.1-dev.umd.min.856.js","mappings":"qWAUEA,EAAAA,EAAAA,aAA4DC,EAAA,CAA5C,mBAAiB,0B,gBAPnC,GACEC,KAAY,wBACZC,WAAY,CAAEC,eAAcA,EAAAA,I,WCA9B,MAAMC,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,KAEpE,O","sources":["webpack://harvester-1.8.1-dev/../../node_modules/@rancher/shell/pages/c/_cluster/_product/_resource/create.vue","webpack://harvester-1.8.1-dev/../../node_modules/@rancher/shell/pages/c/_cluster/_product/_resource/create.vue?41a9"],"sourcesContent":["<script>\nimport ResourceDetail from '@shell/components/ResourceDetail';\n\nexport default {\n name: 'ClusterResourceCreate',\n components: { ResourceDetail },\n};\n</script>\n\n<template>\n <ResourceDetail component-testid=\"cluster-manager-create\" />\n</template>\n","import { render } from \"./create.vue?vue&type=template&id=60b40cbd\"\nimport script from \"./create.vue?vue&type=script&lang=js\"\nexport * from \"./create.vue?vue&type=script&lang=js\"\n\nimport exportComponent from \"../../../../../../../vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__"],"names":["_createBlock","_component_ResourceDetail","name","components","ResourceDetail","__exports__","render"],"sourceRoot":""}
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
(("undefined"!==typeof self?self:this)["webpackChunkharvester_1_8_1_dev"]=("undefined"!==typeof self?self:this)["webpackChunkharvester_1_8_1_dev"]||[]).push([[88],{86088:function(e,t,o){"use strict";o.r(t),o.d(t,{default:function(){return N}});var n=o(9274),l=o(74536),c=o(68974),r=(0,n.defineComponent)({__name:"SubtleLink",props:{to:{}},setup(e){return(t,o)=>((0,n.openBlock)(),(0,n.createBlock)((0,n.unref)(c.Wk),{class:"subtle-link",to:e.to},{default:(0,n.withCtx)(()=>[(0,n.renderSlot)(t.$slots,"default")]),_:3},8,["to"]))}}),a=(o(22243),o(47433));const s=(0,a.A)(r,[["__scopeId","data-v-f27fff82"]]);var u=s,d=o(35601),i=o(45250),f=o(95457),p=o(65359);const v={class:"resource-row"},k={class:"left"},m={key:1,class:"text-deemphasized"},w={class:"right"},h={key:0,class:"text-deemphasized"},x={key:1,class:"counts"},_={class:"count-value"},y={class:"count-label"};var B=(0,n.defineComponent)({__name:"ResourceRow",props:{label:{},to:{},color:{},counts:{}},setup(e){const t=(0,p.Pj)(),o=(0,f.s)(t),l=(0,n.computed)(()=>{if(!e.counts)return e.counts;if(e.counts.length<3)return e.counts;const[t,...n]=e.counts,l=(0,i.sumBy)(n,"count"),c={label:o.t("generic.other",{count:l}),count:l};return[t,c]});return(t,o)=>((0,n.openBlock)(),(0,n.createElementBlock)("div",v,[(0,n.createElementVNode)("div",k,[e.to&&e.counts&&e.counts.length>0?((0,n.openBlock)(),(0,n.createBlock)(u,{key:0,to:e.to},{default:(0,n.withCtx)(()=>[(0,n.createTextVNode)((0,n.toDisplayString)(e.label),1)]),_:1},8,["to"])):((0,n.openBlock)(),(0,n.createElementBlock)("span",m,(0,n.toDisplayString)(e.label),1))]),(0,n.createElementVNode)("div",w,[e.counts&&0!=e.counts.length?((0,n.openBlock)(),(0,n.createElementBlock)("div",x,[e.color?((0,n.openBlock)(),(0,n.createBlock)(d.A,{key:0,color:e.color},null,8,["color"])):(0,n.createCommentVNode)("",!0),((0,n.openBlock)(!0),(0,n.createElementBlock)(n.Fragment,null,(0,n.renderList)(l.value,e=>((0,n.openBlock)(),(0,n.createElementBlock)("span",{key:e.label,class:"count"},[(0,n.createElementVNode)("span",_,(0,n.toDisplayString)(e.count),1),o[0]||(o[0]=(0,n.createTextVNode)(" ",-1)),(0,n.createElementVNode)("span",y,(0,n.toDisplayString)(e.label),1),o[1]||(o[1]=(0,n.createElementVNode)("span",{class:"and"}," + ",-1))]))),128))])):((0,n.openBlock)(),(0,n.createElementBlock)("div",h," 0 "))])]))}});o(49029);const g=(0,a.A)(B,[["__scopeId","data-v-ff606e28"]]);var b=g;const E={class:"resource-rows"};var C=(0,n.defineComponent)({__name:"index",props:{title:{},rows:{}},setup(e){return(t,o)=>((0,n.openBlock)(),(0,n.createBlock)(l.A,{title:e.title},{default:(0,n.withCtx)(()=>[(0,n.createElementVNode)("div",E,[((0,n.openBlock)(!0),(0,n.createElementBlock)(n.Fragment,null,(0,n.renderList)(e.rows,(e,t)=>((0,n.openBlock)(),(0,n.createBlock)(b,{key:t,label:e.label,color:e.color,to:e.to,counts:e.counts},null,8,["label","color","to","counts"]))),128))])]),_:1},8,["title"]))}});o(57136);const M=(0,a.A)(C,[["__scopeId","data-v-384b9850"]]);var N=M},27824:function(e,t,o){"use strict";o.r(t);var n=o(36758),l=o.n(n),c=o(40935),r=o.n(c),a=r()(l());a.push([e.id,".resource-rows[data-v-384b9850]{display:flex;flex-direction:column}.resource-rows[data-v-384b9850]>:not(:first-of-type){margin-top:4px}",""]),t["default"]=a},82597:function(e,t,o){"use strict";o.r(t);var n=o(36758),l=o.n(n),c=o(40935),r=o.n(c),a=r()(l());a.push([e.id,".resource-row[data-v-ff606e28]{display:flex;flex-direction:row;align-items:center}.resource-row .right[data-v-ff606e28]{flex-grow:1;text-align:right;overflow:hidden}.resource-row .counts[data-v-ff606e28]{display:flex;flex-direction:row;justify-content:flex-end;align-items:center;max-width:100%;overflow:hidden}.resource-row .counts .count[data-v-ff606e28]{display:flex;justify-content:flex-end;min-width:0}.resource-row .counts .count[data-v-ff606e28]:not(.count+.count){max-width:calc(100% - 90px)}.resource-row .counts .count:not(.count+.count) .count-label[data-v-ff606e28]{overflow:hidden;text-overflow:ellipsis}.resource-row .count:last-of-type .and[data-v-ff606e28]{display:none}.resource-row .state-dot[data-v-ff606e28]{margin-right:10px}",""]),t["default"]=a},53219:function(e,t,o){"use strict";o.r(t);var n=o(36758),l=o.n(n),c=o(40935),r=o.n(c),a=r()(l());a.push([e.id,".subtle-link[data-v-f27fff82]{text-decoration:underline;color:var(--body-text)}",""]),t["default"]=a},57136:function(e,t,o){var n=o(27824);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals);var l=o(74825).A;l("a3d08758",n,!0,{sourceMap:!1,shadowMode:!1})},49029:function(e,t,o){var n=o(82597);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals);var l=o(74825).A;l("de981df6",n,!0,{sourceMap:!1,shadowMode:!1})},22243:function(e,t,o){var n=o(53219);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals);var l=o(74825).A;l("629d461c",n,!0,{sourceMap:!1,shadowMode:!1})}}]);
|
||||||
|
//# sourceMappingURL=harvester-1.8.1-dev.umd.min.88.js.map
|
||||||
101
extensions/harvester/1.8.1-dev/plugin/harvester-1.8.1-dev.umd.min.js
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 24.3.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 60 60" style="enable-background:new 0 0 60 60;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#00AAF2;}
|
||||||
|
</style>
|
||||||
|
<g>
|
||||||
|
<path class="st0" d="M55,43.1c0,3.5,0,7,0,10.5c0,1.2-0.4,1.5-1.5,1.3c-7.9-1.2-15.7-2.3-23.6-3.3c-1.4-0.2-1.9-0.7-1.9-2.2
|
||||||
|
c0.1-5.6,0.1-11.2,0-16.8c0-1.2,0.4-1.6,1.6-1.6c8,0,15.9,0,23.9,0c1.3,0,1.6,0.5,1.6,1.6C55,36.1,55,39.6,55,43.1z"/>
|
||||||
|
<path class="st0" d="M41.6,28.9c-4,0-8,0-11.9,0c-1.2,0-1.7-0.3-1.7-1.7c0.1-5.7,0.1-11.3,0-17c-0.2-0.7,0.3-1.5,1.1-1.6
|
||||||
|
c0.1,0,0.3,0,0.4,0c8.1-1.1,16.3-2.3,24.4-3.5c1.4-0.2,1.2,0.8,1.2,1.5c0,5.1,0,10.2,0,15.3c0,1.9,0,3.7,0,5.6
|
||||||
|
c0,1.1-0.4,1.5-1.5,1.5C49.5,28.9,45.6,28.9,41.6,28.9z"/>
|
||||||
|
<path class="st0" d="M15.3,31c3,0,6,0,8.9,0c0.6-0.2,1.2,0.2,1.4,0.8c0,0.2,0.1,0.4,0,0.5c0,5.8,0,11.7,0,17.5c0,1-0.5,1.1-1.3,1
|
||||||
|
c-5.9-0.9-11.8-1.7-17.7-2.5c-0.8,0.1-1.5-0.6-1.6-1.4c0-0.1,0-0.3,0-0.4c0.1-4.7,0.1-9.3,0-14C5,31.4,5.3,31,6.5,31
|
||||||
|
C9.4,31.1,12.4,31,15.3,31z"/>
|
||||||
|
<path class="st0" d="M15.3,28.9c-2.9,0-5.8,0-8.8,0c-1.1,0-1.5-0.4-1.5-1.5c0-4.6,0-9.2,0-13.8c-0.2-0.7,0.3-1.5,1-1.6
|
||||||
|
c0.1,0,0.3,0,0.4,0c5.9-0.8,11.8-1.6,17.7-2.6c1.4-0.2,1.5,0.3,1.5,1.3c0,5.6,0,11.2,0,16.8c0,1.2-0.5,1.4-1.6,1.4H15.3z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
19
extensions/harvester/1.8.1-dev/plugin/img/adfs.6e70726e.svg
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 24.3.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 60 60" style="enable-background:new 0 0 60 60;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#F25022;}
|
||||||
|
.st1{fill:#80BA01;}
|
||||||
|
.st2{fill:#02A4EF;}
|
||||||
|
.st3{fill:#FFB902;}
|
||||||
|
</style>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<path class="st0" d="M5,5h23.8c0,7.9,0,15.9,0,23.8c-7.9,0-15.9,0-23.8,0V5L5,5z"/>
|
||||||
|
<path class="st1" d="M31.2,5H55c0,7.9,0,15.9,0,23.8c-7.9,0-15.9,0-23.8,0C31.2,20.7,31.2,12.7,31.2,5L31.2,5z"/>
|
||||||
|
<path class="st2" d="M5,31.2c7.9,0,15.9,0,23.8,0c0,7.9,0,15.9,0,23.8H5V31.2L5,31.2z"/>
|
||||||
|
<path class="st3" d="M31.2,31.2c7.9,0,15.9,0,23.8,0c0,7.9,0,15.9,0,23.8H31.2C31.2,46.8,31.2,38.9,31.2,31.2L31.2,31.2z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 898 B |
@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 25.2.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 101 101" style="enable-background:new 0 0 101 101;" xml:space="preserve">
|
||||||
|
<path d="M18.4243984,67.0989532c-2.0441589-0.4743652-3.6163034-2.2131424-3.6163034-4.426281V38.327774
|
||||||
|
c0.1572266-2.213253,1.5723696-3.9520264,3.6163034-4.4263954l22.4841671-4.900425l2.3586082-9.6431732H17.1665936
|
||||||
|
C7.8899436,19.3577805,0.5,26.7875862,0.5,35.9566231v28.7712898c0,9.168808,7.5471687,16.7568512,16.6665936,16.7568512h26.1005802
|
||||||
|
l-2.3584976-9.6431732C40.9086761,71.8415909,18.4243984,67.0989456,18.4243984,67.0989532z M83.8334122,19.3575611h-26.258255
|
||||||
|
l2.3586121,9.6430607l22.484726,4.9005394c2.0440445,0.4744759,3.6156235,2.213253,3.6156235,4.426281v24.3451157
|
||||||
|
c-0.1567764,2.2131386-1.5716934,3.9519157-3.6156235,4.426281l-22.4847336,4.90065l-2.3586082,9.642952h26.2582512
|
||||||
|
c9.1195374,0,16.6665955-7.4298096,16.6665955-16.7567444V35.9562912
|
||||||
|
C100.3421021,26.7873688,92.9529495,19.3575611,83.8334122,19.3575611z M40.9085655,49.2355843h19.1822014v2.3711548H40.9085655
|
||||||
|
V49.2355843z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 25.2.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 101 101" style="enable-background:new 0 0 101 101;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#333333;}
|
||||||
|
</style>
|
||||||
|
<path class="st0" d="M18.4243984,67.0989532c-2.0441589-0.4743652-3.6163034-2.2131424-3.6163034-4.426281V38.327774
|
||||||
|
c0.1572266-2.213253,1.5723696-3.9520264,3.6163034-4.4263954l22.4841671-4.900425l2.3586082-9.6431732H17.1665936
|
||||||
|
C7.8899436,19.3577805,0.5,26.7875862,0.5,35.9566231v28.7712898c0,9.168808,7.5471687,16.7568512,16.6665936,16.7568512h26.1005802
|
||||||
|
l-2.3584976-9.6431732C40.9086761,71.8415909,18.4243984,67.0989456,18.4243984,67.0989532z M83.8334122,19.3575611h-26.258255
|
||||||
|
l2.3586121,9.6430607l22.484726,4.9005394c2.0440445,0.4744759,3.6156235,2.213253,3.6156235,4.426281v24.3451157
|
||||||
|
c-0.1567764,2.2131386-1.5716934,3.9519157-3.6156235,4.426281l-22.4847336,4.90065l-2.3586082,9.642952h26.2582512
|
||||||
|
c9.1195374,0,16.6665955-7.4298096,16.6665955-16.7567444V35.9562912
|
||||||
|
C100.3421021,26.7873688,92.9529495,19.3575611,83.8334122,19.3575611z M40.9085655,49.2355843h19.1822014v2.3711548H40.9085655
|
||||||
|
V49.2355843z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 25.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
|
||||||
|
<path d="M94.9,15.4C93.3,10.8,89.5,6.8,84.5,5c-22.4-6.6-46.4-6.6-69,0c-4.8,1.8-8.6,5.6-10.4,10.6C-1.7,38-1.7,62,5.1,84.4
|
||||||
|
c1.8,4.8,5.6,8.6,10.4,10.4c22.4,6.8,46.4,6.8,69,0c4.8-1.8,8.6-5.6,10.4-10.4C101.7,62,101.7,38,94.9,15.4z M25.1,18.4
|
||||||
|
c2.4-4.8,8.4-6.8,13.2-4.4c4.8,2,9.2,6.4,12.4,6.4S56.9,16,61.3,14c1.2-0.6,2.4-1,3.8-1h0.6c5.4,0,9.8,4.4,9.8,9.8
|
||||||
|
c0,5.4-4.4,9.8-9.8,9.8h-0.6c-8-0.2-7.4-7-14.6-7s-8.2,6.6-15.8,7h-0.6c-1.6,0-3-0.2-4.6-1C24.7,29.2,22.7,23.2,25.1,18.4z
|
||||||
|
M71.5,85.8c-4.6,2.4-10.6,0.6-13-4.2c-1-2-1.8-4.4-2-6.8c-3.8-3.6-21.4,19.6-30.8,6.6c-9.4-13,20.6-20,17.6-27.4
|
||||||
|
c-2-4.4-9.4-3.2-15.8,1.4c-0.4,0.6-0.8,1-1.4,1.6c-3.8,3.8-10,3.8-13.8,0s-3.8-10,0-13.8s10-3.8,13.8,0C40.9,54,46.7,34,55.9,45
|
||||||
|
c8.8,10.6-14.2,17.6-14.2,24.8c0,5.6,13.2,1.4,14.6,1c0.2-4.8,1.4-8.8,2.4-9.2c1.8-1,13.2,4,17,11.2C78.1,77.4,76.3,83.4,71.5,85.8z
|
||||||
|
M81.7,59.4c-8.2,0-16.8-9.2-16.8-9.2S74.1,41,81.7,41c5,0,9.2,4.2,9.2,9.2S86.7,59.4,81.7,59.4z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
@ -0,0 +1,21 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 25.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#F8982A;}
|
||||||
|
.st1{fill:#FFFFFF;}
|
||||||
|
</style>
|
||||||
|
<g>
|
||||||
|
<path class="st0" d="M84.5,5c-22.4-6.6-46.4-6.6-69,0c-4.8,1.8-8.6,5.6-10.4,10.6C-1.7,38-1.7,62,5.1,84.4
|
||||||
|
c1.8,4.8,5.6,8.6,10.4,10.4c22.4,6.8,46.4,6.8,69,0c4.8-1.8,8.6-5.6,10.4-10.4c6.8-22.4,6.8-46.4,0-69C93.3,10.8,89.5,6.8,84.5,5z"
|
||||||
|
/>
|
||||||
|
<path class="st1" d="M81.7,41c-7.6,0-16.8,9.2-16.8,9.2s8.6,9.2,16.8,9.2c5,0,9.2-4.2,9.2-9.2S86.7,41,81.7,41L81.7,41z"/>
|
||||||
|
<path class="st1" d="M58.7,61.6c-1,0.4-2.2,4.4-2.4,9.2c-1.4,0.4-14.6,4.6-14.6-1c0-7.2,23-14.2,14.2-24.8c-9.2-11-15,9-29.8-1.8
|
||||||
|
l0,0c-3.8-3.8-10-3.8-13.8,0s-3.8,10,0,13.8s10,3.8,13.8,0c0.6-0.6,1-1,1.4-1.6c6.4-4.6,13.8-5.8,15.8-1.4c3,7.4-27,14.4-17.6,27.4
|
||||||
|
s27-10.2,30.8-6.6l0,0c0.2,2.4,1,4.8,2,6.8c2.4,4.8,8.4,6.6,13,4.2c4.8-2.4,6.6-8.4,4.2-13C71.9,65.6,60.5,60.6,58.7,61.6z"/>
|
||||||
|
<path class="st1" d="M34.1,32.6h0.6c7.6-0.4,8.6-7,15.8-7s6.6,6.8,14.6,7h0.6c5.4,0,9.8-4.4,9.8-9.8S71.1,13,65.7,13h-0.6
|
||||||
|
c-1.4,0-2.6,0.4-3.8,1c-4.4,2-7.4,6.4-10.6,6.4S43.1,16,38.3,14c-4.8-2.4-10.8-0.4-13.2,4.4s-0.4,10.8,4.4,13.2
|
||||||
|
C31.1,32.4,32.5,32.6,34.1,32.6z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 25.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
|
||||||
|
<path d="M50,0l-8.2,4.2v6.2l-7.2-2.6L28.2,11v4.4l-5.8-1.6l-5,2.6v3.3l-4.6-1.1l-4.2,2.2v58.4l4.2,2.2v-0.2l4.6-1v3.4l5,2.6l5.8-1.6
|
||||||
|
V89l6.4,3.2l7.2-2.6v6.2L50,100l41.4-20.8V20.8L50,0z M14.8,78.7V21.1l2.6,0.6v56.5L14.8,78.7z M24.4,83.6V16.4l3.8,1.1v65
|
||||||
|
L24.4,83.6z M36.6,89.3V10.7l5.2,1.9v74.9L36.6,89.3z M89.4,78L52,96.8V3.2L89.4,22V78z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 694 B |
@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 25.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#F58536;}
|
||||||
|
.st1{fill:#9D5025;}
|
||||||
|
</style>
|
||||||
|
<g id="Layer_1-2">
|
||||||
|
<polygon class="st0" points="22.4,79.2 12.8,81.2 12.8,18.6 22.4,20.8 "/>
|
||||||
|
<polygon class="st0" points="34.6,82.8 22.4,86.2 22.4,13.8 34.6,17.2 "/>
|
||||||
|
<polygon class="st0" points="50,86.6 34.6,92.2 34.6,7.8 50,13.4 "/>
|
||||||
|
<polygon class="st0" points="91.4,79.2 50,100 50,0 91.4,20.8 "/>
|
||||||
|
<polygon class="st1" points="41.8,4.2 50,0 50,100 41.8,95.8 "/>
|
||||||
|
<polygon class="st1" points="28.2,11 34.6,7.8 34.6,92.2 28.2,89 "/>
|
||||||
|
<polygon class="st1" points="17.4,16.4 22.4,13.8 22.4,86.2 17.4,83.6 "/>
|
||||||
|
<polygon class="st1" points="12.8,18.6 8.6,20.8 8.6,79.2 12.8,81.4 "/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,10 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 25.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
|
||||||
|
<g>
|
||||||
|
<polygon points="73.6,58.2 94,71.2 94,23.8 54,0.8 54,24.2 73.6,35.6 "/>
|
||||||
|
<polygon points="69.2,65 49.8,76.4 26.2,62.6 26.2,35 45.8,23.6 45.8,0 6,23.2 6,74.4 49.8,100 88.4,77.4 "/>
|
||||||
|
<path d="M59.8,62.4h-3.6l-9.6-12.8L43.8,52v10.4h-3V36h3v13l12-13h3.6L48.8,47.4L59.8,62.4z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 642 B |
@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 25.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#4052D7;}
|
||||||
|
.st1{fill:#387EFA;}
|
||||||
|
</style>
|
||||||
|
<g>
|
||||||
|
<polygon class="st0" points="73.6,58.2 94,71.2 94,23.8 54,0.8 54,24.2 73.6,35.6 "/>
|
||||||
|
<polygon class="st1" points="69.2,65 49.8,76.4 26.2,62.6 26.2,35 45.8,23.6 45.8,0 6,23.2 6,74.4 49.8,100 88.4,77.4 "/>
|
||||||
|
<path class="st0" d="M59.8,62.4h-3.6l-9.6-12.8L43.8,52v10.4h-3V36h3v13l12-13h3.6L48.8,47.4L59.8,62.4z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 753 B |
38
extensions/harvester/1.8.1-dev/plugin/img/aws.988ade4f.svg
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 304 182" style="enable-background:new 0 0 304 182;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#252F3E;}
|
||||||
|
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}
|
||||||
|
</style>
|
||||||
|
<g>
|
||||||
|
<path 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"/>
|
||||||
|
<g>
|
||||||
|
<path 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"/>
|
||||||
|
<path 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"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.4 KiB |
@ -0,0 +1,29 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 25.2.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
|
||||||
|
<g>
|
||||||
|
<path d="M99.7962494,76.143692c0,6.9666519,0,13.9333115,0,20.899971c0,2.3885574-0.7961884,2.9857101-2.9857101,2.5876236
|
||||||
|
c-15.7247467-2.3885651-31.2504425-4.5781021-46.9751778-6.568573c-2.7866669-0.3980865-3.7819023-1.3933258-3.7819023-4.3790359
|
||||||
|
c0.1990433-11.1466522,0.1990433-22.2933121,0-33.4399605c0-2.3885689,0.7961922-3.1847534,3.1847534-3.1847534
|
||||||
|
c15.7247467,0,31.6485367,0,47.3732681,0c2.5876236,0,3.1847534,0.9952354,3.1847534,3.1847534
|
||||||
|
C99.7962494,62.0113258,99.7962494,68.9779816,99.7962494,76.143692z"/>
|
||||||
|
<path d="M73.1239014,47.6799202c-7.9618988,0-15.9237938,0-23.6866455,0c-2.3885689,0-3.3838043-0.5971413-3.3838043-3.3838081
|
||||||
|
c0.1990433-11.3457031,0.1990433-22.4923515,0-33.8380547c-0.398098-1.3933334,0.5971413-2.9857106,1.9904709-3.1847591
|
||||||
|
c0.1990471,0,0.5971413,0,0.796196,0c16.1228409-2.1895218,32.4447174-4.5780878,48.5675583-6.9666581
|
||||||
|
c2.7866592-0.3980963,2.3885574,1.5923775,2.3885574,2.9857106c0,10.1514168,0,20.3028297,0,30.2551994
|
||||||
|
c0,3.7819061,0,7.3647575,0,11.1466522c0,2.189518-0.7961884,2.9857101-2.9857101,2.9857101
|
||||||
|
C88.8486481,47.6799202,81.0857925,47.6799202,73.1239014,47.6799202z"/>
|
||||||
|
<path d="M20.7744389,51.8599129c5.9714222,0,11.9428425,0,17.7152119,0
|
||||||
|
c1.1942825-0.398098,2.3885689,0.3980942,2.7866669,1.5923767c0,0.398098,0.1990433,0.7961922,0,0.9952354
|
||||||
|
c0,11.5447464,0,23.2885437,0,34.8332977c0,1.9904785-0.9952354,2.1895218-2.587616,1.9904785
|
||||||
|
c-11.7437973-1.7914276-23.487587-3.3838043-35.2313843-4.9761887c-1.5923777,0.1990433-2.9857109-1.1942825-3.1847589-2.7866669
|
||||||
|
c0-0.1990433,0-0.5971451,0-0.7961884c0.1990481-9.3552322,0.1990481-18.5114059,0-27.8666344
|
||||||
|
c0-2.189518,0.5971407-2.9857101,2.9857106-2.9857101C9.0306444,52.0589561,15.0020695,51.8599129,20.7744389,51.8599129z"/>
|
||||||
|
<path d="M20.7744389,47.6799202c-5.772377,0-11.5447464,0-17.5161686,0c-2.1895218,0-2.9857106-0.7961922-2.9857106-2.9857101
|
||||||
|
c0-9.1561775,0-18.3123608,0-27.4685383c-0.3980963-1.3933325,0.5971406-2.9857101,1.9904737-3.1847544
|
||||||
|
c0.199048,0,0.5971406,0,0.7961888,0c11.7437944-1.5923777,23.4875927-3.1847591,35.032341-5.1752329
|
||||||
|
c2.7866631-0.3980961,2.9857101,0.5971403,2.9857101,2.5876141c0,11.1466541,0,22.2933064,0,33.4399567
|
||||||
|
c0,2.3885689-0.9952393,2.7866669-3.1847572,2.7866669H20.7744389z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.5 KiB |
32
extensions/harvester/1.8.1-dev/plugin/img/azure.7d30d447.svg
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 25.2.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#00AAF2;}
|
||||||
|
</style>
|
||||||
|
<g>
|
||||||
|
<path class="st0" d="M99.7962494,76.143692c0,6.9666519,0,13.9333115,0,20.899971
|
||||||
|
c0,2.3885574-0.7961884,2.9857101-2.9857101,2.5876236c-15.7247467-2.3885651-31.2504425-4.5781021-46.9751778-6.568573
|
||||||
|
c-2.7866669-0.3980865-3.7819023-1.3933258-3.7819023-4.3790359c0.1990433-11.1466522,0.1990433-22.2933121,0-33.4399605
|
||||||
|
c0-2.3885689,0.7961922-3.1847534,3.1847534-3.1847534c15.7247467,0,31.6485367,0,47.3732681,0
|
||||||
|
c2.5876236,0,3.1847534,0.9952354,3.1847534,3.1847534C99.7962494,62.0113258,99.7962494,68.9779816,99.7962494,76.143692z"/>
|
||||||
|
<path class="st0" d="M73.1239014,47.6799202c-7.9618988,0-15.9237938,0-23.6866455,0
|
||||||
|
c-2.3885689,0-3.3838043-0.5971413-3.3838043-3.3838081c0.1990433-11.3457031,0.1990433-22.4923515,0-33.8380547
|
||||||
|
c-0.398098-1.3933334,0.5971413-2.9857106,1.9904709-3.1847591c0.1990471,0,0.5971413,0,0.796196,0
|
||||||
|
c16.1228409-2.1895218,32.4447174-4.5780878,48.5675583-6.9666581c2.7866592-0.3980963,2.3885574,1.5923775,2.3885574,2.9857106
|
||||||
|
c0,10.1514168,0,20.3028297,0,30.2551994c0,3.7819061,0,7.3647575,0,11.1466522
|
||||||
|
c0,2.189518-0.7961884,2.9857101-2.9857101,2.9857101C88.8486481,47.6799202,81.0857925,47.6799202,73.1239014,47.6799202z"/>
|
||||||
|
<path class="st0" d="M20.7744389,51.8599129c5.9714222,0,11.9428425,0,17.7152119,0
|
||||||
|
c1.1942825-0.398098,2.3885689,0.3980942,2.7866669,1.5923767c0,0.398098,0.1990433,0.7961922,0,0.9952354
|
||||||
|
c0,11.5447464,0,23.2885437,0,34.8332977c0,1.9904785-0.9952354,2.1895218-2.587616,1.9904785
|
||||||
|
c-11.7437973-1.7914276-23.487587-3.3838043-35.2313843-4.9761887c-1.5923777,0.1990433-2.9857109-1.1942825-3.1847589-2.7866669
|
||||||
|
c0-0.1990433,0-0.5971451,0-0.7961884c0.1990481-9.3552322,0.1990481-18.5114059,0-27.8666344
|
||||||
|
c0-2.189518,0.5971407-2.9857101,2.9857106-2.9857101C9.0306444,52.0589561,15.0020695,51.8599129,20.7744389,51.8599129z"/>
|
||||||
|
<path class="st0" d="M20.7744389,47.6799202c-5.772377,0-11.5447464,0-17.5161686,0
|
||||||
|
c-2.1895218,0-2.9857106-0.7961922-2.9857106-2.9857101c0-9.1561775,0-18.3123608,0-27.4685383
|
||||||
|
c-0.3980963-1.3933325,0.5971406-2.9857101,1.9904737-3.1847544c0.199048,0,0.5971406,0,0.7961888,0
|
||||||
|
c11.7437944-1.5923777,23.4875927-3.1847591,35.032341-5.1752329c2.7866631-0.3980961,2.9857101,0.5971403,2.9857101,2.5876141
|
||||||
|
c0,11.1466541,0,22.2933064,0,33.4399567c0,2.3885689-0.9952393,2.7866669-3.1847572,2.7866669H20.7744389z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.6 KiB |
@ -0,0 +1,22 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 25.2.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
|
||||||
|
<g>
|
||||||
|
<path d="M54.5,37.8000031C53.9000015,38,53.5,38.2000046,52.9000015,38.2000046v30.5999985
|
||||||
|
c0.4000015,0,0.8000031,0.1999969,1.1999969,0.4000015l15.5999985-10
|
||||||
|
c-0.4000015-0.8000031-0.4000015-1.8000031-0.4000015-2.8000031c0-1.4000015,0.4000015-3,1.1999969-4.1999969L54.5,37.8000031z"/>
|
||||||
|
<path d="M50.0999947,0L0.2999973,58.8000031L50.0999947,100l49.6000099-41.1999969L50.0999947,0z M76.9000015,64.5999985
|
||||||
|
c-1.8000031,0-3.5999985-0.5999985-5-1.8000031L57.2999954,72c1,1.4000015,1.4000015,3,1.5999985,4.5999985
|
||||||
|
C59.4999924,81,56.6999969,85,52.2999954,85.8000031c-4.4000015,0.6000061-8.4000015-2.1999969-9.1999969-6.6000061
|
||||||
|
c-0.1999969-0.8000031-0.1999969-1.5999985,0-2.5999985C43.0999985,75,43.5,73.4000015,44.5,72.1999969l-15.4000034-10
|
||||||
|
c-3,3-8,3-11,0c-1.4000015-1.4000015-2.4000015-3.5999985-2.4000015-5.5999985c0-4.4000015,3.5999985-8,8-8
|
||||||
|
C25.2999935,48.5999985,26.899992,49,28.0999966,50l16.0000019-14.8000031c-1.1999969-1.5999985-2-3.5999985-2-5.5999985
|
||||||
|
c0-5,4-8.8000031,9-8.8000031s8.8000031,4,8.8000031,8.8000031c0,2-0.8000031,4-2,5.5999985l15.4000015,14.4000015
|
||||||
|
c4-2,8.7999954-0.5999985,10.7999954,3.4000015s0.6000061,8.8000031-3.3999939,10.8000031
|
||||||
|
C79.2999954,64.1999969,78.0999985,64.5999985,76.9000015,64.5999985z"/>
|
||||||
|
<path d="M30.4999981,53.1999969C31.3000011,55,31.4999981,57,30.8999996,58.7999954l16.4000034,10.5999985
|
||||||
|
c0.4000015-0.1999969,0.8000031-0.4000015,1.4000015-0.4000015V38.4000015c-0.5999985,0-1.1999969-0.1999969-1.5999985-0.5999985
|
||||||
|
L30.4999981,53.1999969z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 24.3.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 60 60" style="enable-background:new 0 0 60 60;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#00AAF2;}
|
||||||
|
</style>
|
||||||
|
<g>
|
||||||
|
<path class="st0" d="M32.2,23.9c-0.3,0.1-0.5,0.2-0.8,0.2v15.3c0.2,0,0.4,0.1,0.6,0.2l7.8-5c-0.2-0.4-0.2-0.9-0.2-1.4
|
||||||
|
c0-0.7,0.2-1.5,0.6-2.1L32.2,23.9z"/>
|
||||||
|
<path class="st0" d="M30,5L5.1,34.4L30,55l24.8-20.6L30,5z M43.4,37.3c-0.9,0-1.8-0.3-2.5-0.9L33.6,41c0.5,0.7,0.7,1.5,0.8,2.3
|
||||||
|
c0.3,2.2-1.1,4.2-3.3,4.6c-2.2,0.3-4.2-1.1-4.6-3.3c-0.1-0.4-0.1-0.8,0-1.3c0-0.8,0.2-1.6,0.7-2.2l-7.7-5c-1.5,1.5-4,1.5-5.5,0
|
||||||
|
c-0.7-0.7-1.2-1.8-1.2-2.8c0-2.2,1.8-4,4-4c0.8,0,1.6,0.2,2.2,0.7l8-7.4c-0.6-0.8-1-1.8-1-2.8c0-2.5,2-4.4,4.5-4.4s4.4,2,4.4,4.4
|
||||||
|
c0,1-0.4,2-1,2.8l7.7,7.2c2-1,4.4-0.3,5.4,1.7s0.3,4.4-1.7,5.4C44.6,37.1,44,37.3,43.4,37.3z"/>
|
||||||
|
<path class="st0" d="M20.2,31.6c0.4,0.9,0.5,1.9,0.2,2.8l8.2,5.3c0.2-0.1,0.4-0.2,0.7-0.2V24.2c-0.3,0-0.6-0.1-0.8-0.3L20.2,31.6z"
|
||||||
|
/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 25.2.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#00AAF2;}
|
||||||
|
</style>
|
||||||
|
<g>
|
||||||
|
<path class="st0" d="M54.5,37.8000031C53.9000015,38,53.5,38.2000046,52.9000015,38.2000046v30.5999985
|
||||||
|
c0.4000015,0,0.8000031,0.1999969,1.1999969,0.4000015l15.5999985-10
|
||||||
|
c-0.4000015-0.8000031-0.4000015-1.8000031-0.4000015-2.8000031c0-1.4000015,0.4000015-3,1.1999969-4.1999969L54.5,37.8000031z"/>
|
||||||
|
<path class="st0" d="M50.0999947,0L0.2999973,58.8000031L50.0999947,100l49.6000099-41.1999969L50.0999947,0z
|
||||||
|
M76.9000015,64.5999985c-1.8000031,0-3.5999985-0.5999985-5-1.8000031L57.2999954,72c1,1.4000015,1.4000015,3,1.5999985,4.5999985
|
||||||
|
C59.4999924,81,56.6999969,85,52.2999954,85.8000031c-4.4000015,0.6000061-8.4000015-2.1999969-9.1999969-6.6000061
|
||||||
|
c-0.1999969-0.8000031-0.1999969-1.5999985,0-2.5999985C43.0999985,75,43.5,73.4000015,44.5,72.1999969l-15.4000034-10
|
||||||
|
c-3,3-8,3-11,0c-1.4000015-1.4000015-2.4000015-3.5999985-2.4000015-5.5999985c0-4.4000015,3.5999985-8,8-8
|
||||||
|
C25.2999935,48.5999985,26.899992,49,28.0999966,50l16.0000019-14.8000031c-1.1999969-1.5999985-2-3.5999985-2-5.5999985
|
||||||
|
c0-5,4-8.8000031,9-8.8000031s8.8000031,4,8.8000031,8.8000031c0,2-0.8000031,4-2,5.5999985l15.4000015,14.4000015
|
||||||
|
c4-2,8.7999954-0.5999985,10.7999954,3.4000015s0.6000061,8.8000031-3.3999939,10.8000031
|
||||||
|
C79.2999954,64.1999969,78.0999985,64.5999985,76.9000015,64.5999985z"/>
|
||||||
|
<path class="st0" d="M30.4999981,53.1999969C31.3000011,55,31.4999981,57,30.8999996,58.7999954l16.4000034,10.5999985
|
||||||
|
c0.4000015-0.1999969,0.8000031-0.4000015,1.4000015-0.4000015V38.4000015c-0.5999985,0-1.1999969-0.1999969-1.5999985-0.5999985
|
||||||
|
L30.4999981,53.1999969z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1,28 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 25.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
|
||||||
|
<g>
|
||||||
|
<polygon points="49.9,37.8 49.9,62.2 64.6,56.3 64.6,43.2 "/>
|
||||||
|
<path d="M35.4,41.3V58l11.5,4.1V37.8L35.4,41.3z M38.1,57.2l-1.8-0.7V43.2l1.8-0.5V57.2z M41.4,58.4l-2.5-0.9V42.4l2.5-0.8V58.4z
|
||||||
|
M45.5,59.7l-3.3-1V41.3l3.3-1V59.7z"/>
|
||||||
|
<polygon points="14.5,37.8 14.5,62.2 29.2,56.3 29.2,43.2 "/>
|
||||||
|
<path d="M0,41.3V58l11.5,4.1V37.8L0,41.3z M2.8,57.2L1,56.5V43.2l1.8-0.5V57.2z M6,58.4l-2.5-0.9V42.4L6,41.6V58.4z M10.1,59.7
|
||||||
|
l-3.3-1V41.3l3.3-1V59.7z"/>
|
||||||
|
<polygon points="85.3,37.8 85.3,62.2 100,56.3 100,43.2 "/>
|
||||||
|
<path d="M70.8,41.3V58l11.5,4.1V37.8L70.8,41.3z M73.4,57.2l-1.8-0.7V43.2l1.8-0.5V57.2z M76.8,58.4l-2.5-0.9V42.4l2.5-0.8V58.4z
|
||||||
|
M80.9,59.7l-3.3-1V41.3l3.3-1V59.7z"/>
|
||||||
|
<polygon points="31.1,62.6 31.1,87 45.7,81.1 45.7,68 "/>
|
||||||
|
<path d="M16.5,66.3v16.6L28,87V62.6L16.5,66.3z M19.1,82l-1.8-0.7V68.1l1.8-0.5V82z M22.5,83.2L20,82.3V67.2l2.5-0.8V83.2z
|
||||||
|
M26.6,84.6l-3.3-1V66.1l3.3-1V84.6z"/>
|
||||||
|
<polygon points="67.1,62.6 67.1,87 81.8,81.1 81.8,68 "/>
|
||||||
|
<path d="M52.4,66.3v16.6L64,87V62.6L52.4,66.3z M55.2,82l-1.8-0.7V68.1l1.8-0.5V82z M58.5,83.2l-2.5-1v-15l2.5-0.8V83.2z
|
||||||
|
M62.6,84.6l-3.3-1V66.1l3.3-1V84.6z"/>
|
||||||
|
<polygon points="31.1,13 31.1,37.3 45.7,31.5 45.7,18.4 "/>
|
||||||
|
<path d="M16.5,16.6v16.6L28,37.3V13L16.5,16.6z M19.1,32.3l-1.8-0.7V18.4l1.8-0.5V32.3z M22.5,33.5L20,32.7V17.6l2.5-0.8V33.5z
|
||||||
|
M26.6,34.9l-3.3-1V16.6l3.3-1V34.9z"/>
|
||||||
|
<polygon points="67.1,13 67.1,37.3 81.8,31.5 81.8,18.4 "/>
|
||||||
|
<path d="M52.4,16.6v16.6L64,37.3V13L52.4,16.6z M55.2,32.3l-1.8-0.7V18.4l1.8-0.5V32.3z M58.5,33.5L56,32.7V17.6l2.5-0.8
|
||||||
|
C58.5,16.8,58.5,33.5,58.5,33.5z M62.6,34.9l-3.3-1V16.6l3.3-1V34.9z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1,31 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 25.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#0079D6;}
|
||||||
|
</style>
|
||||||
|
<g>
|
||||||
|
<polygon class="st0" points="49.9,37.8 49.9,62.2 64.6,56.3 64.6,43.2 "/>
|
||||||
|
<path class="st0" d="M35.4,41.3V58l11.5,4.1V37.8L35.4,41.3z M38.1,57.2l-1.8-0.7V43.2l1.8-0.5V57.2z M41.4,58.4l-2.5-0.9V42.4
|
||||||
|
l2.5-0.8V58.4z M45.5,59.7l-3.3-1V41.3l3.3-1V59.7z"/>
|
||||||
|
<polygon class="st0" points="14.5,37.8 14.5,62.2 29.2,56.3 29.2,43.2 "/>
|
||||||
|
<path class="st0" d="M0,41.3V58l11.5,4.1V37.8L0,41.3z M2.8,57.2l-1.8-0.7V43.2l1.8-0.5V57.2z M6,58.4l-2.5-0.9V42.4L6,41.6V58.4z
|
||||||
|
M10.1,59.7l-3.3-1V41.3l3.3-1V59.7z"/>
|
||||||
|
<polygon class="st0" points="85.3,37.8 85.3,62.2 100,56.3 100,43.2 "/>
|
||||||
|
<path class="st0" d="M70.8,41.3V58l11.5,4.1V37.8L70.8,41.3z M73.4,57.2l-1.8-0.7V43.2l1.8-0.5V57.2z M76.8,58.4l-2.5-0.9V42.4
|
||||||
|
l2.5-0.8V58.4z M80.9,59.7l-3.3-1V41.3l3.3-1V59.7z"/>
|
||||||
|
<polygon class="st0" points="31.1,62.6 31.1,87 45.7,81.1 45.7,68 "/>
|
||||||
|
<path class="st0" d="M16.5,66.3v16.6L28,87V62.6L16.5,66.3z M19.1,82l-1.8-0.7V68.1l1.8-0.5V82z M22.5,83.2l-2.5-0.9V67.2l2.5-0.8
|
||||||
|
V83.2z M26.6,84.6l-3.3-1V66.1l3.3-1V84.6z"/>
|
||||||
|
<polygon class="st0" points="67.1,62.6 67.1,87 81.8,81.1 81.8,68 "/>
|
||||||
|
<path class="st0" d="M52.4,66.3v16.6L64,87V62.6L52.4,66.3z M55.2,82l-1.8-0.7V68.1l1.8-0.5V82z M58.5,83.2L56,82.2V67.2l2.5-0.8
|
||||||
|
V83.2z M62.6,84.6l-3.3-1V66.1l3.3-1V84.6z"/>
|
||||||
|
<polygon class="st0" points="31.1,13 31.1,37.3 45.7,31.5 45.7,18.4 "/>
|
||||||
|
<path class="st0" d="M16.5,16.6v16.6L28,37.3V13L16.5,16.6z M19.1,32.3l-1.8-0.7V18.4l1.8-0.5V32.3z M22.5,33.5l-2.5-0.8V17.6
|
||||||
|
l2.5-0.8V33.5z M26.6,34.9l-3.3-1V16.6l3.3-1V34.9z"/>
|
||||||
|
<polygon class="st0" points="67.1,13 67.1,37.3 81.8,31.5 81.8,18.4 "/>
|
||||||
|
<path class="st0" d="M52.4,16.6v16.6L64,37.3V13L52.4,16.6z M55.2,32.3l-1.8-0.7V18.4l1.8-0.5V32.3z M58.5,33.5L56,32.7V17.6
|
||||||
|
l2.5-0.8C58.5,16.8,58.5,33.5,58.5,33.5z M62.6,34.9l-3.3-1V16.6l3.3-1V34.9z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.1 KiB |
@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 25.2.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
|
||||||
|
<g>
|
||||||
|
<path d="M71.3166656,31.7333336c1.1500015,0.6666641,2.5833359,0.6666641,3.7333374,0l15.3000031-8.7000008l-8.25-4.6999989
|
||||||
|
c0,0,0,0,0.0166626-0.0166664L50.1166649,0l-5.3999977,3.0666668C44.4333344,3.2,44.1666679,3.3333335,43.8833313,3.5
|
||||||
|
L9.5499992,23.083334l15.2666664,8.7166672c1.166666,0.666666,2.5833321,0.666666,3.75,0l7.6666679-4.3666649l10-5.7000008
|
||||||
|
c2.3333321-1.333334,5.2166634-1.333334,7.5666656,0l7.8666687,4.4833336L71.3166656,31.7333336z"/>
|
||||||
|
<path d="M77.8499985,42.6500015v20.0500031c0,2.6666641-1.4499969,5.1333389-3.7833328,6.4833298L56.1666679,79.3833313
|
||||||
|
C55,80.0500031,54.2833366,81.2666702,54.2833366,82.5999985V100l34.6000023-19.7166672
|
||||||
|
c0.0499954-0.0333405,0.0999985-0.0500031,0.1333313-0.0833359L95,76.8000031v-4.6999969v-2.2666702V30.7333355
|
||||||
|
l-15.2666626,8.6999989C78.5666656,40.1000023,77.8499985,41.3166656,77.8499985,42.6500015z"/>
|
||||||
|
<path d="M43.2999992,79.1166687l-17.3666668-9.9000015c-2.3500004-1.3333282-3.7833347-3.7999954-3.7833347-6.4833298V42.6833344
|
||||||
|
c0-1.3333321-0.7166672-2.5499992-1.8833332-3.2166672L4.9999986,30.7666664v-0.0333347V30.75v39.1166611l0,0v2.2166748v4.6999969
|
||||||
|
l5.3499999,3.0666656c0.250001,0.1666641,0.5,0.3166656,0.750001,0.4666672l34.0666695,19.4166641V82.3333359
|
||||||
|
C45.1833344,81,44.4666672,79.7833405,43.2999992,79.1166687z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
25
extensions/harvester/1.8.1-dev/plugin/img/baidu.063c3510.svg
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 25.2.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#21CF68;}
|
||||||
|
.st1{fill:#FB5138;}
|
||||||
|
.st2{fill:#1267FA;}
|
||||||
|
</style>
|
||||||
|
<g>
|
||||||
|
<path class="st0" d="M71.3166656,31.7333336c1.1500015,0.6666641,2.5833359,0.6666641,3.7333374,0l15.3000031-8.7000008
|
||||||
|
l-8.25-4.6999989c0,0,0,0,0.0166626-0.0166664L50.1166649,0l-5.3999977,3.0666668
|
||||||
|
C44.4333344,3.2,44.1666679,3.3333335,43.8833313,3.5L9.5499992,23.083334l15.2666664,8.7166672
|
||||||
|
c1.166666,0.666666,2.5833321,0.666666,3.75,0l7.6666679-4.3666649l10-5.7000008
|
||||||
|
c2.3333321-1.333334,5.2166634-1.333334,7.5666656,0l7.8666687,4.4833336L71.3166656,31.7333336z"/>
|
||||||
|
<path class="st1" d="M77.8499985,42.6500015v20.0500031c0,2.6666641-1.4499969,5.1333389-3.7833328,6.4833298
|
||||||
|
L56.1666679,79.3833313C55,80.0500031,54.2833366,81.2666702,54.2833366,82.5999985V100l34.6000023-19.7166672
|
||||||
|
c0.0499954-0.0333405,0.0999985-0.0500031,0.1333313-0.0833359L95,76.8000031v-4.6999969v-2.2666702V30.7333355
|
||||||
|
l-15.2666626,8.6999989C78.5666656,40.1000023,77.8499985,41.3166656,77.8499985,42.6500015z"/>
|
||||||
|
<path class="st2" d="M43.2999992,79.1166687l-17.3666668-9.9000015c-2.3500004-1.3333282-3.7833347-3.7999954-3.7833347-6.4833298
|
||||||
|
V42.6833344c0-1.3333321-0.7166672-2.5499992-1.8833332-3.2166672L4.9999986,30.7666664v-0.0333347V30.75v39.1166611l0,0v2.2166748
|
||||||
|
v4.6999969l5.3499999,3.0666656c0.250001,0.1666641,0.5,0.3166656,0.750001,0.4666672l34.0666695,19.4166641V82.3333359
|
||||||
|
C45.1833344,81,44.4666672,79.7833405,43.2999992,79.1166687z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
241
extensions/harvester/1.8.1-dev/plugin/img/banner.00f803a6.svg
Normal file
@ -0,0 +1,241 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 25.2.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 4197.2836914 633.0073853" style="enable-background:new 0 0 4197.2836914 633.0073853;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#D9EDEF;}
|
||||||
|
.st1{fill:#8DC63F;}
|
||||||
|
.st2{fill:#6BA939;}
|
||||||
|
.st3{fill:#5C9531;}
|
||||||
|
.st4{fill:#594A41;}
|
||||||
|
.st5{fill:#DBE13A;}
|
||||||
|
.st6{fill:#BBD644;}
|
||||||
|
.st7{fill:#ABC53E;}
|
||||||
|
.st8{opacity:0.5;}
|
||||||
|
.st9{fill:#FFFFFF;}
|
||||||
|
</style>
|
||||||
|
<rect class="st0" width="4197.2836914" height="633.0073853"/>
|
||||||
|
<g>
|
||||||
|
<path id="path598" class="st1" d="M3443.8837891,580.0073853
|
||||||
|
c-175.1999512-106.2000122-400.3000488-170.1000061-645.8999023-170.1000061c-284.1999512,0-541,85.5-724.6000977,223.1000061
|
||||||
|
h1370.5V580.0073853z"/>
|
||||||
|
<g>
|
||||||
|
<path id="path600" class="st2" d="M2780.0837402,473.9074097c0,22.9000244-18.5998535,41.5-41.5,41.5
|
||||||
|
c-22.8999023,0-41.5-18.5999756-41.5-41.5c0-22.8999939,18.6000977-41.5,41.5-41.5
|
||||||
|
C2761.5837402,432.4074097,2780.0837402,451.0074158,2780.0837402,473.9074097z"/>
|
||||||
|
<path id="path602" class="st3" d="M2780.0837402,473.9074097c0-22.8999939-18.5998535-41.5-41.5-41.5v82.9000244
|
||||||
|
C2761.5837402,515.3074341,2780.0837402,496.8074341,2780.0837402,473.9074097z"/>
|
||||||
|
<path id="path604" class="st4" d="M2738.6838379,540.0073853c-1.0998535,0-2.0998535-0.9000244-2.0998535-2.0999756v-58
|
||||||
|
c0-1.0999756,0.8999023-2.0999756,2.0998535-2.0999756c1.1000977,0,2.1000977,0.9000244,2.1000977,2.0999756v58
|
||||||
|
C2740.7839355,539.1074219,2739.7839355,540.0073853,2738.6838379,540.0073853z"/>
|
||||||
|
<path id="path606" class="st4" d="M2738.6838379,503.1074219c-0.5,0-1.0998535-0.2000122-1.5-0.5999756
|
||||||
|
c-0.8000488-0.7999878-0.8000488-2.0999756,0-2.9000244l8.6000977-8.5999756c0.8000488-0.7999878,2.0998535-0.7999878,2.8999023,0
|
||||||
|
s0.8000488,2.0999756,0,2.9000244l-8.5998535,8.5999756
|
||||||
|
C2739.6838379,502.9074707,2739.1838379,503.1074219,2738.6838379,503.1074219z"/>
|
||||||
|
<path id="path608" class="st4" d="M2738.6838379,495.6074219c-0.5,0-1.0998535-0.2000122-1.5-0.5999756l-11.5-11.5
|
||||||
|
c-0.8000488-0.7999878-0.8000488-2.0999756,0-2.9000244c0.8000488-0.7999878,2.1000977-0.7999878,2.9001465,0l11.5,11.5
|
||||||
|
c0.8000488,0.7999878,0.8000488,2.0999756,0,2.9000244
|
||||||
|
C2739.6838379,495.4074707,2739.1838379,495.6074219,2738.6838379,495.6074219z"/>
|
||||||
|
</g>
|
||||||
|
<path id="path610" class="st5" d="M2386.8837891,506.1073914c0-26-7.3999023-56.1000061-22.3999023-56.1000061
|
||||||
|
s-22.4001465,30.1000061-22.4001465,56.1000061c0,9.4999695,7.4001465,17.1999817,22.4001465,17.1999817
|
||||||
|
C2379.4838867,523.4074097,2386.8837891,515.7073975,2386.8837891,506.1073914z"/>
|
||||||
|
<path id="path612" class="st6" d="M2386.8837891,506.1073914c0-26-7.3999023-56.1000061-22.3999023-56.1000061v73.2999878
|
||||||
|
c15,0.0999756,22.3999023-7.6000366,22.3999023-17.2000122V506.1073914z"/>
|
||||||
|
<path id="path614" class="st4" d="M2364.4838867,550.4074097c-1.1000977,0-2.1000977-0.9000244-2.1000977-2.1000366v-64.1999512
|
||||||
|
c0-1.1000061,0.9001465-2.1000061,2.1000977-2.1000061c1.0998535,0,2.0998535,0.8999939,2.0998535,2.1000061v64.2000122
|
||||||
|
C2366.5837402,549.5074463,2365.6838379,550.4074097,2364.4838867,550.4074097L2364.4838867,550.4074097z"/>
|
||||||
|
<path id="path616" class="st4" d="M2364.4838867,509.7073975c-0.5,0-1.1000977-0.2000122-1.5-0.6000061l-9.5-9.5
|
||||||
|
c-0.8000488-0.7999878-0.8000488-2.1000061,0-2.8999939s2.0998535-0.7999878,2.8999023,0l9.5,9.5
|
||||||
|
c0.8000488,0.7999878,0.8000488,2.1000061,0,2.8999939
|
||||||
|
C2365.5837402,509.5073853,2365.0837402,509.7073975,2364.4838867,509.7073975z"/>
|
||||||
|
<path id="path618" class="st4" d="M2364.4838867,501.3074036c-0.5,0-1.1000977-0.2000122-1.5-0.6000061
|
||||||
|
c-0.8000488-0.7999878-0.8000488-2.1000061,0-2.8999939l12.6999512-12.7000122
|
||||||
|
c0.8000488-0.7999878,2.0998535-0.7999878,2.8999023,0s0.8000488,2.1000061,0,2.8999939l-12.6999512,12.7000122
|
||||||
|
C2365.5837402,501.1073914,2365.0837402,501.3074036,2364.4838867,501.3074036z"/>
|
||||||
|
<path id="path620" class="st6" d="M3489.7836914,322.4074402c-301.3999023,0-562.1999512,126.5-688,310.6000061h653.3000488
|
||||||
|
h88.8999023h653.3000488c-125.8999023-184.1000366-386.6999512-310.6000366-688.3000488-310.6000366
|
||||||
|
c-3.1999512,0-6.3999023,0.1000061-9.5998535,0.1000061c-3.1999512-0.1000061-6.3999023-0.1000061-9.6000977-0.1000061V322.4074402
|
||||||
|
z"/>
|
||||||
|
<g id="g642" transform="translate(0,150.9074)">
|
||||||
|
<path id="path622" class="st7" d="M3340.7836914,335.4000244c0-9-7.2998047-16.2999878-16.2998047-16.2999878
|
||||||
|
s-16.3000488,7.2999878-16.3000488,16.2999878s7.3000488,16.2999878,16.3000488,16.2999878
|
||||||
|
S3340.7836914,344.4000244,3340.7836914,335.4000244z"/>
|
||||||
|
<path id="path624" class="st7" d="M3475.1838379,270.2000122c0-9-7.3000488-16.3000031-16.3000488-16.3000031
|
||||||
|
s-16.3000488,7.3000031-16.3000488,16.3000031S3449.8837891,286.5,3458.8837891,286.5
|
||||||
|
S3475.1838379,279.2000122,3475.1838379,270.2000122z"/>
|
||||||
|
<path id="path626" class="st7" d="M3298.7839355,384.2999878c-9,0-16.3000488,7.2999878-16.3000488,16.2999878
|
||||||
|
s7.2998047,16.2999878,16.3000488,16.2999878h97.0998535c9,0,16.3000488,7.2999878,16.3000488,16.2999878
|
||||||
|
s-7.3000488,16.2999878-16.3000488,16.2999878h-21.3999023c-9,0-16.3000488,7.2999878-16.3000488,16.2999878
|
||||||
|
s7.3000488,16.2999878,16.3000488,16.2999878h289.5h52c9,0,16.2998047-7.2999878,16.2998047-16.2999878
|
||||||
|
s-7.2998047-16.2999878-16.2998047-16.2999878h-56.7001953c-9,0-16.2998047-7.2999878-16.2998047-16.2999878
|
||||||
|
s7.2998047-16.2999878,16.2998047-16.2999878h110c9,0,16.3000488-7.2999878,16.3000488-16.2999878
|
||||||
|
s-7.3000488-16.2999878-16.3000488-16.2999878h-68.5998535c-9,0-16.3000488-7.2999878-16.3000488-16.2999878
|
||||||
|
s7.3000488-16.2999878,16.3000488-16.2999878h104.2998047c9,0,16.3000488-7.2999878,16.3000488-16.2999878
|
||||||
|
s-7.3000488-16.2999878-16.3000488-16.2999878h-57.0998535c-9,0-16.3000488-7.2999878-16.3000488-16.2999878
|
||||||
|
s7.3000488-16.2999878,16.3000488-16.2999878h21.3999023c9,0,16.3000488-7.2999878,16.3000488-16.2999878
|
||||||
|
s-7.3000488-16.3000031-16.3000488-16.3000031h-119.5h-142c-9,0-16.2998047,7.3000031-16.2998047,16.3000031
|
||||||
|
s7.2998047,16.2999878,16.2998047,16.2999878h56.7001953c9,0,16.2998047,7.2999878,16.2998047,16.2999878
|
||||||
|
s-7.2998047,16.2999878-16.2998047,16.2999878h-190c-9,0-16.3000488,7.2999878-16.3000488,16.2999878
|
||||||
|
s7.3000488,16.2999878,16.3000488,16.2999878h68.5998535c9,0,16.3000488,7.2999878,16.3000488,16.2999878
|
||||||
|
s-7.3000488,16.2999878-16.3000488,16.2999878h-144.3000488H3298.7839355z"/>
|
||||||
|
<path id="path628" class="st7" d="M3802.9838867,400.5999756c0,9,7.2998047,16.2999878,16.2998047,16.2999878
|
||||||
|
s16.3000488-7.2999878,16.3000488-16.2999878s-7.3000488-16.2999878-16.3000488-16.2999878
|
||||||
|
S3802.9838867,391.5999756,3802.9838867,400.5999756z"/>
|
||||||
|
<path id="path630" class="st7" d="M3748.5837402,465.7999878c0,9,7.3000488,16.2999878,16.3000488,16.2999878
|
||||||
|
s16.3000488-7.2999878,16.3000488-16.2999878S3773.8837891,449.5,3764.8837891,449.5
|
||||||
|
S3748.5837402,456.7999878,3748.5837402,465.7999878z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path id="path654" class="st1" d="M3159.2836914,303.9074097c25.6000977,0,46.4001465,20.6999817,46.4001465,46.3999939
|
||||||
|
c0,25.6000061-20.6999512,46.3999939-46.4001465,46.3999939c-25.5998535,0-46.3999023-20.6999817-46.3999023-46.3999939
|
||||||
|
C3112.8837891,324.6074219,3133.6838379,303.8074036,3159.2836914,303.9074097z"/>
|
||||||
|
<path id="path656" class="st2" d="M3159.2836914,396.8074036v-92.8999939
|
||||||
|
c-25.5998535,0-46.3999023,20.6999817-46.3999023,46.3999939
|
||||||
|
C3112.8837891,375.9074097,3133.6838379,396.7073975,3159.2836914,396.8074036z"/>
|
||||||
|
<path id="path658" class="st4" d="M3157.2836914,422.0073853v-65.1000061c0-1.2000122,1-2.1000061,2.1000977-2.1000061
|
||||||
|
c1.1999512,0,2.0998535,1,2.0998535,2.1000061v65.1000061c0,1.2000122-1,2.1000061-2.0998535,2.1000061
|
||||||
|
C3158.1838379,424.1073914,3157.2836914,423.2073975,3157.2836914,422.0073853z"/>
|
||||||
|
<path id="path660" class="st4" d="M3157.9836426,382.2073975l-9.6999512-9.7000122
|
||||||
|
c-0.8000488-0.7999878-0.8000488-2.1000061,0-2.8999939s2.1000977-0.7999878,2.9001465,0l9.6999512,9.7000122
|
||||||
|
c0.8000488,0.7999878,0.8000488,2.1000061,0,2.8999939c-0.4001465,0.3999939-1,0.6000061-1.5,0.6000061
|
||||||
|
S3158.2836914,382.6073914,3157.9836426,382.2073975z"/>
|
||||||
|
<path id="path662" class="st4" d="M3157.9836426,373.7073975c-0.7998047-0.7999878-0.7998047-2.1000061,0-2.8999939
|
||||||
|
l12.8000488-12.7999878c0.8000488-0.7999878,2.1000977-0.7999878,2.9001465,0
|
||||||
|
c0.7998047,0.7999878,0.7998047,2.1000061,0,2.8999939l-12.8000488,12.7999878c-0.4001465,0.3999939-1,0.6000061-1.5,0.6000061
|
||||||
|
S3158.2836914,374.1073914,3157.9836426,373.7073975z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path id="path694" class="st5" d="M3559.3447266,517.8883667c-17.3000488,0-31.3000488-14-31.3000488-31.2999878
|
||||||
|
c0-47.2000122,14-125.6000061,31.3000488-125.6000061c17.2998047,0,31.2998047,78.4000244,31.2998047,125.6000061
|
||||||
|
C3590.6445312,503.8883667,3576.6445312,517.8883667,3559.3447266,517.8883667z"/>
|
||||||
|
<path id="path696" class="st6" d="M3559.3447266,517.8883667V360.9883728
|
||||||
|
c17.2998047,0,31.2998047,78.4000244,31.2998047,125.6000061
|
||||||
|
C3590.6445312,503.8883667,3576.6445312,517.8883667,3559.3447266,517.8883667z"/>
|
||||||
|
<path id="path698" class="st4" d="M3557.2446289,550.9884033v-85.1000366c0-1.2000122,1-2.1000061,2.1000977-2.1000061
|
||||||
|
c1.1999512,0,2.0998535,1,2.0998535,2.1000061v85.1000366c0,1.2000122-1,2.0999756-2.0998535,2.0999756
|
||||||
|
C3558.1447754,553.0883789,3557.2446289,552.0883789,3557.2446289,550.9884033z"/>
|
||||||
|
<path id="path700" class="st4" d="M3557.9445801,498.2883911l-12.5998535-12.6000061
|
||||||
|
c-0.8000488-0.7999878-0.8000488-2.1000061,0-2.8999939s2.0998535-0.7999878,2.8999023,0l12.6000977,12.7000122
|
||||||
|
c0.7998047,0.7999878,0.7998047,2.1000061,0,2.8999939c-0.4001465,0.3999939-1,0.6000061-1.5,0.6000061
|
||||||
|
S3558.2446289,498.7883911,3557.9445801,498.2883911z"/>
|
||||||
|
<path id="path702" class="st4" d="M3557.8447266,487.3883972c-0.8000488-0.7999878-0.8000488-2.1000061,0-2.8999939
|
||||||
|
l16.7998047-16.7999878c0.8000488-0.7999878,2.1000977-0.7999878,2.9001465,0s0.8000488,2.1000061,0,2.8999939
|
||||||
|
l-16.6999512,16.7999878c-0.4001465,0.3999939-1,0.6000061-1.5,0.6000061S3558.2446289,487.7883911,3557.8447266,487.3883972z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path id="path714" class="st1" d="M3404.1896973,333.3871155c-19.8999023,0-29.6999512-10.3000488-29.6999512-22.9000244
|
||||||
|
c0-34.5,9.7998047-74.4000092,29.6999512-74.4000092c19.8999023,0,29.6999512,39.9000092,29.6999512,74.4000092
|
||||||
|
C3433.8896484,323.1871033,3424.0895996,333.3871155,3404.1896973,333.3871155z"/>
|
||||||
|
<path id="path716" class="st2" d="M3404.1896973,333.2870789v-97.1999969
|
||||||
|
c19.8999023,0,29.6999512,39.9000092,29.6999512,74.4000092
|
||||||
|
C3433.8896484,323.1871033,3424.0895996,333.3870544,3404.1896973,333.2870789z"/>
|
||||||
|
<path id="path718" class="st4" d="M3402.0895996,366.4870911v-85.0999756c0-1.1999512,1-2.0999756,2.1000977-2.0999756
|
||||||
|
c1.1999512,0,2.0998535,1,2.0998535,2.0999756v85.0999756c0,1.1999512-1,2.0999756-2.0998535,2.0999756
|
||||||
|
C3403.0895996,368.5870667,3402.1896973,367.6871033,3402.0895996,366.4870911z"/>
|
||||||
|
<path id="path720" class="st4" d="M3402.7895508,313.7870789l-12.5998535-12.5999756
|
||||||
|
c-0.8000488-0.8000488-0.8000488-2.1000366,0-2.9000244s2.0998535-0.7999878,2.8999023,0l12.6000977,12.7000122
|
||||||
|
c0.8000488,0.8000488,0.8000488,2.1000366,0,2.9000244c-0.4001465,0.3999634-1,0.5999756-1.5,0.5999756
|
||||||
|
S3403.1896973,314.2870789,3402.7895508,313.7870789z"/>
|
||||||
|
<path id="path722" class="st4" d="M3402.7895508,302.8871155c-0.8000488-0.8000488-0.8000488-2.1000366,0-2.9000244
|
||||||
|
l16.8000488-16.7999878c0.8000488-0.7999878,2.1000977-0.7999878,2.9001465,0
|
||||||
|
c0.8000488,0.8000488,0.8000488,2.1000366,0,2.9000244l-16.8000488,16.7999878c-0.4001465,0.3999634-1,0.5999756-1.5,0.5999756
|
||||||
|
S3403.1896973,303.2871399,3402.7895508,302.8871155z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g class="st8">
|
||||||
|
<path class="st9" d="M2760.2143555,182.9998169h30.456543c7.9172363,0,14.3356934-6.4185791,14.3356934-14.3361053
|
||||||
|
c0-7.9173431-6.418457-14.3357544-14.3356934-14.3357544h-5.9523926c-7.9174805,0-14.3359375-6.4184113-14.3359375-14.3359375
|
||||||
|
v-0.0001831c0-7.9173431,6.418457-14.3357544,14.3359375-14.3357544h133.5310059
|
||||||
|
c7.9174805,0,14.3359375,6.4184113,14.3359375,14.3357544v0.0001831c0,7.9175262-6.418457,14.3359375-14.3359375,14.3359375
|
||||||
|
h-7.0739746h-61.7858887c-7.9174805,0-14.3359375,6.4184113-14.3359375,14.3357544v0.0001678
|
||||||
|
c0,7.9175262,6.418457,14.3359375,14.3359375,14.3359375h61.7858887h64.6325684h7.1123047h24.9370117
|
||||||
|
c7.9174805,0,14.3359375,6.4184113,14.3359375,14.3357697c0,7.917511-6.418457,14.3359222-14.3359375,14.3359222h-20.9790039
|
||||||
|
c-0.0693359,0.0010529-0.1362305,0.0104523-0.2055664,0.0104523h-7.0739746h-61.7858887
|
||||||
|
c-7.9177246,0-14.3359375,6.4184113-14.3359375,14.3359375c0,7.917511,6.4182129,14.3359222,14.3359375,14.3359222h61.7858887
|
||||||
|
h64.6323242h7.1125488h42.3581543c7.9174805,0,14.3359375,6.4184113,14.3359375,14.3359375
|
||||||
|
c0,7.9173584-6.418457,14.3359375-14.3359375,14.3359375h-131.5332031h-41.6860352h-91.8449707
|
||||||
|
c-7.9174805,0-14.3356934-6.4185791-14.3356934-14.3359375c0-7.9175262,6.4182129-14.3359375,14.3356934-14.3359375h30.456543
|
||||||
|
c7.9172363,0,14.3359375-6.4184113,14.3359375-14.3359222c0-7.9175262-6.4187012-14.3359375-14.3359375-14.3359375h-5.9523926
|
||||||
|
c-0.0693359,0-0.1364746-0.0093994-0.2055664-0.0104523h-0.8769531h-91.8449707
|
||||||
|
c-7.9174805,0-14.3356934-6.4184113-14.3356934-14.3359222
|
||||||
|
C2745.8786621,189.4182281,2752.296875,182.9998169,2760.2143555,182.9998169z"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.7071068 -0.7071068 0.7071068 0.7071068 656.4876099 1979.5828857)" class="st9" cx="2717.8117676" cy="197.3408508" rx="14.3364344" ry="14.3363905"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.2305667 -0.9730566 0.9730566 0.2305667 2145.1455078 2992.8227539)" class="st9" cx="2964.9951172" cy="139.9924927" rx="14.3363209" ry="14.3364172"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.1605944 -0.9870205 0.9870205 0.1605944 2301.5793457 2846.4716797)" class="st9" cx="2824.310791" cy="70.0723495" rx="14.3363218" ry="14.3364592"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.8951613 -0.4457424 0.4457424 0.8951613 216.8301849 1430.5336914)" class="st9" cx="3149.512207" cy="254.3188477" rx="14.3364563" ry="14.3364019"/>
|
||||||
|
<circle class="st9" cx="2905.8103027" cy="319.886261" r="14.3364344"/>
|
||||||
|
</g>
|
||||||
|
<g class="st8">
|
||||||
|
<path class="st9" d="M4197.2836914,119.5879898h-124.1401367h-36.2236328h-3.1196289h-86.6828613h-16.2521973
|
||||||
|
c-6.9624023-0.5554581-12.442627-6.3699799-12.442627-13.4754791c0-7.4723663,6.0576172-13.5300293,13.5300293-13.5300293
|
||||||
|
h5.6179199c7.4726562,0,13.5300293-6.0576706,13.5300293-13.5301895l0,0c0-7.4725266-6.057373-13.5301971-13.5300293-13.5301971
|
||||||
|
h-126.0258789c-7.4726562,0-13.5302734,6.0576706-13.5302734,13.5301971l0,0
|
||||||
|
c0,7.4725189,6.0576172,13.5301895,13.5302734,13.5301895h6.6762695h58.3132324
|
||||||
|
c7.4726562,0,13.5302734,6.057663,13.5302734,13.5300293v0.0001602c0,7.4725266-6.0576172,13.5301895-13.5302734,13.5301895
|
||||||
|
h-58.3132324h-61h-6.7126465h-39.9772949c-7.4726562,0-13.5302734,6.0576706-13.5302734,13.5300369
|
||||||
|
c0,7.4726868,6.0576172,13.5301819,13.5302734,13.5301819h124.1403809h39.3432617h86.6828613
|
||||||
|
c0.3662109,0,0.7263184-0.026123,1.0852051-0.0547028h14.0793457c7.4724121,0,13.5300293,6.057663,13.5300293,13.5301819
|
||||||
|
c0,7.4725342-6.0576172,13.5301971-13.5300293,13.5301971h-5.6179199h-52.6738281h-61h-6.7126465h-39.9772949
|
||||||
|
c-7.4724121,0-13.5302734,6.057663-13.5302734,13.5300293c0,7.4725189,6.0578613,13.5303497,13.5302734,13.5303497h38.7426758
|
||||||
|
c0.4528809,0.0458374,0.9123535,0.0695038,1.3774414,0.0695038h6.6760254h58.3137207
|
||||||
|
c7.4724121,0,13.5302734,6.057663,13.5302734,13.530014v0.0001678c0,7.4725342-6.0578613,13.5301971-13.5302734,13.5301971
|
||||||
|
h-58.3137207h-60.9995117h-6.7128906h-39.9770508c-7.4726562,0-13.5302734,6.057663-13.5302734,13.5300293
|
||||||
|
c0,7.4725189,6.0576172,13.5303497,13.5302734,13.5303497h124.1401367h39.3432617h86.6828613
|
||||||
|
c7.4724121,0,13.5300293-6.0578308,13.5300293-13.5303497c0-7.4723663-6.0576172-13.5300293-13.5300293-13.5300293h-28.7446289
|
||||||
|
c-7.4724121,0-13.5302734-6.0578308-13.5302734-13.530365c0-7.4723511,6.0578613-13.530014,13.5302734-13.530014h5.6176758
|
||||||
|
c0.4650879,0,0.9245605-0.0236664,1.3774414-0.0695038h82.6430664h36.2231445
|
||||||
|
c7.4726562,0,13.5302734-6.057663,13.5302734-13.5301819l0,0c0-7.4725342-6.0576172-13.5301971-13.5302734-13.5301971h-6.6762695
|
||||||
|
h-29.546875h-28.744873c-7.4724121,0-13.5300293-6.0578308-13.5300293-13.5301971
|
||||||
|
c0-7.4725189,6.0576172-13.5301819,13.5300293-13.5301819h5.6179199h52.6738281h61h6.7128906h39.9770508"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.2400311 -0.9707652 0.9707652 0.2400311 2857.5102539 4130.8178711)" class="st9" cx="4067.0566406" cy="240.352829" rx="13.5306482" ry="13.5305595"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.6751397 -0.7376899 0.7376899 0.6751397 1235.9562988 2964.7043457)" class="st9" cx="3984.0908203" cy="79.052742" rx="13.5305424" ry="13.5305834"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.2305667 -0.9730565 0.9730565 0.2305667 2966.0673828 3778.0703125)" class="st9" cx="3871.9841309" cy="13.5306435" rx="13.5305557" ry="13.5306473"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.153126 -0.9882067 0.9882067 0.153126 2996.0073242 4081.1125488)" class="st9" cx="3879.1032715" cy="292.5545959" rx="13.5305576" ry="13.5306931"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.1547078 -0.9879603 0.9879603 0.1547078 3000.173584 3878.3676758)" class="st9" cx="3766.5651855" cy="185.9130859" rx="13.5305576" ry="13.5306921"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.7071068 -0.7071068 0.7071068 0.7071068 964.4237671 2595.8608398)" class="st9" cx="3615.6931152" cy="133.7679901" rx="13.5306635" ry="13.5306225"/>
|
||||||
|
</g>
|
||||||
|
<g class="st8">
|
||||||
|
<path class="st9" d="M0,103.1459427h99.549469h36.2236176h3.1195221h168.8931274h16.2521057
|
||||||
|
c6.9625854-0.5554657,12.4425964-6.3699799,12.4425964-13.4754868c0-7.4723587-6.0574951-13.5300293-13.5299988-13.5300293
|
||||||
|
h-5.6177368c-7.4726562,0-13.5301819-6.057663-13.5301819-13.5301895l0,0c0-7.4725227,6.0575256-13.5301895,13.5301819-13.5301895
|
||||||
|
h158.9099426c7.4725342,0,13.5301819,6.0576668,13.5301819,13.5301895l0,0c0,7.4725266-6.0576477,13.5301895-13.5301819,13.5301895
|
||||||
|
h-6.6762085h-58.3134155c-7.4725342,0-13.5302124,6.0576706-13.5302124,13.5300293v0.0001678
|
||||||
|
c0,7.4725189,6.0576782,13.5301895,13.5302124,13.5301895h58.3134155h60.9998474h6.7127075h39.9772949
|
||||||
|
c7.4725342,0,13.5301514,6.057663,13.5301514,13.5300293c0,7.4726868-6.0576172,13.5301895-13.5301514,13.5301895H453.1159973
|
||||||
|
h-39.3432922H294.2057495c-0.3663635,0-0.7263184-0.026123-1.0852966-0.0547028h-14.0792542
|
||||||
|
c-7.4725037,0-13.5301819,6.057663-13.5301819,13.5301819s6.0576782,13.5301971,13.5301819,13.5301971h5.6177063h52.6740417
|
||||||
|
h93.8839722h6.7127075h39.9772644c7.4725342,0,13.5301819,6.057663,13.5301819,13.5300293
|
||||||
|
c0,7.4725189-6.0576477,13.5303497-13.5301819,13.5303497h-38.7426453
|
||||||
|
c-0.4529419,0.0458374-0.9124756,0.0694885-1.3774109,0.0694885h-6.6762085h-91.1976929
|
||||||
|
c-7.4725037,0-13.5301819,6.0576782-13.5301819,13.5300293v0.0001678c0,7.4725189,6.0576782,13.5301971,13.5301819,13.5301971
|
||||||
|
h58.3135986h60.9995422h6.7128601h39.9772644c7.4725342,0,13.5302124,6.057663,13.5302124,13.530014
|
||||||
|
c0,7.4725342-6.0576782,13.530365-13.5302124,13.530365H381.7759399h-39.3432922h-70.2406311
|
||||||
|
c-7.4725342,0-13.5302124-6.0578308-13.5302124-13.530365c0-7.4723511,6.0576782-13.530014,13.5302124-13.530014h12.3024292
|
||||||
|
c7.4725342,0,13.5302124-6.0578308,13.5302124-13.530365c0-7.4723511-6.0576782-13.5300293-13.5302124-13.5300293H278.87677
|
||||||
|
c-0.4649353,0-0.924469-0.0236511-1.3774109-0.0694885h-164.853241H76.4226761
|
||||||
|
c-7.4725266,0-13.5301895-6.057663-13.5301895-13.5301971l0,0c0-7.4725189,6.057663-13.5301819,13.5301895-13.5301819h6.6763763
|
||||||
|
h29.5470657h28.7446747c7.4725189,0,13.5300293-6.0578308,13.5300293-13.5301971
|
||||||
|
c0-7.4725189-6.0575104-13.5301819-13.5300293-13.5301819h-5.6177063H83.0990524H22.0991802h-6.7126875H0"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.7376898 -0.6751398 0.6751398 0.7376898 28.7658882 199.2596588)" class="st9" cx="270.8124084" cy="62.6106911" rx="13.5305834" ry="13.5305424"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.9730566 -0.2305667 0.2305667 0.9730566 8.0834675 96.2349319)" class="st9" cx="415.8031921" cy="13.5306435" rx="13.5306473" ry="13.5305557"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.9882067 -0.153126 0.153126 0.9882067 -37.8480759 60.8010101)" class="st9" cx="375.7999268" cy="276.1125488" rx="13.5306931" ry="13.5305576"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.9879603 -0.1547078 0.1547078 0.9879603 -19.9431171 82.6774826)" class="st9" cx="521.2220459" cy="169.4710388" rx="13.5306921" ry="13.5305576"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.7071068 -0.7071068 0.7071068 0.7071068 113.8898544 509.6062927)" class="st9" cx="672.0941772" cy="117.3259354" rx="13.5306225" ry="13.5306635"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 30 KiB |
242
extensions/harvester/1.8.1-dev/plugin/img/banner.e66743c3.svg
Normal file
@ -0,0 +1,242 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 25.2.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 4197.2836914 633.0073853" style="enable-background:new 0 0 4197.2836914 633.0073853;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#2C3E50;}
|
||||||
|
.st1{fill:#8DC63F;}
|
||||||
|
.st2{fill:#6BA939;}
|
||||||
|
.st3{fill:#5C9531;}
|
||||||
|
.st4{fill:#594A41;}
|
||||||
|
.st5{fill:#DBE13A;}
|
||||||
|
.st6{fill:#BBD644;}
|
||||||
|
.st7{fill:#ABC53E;}
|
||||||
|
.st8{fill:#34495E;}
|
||||||
|
.st9{opacity:0.5;fill:#2C3E50;}
|
||||||
|
</style>
|
||||||
|
<rect class="st0" width="4197.2836914" height="633.0073853"/>
|
||||||
|
<g>
|
||||||
|
<path id="path598" class="st1" d="M3443.8837891,580.0073853
|
||||||
|
c-175.1999512-106.2000122-400.3000488-170.1000061-645.8999023-170.1000061c-284.1999512,0-541,85.5-724.6000977,223.1000061
|
||||||
|
h1370.5V580.0073853z"/>
|
||||||
|
<g>
|
||||||
|
<path id="path600" class="st2" d="M2780.0837402,473.9074097c0,22.9000244-18.5998535,41.5-41.5,41.5
|
||||||
|
c-22.8999023,0-41.5-18.5999756-41.5-41.5c0-22.8999939,18.6000977-41.5,41.5-41.5
|
||||||
|
C2761.5837402,432.4074097,2780.0837402,451.0074158,2780.0837402,473.9074097z"/>
|
||||||
|
<path id="path602" class="st3" d="M2780.0837402,473.9074097c0-22.8999939-18.5998535-41.5-41.5-41.5v82.9000244
|
||||||
|
C2761.5837402,515.3074341,2780.0837402,496.8074341,2780.0837402,473.9074097z"/>
|
||||||
|
<path id="path604" class="st4" d="M2738.6838379,540.0073853c-1.0998535,0-2.0998535-0.9000244-2.0998535-2.0999756v-58
|
||||||
|
c0-1.0999756,0.8999023-2.0999756,2.0998535-2.0999756c1.1000977,0,2.1000977,0.9000244,2.1000977,2.0999756v58
|
||||||
|
C2740.7839355,539.1074219,2739.7839355,540.0073853,2738.6838379,540.0073853z"/>
|
||||||
|
<path id="path606" class="st4" d="M2738.6838379,503.1074219c-0.5,0-1.0998535-0.2000122-1.5-0.5999756
|
||||||
|
c-0.8000488-0.7999878-0.8000488-2.0999756,0-2.9000244l8.6000977-8.5999756c0.8000488-0.7999878,2.0998535-0.7999878,2.8999023,0
|
||||||
|
s0.8000488,2.0999756,0,2.9000244l-8.5998535,8.5999756
|
||||||
|
C2739.6838379,502.9074707,2739.1838379,503.1074219,2738.6838379,503.1074219z"/>
|
||||||
|
<path id="path608" class="st4" d="M2738.6838379,495.6074219c-0.5,0-1.0998535-0.2000122-1.5-0.5999756l-11.5-11.5
|
||||||
|
c-0.8000488-0.7999878-0.8000488-2.0999756,0-2.9000244c0.8000488-0.7999878,2.1000977-0.7999878,2.9001465,0l11.5,11.5
|
||||||
|
c0.8000488,0.7999878,0.8000488,2.0999756,0,2.9000244
|
||||||
|
C2739.6838379,495.4074707,2739.1838379,495.6074219,2738.6838379,495.6074219z"/>
|
||||||
|
</g>
|
||||||
|
<path id="path610" class="st5" d="M2386.8837891,506.1073914c0-26-7.3999023-56.1000061-22.3999023-56.1000061
|
||||||
|
s-22.4001465,30.1000061-22.4001465,56.1000061c0,9.4999695,7.4001465,17.1999817,22.4001465,17.1999817
|
||||||
|
C2379.4838867,523.4074097,2386.8837891,515.7073975,2386.8837891,506.1073914z"/>
|
||||||
|
<path id="path612" class="st6" d="M2386.8837891,506.1073914c0-26-7.3999023-56.1000061-22.3999023-56.1000061v73.2999878
|
||||||
|
c15,0.0999756,22.3999023-7.6000366,22.3999023-17.2000122V506.1073914z"/>
|
||||||
|
<path id="path614" class="st4" d="M2364.4838867,550.4074097c-1.1000977,0-2.1000977-0.9000244-2.1000977-2.1000366v-64.1999512
|
||||||
|
c0-1.1000061,0.9001465-2.1000061,2.1000977-2.1000061c1.0998535,0,2.0998535,0.8999939,2.0998535,2.1000061v64.2000122
|
||||||
|
C2366.5837402,549.5074463,2365.6838379,550.4074097,2364.4838867,550.4074097L2364.4838867,550.4074097z"/>
|
||||||
|
<path id="path616" class="st4" d="M2364.4838867,509.7073975c-0.5,0-1.1000977-0.2000122-1.5-0.6000061l-9.5-9.5
|
||||||
|
c-0.8000488-0.7999878-0.8000488-2.1000061,0-2.8999939s2.0998535-0.7999878,2.8999023,0l9.5,9.5
|
||||||
|
c0.8000488,0.7999878,0.8000488,2.1000061,0,2.8999939
|
||||||
|
C2365.5837402,509.5073853,2365.0837402,509.7073975,2364.4838867,509.7073975z"/>
|
||||||
|
<path id="path618" class="st4" d="M2364.4838867,501.3074036c-0.5,0-1.1000977-0.2000122-1.5-0.6000061
|
||||||
|
c-0.8000488-0.7999878-0.8000488-2.1000061,0-2.8999939l12.6999512-12.7000122
|
||||||
|
c0.8000488-0.7999878,2.0998535-0.7999878,2.8999023,0s0.8000488,2.1000061,0,2.8999939l-12.6999512,12.7000122
|
||||||
|
C2365.5837402,501.1073914,2365.0837402,501.3074036,2364.4838867,501.3074036z"/>
|
||||||
|
<path id="path620" class="st6" d="M3489.7836914,322.4074402c-301.3999023,0-562.1999512,126.5-688,310.6000061h653.3000488
|
||||||
|
h88.8999023h653.3000488c-125.8999023-184.1000366-386.6999512-310.6000366-688.3000488-310.6000366
|
||||||
|
c-3.1999512,0-6.3999023,0.1000061-9.5998535,0.1000061c-3.1999512-0.1000061-6.3999023-0.1000061-9.6000977-0.1000061V322.4074402
|
||||||
|
z"/>
|
||||||
|
<g id="g642" transform="translate(0,150.9074)">
|
||||||
|
<path id="path622" class="st7" d="M3340.7836914,335.4000244c0-9-7.2998047-16.2999878-16.2998047-16.2999878
|
||||||
|
s-16.3000488,7.2999878-16.3000488,16.2999878s7.3000488,16.2999878,16.3000488,16.2999878
|
||||||
|
S3340.7836914,344.4000244,3340.7836914,335.4000244z"/>
|
||||||
|
<path id="path624" class="st7" d="M3475.1838379,270.2000122c0-9-7.3000488-16.3000031-16.3000488-16.3000031
|
||||||
|
s-16.3000488,7.3000031-16.3000488,16.3000031S3449.8837891,286.5,3458.8837891,286.5
|
||||||
|
S3475.1838379,279.2000122,3475.1838379,270.2000122z"/>
|
||||||
|
<path id="path626" class="st7" d="M3298.7839355,384.2999878c-9,0-16.3000488,7.2999878-16.3000488,16.2999878
|
||||||
|
s7.2998047,16.2999878,16.3000488,16.2999878h97.0998535c9,0,16.3000488,7.2999878,16.3000488,16.2999878
|
||||||
|
s-7.3000488,16.2999878-16.3000488,16.2999878h-21.3999023c-9,0-16.3000488,7.2999878-16.3000488,16.2999878
|
||||||
|
s7.3000488,16.2999878,16.3000488,16.2999878h289.5h52c9,0,16.2998047-7.2999878,16.2998047-16.2999878
|
||||||
|
s-7.2998047-16.2999878-16.2998047-16.2999878h-56.7001953c-9,0-16.2998047-7.2999878-16.2998047-16.2999878
|
||||||
|
s7.2998047-16.2999878,16.2998047-16.2999878h110c9,0,16.3000488-7.2999878,16.3000488-16.2999878
|
||||||
|
s-7.3000488-16.2999878-16.3000488-16.2999878h-68.5998535c-9,0-16.3000488-7.2999878-16.3000488-16.2999878
|
||||||
|
s7.3000488-16.2999878,16.3000488-16.2999878h104.2998047c9,0,16.3000488-7.2999878,16.3000488-16.2999878
|
||||||
|
s-7.3000488-16.2999878-16.3000488-16.2999878h-57.0998535c-9,0-16.3000488-7.2999878-16.3000488-16.2999878
|
||||||
|
s7.3000488-16.2999878,16.3000488-16.2999878h21.3999023c9,0,16.3000488-7.2999878,16.3000488-16.2999878
|
||||||
|
s-7.3000488-16.3000031-16.3000488-16.3000031h-119.5h-142c-9,0-16.2998047,7.3000031-16.2998047,16.3000031
|
||||||
|
s7.2998047,16.2999878,16.2998047,16.2999878h56.7001953c9,0,16.2998047,7.2999878,16.2998047,16.2999878
|
||||||
|
s-7.2998047,16.2999878-16.2998047,16.2999878h-190c-9,0-16.3000488,7.2999878-16.3000488,16.2999878
|
||||||
|
s7.3000488,16.2999878,16.3000488,16.2999878h68.5998535c9,0,16.3000488,7.2999878,16.3000488,16.2999878
|
||||||
|
s-7.3000488,16.2999878-16.3000488,16.2999878h-144.3000488H3298.7839355z"/>
|
||||||
|
<path id="path628" class="st7" d="M3802.9838867,400.5999756c0,9,7.2998047,16.2999878,16.2998047,16.2999878
|
||||||
|
s16.3000488-7.2999878,16.3000488-16.2999878s-7.3000488-16.2999878-16.3000488-16.2999878
|
||||||
|
S3802.9838867,391.5999756,3802.9838867,400.5999756z"/>
|
||||||
|
<path id="path630" class="st7" d="M3748.5837402,465.7999878c0,9,7.3000488,16.2999878,16.3000488,16.2999878
|
||||||
|
s16.3000488-7.2999878,16.3000488-16.2999878S3773.8837891,449.5,3764.8837891,449.5
|
||||||
|
S3748.5837402,456.7999878,3748.5837402,465.7999878z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path id="path654" class="st1" d="M3159.2836914,303.9074097c25.6000977,0,46.4001465,20.6999817,46.4001465,46.3999939
|
||||||
|
c0,25.6000061-20.6999512,46.3999939-46.4001465,46.3999939c-25.5998535,0-46.3999023-20.6999817-46.3999023-46.3999939
|
||||||
|
C3112.8837891,324.6074219,3133.6838379,303.8074036,3159.2836914,303.9074097z"/>
|
||||||
|
<path id="path656" class="st2" d="M3159.2836914,396.8074036v-92.8999939
|
||||||
|
c-25.5998535,0-46.3999023,20.6999817-46.3999023,46.3999939
|
||||||
|
C3112.8837891,375.9074097,3133.6838379,396.7073975,3159.2836914,396.8074036z"/>
|
||||||
|
<path id="path658" class="st4" d="M3157.2836914,422.0073853v-65.1000061c0-1.2000122,1-2.1000061,2.1000977-2.1000061
|
||||||
|
c1.1999512,0,2.0998535,1,2.0998535,2.1000061v65.1000061c0,1.2000122-1,2.1000061-2.0998535,2.1000061
|
||||||
|
C3158.1838379,424.1073914,3157.2836914,423.2073975,3157.2836914,422.0073853z"/>
|
||||||
|
<path id="path660" class="st4" d="M3157.9836426,382.2073975l-9.6999512-9.7000122
|
||||||
|
c-0.8000488-0.7999878-0.8000488-2.1000061,0-2.8999939s2.1000977-0.7999878,2.9001465,0l9.6999512,9.7000122
|
||||||
|
c0.8000488,0.7999878,0.8000488,2.1000061,0,2.8999939c-0.4001465,0.3999939-1,0.6000061-1.5,0.6000061
|
||||||
|
S3158.2836914,382.6073914,3157.9836426,382.2073975z"/>
|
||||||
|
<path id="path662" class="st4" d="M3157.9836426,373.7073975c-0.7998047-0.7999878-0.7998047-2.1000061,0-2.8999939
|
||||||
|
l12.8000488-12.7999878c0.8000488-0.7999878,2.1000977-0.7999878,2.9001465,0
|
||||||
|
c0.7998047,0.7999878,0.7998047,2.1000061,0,2.8999939l-12.8000488,12.7999878c-0.4001465,0.3999939-1,0.6000061-1.5,0.6000061
|
||||||
|
S3158.2836914,374.1073914,3157.9836426,373.7073975z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path id="path694" class="st5" d="M3559.3447266,517.8883667c-17.3000488,0-31.3000488-14-31.3000488-31.2999878
|
||||||
|
c0-47.2000122,14-125.6000061,31.3000488-125.6000061c17.2998047,0,31.2998047,78.4000244,31.2998047,125.6000061
|
||||||
|
C3590.6445312,503.8883667,3576.6445312,517.8883667,3559.3447266,517.8883667z"/>
|
||||||
|
<path id="path696" class="st6" d="M3559.3447266,517.8883667V360.9883728
|
||||||
|
c17.2998047,0,31.2998047,78.4000244,31.2998047,125.6000061
|
||||||
|
C3590.6445312,503.8883667,3576.6445312,517.8883667,3559.3447266,517.8883667z"/>
|
||||||
|
<path id="path698" class="st4" d="M3557.2446289,550.9884033v-85.1000366c0-1.2000122,1-2.1000061,2.1000977-2.1000061
|
||||||
|
c1.1999512,0,2.0998535,1,2.0998535,2.1000061v85.1000366c0,1.2000122-1,2.0999756-2.0998535,2.0999756
|
||||||
|
C3558.1447754,553.0883789,3557.2446289,552.0883789,3557.2446289,550.9884033z"/>
|
||||||
|
<path id="path700" class="st4" d="M3557.9445801,498.2883911l-12.5998535-12.6000061
|
||||||
|
c-0.8000488-0.7999878-0.8000488-2.1000061,0-2.8999939s2.0998535-0.7999878,2.8999023,0l12.6000977,12.7000122
|
||||||
|
c0.7998047,0.7999878,0.7998047,2.1000061,0,2.8999939c-0.4001465,0.3999939-1,0.6000061-1.5,0.6000061
|
||||||
|
S3558.2446289,498.7883911,3557.9445801,498.2883911z"/>
|
||||||
|
<path id="path702" class="st4" d="M3557.8447266,487.3883972c-0.8000488-0.7999878-0.8000488-2.1000061,0-2.8999939
|
||||||
|
l16.7998047-16.7999878c0.8000488-0.7999878,2.1000977-0.7999878,2.9001465,0s0.8000488,2.1000061,0,2.8999939
|
||||||
|
l-16.6999512,16.7999878c-0.4001465,0.3999939-1,0.6000061-1.5,0.6000061S3558.2446289,487.7883911,3557.8447266,487.3883972z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path id="path714" class="st1" d="M3404.1896973,333.3871155c-19.8999023,0-29.6999512-10.3000488-29.6999512-22.9000244
|
||||||
|
c0-34.5,9.7998047-74.4000092,29.6999512-74.4000092c19.8999023,0,29.6999512,39.9000092,29.6999512,74.4000092
|
||||||
|
C3433.8896484,323.1871033,3424.0895996,333.3871155,3404.1896973,333.3871155z"/>
|
||||||
|
<path id="path716" class="st2" d="M3404.1896973,333.2870789v-97.1999969
|
||||||
|
c19.8999023,0,29.6999512,39.9000092,29.6999512,74.4000092
|
||||||
|
C3433.8896484,323.1871033,3424.0895996,333.3870544,3404.1896973,333.2870789z"/>
|
||||||
|
<path id="path718" class="st4" d="M3402.0895996,366.4870911v-85.0999756c0-1.1999512,1-2.0999756,2.1000977-2.0999756
|
||||||
|
c1.1999512,0,2.0998535,1,2.0998535,2.0999756v85.0999756c0,1.1999512-1,2.0999756-2.0998535,2.0999756
|
||||||
|
C3403.0895996,368.5870667,3402.1896973,367.6871033,3402.0895996,366.4870911z"/>
|
||||||
|
<path id="path720" class="st4" d="M3402.7895508,313.7870789l-12.5998535-12.5999756
|
||||||
|
c-0.8000488-0.8000488-0.8000488-2.1000366,0-2.9000244s2.0998535-0.7999878,2.8999023,0l12.6000977,12.7000122
|
||||||
|
c0.8000488,0.8000488,0.8000488,2.1000366,0,2.9000244c-0.4001465,0.3999634-1,0.5999756-1.5,0.5999756
|
||||||
|
S3403.1896973,314.2870789,3402.7895508,313.7870789z"/>
|
||||||
|
<path id="path722" class="st4" d="M3402.7895508,302.8871155c-0.8000488-0.8000488-0.8000488-2.1000366,0-2.9000244
|
||||||
|
l16.8000488-16.7999878c0.8000488-0.7999878,2.1000977-0.7999878,2.9001465,0
|
||||||
|
c0.8000488,0.8000488,0.8000488,2.1000366,0,2.9000244l-16.8000488,16.7999878c-0.4001465,0.3999634-1,0.5999756-1.5,0.5999756
|
||||||
|
S3403.1896973,303.2871399,3402.7895508,302.8871155z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path class="st8" d="M2760.2143555,182.9998169h30.456543c7.9172363,0,14.3356934-6.4185791,14.3356934-14.3361053
|
||||||
|
c0-7.9173431-6.418457-14.3357544-14.3356934-14.3357544h-5.9523926c-7.9174805,0-14.3359375-6.4184113-14.3359375-14.3359375
|
||||||
|
v-0.0001831c0-7.9173431,6.418457-14.3357544,14.3359375-14.3357544h133.5310059
|
||||||
|
c7.9174805,0,14.3359375,6.4184113,14.3359375,14.3357544v0.0001831c0,7.9175262-6.418457,14.3359375-14.3359375,14.3359375
|
||||||
|
h-7.0739746h-61.7858887c-7.9174805,0-14.3359375,6.4184113-14.3359375,14.3357544v0.0001678
|
||||||
|
c0,7.9175262,6.418457,14.3359375,14.3359375,14.3359375h61.7858887h64.6325684h7.1123047h24.9370117
|
||||||
|
c7.9174805,0,14.3359375,6.4184113,14.3359375,14.3357697c0,7.917511-6.418457,14.3359222-14.3359375,14.3359222h-20.9790039
|
||||||
|
c-0.0693359,0.0010529-0.1362305,0.0104523-0.2055664,0.0104523h-7.0739746h-61.7858887
|
||||||
|
c-7.9177246,0-14.3359375,6.4184113-14.3359375,14.3359375c0,7.917511,6.4182129,14.3359222,14.3359375,14.3359222h61.7858887
|
||||||
|
h64.6323242h7.1125488h42.3581543c7.9174805,0,14.3359375,6.4184113,14.3359375,14.3359375
|
||||||
|
c0,7.9173584-6.418457,14.3359375-14.3359375,14.3359375h-131.5332031h-41.6860352h-91.8449707
|
||||||
|
c-7.9174805,0-14.3356934-6.4185791-14.3356934-14.3359375c0-7.9175262,6.4182129-14.3359375,14.3356934-14.3359375h30.456543
|
||||||
|
c7.9172363,0,14.3359375-6.4184113,14.3359375-14.3359222c0-7.9175262-6.4187012-14.3359375-14.3359375-14.3359375h-5.9523926
|
||||||
|
c-0.0693359,0-0.1364746-0.0093994-0.2055664-0.0104523h-0.8769531h-91.8449707
|
||||||
|
c-7.9174805,0-14.3356934-6.4184113-14.3356934-14.3359222
|
||||||
|
C2745.8786621,189.4182281,2752.296875,182.9998169,2760.2143555,182.9998169z"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.7071068 -0.7071068 0.7071068 0.7071068 656.4876099 1979.5828857)" class="st8" cx="2717.8117676" cy="197.3408508" rx="14.3364344" ry="14.3363905"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.2305667 -0.9730566 0.9730566 0.2305667 2145.1455078 2992.8227539)" class="st8" cx="2964.9951172" cy="139.9924927" rx="14.3363209" ry="14.3364172"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.1605944 -0.9870205 0.9870205 0.1605944 2301.5793457 2846.4716797)" class="st8" cx="2824.310791" cy="70.0723495" rx="14.3363218" ry="14.3364592"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.8951613 -0.4457424 0.4457424 0.8951613 216.8301849 1430.5336914)" class="st8" cx="3149.512207" cy="254.3188477" rx="14.3364563" ry="14.3364019"/>
|
||||||
|
<circle class="st8" cx="2905.8103027" cy="319.886261" r="14.3364344"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path class="st8" d="M4197.2836914,119.5879898h-124.1401367h-36.2236328h-3.1196289h-86.6828613h-16.2521973
|
||||||
|
c-6.9624023-0.5554581-12.442627-6.3699799-12.442627-13.4754791c0-7.4723663,6.0576172-13.5300293,13.5300293-13.5300293
|
||||||
|
h5.6179199c7.4726562,0,13.5300293-6.0576706,13.5300293-13.5301895l0,0c0-7.4725266-6.057373-13.5301971-13.5300293-13.5301971
|
||||||
|
h-126.0258789c-7.4726562,0-13.5302734,6.0576706-13.5302734,13.5301971l0,0
|
||||||
|
c0,7.4725189,6.0576172,13.5301895,13.5302734,13.5301895h6.6762695h58.3132324
|
||||||
|
c7.4726562,0,13.5302734,6.057663,13.5302734,13.5300293v0.0001602c0,7.4725266-6.0576172,13.5301895-13.5302734,13.5301895
|
||||||
|
h-58.3132324h-61h-6.7126465h-39.9772949c-7.4726562,0-13.5302734,6.0576706-13.5302734,13.5300369
|
||||||
|
c0,7.4726868,6.0576172,13.5301819,13.5302734,13.5301819h124.1403809h39.3432617h86.6828613
|
||||||
|
c0.3662109,0,0.7263184-0.026123,1.0852051-0.0547028h14.0793457c7.4724121,0,13.5300293,6.057663,13.5300293,13.5301819
|
||||||
|
c0,7.4725342-6.0576172,13.5301971-13.5300293,13.5301971h-5.6179199h-52.6738281h-61h-6.7126465h-39.9772949
|
||||||
|
c-7.4724121,0-13.5302734,6.057663-13.5302734,13.5300293c0,7.4725189,6.0578613,13.5303497,13.5302734,13.5303497h38.7426758
|
||||||
|
c0.4528809,0.0458374,0.9123535,0.0695038,1.3774414,0.0695038h6.6760254h58.3137207
|
||||||
|
c7.4724121,0,13.5302734,6.057663,13.5302734,13.530014v0.0001678c0,7.4725342-6.0578613,13.5301971-13.5302734,13.5301971
|
||||||
|
h-58.3137207h-60.9995117h-6.7128906h-39.9770508c-7.4726562,0-13.5302734,6.057663-13.5302734,13.5300293
|
||||||
|
c0,7.4725189,6.0576172,13.5303497,13.5302734,13.5303497h124.1401367h39.3432617h86.6828613
|
||||||
|
c7.4724121,0,13.5300293-6.0578308,13.5300293-13.5303497c0-7.4723663-6.0576172-13.5300293-13.5300293-13.5300293h-28.7446289
|
||||||
|
c-7.4724121,0-13.5302734-6.0578308-13.5302734-13.530365c0-7.4723511,6.0578613-13.530014,13.5302734-13.530014h5.6176758
|
||||||
|
c0.4650879,0,0.9245605-0.0236664,1.3774414-0.0695038h82.6430664h36.2231445
|
||||||
|
c7.4726562,0,13.5302734-6.057663,13.5302734-13.5301819l0,0c0-7.4725342-6.0576172-13.5301971-13.5302734-13.5301971h-6.6762695
|
||||||
|
h-29.546875h-28.744873c-7.4724121,0-13.5300293-6.0578308-13.5300293-13.5301971
|
||||||
|
c0-7.4725189,6.0576172-13.5301819,13.5300293-13.5301819h5.6179199h52.6738281h61h6.7128906h39.9770508"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.2400311 -0.9707652 0.9707652 0.2400311 2857.5102539 4130.8178711)" class="st8" cx="4067.0566406" cy="240.352829" rx="13.5306482" ry="13.5305595"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.6751397 -0.7376899 0.7376899 0.6751397 1235.9562988 2964.7043457)" class="st8" cx="3984.0908203" cy="79.052742" rx="13.5305424" ry="13.5305834"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.2305667 -0.9730565 0.9730565 0.2305667 2966.0673828 3778.0703125)" class="st8" cx="3871.9841309" cy="13.5306435" rx="13.5305557" ry="13.5306473"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.153126 -0.9882067 0.9882067 0.153126 2996.0073242 4081.1125488)" class="st8" cx="3879.1032715" cy="292.5545959" rx="13.5305576" ry="13.5306931"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.1547078 -0.9879603 0.9879603 0.1547078 3000.173584 3878.3676758)" class="st8" cx="3766.5651855" cy="185.9130859" rx="13.5305576" ry="13.5306921"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.7071068 -0.7071068 0.7071068 0.7071068 964.4237671 2595.8608398)" class="st8" cx="3615.6931152" cy="133.7679901" rx="13.5306635" ry="13.5306225"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path class="st8" d="M0,103.1459427h99.549469h36.2236176h3.1195221h168.8931274h16.2521057
|
||||||
|
c6.9625854-0.5554657,12.4425964-6.3699799,12.4425964-13.4754868c0-7.4723587-6.0574951-13.5300293-13.5299988-13.5300293
|
||||||
|
h-5.6177368c-7.4726562,0-13.5301819-6.057663-13.5301819-13.5301895l0,0c0-7.4725227,6.0575256-13.5301895,13.5301819-13.5301895
|
||||||
|
h158.9099426c7.4725342,0,13.5301819,6.0576668,13.5301819,13.5301895l0,0c0,7.4725266-6.0576477,13.5301895-13.5301819,13.5301895
|
||||||
|
h-6.6762085h-58.3134155c-7.4725342,0-13.5302124,6.0576706-13.5302124,13.5300293v0.0001678
|
||||||
|
c0,7.4725189,6.0576782,13.5301895,13.5302124,13.5301895h58.3134155h60.9998474h6.7127075h39.9772949
|
||||||
|
c7.4725342,0,13.5301514,6.057663,13.5301514,13.5300293c0,7.4726868-6.0576172,13.5301895-13.5301514,13.5301895H453.1159973
|
||||||
|
h-39.3432922H294.2057495c-0.3663635,0-0.7263184-0.026123-1.0852966-0.0547028h-14.0792542
|
||||||
|
c-7.4725037,0-13.5301819,6.057663-13.5301819,13.5301819s6.0576782,13.5301971,13.5301819,13.5301971h5.6177063h52.6740417
|
||||||
|
h93.8839722h6.7127075h39.9772644c7.4725342,0,13.5301819,6.057663,13.5301819,13.5300293
|
||||||
|
c0,7.4725189-6.0576477,13.5303497-13.5301819,13.5303497h-38.7426453
|
||||||
|
c-0.4529419,0.0458374-0.9124756,0.0694885-1.3774109,0.0694885h-6.6762085h-91.1976929
|
||||||
|
c-7.4725037,0-13.5301819,6.0576782-13.5301819,13.5300293v0.0001678c0,7.4725189,6.0576782,13.5301971,13.5301819,13.5301971
|
||||||
|
h58.3135986h60.9995422h6.7128601h39.9772644c7.4725342,0,13.5302124,6.057663,13.5302124,13.530014
|
||||||
|
c0,7.4725342-6.0576782,13.530365-13.5302124,13.530365H381.7759399h-39.3432922h-70.2406311
|
||||||
|
c-7.4725342,0-13.5302124-6.0578308-13.5302124-13.530365c0-7.4723511,6.0576782-13.530014,13.5302124-13.530014h12.3024292
|
||||||
|
c7.4725342,0,13.5302124-6.0578308,13.5302124-13.530365c0-7.4723511-6.0576782-13.5300293-13.5302124-13.5300293H278.87677
|
||||||
|
c-0.4649353,0-0.924469-0.0236511-1.3774109-0.0694885h-164.853241H76.4226761
|
||||||
|
c-7.4725266,0-13.5301895-6.057663-13.5301895-13.5301971l0,0c0-7.4725189,6.057663-13.5301819,13.5301895-13.5301819h6.6763763
|
||||||
|
h29.5470657h28.7446747c7.4725189,0,13.5300293-6.0578308,13.5300293-13.5301971
|
||||||
|
c0-7.4725189-6.0575104-13.5301819-13.5300293-13.5301819h-5.6177063H83.0990524H22.0991802h-6.7126875H0"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.7376898 -0.6751398 0.6751398 0.7376898 28.7658882 199.2596588)" class="st8" cx="270.8124084" cy="62.6106911" rx="13.5305834" ry="13.5305424"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.9730566 -0.2305667 0.2305667 0.9730566 8.0834675 96.2349319)" class="st8" cx="415.8031921" cy="13.5306435" rx="13.5306473" ry="13.5305557"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.9882067 -0.153126 0.153126 0.9882067 -37.8480759 60.8010101)" class="st8" cx="375.7999268" cy="276.1125488" rx="13.5306931" ry="13.5305576"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.9879603 -0.1547078 0.1547078 0.9879603 -19.9431171 82.6774826)" class="st8" cx="521.2220459" cy="169.4710388" rx="13.5306921" ry="13.5305576"/>
|
||||||
|
|
||||||
|
<ellipse transform="matrix(0.7071068 -0.7071068 0.7071068 0.7071068 113.8898544 509.6062927)" class="st8" cx="672.0941772" cy="117.3259354" rx="13.5306225" ry="13.5306635"/>
|
||||||
|
</g>
|
||||||
|
<rect class="st9" width="4197.2836914" height="633.0073853"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 30 KiB |
@ -0,0 +1,21 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 25.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 361 361" style="enable-background:new 0 0 361 361;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:none;stroke:#0C322C;stroke-width:17;stroke-miterlimit:10;}
|
||||||
|
.st1{fill:none;stroke:#30BA77;stroke-width:17;stroke-miterlimit:10;}
|
||||||
|
</style>
|
||||||
|
<g id="Layer_1">
|
||||||
|
<path class="st0" d="M72.5,216.5h-36v-54c0-24.85,20.15-45,45-45h9v-27c0-24.85,20.15-45,45-45h99c24.85,0,45,20.15,45,45v45h0
|
||||||
|
c24.85,0,45,20.15,45,45v36h-36"/>
|
||||||
|
<g>
|
||||||
|
<polyline class="st1" points="194.96,168.74 240.49,160.49 232.24,114.96 "/>
|
||||||
|
<path class="st1" d="M107.11,245.9c-13.06-28.81-7.75-63.92,15.94-87.61c30.54-30.54,80.06-30.54,110.6,0"/>
|
||||||
|
<polyline class="st1" points="167.76,262.75 122.23,271 130.48,316.53 "/>
|
||||||
|
<path class="st1" d="M257.26,189.54c10.89,28.02,5.02,61.05-17.6,83.67c-30.54,30.54-80.06,30.54-110.6,0"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="Outlines">
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |