chore(clean): kick start
@@ -1,33 +0,0 @@
|
||||
# Update the arg in docker-compose.yml or devcontainer.json to switch arg versions
|
||||
ARG NODE_VERSION=18
|
||||
|
||||
# main image
|
||||
FROM mcr.microsoft.com/devcontainers/javascript-node:${NODE_VERSION}
|
||||
|
||||
# Update the arg in docker-compose.yml or devcontainer.json to switch arg versions
|
||||
ARG GO_VERSION=latest
|
||||
ARG HUGO_VERSION=latest
|
||||
|
||||
# Download necessary tools
|
||||
RUN apt-get update && apt-get install -y \
|
||||
ca-certificates openssl git curl && \
|
||||
rm -rf /var/lib/apt/lists/* && \
|
||||
# set architecture
|
||||
case $(uname -m) in \
|
||||
aarch64) \
|
||||
export ARCH=arm64 ;; \
|
||||
*) \
|
||||
export ARCH=amd64 ;; \
|
||||
esac && \
|
||||
# install Hugo
|
||||
wget -O hugo_extended_${HUGO_VERSION}.tar.gz https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-${ARCH}.tar.gz && \
|
||||
tar xf hugo_extended_${HUGO_VERSION}.tar.gz && \
|
||||
mv hugo /usr/bin/hugo && \
|
||||
rm hugo_extended_${HUGO_VERSION}.tar.gz && \
|
||||
# install Go
|
||||
wget -O go${GO_VERSION}.linux-${ARCH}.tar.gz https://dl.google.com/go/go${GO_VERSION}.linux-${ARCH}.tar.gz && \
|
||||
tar -C /usr/local -xzf go${GO_VERSION}.linux-${ARCH}.tar.gz && \
|
||||
rm go${GO_VERSION}.linux-${ARCH}.tar.gz
|
||||
|
||||
# Export Go path
|
||||
ENV PATH=$PATH:/usr/local/go/bin
|
@@ -1,24 +0,0 @@
|
||||
{
|
||||
"name": "Hugo",
|
||||
"build": {
|
||||
"dockerfile": "Dockerfile",
|
||||
"args": {
|
||||
"NODE_VERSION": "20",
|
||||
"GO_VERSION": "1.21.4",
|
||||
"HUGO_VERSION": "0.120.4"
|
||||
}
|
||||
},
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"settings": {},
|
||||
"extensions": [
|
||||
"bradlc.vscode-tailwindcss",
|
||||
"budparr.language-hugo-vscode",
|
||||
"tamasfe.even-better-toml"
|
||||
]
|
||||
}
|
||||
},
|
||||
"remoteUser": "node",
|
||||
"postCreateCommand": "npm install && npm run dev:example",
|
||||
"forwardPorts": [1313]
|
||||
}
|
@@ -1,14 +0,0 @@
|
||||
; https://editorconfig.org
|
||||
|
||||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
end_of_line = lf
|
||||
indent_size = 2
|
||||
indent_style = space
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
17
.gitignore
vendored
@@ -1,17 +0,0 @@
|
||||
Thumbs.db
|
||||
.DS_Store
|
||||
.dist
|
||||
.tmp
|
||||
.lock
|
||||
.sass-cache
|
||||
npm-debug.log
|
||||
node_modules
|
||||
builds
|
||||
package-lock.json
|
||||
public
|
||||
resources
|
||||
.hugo_build.lock
|
||||
jsconfig.json
|
||||
hugo_stats.json
|
||||
go.sum
|
||||
yarn.lock
|
@@ -1,38 +0,0 @@
|
||||
stages:
|
||||
- build
|
||||
|
||||
variables:
|
||||
HUGO_ENV: production
|
||||
HUGO_VERSION: "0.121.2"
|
||||
GO_VERSION: "1.20.5"
|
||||
NODE_VERSION: "18.16.1"
|
||||
|
||||
cache:
|
||||
paths:
|
||||
- node_modules/
|
||||
|
||||
default:
|
||||
image: node:${NODE_VERSION}
|
||||
before_script:
|
||||
- echo "USING NODE ${NODE_VERSION}"
|
||||
- apt-get update && apt-get install -y curl
|
||||
- curl -LO "https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz"
|
||||
- tar -xvf hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz
|
||||
- mv hugo /usr/local/bin/
|
||||
- rm hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz
|
||||
- echo "HUGO ${HUGO_VERSION} INSTALLED"
|
||||
- curl -LO "https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz"
|
||||
- tar -C /usr/local -xzf go${GO_VERSION}.linux-amd64.tar.gz
|
||||
- export PATH=$PATH:/usr/local/go/bin
|
||||
- rm go${GO_VERSION}.linux-amd64.tar.gz
|
||||
- echo "GO ${GO_VERSION} INSTALLED"
|
||||
- npm install
|
||||
|
||||
pages:
|
||||
stage: build
|
||||
script:
|
||||
- npm run project-setup
|
||||
- npm run build
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
59
.jshintrc
@@ -1,59 +0,0 @@
|
||||
{
|
||||
"maxerr": 50,
|
||||
"bitwise": true,
|
||||
"camelcase": false,
|
||||
"curly": true,
|
||||
"eqeqeq": true,
|
||||
"forin": true,
|
||||
"freeze": true,
|
||||
"immed": true,
|
||||
"indent": 2,
|
||||
"latedef": true,
|
||||
"newcap": false,
|
||||
"noarg": true,
|
||||
"noempty": true,
|
||||
"nonbsp": true,
|
||||
"nonew": true,
|
||||
"plusplus": false,
|
||||
"undef": true,
|
||||
"unused": false,
|
||||
"strict": true,
|
||||
"maxparams": false,
|
||||
"maxdepth": 4,
|
||||
"maxstatements": false,
|
||||
"maxcomplexity": false,
|
||||
"maxlen": 400,
|
||||
"browser": true,
|
||||
"devel": true,
|
||||
"asi": false,
|
||||
"boss": false,
|
||||
"debug": false,
|
||||
"eqnull": false,
|
||||
"es3": false,
|
||||
"es5": false,
|
||||
"esversion": 12,
|
||||
"moz": false,
|
||||
"evil": true,
|
||||
"expr": true,
|
||||
"funcscope": false,
|
||||
"globalstrict": false,
|
||||
"iterator": false,
|
||||
"lastsemic": false,
|
||||
"laxbreak": false,
|
||||
"laxcomma": false,
|
||||
"loopfunc": true,
|
||||
"multistr": true,
|
||||
"noyield": false,
|
||||
"notypeof": false,
|
||||
"proto": false,
|
||||
"scripturl": false,
|
||||
"shadow": false,
|
||||
"sub": false,
|
||||
"supernew": false,
|
||||
"validthis": false,
|
||||
"globals": {
|
||||
"jQuery": false,
|
||||
"google": false,
|
||||
"$": false
|
||||
}
|
||||
}
|
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"MD033": false,
|
||||
"MD034": false,
|
||||
"MD013": false
|
||||
}
|
13
.prettierrc
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"plugins": ["prettier-plugin-go-template"],
|
||||
"overrides": [
|
||||
{
|
||||
"files": ["*.html"],
|
||||
"options": {
|
||||
"parser": "go-template",
|
||||
"goTemplateBracketSpacing": true,
|
||||
"bracketSameLine": true
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
21
LICENSE
@@ -1,21 +0,0 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2023 - Present, Zeon Studio
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
206
README.md
@@ -1,206 +0,0 @@
|
||||
Version: 2024-04-25
|
||||
|
||||
# Privacy Policy
|
||||
|
||||
## 1. Privacy Policy
|
||||
|
||||
The Snigdha OS Team (hereinafter referred to as "Snigdha OS" or "we") operates the website and its services available on the Internet at https://snigdhaos.org/ including the respective sub-directories (hereinafter referred to as the "website").
|
||||
|
||||
With this privacy policy, we would like to inform you which data will be processed in which form when you visit the website or use its services. Where the GDPR applies, we hereby also comply with our duty to inform you in accordance with Art. 13 and Art. 14 of the EU-General Data Protection Regulation (GDPR).
|
||||
|
||||
## 2. Controller
|
||||
|
||||
The controller for the data processing on our website is the Snigdha OS Team. And the lead maintainer [Eshan Roy](https://eshanized.github.io)
|
||||
|
||||
Email: privacy@snigdhaos.org
|
||||
|
||||
## 3. Purposes, legal bases and storage period
|
||||
|
||||
### 3.1. General use of the platform
|
||||
|
||||
The web server of our hosting service provider automatically records the accesses to our website. Therefore, when you visit our website, you transmit certain technical data to us, namely:
|
||||
|
||||
- IP address,
|
||||
- accessed content,
|
||||
- information about the transmission,
|
||||
- date of access,
|
||||
- the amount of data transmitted,
|
||||
- the referrer,
|
||||
- the web browser/user agent.
|
||||
|
||||
Where the GDPR applies, the processing of the IP address when establishing a connection is based on Art. 6 par. 1 lit. b) GDPR to provide the website you requested.
|
||||
|
||||
Our host also creates so-called log files to maintain system security, in order to guarantee the security and integrity of our IT systems. These purposes also represent the legitimate interest for which the processing is carried out (Art. 6 par. 1 lit. f) GDPR). We store the log files for a period of 91 days and delete them afterwards.
|
||||
|
||||
### 3.2. Registering for a user account
|
||||
|
||||
Some of our services require that you sign up and create a user account(e.g Snigdha OS Cloud). For this purpose we will collect and process your user name, email address and a password. We will send you a validation email to the email address you have provided. Where the GDPR applies, the legal basis for the processing is Art. 6 para. 1 lit. b) GDPR.
|
||||
|
||||
When you use our services we will collect certain information from you and associate it with your account, such as:
|
||||
|
||||
- password for the cloud service, the forums, uptime,
|
||||
- github username (for issue tracker)
|
||||
- IRC nickname,
|
||||
- IP address,
|
||||
- language preference\*,
|
||||
- timezone,
|
||||
- geographic coordinates (longitude/latitude),
|
||||
|
||||
\* Your language preference will be asked if we need to translate our website & services. Till now, we don't need your language preferences. If user requests for translation, we will collect your language preference.
|
||||
|
||||
We generally process your personal data for as long as you have an account with us and delete it afterwards.
|
||||
|
||||
## 4. Services of the websites
|
||||
|
||||
Our websites offer you a range of services for which we process certain personal data:
|
||||
|
||||
### 4.1. [Forum](https://forum.snigdhaos.org/)
|
||||
|
||||
You can read in our forums without giving us any personal data. However, if you wish to participate by posting entries, we will ask you to sign up for an account. In this case, we will collect your user name, email address and a captcha question. You are able to select if you wish that other users could see your email address and if other users shall be able to send you mails via the forums mail function. Furthermore, you can set location options as time zone and language preference.
|
||||
|
||||
We process your data to provide you with the account, the forums and the respective functions. The captcha question is required to avoid abuse by spammers using automated tools to post their content and links to many sites. We process your location options and language preferences to provide you with the according account settings.
|
||||
|
||||
When you post comments, we display certain information about your user account next to your post such as user name, registration date, and country of origin (if you add these personal details in your user account).
|
||||
|
||||
Where the GDPR applies, the legal basis for the processing is Art. 6 para. 1 lit. b) GDPR. In case you delete your account, we store your entries based on our legitimate interest of a consistent forums according to Art. 6 para. 1 lit. f) GDPR, but we anonymize the author of your entries.
|
||||
|
||||
### 4.2. [Documentation](https://snigdhaos.org/documentation/)
|
||||
|
||||
You can read in our documentation without giving us any personal data. However, if you wish to participate creating entries, you will need your github account. In this case, we will collect your user name and email address. Furthermore, you can set location options as time zone and language preference.
|
||||
|
||||
We process your data to provide you with the account, the documentation and the respective functions. The captcha question is required to avoid abuse by spammers using automated tools to post their content and links to many sites. We process your location options and language preferences to provide you with the according account settings. When you contribute entries, we display certain information about your user account next to your entries such as user name, registration date, and country of origin (if you add these personal details in your user account).
|
||||
|
||||
### 4.3. [Cloud](https://cloud.snigdhaos.org)
|
||||
|
||||
This Privacy Policy describes how Snigdha OS Cloud ("we", "us", or "our") collects, uses, and shares information when you use our website and services ("Services"). By using our Services, you agree to the collection and use of information in accordance with this policy.
|
||||
|
||||
**Information We Collect**
|
||||
|
||||
1. **Personal Information**: When you sign up for an account, we collect personal information such as your name, email address, and payment information. We may also collect additional information you choose to provide, such as profile pictures or contact information.
|
||||
|
||||
2. **Usage Information**: We collect information about how you interact with our Services, such as the files you upload, download, or share, your IP address, browser type, and operating system.
|
||||
|
||||
3. **Cookies and Similar Technologies**: We use cookies and similar tracking technologies to enhance your experience and collect information about your usage patterns on our website.
|
||||
|
||||
**How We Use Your Information**
|
||||
|
||||
1. **Providing and Improving Services**: We use the information we collect to provide, maintain, and improve our Services, as well as to develop new features and offerings.
|
||||
|
||||
2. **Communication**: We may use your email address to communicate with you about your account, updates to our Services, or promotional offers. You can opt out of promotional emails at any time.
|
||||
|
||||
3. **Security**: We use your information to ensure the security of our Services and to protect against unauthorized access or use.
|
||||
|
||||
4. **Analytics**: We may use aggregate, non-personally identifiable information for analytics purposes to better understand how users interact with our website and Services.
|
||||
|
||||
**Information Sharing and Disclosure**
|
||||
|
||||
1. **Third-Party Service Providers**: We may share your information with third-party service providers who assist us in providing and improving our Services. These providers are contractually obligated to use your information only for the purpose of providing the services we request.
|
||||
|
||||
2. **Legal Compliance**: We may disclose your information if required to do so by law or in response to a valid legal request, such as a court order or subpoena.
|
||||
|
||||
3. **Business Transfers**: In the event of a merger, acquisition, or sale of all or a portion of our assets, your information may be transferred as part of the transaction. We will notify you of any such change in ownership or control of your personal information.
|
||||
|
||||
**Data Retention**
|
||||
|
||||
We will retain your personal information for as long as necessary to fulfill the purposes outlined in this Privacy Policy, unless a longer retention period is required or permitted by law.
|
||||
|
||||
**Your Choices**
|
||||
|
||||
You can access, update, or delete your personal information by logging into your account settings. You can also choose to disable cookies in your browser settings, although this may affect your ability to use certain features of our website.
|
||||
|
||||
**Children's Privacy**
|
||||
|
||||
Our Services are not directed to children under the age of 13, and we do not knowingly collect personal information from children. If we become aware that we have inadvertently collected personal information from a child under the age of 13, we will take steps to delete it as soon as possible.
|
||||
|
||||
**Changes to this Policy**
|
||||
|
||||
We may update this Privacy Policy from time to time to reflect changes in our practices or legal requirements. We will notify you of any material changes by posting the new Privacy Policy on this page.
|
||||
|
||||
**Contact Us**
|
||||
|
||||
If you have any questions or concerns about this Privacy Policy or our practices, you can contact us at [privacy@snigdhaos.org](mailto:privacy@snigdhaos.org).
|
||||
|
||||
Where the GDPR applies, the legal basis for the processing is Art. 6 para. 1 lit. b) GDPR. In case you delete your account, we store your entries based on our legitimate interest of a consistent wiki according to Art. 6 para. 1 lit. f) GDPR.
|
||||
|
||||
## 5. Contact
|
||||
|
||||
We offer you the opportunity to contact us via email. We will then process your email address and, if applicable, your name, a subject and the content of your request to answer your enquiry due to our legitimate interests (Art. 6 para. 1 lit. f) GDPR).
|
||||
|
||||
We will store your enquiry as long as we have lawful bases for processing the data. Where the GDPR applies, we may store data in accordance unless legal provisions prevent deletion. Where the GDPR applies, we may store data in accordance with Art. 6 para. 1 lit. f) GDPR where it is necessary for the purpose of providing evidence or to comply with legal retention periods in accordance with Art. 6 para. 1 lit. c) GDPR. If the request is made within the framework of an existing or prospective contractual relationship with us, the storage period shall be based on the underlying contractual relationship.
|
||||
|
||||
## 6. Donations
|
||||
|
||||
You can donate to Snigdha OS as a member project of the Software in the Public Interest, Inc. (SPI) as non-profit corporation using via Click&Pledge or via SPI directly using PayPal or Credit Card payment. For further information, please see the SPI donation website at: https://www.spi-inc.org/donations/. We publish the past donors on the website https://snigdhaos.org/donate/.
|
||||
|
||||
This processing is based on your consent (Art. 6 Abs. 1 lit. a) GDPR) until your withdrawal or until we end this publication of past donors. You have the right to withdraw consent at any time, without affecting the lawfulness of processing based on consent before its withdrawal e.g. by sending us an email.
|
||||
|
||||
## 7. Storage period
|
||||
|
||||
Unless explicitly stated otherwise, we will process and store your personal data for as long as it is required for the respective purpose and delete it thereafter.
|
||||
|
||||
## 8. Categories of recipients
|
||||
|
||||
We use external service providers if we are unable to provide services ourselves or if it is not reasonable to do so. These external service providers are primarily providers of IT services, such as our hosting service provider **TONMOY INFRASTRUCTURE™**.
|
||||
Street: Landstrasse 39,
|
||||
City: Sattel,
|
||||
Zip code: 6417
|
||||
Country calling code: +41
|
||||
Country: Switzerland.
|
||||
|
||||
## 9. General rights of data subjects
|
||||
|
||||
The GDPR guarantees you certain rights, which you can assert against us - if the legal requirements are met.
|
||||
|
||||
### 9.1. Art. 15 GDPR - Right of access
|
||||
|
||||
You have the right to obtain confirmation from us as to whether personal data relating to you are being processed and, if so, what these data are and the detailed circumstances of the processing.
|
||||
|
||||
### 9.2. Art. 16 GDPR - Right of rectification
|
||||
|
||||
You have the right to ask us to rectify incorrect personal data concerning you immediately. You also have the right to request the completion of incomplete personal data, including by means of a supplementary declaration, taking into account the purposes of the processing.
|
||||
|
||||
### 9.3. Art. 17 GDPR - Right to deletion
|
||||
|
||||
You have the right to demand that we delete any personal data relating to you immediately.
|
||||
|
||||
### 9.4. Art. 18 GDPR - Right to restriction of processing
|
||||
|
||||
You have the right to request us to restrict processing.
|
||||
|
||||
### 9.5. Art. 20 GDPR - Right to data portability
|
||||
|
||||
You have the right, in the event of processing based on consent or for the fulfilment of a contract, to receive the personal data concerning you which you have provided us with in a structured, common and machine-readable format and to transfer this data to another responsible party without hindrance from us or to have the data transferred directly to the other responsible party, insofar as this is technically feasible.
|
||||
|
||||
### 9.6. Art. 77 GDPR in conjunction with Section 19 BDSG - Right to lodge a complaint with a supervisory authority
|
||||
|
||||
You have the right to lodge a complaint with a supervisory authority at any time, in particular in the Member State in which you are resident, your place of work or place of the alleged infringement if you consider that the processing of personal data relating to you infringes data protection law.
|
||||
|
||||
## 10. In particular right to object and right to withdraw consent
|
||||
|
||||
### 10.1. Art. 21 GDPR - Right to object
|
||||
|
||||
You have the right to object at any time, for reasons arising from your particular situation, to the processing of personal data concerning you which is necessary on the basis of a legitimate interest on our part or in order to carry out a task in the public interest, or which is carried out in the exercise of official authority.
|
||||
|
||||
If you object, we will no longer process your personal data unless we can prove compelling legitimate grounds for processing that override your interests, rights and freedoms, or unless the processing serves to assert, exercise or defend legal claims.
|
||||
|
||||
If we process your personal data for direct marketing purposes, you have the right to object to the processing at any time. If you object to processing for direct marketing purposes, we will no longer process your personal data for these purposes.
|
||||
|
||||
In order to exercise your right of objection, you can, for example, send us an email to the email address mentioned above.
|
||||
|
||||
### 10.2. Withdrawal of consent
|
||||
|
||||
If you have given us your informed consent, you have the right to withdraw your consent at any time. In this case, all data processing that we have carried out until your withdrawal remains lawful.
|
||||
|
||||
## 11. Obligation to provide data
|
||||
|
||||
You have no contractual or legal obligation to provide us with personal data. However, we then might not be able to offer you the requested services.
|
||||
|
||||
## 12. The existence of automated decision-making (including profiling)
|
||||
|
||||
We will not make you subject to any automated decision-making, including profiling in accordance with Art. 22 para. 1 and 4 GDPR, which has legal effects on you or affects you.
|
||||
|
||||
## 13. Internet-specific data processing and cookies
|
||||
|
||||
On some sub-directories of our website, cookies are set in your browser. Cookies are small text files that are stored on your hard drive and are assigned to the browser you are using. The provider who sets the cookie can collect certain information through the cookie. The only purpose of the cookies set on our website is to enable you to use the website and its functions safely. The legal basis for the processing is our legitimate interests in the aforementioned purpose according to Art. 6 para. 1 lit. f) GDPR. The cookies are necessary for the services you have requested.
|
||||
|
||||
> Forked from Arch Linux Privacy Policy
|
29
amplify.yml
@@ -1,29 +0,0 @@
|
||||
version: 1
|
||||
frontend:
|
||||
phases:
|
||||
preBuild:
|
||||
commands:
|
||||
- yum install -y curl
|
||||
- curl -LO "https://github.com/gohugoio/hugo/releases/download/v0.121.2/hugo_extended_0.121.2_Linux-64bit.tar.gz"
|
||||
- tar -xvf hugo_extended_0.121.2_Linux-64bit.tar.gz
|
||||
- mv hugo /usr/local/bin/
|
||||
- rm hugo_extended_0.121.2_Linux-64bit.tar.gz
|
||||
- echo "HUGO 0.121.2 INSTALLED"
|
||||
- curl -LO "https://dl.google.com/go/go1.20.5.linux-amd64.tar.gz"
|
||||
- tar -C /usr/local -xzf go1.20.5.linux-amd64.tar.gz
|
||||
- export PATH=$PATH:/usr/local/go/bin
|
||||
- rm go1.20.5.linux-amd64.tar.gz
|
||||
- echo "GO 1.20.5 INSTALLED"
|
||||
- npm install
|
||||
build:
|
||||
commands:
|
||||
- npm run project-setup
|
||||
- npm run build
|
||||
artifacts:
|
||||
# IMPORTANT - Please verify your build output directory
|
||||
baseDirectory: /public
|
||||
files:
|
||||
- "**/*"
|
||||
cache:
|
||||
paths:
|
||||
- node_modules/**/*
|
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 2.2 KiB |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M96 0C43 0 0 43 0 96V416c0 53 43 96 96 96H384h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V384c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32H384 96zm0 384H352v64H96c-17.7 0-32-14.3-32-32s14.3-32 32-32zm32-240c0-8.8 7.2-16 16-16H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16zm16 48H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16s7.2-16 16-16z"/></svg>
|
Before Width: | Height: | Size: 594 B |
Before Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 320 KiB |
Before Width: | Height: | Size: 152 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 74 KiB |
Before Width: | Height: | Size: 697 KiB |
Before Width: | Height: | Size: 254 KiB |
Before Width: | Height: | Size: 58 KiB |
Before Width: | Height: | Size: 210 KiB |
Before Width: | Height: | Size: 74 KiB |
Before Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 61 KiB |
@@ -1,18 +0,0 @@
|
||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 277 54" width="277" height="54">
|
||||
<title>Snigdha OS Web</title>
|
||||
<style>
|
||||
.s0 { fill: #000000 }
|
||||
.s1 { fill: #c1e7e3 }
|
||||
</style>
|
||||
<filter id="f0">
|
||||
<feFlood flood-color="#c1e7e3" flood-opacity="1" />
|
||||
<feBlend mode="normal" in2="SourceGraphic"/>
|
||||
<feComposite in2="SourceAlpha" operator="in" />
|
||||
</filter>
|
||||
<g id="Folder 1" filter="url(#f0)">
|
||||
<path id="Layer" class="s0" d="m33.9 1.1c-2.2-0.6-4.4-1-6.6-1.1q-3.3-0.1-6.6 0.7c-2.2 0.5-4.3 1.3-6.2 2.4q-3 1.6-5.4 3.9 0.7 0.2 1.3 0.5 0.6 0.3 1.1 0.7 0.5 0.4 1 0.9 0.5 0.4 0.9 1 0.2 0.4 0.5 0.8 0.2 0.4 0.4 0.8 0.2 0.4 0.3 0.9 0.2 0.4 0.3 0.9 1.3-0.7 2.7-1.3 1.4-0.5 2.9-0.9 1.5-0.4 3-0.6 1.5-0.2 3-0.2 1.7 0 3.4 0.3 1.7 0.2 3.3 0.9 1.6 0.6 3.1 1.5 1.4 0.9 2.7 2.1c6.9 6.3 4.6 11.3 3.5 19.4q-0.2 1.5-0.1 2.9 0.1 1.4 0.7 2.7 0.5 1.4 1.4 2.5 0.8 1.1 2 2c-1.1-5.1 2.7-12.7 3.1-13.6 0.9-3 1.3-6.2 1-9.3-0.2-3.2-1.1-6.2-2.6-9-1.5-2.8-3.5-5.3-5.9-7.3-2.4-2-5.2-3.5-8.2-4.5z"/>
|
||||
<path id="Layer" class="s0" d="m37.6 16.7c-3.4-3.4-8.2-4.5-12.8-4.1l-1.4 0.9q2.5 0.2 4.9 0.9c1.6 0.5 3.1 1.2 4.5 2.1q2.1 1.4 3.8 3.3c1.1 1.2 2 2.6 2.7 4.1q0.2 0.3 0.3 0.6 0.1 0.3 0.3 0.6 0.1 0.3 0.2 0.6 0.1 0.4 0.2 0.6l1.4-2.6c-0.3-3-1.7-4.5-4.1-7z"/>
|
||||
<path id="Layer" class="s0" d="m38.1 26.2c-6.6-16.9-31.5-12.6-31.9 5.8 0.1 1.3 0 3.9 0 5.2q0 0.3 0.2 0.5c0.1 0.2 0.3 0.3 0.5 0.4q0.3 0.1 0.6 0c0.2 0 0.4-0.1 0.5-0.3l4.8-5.4q0 0 0.1-0.1 0 0 0 0 0.1 0 0.1 0 0.1 0 0.1-0.1h1l-2.1 3.4q-0.1 0.2-0.2 0.4-0.1 0.2-0.1 0.4-0.1 0.3-0.1 0.5 0 0.2 0.1 0.4c0.3 1.5 0.5 5-2.4 7.4q-0.2 0.2-0.4 0.4-0.2 0.2-0.3 0.5-0.1 0.2-0.2 0.5 0 0.3 0 0.5v4.9q0 0.5 0.1 0.9 0.2 0.5 0.6 0.9c0.2 0.2 0.5 0.4 0.8 0.5q0.5 0.2 1 0.2c11.2-2.3 17.4-8.9 18.8-11q0.1-0.1 0.1-0.1 0-0.1 0.1-0.1 0.1 0 0.1 0 0.1 0 0.1 0h6.1q0.6-0.1 1.2-0.3c0.3-0.1 0.6-0.4 0.9-0.6q0.4-0.4 0.7-1 0.2-0.5 0.2-1.1c-0.2-3.8 0.5-10.1-1.1-13.6z"/>
|
||||
</g>
|
||||
<path id="SNIGDHA OS" class="s1" aria-label="SNIGDHA OS" d="m77.1 33.5q0 2.4-1.2 4.2-1.3 1.8-3.6 2.9-2.4 1-5.7 1-3.6 0-6.1-1-2.4-1.1-4.1-2.7l3.1-3.4q1.5 1.2 3.2 1.9 1.7 0.7 3.8 0.7 1.3 0 2.2-0.4 1-0.3 1.5-1.1 0.6-0.7 0.6-1.7 0-0.9-0.4-1.6-0.5-0.6-1.5-1.1-1-0.6-2.8-1.1-3-0.9-4.9-2-1.8-1.2-2.6-2.6-0.8-1.5-0.8-3.4 0-2.4 1.3-4.1 1.3-1.7 3.5-2.5 2.2-0.9 4.9-0.9 3 0 5.3 0.9 2.2 0.8 3.9 2.4l-2.9 3.3q-1.3-1.1-2.8-1.6-1.5-0.5-3-0.5-1.2 0-2.1 0.3-0.8 0.2-1.3 0.8-0.5 0.6-0.5 1.4 0 0.8 0.5 1.4 0.4 0.5 1.6 1 1.1 0.5 3.2 1.2 2.4 0.7 4.1 1.7 1.8 1.1 2.7 2.6 0.9 1.6 0.9 4zm21.6 7.5h-7.4l-6.8-20.7q0.1 0.8 0.3 2 0.1 1.2 0.3 2.6 0.1 1.4 0.2 3.1 0.1 1.6 0.1 3.3v9.7h-5.2v-25.8h7.6l6.6 20.7q-0.2-1.2-0.4-2.8-0.2-1.7-0.4-3.7-0.1-2-0.1-4.3v-9.9h5.2zm4.7-25.7h16.7v4.4h-5.3v16.9h5.3v4.4h-16.7v-4.4h5.3v-16.9h-5.3zm31.6 26.4q-3.6 0-6.1-1.5-2.5-1.6-3.9-4.6-1.2-3-1.2-7.4 0-3.3 0.9-5.8 0.9-2.6 2.5-4.3 1.7-1.7 3.9-2.6 2.1-0.8 4.6-0.8 2.9 0 4.8 0.8 1.9 0.9 3.4 2.4l-3.2 3.3q-1.1-1.1-2.2-1.6-1.1-0.5-2.5-0.5-1.3 0-2.4 0.5-1 0.5-1.9 1.6-0.8 1.1-1.2 2.8-0.4 1.8-0.4 4.2 0 3.4 0.5 5.3 0.5 2 1.7 2.9 1.1 0.9 2.8 0.9 0.9 0 1.7-0.2 0.8-0.3 1.5-0.6v-5.9h-3.2l-0.6-4.3h9.5v12.8q-1.9 1.2-4.1 1.9-2.2 0.7-4.9 0.7zm25.3-13.6q0-2.6-0.5-4.3-0.4-1.6-1.2-2.5-0.7-0.9-1.8-1.2-1-0.3-2.2-0.3h-1.3v16.9h1.3q1.2 0 2.3-0.4 1-0.4 1.8-1.4 0.8-0.9 1.2-2.6 0.4-1.7 0.4-4.2zm6.3 0q0 3.1-0.7 5.4-0.6 2.2-1.8 3.7-1.2 1.5-2.8 2.3-1.6 0.9-3.4 1.2-1.8 0.4-3.8 0.4h-6.9v-25.8h6.5q2.5 0 4.8 0.5 2.3 0.5 4.1 1.9 1.8 1.4 2.9 3.9 1.1 2.5 1.1 6.5zm21.3 13h-6.1v-10.9h-6.2v10.9h-6.1v-25.8h6.1v9.9h6.2v-9.9h6.1zm18.2 0l-1.4-5.5h-7.5l-1.4 5.5h-6.3l7.8-25.7h7.4l7.9 25.7zm-5.1-21.4l-2.8 11.4h5.6zm55 8.5q0 4.1-1.2 7.2-1.2 3-3.5 4.7-2.3 1.7-5.7 1.7-3.3 0-5.6-1.7-2.3-1.6-3.5-4.7-1.2-3-1.2-7.2 0-4.1 1.2-7.1 1.2-3 3.5-4.7 2.3-1.7 5.6-1.7 3.4 0 5.7 1.6 2.3 1.7 3.5 4.7 1.2 3 1.2 7.2zm-6.3 0q0-4.7-0.9-6.9-1-2.2-3.2-2.2-2.1 0-3.1 2.2-0.9 2.2-0.9 6.9 0 4.8 0.9 6.9 1 2.2 3.1 2.2 2.3 0 3.2-2.2 0.9-2.2 0.9-6.9zm28.2 5.4q0 2.4-1.2 4.2-1.3 1.9-3.6 2.9-2.4 1.1-5.7 1.1-3.6 0-6.1-1.1-2.4-1.1-4.1-2.7l3.1-3.4q1.5 1.3 3.2 1.9 1.7 0.7 3.8 0.7 1.3 0 2.2-0.4 1-0.3 1.5-1 0.6-0.7 0.6-1.7 0-1-0.4-1.6-0.5-0.7-1.5-1.2-1-0.5-2.8-1.1-3-0.9-4.9-2-1.8-1.1-2.6-2.6-0.8-1.5-0.8-3.4 0-2.4 1.3-4.1 1.3-1.6 3.5-2.5 2.2-0.9 4.9-0.9 3 0 5.3 0.9 2.2 0.8 3.9 2.4l-2.9 3.3q-1.3-1.1-2.8-1.6-1.5-0.5-3-0.5-1.2 0-2.1 0.3-0.8 0.3-1.3 0.8-0.5 0.6-0.5 1.4 0 0.8 0.5 1.4 0.4 0.5 1.6 1 1.1 0.5 3.2 1.2 2.4 0.7 4.1 1.8 1.8 1 2.7 2.6 0.9 1.5 0.9 3.9z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 3.0 KiB |
@@ -1,18 +0,0 @@
|
||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 277 54" width="277" height="54">
|
||||
<title>Snigdha OS Web</title>
|
||||
<style>
|
||||
.s0 { fill: #000000 }
|
||||
.s1 { fill: #754ffe }
|
||||
</style>
|
||||
<filter id="f0">
|
||||
<feFlood flood-color="#754ffe" flood-opacity="1" />
|
||||
<feBlend mode="normal" in2="SourceGraphic"/>
|
||||
<feComposite in2="SourceAlpha" operator="in" />
|
||||
</filter>
|
||||
<g id="Folder 1" filter="url(#f0)">
|
||||
<path id="Layer" class="s0" d="m33.9 1.1c-2.2-0.6-4.4-1-6.6-1.1q-3.3-0.1-6.6 0.7c-2.2 0.5-4.3 1.3-6.2 2.4q-3 1.6-5.4 3.9 0.7 0.2 1.3 0.5 0.6 0.3 1.1 0.7 0.5 0.4 1 0.9 0.5 0.4 0.9 1 0.2 0.4 0.5 0.8 0.2 0.4 0.4 0.8 0.2 0.4 0.3 0.9 0.2 0.4 0.3 0.9 1.3-0.7 2.7-1.3 1.4-0.5 2.9-0.9 1.5-0.4 3-0.6 1.5-0.2 3-0.2 1.7 0 3.4 0.3 1.7 0.2 3.3 0.9 1.6 0.6 3.1 1.5 1.4 0.9 2.7 2.1c6.9 6.3 4.6 11.3 3.5 19.4q-0.2 1.5-0.1 2.9 0.1 1.4 0.7 2.7 0.5 1.4 1.4 2.5 0.8 1.1 2 2c-1.1-5.1 2.7-12.7 3.1-13.6 0.9-3 1.3-6.2 1-9.3-0.2-3.2-1.1-6.2-2.6-9-1.5-2.8-3.5-5.3-5.9-7.3-2.4-2-5.2-3.5-8.2-4.5z"/>
|
||||
<path id="Layer" class="s0" d="m37.6 16.7c-3.4-3.4-8.2-4.5-12.8-4.1l-1.4 0.9q2.5 0.2 4.9 0.9c1.6 0.5 3.1 1.2 4.5 2.1q2.1 1.4 3.8 3.3c1.1 1.2 2 2.6 2.7 4.1q0.2 0.3 0.3 0.6 0.1 0.3 0.3 0.6 0.1 0.3 0.2 0.6 0.1 0.4 0.2 0.6l1.4-2.6c-0.3-3-1.7-4.5-4.1-7z"/>
|
||||
<path id="Layer" class="s0" d="m38.1 26.2c-6.6-16.9-31.5-12.6-31.9 5.8 0.1 1.3 0 3.9 0 5.2q0 0.3 0.2 0.5c0.1 0.2 0.3 0.3 0.5 0.4q0.3 0.1 0.6 0c0.2 0 0.4-0.1 0.5-0.3l4.8-5.4q0 0 0.1-0.1 0 0 0 0 0.1 0 0.1 0 0.1 0 0.1-0.1h1l-2.1 3.4q-0.1 0.2-0.2 0.4-0.1 0.2-0.1 0.4-0.1 0.3-0.1 0.5 0 0.2 0.1 0.4c0.3 1.5 0.5 5-2.4 7.4q-0.2 0.2-0.4 0.4-0.2 0.2-0.3 0.5-0.1 0.2-0.2 0.5 0 0.3 0 0.5v4.9q0 0.5 0.1 0.9 0.2 0.5 0.6 0.9c0.2 0.2 0.5 0.4 0.8 0.5q0.5 0.2 1 0.2c11.2-2.3 17.4-8.9 18.8-11q0.1-0.1 0.1-0.1 0-0.1 0.1-0.1 0.1 0 0.1 0 0.1 0 0.1 0h6.1q0.6-0.1 1.2-0.3c0.3-0.1 0.6-0.4 0.9-0.6q0.4-0.4 0.7-1 0.2-0.5 0.2-1.1c-0.2-3.8 0.5-10.1-1.1-13.6z"/>
|
||||
</g>
|
||||
<path id="SNIGDHA OS" class="s1" aria-label="SNIGDHA OS" d="m77.1 33.5q0 2.4-1.2 4.2-1.3 1.8-3.6 2.9-2.4 1-5.7 1-3.6 0-6.1-1-2.4-1.1-4.1-2.7l3.1-3.4q1.5 1.2 3.2 1.9 1.7 0.7 3.8 0.7 1.3 0 2.2-0.4 1-0.3 1.5-1.1 0.6-0.7 0.6-1.7 0-0.9-0.4-1.6-0.5-0.6-1.5-1.1-1-0.6-2.8-1.1-3-0.9-4.9-2-1.8-1.2-2.6-2.6-0.8-1.5-0.8-3.4 0-2.4 1.3-4.1 1.3-1.7 3.5-2.5 2.2-0.9 4.9-0.9 3 0 5.3 0.9 2.2 0.8 3.9 2.4l-2.9 3.3q-1.3-1.1-2.8-1.6-1.5-0.5-3-0.5-1.2 0-2.1 0.3-0.8 0.2-1.3 0.8-0.5 0.6-0.5 1.4 0 0.8 0.5 1.4 0.4 0.5 1.6 1 1.1 0.5 3.2 1.2 2.4 0.7 4.1 1.7 1.8 1.1 2.7 2.6 0.9 1.6 0.9 4zm21.6 7.5h-7.4l-6.8-20.7q0.1 0.8 0.3 2 0.1 1.2 0.3 2.6 0.1 1.4 0.2 3.1 0.1 1.6 0.1 3.3v9.7h-5.2v-25.8h7.6l6.6 20.7q-0.2-1.2-0.4-2.8-0.2-1.7-0.4-3.7-0.1-2-0.1-4.3v-9.9h5.2zm4.7-25.7h16.7v4.4h-5.3v16.9h5.3v4.4h-16.7v-4.4h5.3v-16.9h-5.3zm31.6 26.4q-3.6 0-6.1-1.5-2.5-1.6-3.9-4.6-1.2-3-1.2-7.4 0-3.3 0.9-5.8 0.9-2.6 2.5-4.3 1.7-1.7 3.9-2.6 2.1-0.8 4.6-0.8 2.9 0 4.8 0.8 1.9 0.9 3.4 2.4l-3.2 3.3q-1.1-1.1-2.2-1.6-1.1-0.5-2.5-0.5-1.3 0-2.4 0.5-1 0.5-1.9 1.6-0.8 1.1-1.2 2.8-0.4 1.8-0.4 4.2 0 3.4 0.5 5.3 0.5 2 1.7 2.9 1.1 0.9 2.8 0.9 0.9 0 1.7-0.2 0.8-0.3 1.5-0.6v-5.9h-3.2l-0.6-4.3h9.5v12.8q-1.9 1.2-4.1 1.9-2.2 0.7-4.9 0.7zm25.3-13.6q0-2.6-0.5-4.3-0.4-1.6-1.2-2.5-0.7-0.9-1.8-1.2-1-0.3-2.2-0.3h-1.3v16.9h1.3q1.2 0 2.3-0.4 1-0.4 1.8-1.4 0.8-0.9 1.2-2.6 0.4-1.7 0.4-4.2zm6.3 0q0 3.1-0.7 5.4-0.6 2.2-1.8 3.7-1.2 1.5-2.8 2.3-1.6 0.9-3.4 1.2-1.8 0.4-3.8 0.4h-6.9v-25.8h6.5q2.5 0 4.8 0.5 2.3 0.5 4.1 1.9 1.8 1.4 2.9 3.9 1.1 2.5 1.1 6.5zm21.3 13h-6.1v-10.9h-6.2v10.9h-6.1v-25.8h6.1v9.9h6.2v-9.9h6.1zm18.2 0l-1.4-5.5h-7.5l-1.4 5.5h-6.3l7.8-25.7h7.4l7.9 25.7zm-5.1-21.4l-2.8 11.4h5.6zm55 8.5q0 4.1-1.2 7.2-1.2 3-3.5 4.7-2.3 1.7-5.7 1.7-3.3 0-5.6-1.7-2.3-1.6-3.5-4.7-1.2-3-1.2-7.2 0-4.1 1.2-7.1 1.2-3 3.5-4.7 2.3-1.7 5.6-1.7 3.4 0 5.7 1.6 2.3 1.7 3.5 4.7 1.2 3 1.2 7.2zm-6.3 0q0-4.7-0.9-6.9-1-2.2-3.2-2.2-2.1 0-3.1 2.2-0.9 2.2-0.9 6.9 0 4.8 0.9 6.9 1 2.2 3.1 2.2 2.3 0 3.2-2.2 0.9-2.2 0.9-6.9zm28.2 5.4q0 2.4-1.2 4.2-1.3 1.9-3.6 2.9-2.4 1.1-5.7 1.1-3.6 0-6.1-1.1-2.4-1.1-4.1-2.7l3.1-3.4q1.5 1.3 3.2 1.9 1.7 0.7 3.8 0.7 1.3 0 2.2-0.4 1-0.3 1.5-1 0.6-0.7 0.6-1.7 0-1-0.4-1.6-0.5-0.7-1.5-1.2-1-0.5-2.8-1.1-3-0.9-4.9-2-1.8-1.1-2.6-2.6-0.8-1.5-0.8-3.4 0-2.4 1.3-4.1 1.3-1.6 3.5-2.5 2.2-0.9 4.9-0.9 3 0 5.3 0.9 2.2 0.8 3.9 2.4l-2.9 3.3q-1.3-1.1-2.8-1.6-1.5-0.5-3-0.5-1.2 0-2.1 0.3-0.8 0.3-1.3 0.8-0.5 0.6-0.5 1.4 0 0.8 0.5 1.4 0.4 0.5 1.6 1 1.1 0.5 3.2 1.2 2.4 0.7 4.1 1.8 1.8 1 2.7 2.6 0.9 1.5 0.9 3.9z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 8.1 KiB |
Before Width: | Height: | Size: 105 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 30 KiB |
@@ -1,43 +0,0 @@
|
||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 837 679" width="837" height="679">
|
||||
<title>58981-ai</title>
|
||||
<style>
|
||||
.s0 { mix-blend-mode: multiply;fill: #7daaf6 }
|
||||
.s1 { mix-blend-mode: multiply;fill: #637ecf }
|
||||
.s2 { mix-blend-mode: multiply;fill: #fbf470 }
|
||||
.s3 { mix-blend-mode: multiply;fill: #80c573 }
|
||||
.s4 { mix-blend-mode: multiply;fill: #caeaf8 }
|
||||
.s5 { mix-blend-mode: multiply;fill: #b95ce1 }
|
||||
.s6 { mix-blend-mode: multiply;fill: #795ce1 }
|
||||
.s7 { mix-blend-mode: multiply;fill: #e79c69 }
|
||||
.s8 { mix-blend-mode: multiply;fill: #e8ff71 }
|
||||
.s9 { mix-blend-mode: multiply;fill: #64689f }
|
||||
.s10 { mix-blend-mode: multiply;fill: #d88ed9 }
|
||||
.s11 { mix-blend-mode: multiply;fill: #a1d956 }
|
||||
.s12 { mix-blend-mode: multiply;fill: #f0c76c }
|
||||
.s13 { mix-blend-mode: multiply;fill: #efc5c5 }
|
||||
.s14 { mix-blend-mode: multiply;fill: #df6666 }
|
||||
.s15 { mix-blend-mode: multiply;fill: #d88e8e }
|
||||
</style>
|
||||
<g id="_Artboards_">
|
||||
</g>
|
||||
<g id="Objects">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s0" d="m448.1 501.1c3.7-45.4-30.1-85.2-75.5-88.8-45.4-3.7-85.2 30.2-88.9 75.6-3.4 42.1 25.5 79.4 66 87.5l-11.6 36 41.8-35.6c36.3-6.2 65.2-36.3 68.2-74.7z"/>
|
||||
<path id="<Path>" class="s1" d="m642.1 428.9c6.2-77.5-51.5-145.4-129-151.6-77.5-6.3-145.3 51.5-151.6 128.9-5.8 72 43.6 135.6 112.7 149.3l-19.9 61.5 71.4-60.7c61.8-10.6 111.1-62 116.4-127.4z"/>
|
||||
<path id="<Path>" class="s2" d="m358.7 506.3c4.2-52.2-34.7-98-86.9-102.2-52.3-4.2-98 34.7-102.2 87-3.9 48.4 29.3 91.3 75.9 100.6l-13.3 41.4 48.1-40.9c41.6-7.2 74.8-41.8 78.4-85.9z"/>
|
||||
<path id="<Path>" class="s3" d="m180.6 199.4c7.4-91.4 87.5-159.5 178.9-152.2 91.4 7.4 159.6 87.5 152.2 178.9-6.8 84.9-76.4 149.7-159.5 152.6l11.5 75.4-71.7-84.3c-70-24-117.6-93.2-111.4-170.4z"/>
|
||||
<path id="<Path>" class="s4" d="m446.7 117.4c3-42.7 40-75 82.8-72 42.7 3 75 40 72 82.8-2.8 39.7-34.9 70.3-73.7 72.1l5.7 35.2-33.9-39c-32.8-10.9-55.4-43-52.9-79.1z"/>
|
||||
<path id="<Path>" class="s5" d="m505.9 514.2c2.6-36.6 34.2-64.1 70.8-61.6 36.5 2.5 64.1 34.2 61.6 70.8-2.4 33.9-29.9 60.1-63.1 61.6l5 30-29-33.3c-28.1-9.3-47.4-36.7-45.3-67.5z"/>
|
||||
<path id="<Path>" class="s6" d="m703.2 257.5c5.4-58.8-37.8-110.8-96.5-116.2-58.8-5.4-110.8 37.9-116.2 96.6-5 54.5 31.9 103.2 84.3 114.3l-15.6 46.4 54.7-45.5c47-7.5 84.8-46 89.3-95.6z"/>
|
||||
<path id="<Path>" class="s7" d="m234.6 509.7c0.1-27.6-22.2-50-49.7-50.1-27.6-0.1-50 22.2-50.1 49.8-0.1 25.6 19.1 46.7 44 49.7l-5.4 22.2 23.6-23.4c21.6-5.5 37.6-25 37.6-48.2z"/>
|
||||
<path id="<Path>" class="s8" d="m49.1 303.2c5.3-66.5 63.5-116 130-110.6 66.4 5.4 115.9 63.6 110.5 130-4.9 61.7-55.5 108.8-115.9 110.9l8.4 54.7-52.1-61.2c-50.9-17.5-85.5-67.7-80.9-123.8z"/>
|
||||
<path id="<Path>" class="s9" d="m374 553.2c0-23.3 19-42.1 42.3-42.1 23.3 0.1 42.1 19 42 42.3 0 21.7-16.4 39.4-37.4 41.8l4.4 18.9-19.8-20c-18.2-4.7-31.6-21.2-31.5-40.9z"/>
|
||||
<path id="<Path>" class="s10" d="m800.6 375.1c5.1-63.1-42-118.4-105.1-123.5-63.2-5.1-118.5 41.9-123.6 105.1-4.7 58.6 35.5 110.4 91.9 121.6l-16.2 50.1 58.1-49.5c50.4-8.6 90.6-50.5 94.9-103.8z"/>
|
||||
<path id="<Path>" class="s11" d="m219.8 424.4c0.2-47.3 38.6-85.4 85.8-85.3 47.2 0.2 85.3 38.6 85.2 85.8-0.1 43.8-33.2 79.8-75.8 84.6l8.9 38.2-40.1-40.4c-36.9-9.5-64.1-43.1-64-82.9z"/>
|
||||
<path id="<Path>" class="s12" d="m215.9 413.5c4-49.9-33.1-93.6-83-97.6-49.8-4-93.5 33.1-97.5 83-3.8 46.3 28 87.2 72.5 96.1l-12.8 39.5 45.9-39.1c39.8-6.8 71.5-39.8 74.9-81.9z"/>
|
||||
<path id="<Path>" class="s13" d="m605.3 510.8c2.2-26.6 25.4-46.4 52-44.2 26.6 2.1 46.4 25.4 44.2 52-2 24.6-22.2 43.4-46.3 44.3l3.3 21.9-20.8-24.5c-20.4-7-34.2-27.1-32.4-49.5z"/>
|
||||
<path id="<Path>" class="s14" d="m82.1 518c0.1-21.1 17.2-38.2 38.3-38.1 21.1 0 38.2 17.2 38.1 38.3 0 19.6-14.8 35.7-33.8 37.8l3.9 17.1-17.9-18c-16.5-4.3-28.6-19.3-28.6-37.1z"/>
|
||||
<path id="<Path>" class="s15" d="m789.6 470.6c2.7-33.8-22.5-63.4-56.3-66.2-33.9-2.7-63.5 22.5-66.2 56.3-2.6 31.5 19 59.2 49.2 65.2l-8.7 26.9 31.2-26.6c27-4.6 48.5-27 50.8-55.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 4.0 KiB |
@@ -1,594 +0,0 @@
|
||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" width="1000" height="1000">
|
||||
<title>4884420-ai</title>
|
||||
<style>
|
||||
.s0 { fill: #282740 }
|
||||
.s1 { fill: #53538c }
|
||||
.s2 { opacity: .4;fill: #282740 }
|
||||
.s3 { fill: #48cad9 }
|
||||
.s4 { fill: #1eb3ba }
|
||||
.s5 { fill: #ffffff }
|
||||
.s6 { fill: #76e0e5 }
|
||||
.s7 { opacity: .1;fill: #282740 }
|
||||
.s8 { fill: #f4f0e1 }
|
||||
.s9 { fill: #b7e5e5 }
|
||||
.s10 { fill: #ed6332 }
|
||||
.s11 { opacity: .2;fill: #48cad9 }
|
||||
.s12 { opacity: .2;fill: #282740 }
|
||||
.s13 { fill: #db3e0e }
|
||||
.s14 { fill: #d8b560 }
|
||||
</style>
|
||||
<g id="OBJECTS">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s0" d="m586.2 839.6c0 1.2-1 2.3-2.3 2.3h-201.8c-1.2 0-2.3-1.1-2.3-2.3v-8.1c0-1.3 1.1-2.3 2.3-2.3h201.8c1.3 0 2.3 1 2.3 2.3z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s1" d="m519.8 769.4h-34.7-4.2-34.6c0 33.3-50.2 61.5-50.2 61.5h84.8 4.2 84.8c0 0-50.1-28.2-50.1-61.5z"/>
|
||||
<path id="<Path>" class="s2" d="m519.8 769.4h-34.7-4.2-14.8c10.4 19.3 28.7 43.2 59.9 61.5h43.9c0 0-50.1-28.2-50.1-61.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s0" d="m795 765.4c0 2.2-1.8 4-4 4h-616c-2.2 0-4-1.8-4-4v-373c0-2.2 1.8-4 4-4h616c2.2 0 4 1.8 4 4z"/>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s3" d="m771.4 744.4c0 2.2-1.8 4-4 4h-568.8c-2.2 0-4-1.8-4-4v-331c0-2.2 1.8-4 4-4h568.8c2.2 0 4 1.8 4 4z"/>
|
||||
<path id="<Path>" class="s4" d="m771.4 436.9v-23.5c0-2.2-1.8-4-4-4h-568.8c-2.2 0-4 1.8-4 4v23.5z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s5" d="m242 423.1c0 3.2-2.6 5.8-5.8 5.8-3.1 0-5.7-2.6-5.7-5.8 0-3.2 2.6-5.7 5.7-5.7 3.2 0 5.8 2.5 5.8 5.7z"/>
|
||||
<path id="<Path>" class="s5" d="m218 423.1c0 3.2-2.6 5.8-5.8 5.8-3.1 0-5.7-2.6-5.7-5.8 0-3.2 2.6-5.7 5.7-5.7 3.2 0 5.8 2.5 5.8 5.7z"/>
|
||||
<path id="<Path>" class="s5" d="m266 423.1c0 3.2-2.6 5.8-5.8 5.8-3.1 0-5.7-2.6-5.7-5.8 0-3.2 2.6-5.7 5.7-5.7 3.2 0 5.8 2.5 5.8 5.7z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s6" d="m727.9 556.9h-489.7v-98.7h489.7z"/>
|
||||
<path id="<Path>" class="s6" d="m444.5 638.6h-206.3v-65.7h206.3z"/>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s6" d="m444.5 653.2h-206.3v9.7h206.3z"/>
|
||||
<path id="<Path>" class="s6" d="m444.5 673.2h-206.3v9.7h206.3z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s6" d="m444.5 693.2h-206.3v9.7h206.3z"/>
|
||||
<path id="<Path>" class="s6" d="m444.5 713.2h-206.3v9.7h206.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="<Path>" class="s6" d="m565 682.9h-102v-110h102z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s6" d="m564.9 693.2h-103v9.7h103z"/>
|
||||
<path id="<Path>" class="s6" d="m564.9 713.2h-103v9.7h103z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s6" d="m727.9 638.6h-141.7v-65.7h141.7z"/>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s6" d="m725.4 653.2h-139.2v9.7h139.2z"/>
|
||||
<path id="<Path>" class="s6" d="m725.4 673.2h-139.2v9.7h139.2z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s6" d="m725.4 693.2h-139.2v9.7h139.2z"/>
|
||||
<path id="<Path>" class="s6" d="m725.4 713.2h-139.2v9.7h139.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="<Path>" class="s7" d="m795 765.4v-373c0-2.2-1.8-4-4-4h-54.1c-16.6 296.9-317.2 381-317.2 381h371.3c2.2 0 4-1.8 4-4z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s0" d="m223.2 646.1c-2.2 0-4.6 1.7-5.2 3.8l-7.7 24.3c-0.6 2.1-2.9 3.8-5.1 3.8h-83.4c-2.2 0-3.7 1.7-3.3 3.9l24.6 136c0.4 2.2 2.5 4 4.7 4h132c2.2 0 4.3-1.8 4.6-4l24.8-167.9c0.4-2.2-1.2-3.9-3.4-3.9z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s5" d="m280.9 777.5h-134v-190h108.3l25.7 26z"/>
|
||||
<path id="<Path>" class="s8" d="m255.2 587.5l25.7 26h-25.7z"/>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s9" d="m268.5 641h-109.3v-3.1h109.3z"/>
|
||||
<path id="<Path>" class="s9" d="m268.5 653.6h-109.3v-3.2h109.3z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s9" d="m268.5 666.2h-109.3v-3.2h109.3z"/>
|
||||
<path id="<Path>" class="s9" d="m268.5 678.7h-109.3v-3.1h109.3z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s9" d="m268.5 691.3h-109.3v-3.1h109.3z"/>
|
||||
<path id="<Path>" class="s9" d="m268.5 703.9h-109.3v-3.2h109.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Compound Path>" class="s10" d="m177.7 616.6c0-6.2 4.7-10.6 11.1-10.6 3.8 0 6.8 1.4 8.8 3.8l-3.7 3.3c-1.3-1.5-2.8-2.3-4.8-2.3-3.3 0-5.6 2.3-5.6 5.8 0 3.4 2.3 5.8 5.6 5.8 2 0 3.5-0.9 4.8-2.4l3.7 3.3c-2 2.4-5 3.8-8.8 3.8-6.4 0-11.1-4.4-11.1-10.5z"/>
|
||||
<path id="<Compound Path>" class="s10" d="m221.5 626.7v-10.8l-5.2 8.8h-2.6l-5.2-8.5v10.5h-5.3v-20.3h4.7l7.2 11.7 6.9-11.7h4.7l0.1 20.3z"/>
|
||||
<path id="<Compound Path>" class="s10" d="m232.5 624.9l1.9-4.3c1.8 1.2 4.4 2 6.7 2 2.4 0 3.3-0.6 3.3-1.6 0-3.2-11.5-0.9-11.5-8.4 0-3.6 2.9-6.6 9-6.6 2.6 0 5.3 0.6 7.3 1.8l-1.7 4.2c-2-1-3.9-1.5-5.7-1.5-2.4 0-3.2 0.8-3.2 1.8 0 3.1 11.5 0.8 11.5 8.3 0 3.5-3 6.5-9 6.5-3.4 0-6.7-0.9-8.6-2.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="<Path>" class="s1" d="m223.2 666.1c-2.2 0-4.6 1.7-5.2 3.8l-7.7 24.3c-0.6 2.1-2.9 3.8-5.1 3.8h-83.4c-2.2 0-3.7 1.7-3.3 3.9l24.6 136c0.4 2.2 2.5 4 4.7 4h132c2.2 0 4.3-1.8 4.6-4l24.8-167.9c0.4-2.2-1.2-3.9-3.4-3.9z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s2" d="m284.4 837.9l24.8-167.9c0.4-2.2-1.2-3.9-3.4-3.9h-8c-13.4 127.6-109.9 159.2-155.6 167l0.9 4.8c0.4 2.2 2.5 4 4.7 4h132c2.2 0 4.3-1.8 4.6-4z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s0" d="m870.9 837.4c0 2.2-1.7 3.9-3.8 3.9h-240.5c-2.1 0-3.9-1.7-3.9-3.9v-174.7c0-2.1 1.8-3.8 3.9-3.8h240.5c2.1 0 3.8 1.7 3.8 3.8z"/>
|
||||
<path id="<Path>" class="s1" d="m861.2 817.1c0 2-1.6 3.6-3.5 3.6h-221.7c-1.9 0-3.5-1.6-3.5-3.6v-147.5c0-2 1.6-3.5 3.5-3.5h221.7c1.9 0 3.5 1.5 3.5 3.5z"/>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s1" d="m861.2 830.2c0 0.8-0.6 1.4-1.4 1.4h-226c-0.7 0-1.3-0.6-1.3-1.4 0-0.7 0.6-1.3 1.3-1.3h226c0.8 0 1.4 0.6 1.4 1.3z"/>
|
||||
<path id="<Path>" class="s10" d="m784.3 830.2c0 0.8-0.6 1.4-1.3 1.4h-149.2c-0.7 0-1.3-0.6-1.3-1.4 0-0.7 0.6-1.3 1.3-1.3h149.2c0.7 0 1.3 0.6 1.3 1.3z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s10" d="m787.8 830.4c0 2.9-2.4 5.3-5.3 5.3-2.9 0-5.3-2.4-5.3-5.3 0-2.9 2.4-5.3 5.3-5.3 2.9 0 5.3 2.4 5.3 5.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s11" d="m807.7 745.5c0 33.6-27.3 60.9-60.9 60.9-33.6 0-60.8-27.3-60.8-60.9 0-33.6 27.2-60.8 60.8-60.8 33.6 0 60.9 27.2 60.9 60.8z"/>
|
||||
<path id="<Path>" class="s3" d="m794.4 745.5c0 26.3-21.3 47.6-47.6 47.6-26.2 0-47.5-21.3-47.5-47.6 0-26.2 21.3-47.5 47.5-47.5 26.3 0 47.6 21.3 47.6 47.5z"/>
|
||||
<path id="<Path>" class="s1" d="m737.4 725.6v39.9l26-19.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path id="<Path>" class="s12" d="m867.1 841.3c2.1 0 3.8-1.7 3.8-3.9v-174.7c0-2.1-1.7-3.8-3.8-3.8h-22.5c0 121-62.4 166.6-96 182.4z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s5" d="m690.9 442.6c0 1.1-0.9 2-2 2h-241.9c-1.1 0-2-0.9-2-2v-159.2c0-1.1 0.9-2 2-2h241.9c1.1 0 2 0.9 2 2z"/>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s1" d="m681.9 433.3c0 0.9-0.8 1.8-1.8 1.8h-224.4c-0.9 0-1.8-0.9-1.8-1.8v-140.5c0-1 0.9-1.8 1.8-1.8h224.4c1 0 1.8 0.8 1.8 1.8z"/>
|
||||
<path id="<Path>" class="s3" d="m632.3 340.2c-5.2-6-13.7-6-18.9 0l-64.3 74.3c-5.2 6.1-13.7 6.1-18.9 0l-29.2-33.8c-5.2-6-13.7-6-18.9 0l-28.2 32.6v21.9c0 0.9 0.9 1.7 1.8 1.7h224.4c1 0 1.8-0.8 1.8-1.7v-37.5z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s3" d="m557.8 334c0 13.1-10.6 23.7-23.6 23.7-13.1 0-23.7-10.6-23.7-23.7 0-13 10.6-23.6 23.7-23.6 13 0 23.6 10.6 23.6 23.6z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s7" d="m688.9 444.6c1.1 0 2-0.9 2-2v-159.2c0-1.1-0.9-2-2-2h-28.7c-5.1 95.6-44 141.4-77.2 163.2z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s0" d="m480.4 598.6c0 1.1-0.9 2.1-2.1 2.1h-162.9c-1.2 0-2.1-1-2.1-2.1v-116.3c0-1.2 0.9-2.1 2.1-2.1h162.9c1.2 0 2.1 0.9 2.1 2.1z"/>
|
||||
<path id="<Path>" class="s1" d="m480.4 494.8v-12.5c0-1.2-0.9-2.1-2.1-2.1h-162.9c-1.2 0-2.1 0.9-2.1 2.1v12.5z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s5" d="m338.5 487.5c0 1.7-1.4 3.1-3.1 3.1-1.6 0-3-1.4-3-3.1 0-1.7 1.4-3.1 3-3.1 1.7 0 3.1 1.4 3.1 3.1z"/>
|
||||
<path id="<Path>" class="s5" d="m325.7 487.5c0 1.7-1.3 3.1-3 3.1-1.7 0-3.1-1.4-3.1-3.1 0-1.7 1.4-3.1 3.1-3.1 1.7 0 3 1.4 3 3.1z"/>
|
||||
<path id="<Path>" class="s5" d="m351.3 487.5c0 1.7-1.4 3.1-3.1 3.1-1.7 0-3-1.4-3-3.1 0-1.7 1.3-3.1 3-3.1 1.7 0 3.1 1.4 3.1 3.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s5" d="m468.5 528.4h-107.9v-4.4h107.9z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s6" d="m357.2 514.4h-32v-4.4h32z"/>
|
||||
<path id="<Path>" class="s6" d="m342.2 542.4h-17v-4.4h17z"/>
|
||||
<path id="<Path>" class="s6" d="m357.2 556.4h-32v-4.4h32z"/>
|
||||
<path id="<Path>" class="s6" d="m350.1 570.4h-24.9v-4.4h24.9z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s5" d="m437.6 514.4h-62.1v-4.4h62.1z"/>
|
||||
<path id="<Path>" class="s6" d="m350.1 528.4h-24.9v-4.4h24.9z"/>
|
||||
<path id="<Path>" class="s5" d="m422.7 542.4h-73.4v-4.4h73.4z"/>
|
||||
<path id="<Path>" class="s5" d="m437.6 556.4h-62.1v-4.4h62.1z"/>
|
||||
<path id="<Path>" class="s5" d="m468.5 570.4h-107.9v-4.4h107.9z"/>
|
||||
<path id="<Path>" class="s6" d="m342.2 584.4h-17v-4.4h17z"/>
|
||||
<path id="<Path>" class="s5" d="m422.7 584.4h-73.4v-4.4h73.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="<Path>" class="s2" d="m480.4 482.3c0-1.2-0.9-2.1-2.1-2.1h-40c-0.9 74.5-52 108.7-75.4 120.5h115.4c1.2 0 2.1-1 2.1-2.1z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s0" d="m742.2 496.3c0 1.2-1 2.1-2.2 2.1h-142.9c-1.1 0-2.1-0.9-2.1-2.1v-76.2c0-1.2 1-2.2 2.1-2.2h142.9c1.2 0 2.2 1 2.2 2.2z"/>
|
||||
<path id="<Path>" class="s1" d="m742.2 432.6v-12.5c0-1.2-1-2.2-2.2-2.2h-142.9c-1.1 0-2.1 1-2.1 2.2v12.5z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s5" d="m620.2 425.2c0 1.7-1.3 3.1-3 3.1-1.7 0-3.1-1.4-3.1-3.1 0-1.7 1.4-3 3.1-3 1.7 0 3 1.3 3 3z"/>
|
||||
<path id="<Path>" class="s5" d="m607.5 425.2c0 1.7-1.4 3.1-3.1 3.1-1.7 0-3.1-1.4-3.1-3.1 0-1.7 1.4-3 3.1-3 1.7 0 3.1 1.3 3.1 3z"/>
|
||||
<path id="<Path>" class="s5" d="m633 425.2c0 1.7-1.4 3.1-3 3.1-1.7 0-3.1-1.4-3.1-3.1 0-1.7 1.4-3 3.1-3 1.6 0 3 1.3 3 3z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s6" d="m672 448.4q-5 15.2-10 30.4c-0.7 2 2.5 2.9 3.1 0.9q5.1-15.2 10.1-30.5c0.7-2-2.5-2.8-3.2-0.8z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s6" d="m659.9 469.7q-4.1-2.8-8.3-5.7 4.2-2.8 8.3-5.7c1.8-1.2 0.1-4-1.6-2.8q-5.2 3.5-10.4 7.1c-1.1 0.7-1.1 2.1 0 2.8q5.2 3.6 10.4 7.2c1.7 1.2 3.4-1.7 1.6-2.9z"/>
|
||||
<path id="<Path>" class="s6" d="m677.3 469.7q4.1-2.8 8.3-5.7-4.2-2.8-8.3-5.7c-1.8-1.2-0.1-4 1.6-2.8q5.2 3.5 10.4 7.1c1 0.7 1 2.1 0 2.8q-5.2 3.6-10.4 7.2c-1.7 1.2-3.4-1.7-1.6-2.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path id="<Path>" class="s2" d="m740 498.4c1.2 0 2.2-0.9 2.2-2.1v-76.2c0-1.2-1-2.2-2.2-2.2h-32c-2.4 47.3-29.4 69.9-51.6 80.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Compound Path>" fill-rule="evenodd" class="s5" d="m848.4 642.8l-6.9 16.9-34.1-14 2.2-5.4-34.5-14.2c-13 27.3-45.3 40-73.6 28.4-29.3-12.1-43.4-45.7-31.3-75.1 12-29.3 45.7-43.3 75-31.3 28.3 11.6 42.3 43.3 32.4 71.9l34.5 14.2 2.2-5.4zm-106.5-86.5c-24.8-10.2-53.3 1.7-63.5 26.5-10.2 24.8 1.7 53.3 26.5 63.5 24.8 10.2 53.3-1.7 63.5-26.5 10.2-24.8-1.7-53.3-26.5-63.5z"/>
|
||||
<path id="<Path>" class="s5" d="m707.7 566.3c-5.4 2.3-8 8.5-5.7 14 2.3 5.4 8.5 8 13.9 5.7 5.5-2.3 8-8.5 5.8-14-2.3-5.4-8.5-8-14-5.7z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Compound Path>" fill-rule="evenodd" class="s10" d="m901.2 401.3v7.4c0 1.1-0.9 2-2 2h-7.9c-1 6.7-3.6 12.8-7.5 18l5.7 5.6c0.7 0.8 0.7 2.1 0 2.8l-5.3 5.3c-0.8 0.8-2.1 0.8-2.9 0l-5.6-5.6c-5.1 3.8-11.3 6.5-17.9 7.4v8c0 1.1-0.9 2-2 2h-7.5c-1.1 0-2-0.9-2-2v-8c-6.7-0.9-12.8-3.6-17.9-7.4l-5.7 5.6c-0.7 0.8-2 0.8-2.8 0l-5.3-5.3c-0.7-0.7-0.7-2 0-2.8l5.7-5.6c-3.9-5.2-6.5-11.3-7.5-18h-7.9c-1.1 0-2-0.9-2-2v-7.4c0-1.1 0.9-2 2-2h7.9c1-6.7 3.6-12.8 7.5-18l-5.7-5.6c-0.7-0.8-0.7-2 0-2.8l5.3-5.3c0.8-0.8 2.1-0.8 2.8 0l5.7 5.6c5.1-3.8 11.3-6.4 17.9-7.4v-8c0-1.1 0.9-2 2-2h7.5c1.1 0 2 0.9 2 2v8c6.6 1 12.8 3.6 17.9 7.4l5.6-5.6c0.8-0.8 2.1-0.8 2.9 0l5.3 5.3c0.7 0.8 0.7 2 0 2.8l-5.7 5.6c3.9 5.2 6.5 11.3 7.5 18h7.9c1.1 0 2 0.9 2 2zm-20.2 3.7c0-16-12.9-29-29-29-16 0-29 13-29 29 0 16 13 29 29 29 16.1 0 29-13 29-29z"/>
|
||||
<path id="<Compound Path>" fill-rule="evenodd" class="s10" d="m821 323.8v6c0 0.8-0.8 1.5-1.6 1.5h-6.3c-0.8 5.3-2.9 10.2-5.9 14.3l4.4 4.4c0.6 0.6 0.6 1.7 0 2.3l-4.2 4.2c-0.6 0.6-1.6 0.6-2.2 0l-4.5-4.5c-4.1 3.1-8.9 5.1-14.2 5.9v6.3c0 0.9-0.7 1.6-1.6 1.6h-5.9c-0.9 0-1.6-0.7-1.6-1.6v-6.3c-5.3-0.8-10.1-2.8-14.2-5.9l-4.5 4.5c-0.6 0.6-1.6 0.6-2.2 0l-4.2-4.2c-0.6-0.6-0.6-1.7 0-2.3l4.5-4.4c-3.1-4.1-5.2-9-5.9-14.3h-6.3c-0.9 0-1.6-0.7-1.6-1.5v-6c0-0.8 0.7-1.5 1.6-1.5h6.3c0.7-5.3 2.8-10.2 5.9-14.3l-4.5-4.4c-0.6-0.6-0.6-1.7 0-2.3l4.2-4.2c0.6-0.6 1.6-0.6 2.2 0l4.5 4.5c4.1-3 8.9-5.1 14.2-5.9v-6.3c0-0.9 0.7-1.6 1.6-1.6h5.9c0.9 0 1.6 0.7 1.6 1.6v6.3c5.3 0.8 10.1 2.9 14.2 5.9l4.5-4.5c0.6-0.6 1.6-0.6 2.2 0l4.2 4.2c0.6 0.6 0.6 1.7 0 2.3l-4.4 4.4c3 4.1 5.1 9 5.9 14.3h6.3c0.8 0 1.6 0.7 1.6 1.5zm-23.3 3c0-8.7-7-15.8-15.7-15.8-8.7 0-15.8 7.1-15.8 15.8 0 8.7 7.1 15.8 15.8 15.8 8.7 0 15.7-7.1 15.7-15.8z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s10" d="m370.6 836.8c0.1 4.7-3.7 8.6-8.4 8.6h-4.2c-4.8 0-8.5-3.9-8.4-8.6l3-130.5c0.1-4.7 3.5-8.6 7.5-8.6 4 0 7.3 3.9 7.4 8.6z"/>
|
||||
<path id="<Path>" class="s13" d="m358 845.4h4.2c1.5 0 2.9-0.4 4.1-1.1l-1.4-61.9c-0.1-3-2.3-5.5-4.8-5.5-2.6 0-4.8 2.5-4.8 5.5l-1.5 61.9c1.3 0.7 2.7 1.1 4.2 1.1z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s10" d="m377.7 651.3v24.1l-17.6 17.4-17.7-17.4v-24.1c-12.3 6.4-20.7 19.3-20.7 34.1 0 21.2 17.2 38.3 38.4 38.3 21.1 0 38.3-17.1 38.3-38.3 0-14.8-8.4-27.7-20.7-34.1z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s13" d="m360.1 716.3c-14.2 0-26.8-6.3-35.4-16.1 5.8 13.8 19.4 23.5 35.4 23.5 15.9 0 29.6-9.7 35.4-23.5-8.6 9.8-21.3 16.1-35.4 16.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s10" d="m397.5 383.7c0 3-2.5 5.4-5.5 5.4h-154.7c-3.1 0-5.5-2.4-5.5-5.4v-81.4c0-3 2.4-5.4 5.5-5.4h154.7c3 0 5.5 2.4 5.5 5.4z"/>
|
||||
<path id="<Path>" class="s13" d="m392 296.9h-154.7q-1.2 0-2.2 0.4l74.5 54c2.7 2 7.3 2 10.1 0l74.5-54q-1-0.4-2.2-0.4z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s7" d="m392 296.9h-27.9c-6.9 57.3-51.8 81.8-85.8 92.2h113.7c3 0 5.5-2.4 5.5-5.4v-81.4c0-3-2.5-5.4-5.5-5.4z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s3" d="m318.6 221.3c-14.9 30.6-48.1 37.4-48.1 37.4 6.3 54.6 48.1 65.9 48.1 65.9 0 0 41.7-11.3 48.1-65.9 0 0-33.3-6.8-48.1-37.4z"/>
|
||||
<path id="<Path>" class="s6" d="m318.6 245.6c-9.1 18.7-29.4 22.8-29.4 22.8 3.9 33.3 29.4 40.2 29.4 40.2 0 0 25.4-6.9 29.3-40.2 0 0-20.3-4.1-29.3-22.8z"/>
|
||||
<path id="<Path>" class="s0" d="m331.4 268.5q-6.7 8.1-13.3 16.3-4.2-3.2-8.4-6.4c-2.7-2-5.3 2.5-2.7 4.5q5.2 3.8 10.3 7.7c0.8 0.7 2.4 0.4 3.1-0.4q7.3-9 14.6-18.1c2.1-2.6-1.5-6.2-3.6-3.6z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s7" d="m291 306.4c13.2 14.3 27.6 18.2 27.6 18.2 0 0 41.7-11.3 48.1-65.9 0 0-10.3-2.1-22-9.3-9.4 33.9-37.1 50.1-53.7 57z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s5" d="m186.9 468.3c-3 0-5.9 0.4-8.5 1.3-4.2-16.6-19.1-28.8-37-28.8-21 0-38 17-38 38.1q0 2.3 0.2 4.5-2-0.4-4.1-0.4c-11.3 0-20.5 9.2-20.5 20.5 0 11.4 9.2 20.6 20.5 20.6h87.4c15.4 0 27.9-12.5 27.9-27.9 0-15.4-12.5-27.9-27.9-27.9z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s12" d="m201.1 472.2c1.8 3.7 2.8 7.7 2.8 12.1 0 15.4-12.5 27.9-27.9 27.9h-87.4c-3 0-5.9-0.7-8.5-1.9 2.8 8 10.5 13.8 19.4 13.8h87.4c15.4 0 27.9-12.5 27.9-27.9 0-10.2-5.5-19.1-13.7-24z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s3" d="m168.4 488.3l-8.7-11.1-8.7 11.1h5.3v8.7h6.8v-8.7z"/>
|
||||
<path id="<Path>" class="s3" d="m121.4 487.6l8.7 11.1 8.6-11.1h-5.2v-8.7h-6.8v8.7z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s5" d="m693.6 255.6c-2.8 0-5.5 0.4-8 1.2-3.9-15.6-18-27.1-34.8-27.1-19.9 0-36 16-36 35.9q0 2.1 0.3 4.2-1.9-0.4-3.9-0.4c-10.7 0-19.4 8.7-19.4 19.4 0 10.7 8.7 19.4 19.4 19.4h82.4c14.5 0 26.3-11.8 26.3-26.3 0-14.5-11.8-26.3-26.3-26.3z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s12" d="m707 259.3c1.7 3.4 2.6 7.3 2.6 11.4 0 14.5-11.8 26.3-26.3 26.3h-82.4c-2.8 0-5.5-0.7-8-1.8 2.7 7.6 9.9 13 18.3 13h82.4c14.5 0 26.3-11.8 26.3-26.3 0-9.6-5.2-18-12.9-22.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="<Path>" class="s3" d="m664.1 270.4l-10.6-13.6-10.6 13.6h6.4v10.6h8.3v-10.6z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s5" d="m879.2 534.2q-3 0-5.6 0.8c-2.7-10.8-12.6-18.9-24.3-18.9-13.8 0-25 11.2-25 25q0 1.5 0.2 3-1.3-0.3-2.7-0.3c-7.4 0-13.5 6.1-13.5 13.5 0 7.5 6.1 13.5 13.5 13.5h57.4c10.1 0 18.3-8.2 18.3-18.3 0-10.1-8.2-18.3-18.3-18.3z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s12" d="m888.5 536.7c1.2 2.4 1.8 5.1 1.8 8 0 10.1-8.2 18.3-18.3 18.3h-57.3c-2 0-3.9-0.5-5.6-1.2 1.8 5.2 6.8 9 12.7 9h57.4c10.1 0 18.3-8.2 18.3-18.3 0-6.7-3.6-12.6-9-15.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="<Path>" class="s3" d="m842.8 542.4l7.8 10 7.9-10h-4.8v-7.8h-6.1v7.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m165 329.5h-2v-11.6h2z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m165 353.6h-2v-11.6h2z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m181.8 336.7h-11.6v-2h11.6z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m157.8 336.7h-11.6v-2h11.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m169.1 332l-1.4-1.4 8.2-8.2 1.4 1.4z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m152.1 349l-1.4-1.4 8.2-8.2 1.4 1.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m175.9 349l-8.2-8.2 1.4-1.4 8.2 8.2z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m158.9 332l-8.2-8.2 1.4-1.4 8.2 8.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m214 262.6h-1.2v-7.1h1.2z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m214 277.4h-1.2v-7.2h1.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m224.3 267h-7.1v-1.2h7.1z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m209.6 267h-7.2v-1.2h7.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m216.5 264.2l-0.8-0.9 5-5 0.8 0.8z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m206.1 274.6l-0.9-0.9 5-5 0.9 0.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m220.7 274.6l-5-5 0.8-0.9 5 5z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m210.2 264.2l-5-5.1 0.9-0.8 5 5z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m904.2 478.6h-2v-11.6h2z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m904.2 502.6h-2v-11.6h2z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m921 485.8h-11.6v-2h11.6z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m897 485.8h-11.6v-2h11.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m908.3 481.1l-1.4-1.4 8.2-8.2 1.4 1.4z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m891.3 498.1l-1.4-1.4 8.2-8.2 1.4 1.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m915.1 498.1l-8.2-8.2 1.4-1.4 8.2 8.2z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m898.1 481.1l-8.2-8.2 1.4-1.4 8.2 8.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m867.3 606.8h-1.2v-7.1h1.2z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m867.3 621.5h-1.2v-7.1h1.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m877.7 611.2h-7.1v-1.2h7.1z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m862.9 611.2h-7.1v-1.2h7.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m869.9 608.3l-0.9-0.8 5-5.1 0.9 0.9z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m859.4 618.8l-0.8-0.9 5-5 0.9 0.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m874 618.8l-5-5.1 0.9-0.8 5 5z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m863.6 608.3l-5-5 0.8-0.9 5.1 5.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m454.8 187.6h-2.7v-15.7h2.7z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m454.8 220.1h-2.7v-15.7h2.7z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m477.5 197.3h-15.7v-2.7h15.7z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m445 197.3h-15.7v-2.7h15.7z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m460.3 191l-1.9-1.9 11.1-11.1 1.9 1.9z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m437.3 214l-1.9-1.9 11.1-11.1 1.9 1.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m469.5 214l-11.1-11.1 1.9-1.9 11.1 11.1z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m446.5 191l-11.1-11.1 1.9-1.9 11.1 11.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m868 306.5h-1.3v-7.1h1.3z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m868 321.3h-1.3v-7.1h1.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m878.3 311h-7.1v-1.2h7.1z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m863.5 311h-7.1v-1.2h7.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m870.5 308.1l-0.9-0.9 5.1-5 0.8 0.9z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m860 318.5l-0.8-0.8 5-5.1 0.9 0.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m874.7 318.5l-5.1-5 0.9-0.9 5 5.1z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m864.2 308.1l-5-5 0.8-0.9 5.1 5z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m758.1 225.1h-2v-11.6h2z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m758.1 249.1h-2v-11.6h2z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m774.9 232.3h-11.6v-2h11.6z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m750.9 232.3h-11.6v-2h11.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m762.2 227.6l-1.4-1.4 8.2-8.2 1.4 1.4z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m745.2 244.6l-1.4-1.4 8.2-8.2 1.4 1.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m769 244.6l-8.2-8.2 1.4-1.4 8.2 8.2z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m752 227.6l-8.2-8.2 1.4-1.4 8.2 8.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m95 409.4h-1.2v-7.1h1.2z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m95 424.2h-1.2v-7.1h1.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m105.3 413.9h-7.1v-1.3h7.1z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m90.6 413.9h-7.2v-1.3h7.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m97.5 411l-0.9-0.9 5.1-5 0.8 0.8z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m87.1 421.4l-0.9-0.9 5-5 0.9 0.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m101.7 421.4l-5.1-5 0.9-0.9 5 5z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m91.2 411l-5-5.1 0.9-0.8 5 5z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="<Path>" class="s14" d="m161.2 215.4c0 2.2-1.8 4.1-4.1 4.1-2.2 0-4-1.9-4-4.1 0-2.2 1.8-4.1 4-4.1 2.3 0 4.1 1.9 4.1 4.1z"/>
|
||||
<path id="<Path>" class="s14" d="m259.8 143.4c0 3-2.4 5.3-5.3 5.3-3 0-5.3-2.3-5.3-5.3 0-2.9 2.3-5.3 5.3-5.3 2.9 0 5.3 2.4 5.3 5.3z"/>
|
||||
<path id="<Path>" class="s14" d="m914.8 641c0 2.9-2.4 5.3-5.4 5.3-2.9 0-5.3-2.4-5.3-5.3 0-2.9 2.4-5.3 5.3-5.3 3 0 5.4 2.4 5.4 5.3z"/>
|
||||
<path id="<Path>" class="s14" d="m825 245.6c0 2.2-1.8 4-4 4-2.3 0-4.1-1.8-4.1-4 0-2.3 1.8-4.1 4.1-4.1 2.2 0 4 1.8 4 4.1z"/>
|
||||
<path id="<Path>" class="s14" d="m514.6 247.9c0 2.3-1.9 4.1-4.1 4.1-2.2 0-4.1-1.8-4.1-4.1 0-2.2 1.9-4 4.1-4 2.2 0 4.1 1.8 4.1 4z"/>
|
||||
<path id="<Path>" class="s14" d="m643.5 158.9c0 2.9-2.4 5.3-5.3 5.3-2.9 0-5.3-2.4-5.3-5.3 0-3 2.4-5.4 5.3-5.4 2.9 0 5.3 2.4 5.3 5.4z"/>
|
||||
<path id="<Path>" class="s14" d="m104.9 599.7c0 2.9-2.4 5.3-5.3 5.3-2.9 0-5.3-2.4-5.3-5.3 0-3 2.4-5.3 5.3-5.3 2.9 0 5.3 2.3 5.3 5.3z"/>
|
||||
<path id="<Path>" class="s14" d="m357.9 201c0 2.2-1.8 4-4.1 4-2.2 0-4-1.8-4-4 0-2.3 1.8-4.1 4-4.1 2.3 0 4.1 1.8 4.1 4.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 30 KiB |
@@ -1,427 +0,0 @@
|
||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 715 731" width="715" height="731">
|
||||
<title>481-ai</title>
|
||||
<defs>
|
||||
<linearGradient id="g1" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-281.923,0,0,-212.83,328.429,410.647)">
|
||||
<stop offset="0" stop-color="#0b0244"/>
|
||||
<stop offset="1" stop-color="#24126a"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g2" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(154.827,113.668,-167.156,227.683,168.892,604.719)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g3" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(122.169,62.716,-75.551,147.172,204.995,508.302)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g4" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(111.416,76.992,-105.444,152.589,229.83,424.582)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g5" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(120.242,56.402,-33.331,71.058,212.761,424.122)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g6" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-343.134,-188.179,108.643,-198.104,728.745,774.013)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g7" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,496.999,595.622)">
|
||||
<stop offset="0" stop-color="#2b237c"/>
|
||||
<stop offset="1" stop-color="#180d5b"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g8" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-165.08,-93.843,11.541,-20.302,523.603,737.001)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset=".282" stop-color="#1f3372"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g9" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-292.403,-189.918,123.352,-189.915,609.405,697.674)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g10" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,496.999,551.387)">
|
||||
<stop offset="0" stop-color="#2b237c"/>
|
||||
<stop offset="1" stop-color="#180d5b"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g11" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-148.563,-83.76,10.602,-18.805,502.675,680.58)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset=".282" stop-color="#1f3372"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g12" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-190.738,-43.072,43.602,-193.085,561.69,662.69)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g13" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-343.134,-188.179,108.643,-198.105,728.745,690.68)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g14" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,496.999,512.288)">
|
||||
<stop offset="0" stop-color="#2b237c"/>
|
||||
<stop offset="1" stop-color="#180d5b"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g15" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-165.08,-93.843,11.541,-20.302,523.603,653.667)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset=".282" stop-color="#1f3372"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g16" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-292.403,-189.918,123.351,-189.915,609.405,614.34)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g17" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,496.999,468.054)">
|
||||
<stop offset="0" stop-color="#2b237c"/>
|
||||
<stop offset="1" stop-color="#180d5b"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g18" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-148.563,-83.76,10.602,-18.805,502.675,597.247)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset=".282" stop-color="#1f3372"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g19" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-190.738,-43.072,43.602,-193.085,561.69,579.357)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g20" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-343.134,-188.179,108.643,-198.105,728.745,607.346)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g21" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,496.999,428.955)">
|
||||
<stop offset="0" stop-color="#2b237c"/>
|
||||
<stop offset="1" stop-color="#180d5b"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g22" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-165.08,-93.843,11.541,-20.302,523.603,570.334)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset=".282" stop-color="#1f3372"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g23" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-292.403,-189.918,123.351,-189.915,609.405,531.007)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g24" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,496.999,384.721)">
|
||||
<stop offset="0" stop-color="#2b237c"/>
|
||||
<stop offset="1" stop-color="#180d5b"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g25" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-148.563,-83.76,10.602,-18.805,502.675,513.914)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset=".282" stop-color="#1f3372"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g26" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-190.738,-43.072,43.602,-193.084,561.69,496.024)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g27" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-343.134,-188.179,108.643,-198.104,728.745,524.013)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g28" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,496.999,345.622)">
|
||||
<stop offset="0" stop-color="#2b237c"/>
|
||||
<stop offset="1" stop-color="#180d5b"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g29" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-165.08,-93.843,11.541,-20.302,523.603,487.001)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset=".282" stop-color="#1f3372"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g30" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-292.403,-189.918,123.352,-189.915,609.405,447.674)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g31" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,496.999,301.387)">
|
||||
<stop offset="0" stop-color="#2b237c"/>
|
||||
<stop offset="1" stop-color="#180d5b"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g32" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-148.563,-83.76,10.602,-18.805,502.675,430.58)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset=".282" stop-color="#1f3372"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g33" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-190.738,-43.072,43.602,-193.085,561.69,412.69)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g34" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,-235.895,76.835,0,93.748,328.489)">
|
||||
<stop offset="0" stop-color="#42e8e0"/>
|
||||
<stop offset="1" stop-color="#180d5b"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<style>
|
||||
.s0 { opacity: .8;fill: url(#g1) }
|
||||
.s1 { fill: #160a5b }
|
||||
.s2 { fill: #24126a }
|
||||
.s3 { opacity: .7;fill: url(#g2) }
|
||||
.s4 { fill: #453c9e }
|
||||
.s5 { opacity: .7;fill: url(#g3) }
|
||||
.s6 { fill: #f0f6ff }
|
||||
.s7 { fill: #fcd1c5 }
|
||||
.s8 { fill: #4846a5 }
|
||||
.s9 { opacity: .7;fill: url(#g4) }
|
||||
.s10 { opacity: .7;fill: url(#g5) }
|
||||
.s11 { fill: #aa8383 }
|
||||
.s12 { fill: #c4ccd6 }
|
||||
.s13 { fill: #e2b1a6 }
|
||||
.s14 { fill: #936d6d }
|
||||
.s15 { fill: #312a91 }
|
||||
.s16 { opacity: .7;fill: url(#g6) }
|
||||
.s17 { fill: url(#g7) }
|
||||
.s18 { opacity: .7;fill: url(#g8) }
|
||||
.s19 { opacity: .7;fill: url(#g9) }
|
||||
.s20 { opacity: .3;fill: #42e8e0 }
|
||||
.s21 { fill: #42e8e0 }
|
||||
.s22 { fill: url(#g10) }
|
||||
.s23 { opacity: .7;fill: url(#g11) }
|
||||
.s24 { opacity: .5;fill: #5cfff3 }
|
||||
.s25 { fill: url(#g12) }
|
||||
.s26 { opacity: .5;fill: #42e8e0 }
|
||||
.s27 { opacity: .7;fill: url(#g13) }
|
||||
.s28 { fill: url(#g14) }
|
||||
.s29 { opacity: .7;fill: url(#g15) }
|
||||
.s30 { opacity: .7;fill: url(#g16) }
|
||||
.s31 { fill: url(#g17) }
|
||||
.s32 { opacity: .7;fill: url(#g18) }
|
||||
.s33 { fill: url(#g19) }
|
||||
.s34 { opacity: .7;fill: url(#g20) }
|
||||
.s35 { fill: url(#g21) }
|
||||
.s36 { opacity: .7;fill: url(#g22) }
|
||||
.s37 { opacity: .7;fill: url(#g23) }
|
||||
.s38 { fill: url(#g24) }
|
||||
.s39 { opacity: .7;fill: url(#g25) }
|
||||
.s40 { fill: url(#g26) }
|
||||
.s41 { opacity: .7;fill: url(#g27) }
|
||||
.s42 { fill: url(#g28) }
|
||||
.s43 { opacity: .7;fill: url(#g29) }
|
||||
.s44 { opacity: .7;fill: url(#g30) }
|
||||
.s45 { fill: url(#g31) }
|
||||
.s46 { opacity: .7;fill: url(#g32) }
|
||||
.s47 { fill: url(#g33) }
|
||||
.s48 { opacity: .7;fill: url(#g34) }
|
||||
.s49 { opacity: .9;fill: #42e8e0 }
|
||||
.s50 { opacity: .2;fill: #42e8e0 }
|
||||
</style>
|
||||
<g id="321353356351 1">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s0" d="m57.2 413.9c15.5-8.4 38.7 2.1 38.7 2.1 0 0 5.5 2.3 6.1 4.5 3.2 2.1 5.2 4 5.5 4.6 1.2 2.3 5.8 5.5 8.3 7.3 2.3 1.6 5.2 6.3 6.3 8.2h0.1c0 0 15.1-3.8 20.1-5.1 0.4 0 0.7 0 1.1 0 0-0.1-0.1-0.1-0.1-0.1 0 0 3.2-1 32.3 9.5 16.3 5.8 35.6 10.7 45.6 16 10 5.3 18 12.1 16.8 13.4-0.6 0.6-6.1 6.4-12.4 12.9l1.3 0.6c0 0 32.8 15.1 32.8 15.9 0.1 0.5-1.7 6-4.6 10.6q1.3 1 3.3 2.6 0.1 0.1 0.1 0.2c9.8 7.8 30.4 25.3 37.3 38.3 0 0 14.4 11.6 32.6 25.8l-5.7 11.4c-10.8-5.6-41.5-16.6-45.8-22.4-4.5-6-26.6-18.2-26.6-18.2q0 0-0.1 0.2c-0.1 0.8-0.3 4.4 7.4 14.8 8.8 11.9 23.3 31.7 25.4 35.2l8.5 21.3c-1.9-1.7-3-3.2-3.5-4-8.7-3-31.4-18.3-37.8-23.8-6.7-5.7-27.2-24.6-35.1-29.8-6.2-4-12.4-7.1-17.4-11.2q-1.8-0.2-3.5-0.8c-6.4-2.2-18.9-12.4-28.8-21.7q0 0 0 0-0.2-0.3-0.5-0.5-0.4-0.4-0.9-0.8-1-1-1.9-1.9-0.3-0.3-0.6-0.6-0.9-0.9-1.8-1.8-0.3-0.3-0.7-0.7-0.9-1-1.8-1.9-0.1-0.1-0.2-0.2-0.8-0.9-1.6-1.7-0.2-0.3-0.4-0.5-0.8-0.9-1.4-1.6 0-0.1-0.1-0.1c-21.6-5.1-47.6-15-54.2-18.3-10.4-5.2-23.6-12.2-19.9-16.7l7.3-21.2c0 0-3.6-8.9-2.5-10.7q0.2-0.2 0.3-0.4 0 0 0.1-0.1 0.1-0.1 0.2-0.2 0.1-0.1 0.1-0.1 0.1-0.1 0.2-0.2l-3.3-1.8c-2.9-0.2-4.2-0.8-6.3-1.6-2.1-0.8-2.7-1-6.9-2.7-4.3-1.7-3.1-3-3.1-3 0 0-1.5-0.3-3.9-1.3q-0.8-0.4-1.7-0.8-0.1-0.1-0.2-0.1-0.8-0.4-1.7-1-0.2-0.1-0.5-0.2-0.8-0.5-1.6-1.1-0.4-0.2-0.7-0.4-0.8-0.6-1.6-1.3c-0.2-0.2-0.4-0.3-0.7-0.5q0 0 0.1 0c-0.2-0.2-0.4-0.3-0.6-0.5-6.6-5.9-10.7-13.3 4.8-21.8z"/>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s1" d="m334.7 581.2c0 0 1.5 1.6 3.1 3.5 1.6 1.8 6 4.4 7.9 5.6 1.9 1.2 10.5 7.7 12.3 14.1 1.8 6.4-4.4 7.2-10.6 6.1-6.3-1.1-12.2-6.9-13.9-9-1.7-2.1-7.6-6.8-15.3-10.8-7.7-4-3.1-9.3-3.1-9.3z"/>
|
||||
<path id="<Path>" class="s1" d="m277.5 600.2c0 0-1.2 2.9-1.6 6.6-0.4 3.7-0.9 11.7-1.1 14.1-0.2 2.3-0.2 8.1 3.9 13.6 4.1 5.5 6.3 7.7 11.8 5.5 5.5-2.2 5.3-11.4 4.4-16.1-1-4.8-1.9-15.4-1.8-16.5 0.1-1.1-0.3-1.8-0.3-1.8z"/>
|
||||
<path id="<Path>" class="s2" d="m353.7 472.3c0 0-1.2 42.4-11.1 64.8 0 0-7 19.8-8 43.3 0 0 1.7 4.1-0.6 7.3-2.4 3.3-16.8 6.4-19.2-4.5-2.4-10.8-1.5-31 1.1-39.5 2.7-8.4-0.9-31.7-0.9-31.7 0 0-4 2.6-9.1 19.3-5.2 16.7-9 23.1-10.8 27.7-1.8 4.6-3.4 32.9-2.3 46.8 0 0-11.7 1.6-15.1-4-3.4-5.6-4.5-34.6-3.7-43.8 0.9-9.3 4.7-38.9 4.2-48-0.5-9.2-2.4-16.6-0.3-25.8 2.1-9.1 63.9-29.4 63.9-29.4z"/>
|
||||
<path id="<Path>" class="s3" d="m353.7 472.3c0 0-1.2 42.4-11.1 64.8 0 0-7 19.8-8 43.3 0 0 1.7 4.1-0.6 7.3-2.4 3.3-16.8 6.4-19.2-4.5-2.4-10.8-1.5-31 1.1-39.5 2.7-8.4-0.9-31.7-0.9-31.7 0 0-4 2.6-9.1 19.3-5.2 16.7-9 23.1-10.8 27.7-1.8 4.6-3.4 32.9-2.3 46.8 0 0-11.7 1.6-15.1-4-3.4-5.6-4.5-34.6-3.7-43.8 0.9-9.3 4.7-38.9 4.2-48-0.5-9.2-2.4-16.6-0.3-25.8 2.1-9.1 63.9-29.4 63.9-29.4z"/>
|
||||
<path id="<Path>" class="s1" d="m278.2 510c-0.5-9.2-2.4-16.6-0.3-25.8 0.7-3.4 10-8.4 21.2-13.3 18.9-1.8 42.9-3.8 44.6-3.5 1.5 0.2 5.4 1.7 8.6 3l1.4 1.9c0 0-0.1 2.6-0.4 6.8-4.4 1.3-12.9 0-12.9 0-1.2 2.9-8.6 13.5-17.7 18-9.2 4.6-36 3-37.6 4.8-1.5 1.7-1.8 24.9-1.7 27.8 0.2 2.9-2.5 21.5-5 37.9-2.4 16.1 1.3 35.7 1.4 36.3-0.8-0.5-1.6-1.2-2.1-2.1-3.4-5.6-4.5-34.6-3.7-43.8 0.9-9.3 4.7-38.9 4.2-48z"/>
|
||||
<path id="<Path>" class="s4" d="m333 334c0 0 13.7 3.1 18.3 4.2 0.8 0.2 1.4 0.7 1.7 1.5 1.3 3.3 4.6 13.8 2.1 29.1-3.1 18.8-2.1 31.5-2.1 31.5l6.3 33c0 0 8 31.5 7.3 32.3-0.6 0.9-18.3 14.4-23.9 12.5-5.5-1.9-3.7-5.1-3.7-5.1 0 0-4.4 22.8-24.3 22.6-19.8-0.2-36-0.1-39.3-8.2-3.4-8 0.9-41.6 4.4-55 3.5-13.3 11.8-39.9 11.8-39.9l-29-32.1 24.8-19c0 0 5.9-11 8.3-12.4 2.5-1.4 3.7-0.2 3.7-0.2z"/>
|
||||
<path id="<Path>" class="s4" d="m333 334c0 0 13.7 3.1 18.3 4.2 0.8 0.2 1.4 0.7 1.7 1.5 1.3 3.3 4.6 13.8 2.1 29.1-3.1 18.8-2.1 31.5-2.1 31.5l6.3 33c0 0 8 31.5 7.3 32.3-0.6 0.9-18.3 14.4-23.9 12.5-5.5-1.9-3.7-5.1-3.7-5.1 0 0-4.4 22.8-24.3 22.6-19.8-0.2-36-0.1-39.3-8.2-3.4-8 0.9-41.6 4.4-55 3.5-13.3 11.8-39.9 11.8-39.9l-29-32.1 24.8-19c0 0 5.9-11 8.3-12.4 2.5-1.4 3.7-0.2 3.7-0.2z"/>
|
||||
<path id="<Path>" class="s5" d="m333 334c0 0 13.7 3.1 18.3 4.2 0.8 0.2 1.4 0.7 1.7 1.5 1.3 3.3 4.6 13.8 2.1 29.1-3.1 18.8-2.1 31.5-2.1 31.5l6.3 33c0 0 8 31.5 7.3 32.3-0.6 0.9-18.3 14.4-23.9 12.5-5.5-1.9-3.7-5.1-3.7-5.1 0 0-4.4 22.8-24.3 22.6-19.8-0.2-36-0.1-39.3-8.2-3.4-8 0.9-41.6 4.4-55 3.5-13.3 11.8-39.9 11.8-39.9l-29-32.1 24.8-19c0 0 5.9-11 8.3-12.4 2.5-1.4 3.7-0.2 3.7-0.2z"/>
|
||||
<path id="<Path>" class="s6" d="m296.3 328.8c0 0-5.1 6.1 2.2 14.4 4.5 5.1 12.2 16 18.8 27.5 4.1 7.1 7.9 10.9 10 17 0 0 0.3-7.3 0.6-18.5 0.3-10.6 0.4-21.6 0-24.4-1-5.7-26-18.8-31.6-16z"/>
|
||||
<path id="<Path>" class="s7" d="m315.2 347.2c0 0 2.6 1.6 3.5 1.5 0.9-0.2 3.8-2.9 3.8-2.9 0 0 7.2-0.2 8-3.3 0.7-3 1.3-6.1 2-7.7 0.7-1.6 3.8-9.3 3.8-12.5 0.1-3.1-0.1-8.6 1.3-11.6 1.3-3 3.2-32.5-25.4-31.6-28.5 0.8-19.6 30.4-19.6 30.4 0 0-2.1 0.9-0.8 4.7 1.2 3.8 1.5 4.2 2.2 6.1 0.6 1.9 0.9 3.1 2.7 4.6l0.5 3.5c0 0-1.4 5.4 2.2 10.6 3.5 5.2 15.8 8.2 15.8 8.2z"/>
|
||||
<path id="<Path>" class="s8" d="m352.1 338.5c0 0 3 0.5 12.9 25.3 5.5 13.9 14 28.2 15.8 38.5 1.8 10.3 0.8 21.3-1.3 22-1.9 0.8-37.4 14.1-48.5 18.2-0.6 0.3-1.2-0.1-1.3-0.8l-3.1-17.1 22-8.5c0 0 4.2-5.1 8.1-7 0 0-4.4-8.1-4.1-10.4 0.3-2.2-0.4-25.1 2.2-34.5 2.5-9.3-2.7-25.7-2.7-25.7z"/>
|
||||
<path id="<Path>" class="s9" d="m352.1 338.5c0 0 3 0.5 12.9 25.3 5.5 13.9 14 28.2 15.8 38.5 1.8 10.3 0.8 21.3-1.3 22-1.9 0.8-37.4 14.1-48.5 18.2-0.6 0.3-1.2-0.1-1.3-0.8l-3.1-17.1 22-8.5c0 0 4.2-5.1 8.1-7 0 0-4.4-8.1-4.1-10.4 0.3-2.2-0.4-25.1 2.2-34.5 2.5-9.3-2.7-25.7-2.7-25.7z"/>
|
||||
<path id="<Path>" class="s7" d="m339.2 404.1c0 0 3-2 3.8-2.3 0.7-0.3 4.8-1.7 5.5-2 0.6-0.3 3-0.1 4.2 0 0.4 0.1 0.8 0.3 1 0.7 0.9 1.7 3.5 6.8 3.2 8.7 0 0-7.3 4.6-8.1 6.7l-1.2 0.3c0 0-4.9-10.6-8.4-12.1z"/>
|
||||
<path id="<Path>" class="s2" d="m279.8 432.4c0.8-3.2 1.9-7.2 3.2-11.3l44.5 19c0 0-13.3 16.4-36.7 15.4-6.4-0.3-11.1-2.6-14.5-4.6 1.1-7.3 2.3-14 3.5-18.5z"/>
|
||||
<path id="<Path>" class="s2" d="m262.6 360.4c0 0 11.7 1.6 21.2 16.6 9.5 15.1 16.4 32.5 16.4 32.5l0.3 2c0.9 5.1 6.3 8 11.1 5.9 10-4.5 24.8-11.3 27.6-13.3 0 0 8.9 4.9 11.3 16.5 1.9 9.3 1.4 9.3 1.4 9.3 0 0-39.5 18.4-54.8 18.3-15.3-0.2-34.6-50.4-36.8-60.8-2.1-10.4-4.5-24.1 2.3-27z"/>
|
||||
<path id="<Path>" class="s8" d="m262.6 360.4c0 0 11.7 1.6 21.2 16.6 9.5 15.1 16.4 32.5 16.4 32.5l0.3 2c0.9 5.1 6.3 8 11.1 5.9 10-4.5 24.8-11.3 27.6-13.3 0 0 8.9 4.9 11.3 16.5 1.9 9.3 1.4 9.3 1.4 9.3 0 0-39.5 18.4-54.8 18.3-15.3-0.2-34.6-50.4-36.8-60.8-2.1-10.4-4.5-24.1 2.3-27z"/>
|
||||
<path id="<Path>" class="s10" d="m262.6 360.4c0 0 11.7 1.6 21.2 16.6 9.5 15.1 16.4 32.5 16.4 32.5l0.3 2c0.9 5.1 6.3 8 11.1 5.9 10-4.5 24.8-11.3 27.6-13.3 0 0 8.9 4.9 11.3 16.5 1.9 9.3 1.4 9.3 1.4 9.3 0 0-39.5 18.4-54.8 18.3-15.3-0.2-34.6-50.4-36.8-60.8-2.1-10.4-4.5-24.1 2.3-27z"/>
|
||||
<path id="<Path>" class="s4" d="m305.9 419.7c0 0-5 4.7-7.2 2.1-2.1-2.5-1.5-2.8-1.5-2.8 0 0-4.5 0-5-2.9-0.6-2.8-2.8-1.3-2.9-4.4-0.2-3.1 3.6-2.5 3.6-2.5z"/>
|
||||
<path id="<Path>" class="s7" d="m311.9 417.2c0 0-1.4-1.2-3.1-2.7-1.8-1.5-4.7-7.7-5.1-8.3-0.5-0.5-6.5-5.1-9.4-5.2-2.8-0.1-0.7 3.2 0 3.6 0.6 0.5 3.4 1.9 3.4 1.9 0 0 2.9 2.4 3.2 2.7 0.4 0.4-8-0.5-9.3 0.3-1.3 0.8-1 2.9-0.1 3.5 0.9 0.6 1.6 0.6 1.6 0.6 0 0-0.9 2.5 1.6 3.7 2.5 1.1 3.1 0.5 3.1 0.5 0 0 0.2 4.3 4.4 3.5z"/>
|
||||
<path id="<Path>" class="s11" d="m338.2 295.6c0 0 3.8 11.9-6 8.5-9.8-3.4-18.7-9-21.8-6.9-2.3 1.7-2.2 6.7-2 9 0 0.7-0.2 1.5-0.6 2.2l-2.9 4.2q-0.5 0.7-0.6 1.6l-0.2 2.9c0 0.8-0.6 1.4-1.4 1.4h-0.6c-0.8 0.1-1.4-0.4-1.6-1.2l-0.7-4.3c0 0-2.3-5.8-7.2-3.5 0 0-3.3-4.4-2.2-13.7 1.1-9.4 5.3-19.1 23.7-20.7 18.3-1.6 24.1 20.5 24.1 20.5z"/>
|
||||
<path id="<Path>" class="s12" d="m310.2 357.6l2.7-2.1c0 0 2.5 2.1 3.5 4.4 1 2.2 0 9.3 0 9.3l0.9 1.5 1-1.9 0.9-8.5c0 0-1-6.2-1.1-6.3 0-0.2-5.3 0.5-5.3 0.5 0 0-1.8 1.4-2.6 3.1z"/>
|
||||
<path id="<Path>" class="s12" d="m323.4 349.2c0 0 2.9 0.2 4.2 1.3 0 0-3 0.2-3.5 0.3-0.5 0-0.7-1.6-0.7-1.6z"/>
|
||||
<path id="<Path>" class="s2" d="m317.8 349.9l-5 4.6c0 0 4.4 2 5.6 5.9 0 0 5.3 1 5.8-1 0.5-1.9 0-6.8 0.7-9 0.6-2.1-7.1-0.5-7.1-0.5z"/>
|
||||
<path id="<Path>" class="s2" d="m324 359.3c0 0 1 4.1 2 5.7 1 1.7 2 3.6 2 3.6l-0.1 23.6c0 0-8.7-17.9-10.6-21.5 0 0 0.3-8.7 1.1-10.3 0.8-1.7 5.6-1.1 5.6-1.1z"/>
|
||||
<path id="<Path>" class="s13" d="m300.7 324.4c5.7 16.5 21.8 21.4 21.8 21.4 0 0-2.9 2.7-3.8 2.9-0.9 0.1-3.5-1.5-3.5-1.5 0 0-12.3-3-15.8-8.2-3.6-5.2-2.2-10.6-2.2-10.6l-0.5-3.5c2.6 0.9 4-0.5 4-0.5z"/>
|
||||
<path id="<Path>" class="s2" d="m287.6 343.7c0 0 2.3 7.8 2.5 8.1 0.3 0.2 5.7-0.4 5.7-0.4l-2.6 5c0 0 27.1 29 32.7 44.6 0 0-12.8-19.8-35.4-43.4l3.2-4.8-5.5 1z"/>
|
||||
<path id="<Path>" class="s2" d="m332.1 336.8l1.4 1.6-1.7 1.6 5 4.5c0 0 1.5 31.8-4.6 52.8 0 0 8.3-19.3 6.4-53.6l-5.4-3.7 1.8-1.7z"/>
|
||||
<path id="<Path>" class="s1" d="m315 512q0 0-0.2 0.2l7-7.5c-3.2 4.6 0.5 25.5 0.9 30.3 0.4 4.8-3.7 14.6-5.3 26.2-1.5 11.6 1.6 28.1 1.6 28.1-2-1.1-3.6-3.1-4.2-6.1-2.4-10.8-1.5-31 1.1-39.5 2.7-8.4-0.9-31.7-0.9-31.7z"/>
|
||||
<path id="<Path>" class="s14" d="m302.1 318.5c-0.8 0.1-1.4-0.4-1.6-1.2l-0.7-4.3c0 0-2.3-5.8-7.2-3.5 0 0-3.1-4.2-2.3-13 5.5 8.1 17.5 11.9 17.5 11.9l-2.9 4.2q-0.5 0.7-0.6 1.6l-0.2 2.9c0 0.8-0.6 1.4-1.4 1.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s15" d="m539.1 689.9l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s15" d="m539.1 668.8l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s16" d="m539.1 652.1l-97.8-56.5 97.8-56.5 97.9 56.5z"/>
|
||||
<path id="<Path>" class="s17" d="m665.9 595.6v21.1l-126.8 73.2v-21.1z"/>
|
||||
<path id="<Path>" class="s15" d="m412.4 595.6v21.1l126.7 73.2v-21.1z"/>
|
||||
<path id="<Path>" class="s18" d="m412.4 595.6v21.1l126.7 73.2v-21.1z"/>
|
||||
<path id="<Path>" class="s15" d="m539.1 645.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s15" d="m539.1 624.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s19" d="m539.1 624.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s20" d="m539.1 578.5l-46.9-27.1 46.9-27.1 47 27.1z"/>
|
||||
<path id="<Path>" class="s20" d="m539.1 542.7l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
||||
<path id="<Path>" class="s21" d="m539.1 542.7l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s22" d="m665.9 551.4v21l-126.8 73.2v-21z"/>
|
||||
<path id="<Path>" class="s15" d="m412.4 551.4v21l126.7 73.2v-21z"/>
|
||||
<path id="<Path>" class="s23" d="m412.4 551.4v21l126.7 73.2v-21z"/>
|
||||
<path id="<Path>" class="s20" d="m539.1 645.6v23.2l-126.7-73.2v-23.2z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s20" d="m441.3 589.1v6.5l97.8 56.5 97.9-56.5v-6.5l-97.9 56.5z"/>
|
||||
<path id="<Path>" class="s20" d="m539.1 645.6v6.5l-97.8-56.5v-6.5z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s24" d="m412.4 572.4v23.2l126.7 73.2 126.8-73.2v-23.2l-126.8 73.2z"/>
|
||||
<path id="<Path>" class="s25" d="m415.3 551.4l125.3-72.4-1.5-0.8-126.7 73.2 126.7 73.2 1.5-0.9z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s26" d="m412.4 572.4v23.2l1.7 1v-23.2z"/>
|
||||
<path id="<Path>" class="s26" d="m665.9 572.4v23.2l-1.7 1v-23.2z"/>
|
||||
<path id="<Path>" class="s26" d="m539.1 645.6l-2.9-1.7v23.2l2.9 1.7 3-1.7v-23.2z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s15" d="m539.1 606.5l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s15" d="m539.1 585.5l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s27" d="m539.1 568.8l-97.8-56.5 97.8-56.5 97.9 56.5z"/>
|
||||
<path id="<Path>" class="s28" d="m665.9 512.3v21l-126.8 73.2v-21z"/>
|
||||
<path id="<Path>" class="s15" d="m412.4 512.3v21l126.7 73.2v-21z"/>
|
||||
<path id="<Path>" class="s29" d="m412.4 512.3v21l126.7 73.2v-21z"/>
|
||||
<path id="<Path>" class="s15" d="m539.1 562.3l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s15" d="m539.1 541.3l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s30" d="m539.1 541.3l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s20" d="m539.1 495.2l-46.9-27.1 46.9-27.1 47 27.1z"/>
|
||||
<path id="<Path>" class="s20" d="m539.1 459.3l31.1 18 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
||||
<path id="<Path>" class="s21" d="m539.1 459.3l31.1 18 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s31" d="m665.9 468.1v21l-126.8 73.2v-21z"/>
|
||||
<path id="<Path>" class="s15" d="m412.4 468.1v21l126.7 73.2v-21z"/>
|
||||
<path id="<Path>" class="s32" d="m412.4 468.1v21l126.7 73.2v-21z"/>
|
||||
<path id="<Path>" class="s20" d="m539.1 562.3v23.2l-126.7-73.2v-23.2z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s20" d="m441.3 505.8v6.5l97.8 56.5 97.9-56.5v-6.5l-97.9 56.5z"/>
|
||||
<path id="<Path>" class="s20" d="m539.1 562.3v6.5l-97.8-56.5v-6.5z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s24" d="m412.4 489.1v23.2l126.7 73.2 126.8-73.2v-23.2l-126.8 73.2z"/>
|
||||
<path id="<Path>" class="s33" d="m415.3 468.1l125.3-72.4-1.5-0.8-126.7 73.2 126.7 73.2 1.5-0.9z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s26" d="m412.4 489.1v23.2l1.7 1v-23.2z"/>
|
||||
<path id="<Path>" class="s26" d="m665.9 489.1v23.2l-1.7 1v-23.2z"/>
|
||||
<path id="<Path>" class="s26" d="m539.1 562.3l-2.9-1.7v23.2l2.9 1.7 3-1.7v-23.2z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s15" d="m539.1 523.2l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s15" d="m539.1 502.2l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s34" d="m539.1 485.5l-97.8-56.5 97.8-56.6 97.9 56.6z"/>
|
||||
<path id="<Path>" class="s35" d="m665.9 429v21l-126.8 73.2v-21z"/>
|
||||
<path id="<Path>" class="s15" d="m412.4 429v21l126.7 73.2v-21z"/>
|
||||
<path id="<Path>" class="s36" d="m412.4 429v21l126.7 73.2v-21z"/>
|
||||
<path id="<Path>" class="s15" d="m539.1 479l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s15" d="m539.1 457.9l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s37" d="m539.1 457.9l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s20" d="m539.1 411.8l-46.9-27.1 46.9-27.1 47 27.1z"/>
|
||||
<path id="<Path>" class="s20" d="m539.1 376l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
||||
<path id="<Path>" class="s21" d="m539.1 376l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s38" d="m665.9 384.7v21.1l-126.8 73.2v-21.1z"/>
|
||||
<path id="<Path>" class="s15" d="m412.4 384.7v21.1l126.7 73.2v-21.1z"/>
|
||||
<path id="<Path>" class="s39" d="m412.4 384.7v21.1l126.7 73.2v-21.1z"/>
|
||||
<path id="<Path>" class="s20" d="m539.1 479v23.2l-126.7-73.2v-23.2z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s20" d="m441.3 422.5v6.5l97.8 56.5 97.9-56.5v-6.5l-97.9 56.5z"/>
|
||||
<path id="<Path>" class="s20" d="m539.1 479v6.5l-97.8-56.5v-6.5z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s24" d="m412.4 405.8v23.2l126.7 73.2 126.8-73.2v-23.2l-126.8 73.2z"/>
|
||||
<path id="<Path>" class="s40" d="m415.3 384.7l125.3-72.3-1.5-0.9-126.7 73.2 126.7 73.2 1.5-0.8z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s26" d="m412.4 405.8v23.2l1.7 1v-23.2z"/>
|
||||
<path id="<Path>" class="s26" d="m665.9 405.8v23.2l-1.7 1v-23.2z"/>
|
||||
<path id="<Path>" class="s26" d="m539.1 479l-2.9-1.7v23.2l2.9 1.7 3-1.7v-23.2z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s15" d="m539.1 439.9l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s15" d="m539.1 418.8l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s41" d="m539.1 402.1l-97.8-56.5 97.8-56.5 97.9 56.5z"/>
|
||||
<path id="<Path>" class="s42" d="m665.9 345.6v21.1l-126.8 73.2v-21.1z"/>
|
||||
<path id="<Path>" class="s15" d="m412.4 345.6v21.1l126.7 73.2v-21.1z"/>
|
||||
<path id="<Path>" class="s43" d="m412.4 345.6v21.1l126.7 73.2v-21.1z"/>
|
||||
<path id="<Path>" class="s15" d="m539.1 395.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s15" d="m539.1 374.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s44" d="m539.1 374.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s20" d="m539.1 328.5l-46.9-27.1 46.9-27.1 47 27.1z"/>
|
||||
<path id="<Path>" class="s20" d="m539.1 292.7l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
||||
<path id="<Path>" class="s21" d="m539.1 292.7l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s45" d="m665.9 301.4v21l-126.8 73.2v-21z"/>
|
||||
<path id="<Path>" class="s15" d="m412.4 301.4v21l126.7 73.2v-21z"/>
|
||||
<path id="<Path>" class="s46" d="m412.4 301.4v21l126.7 73.2v-21z"/>
|
||||
<path id="<Path>" class="s20" d="m539.1 395.6v23.2l-126.7-73.2v-23.2z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s20" d="m441.3 339.1v6.5l97.8 56.5 97.9-56.5v-6.5l-97.9 56.5z"/>
|
||||
<path id="<Path>" class="s20" d="m539.1 395.6v6.5l-97.8-56.5v-6.5z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s24" d="m412.4 322.4v23.2l126.7 73.2 126.8-73.2v-23.2l-126.8 73.2z"/>
|
||||
<path id="<Path>" class="s47" d="m415.3 301.4l125.3-72.4-1.5-0.8-126.7 73.2 126.7 73.2 1.5-0.9z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s26" d="m412.4 322.4v23.2l1.7 1v-23.2z"/>
|
||||
<path id="<Path>" class="s26" d="m665.9 322.4v23.2l-1.7 1v-23.2z"/>
|
||||
<path id="<Path>" class="s26" d="m539.1 395.6l-2.9-1.7v23.2l2.9 1.7 3-1.7v-23.2z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s48" d="m585.8 301.5l-1.7-262.8h-92.7l1.1 262.8 46.6 27z"/>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s49" d="m549 271.8c0 2-1.7 3.6-3.6 3.6-2 0-3.6-1.6-3.6-3.6 0-1.9 1.6-3.6 3.6-3.6 1.9 0 3.6 1.7 3.6 3.6z"/>
|
||||
<path id="<Path>" class="s20" d="m502.2 243.3c0 1.2-1 2.2-2.3 2.2-1.2 0-2.2-1-2.2-2.2 0-1.2 1-2.2 2.2-2.2 1.3 0 2.3 1 2.3 2.2z"/>
|
||||
<path id="<Path>" class="s50" d="m517.7 218.1c0 1.2-1 2.3-2.2 2.3-1.3 0-2.3-1.1-2.3-2.3 0-1.3 1-2.3 2.3-2.3 1.2 0 2.2 1 2.2 2.3z"/>
|
||||
<path id="<Path>" class="s50" d="m583.4 209.8c0 0.8-0.6 1.5-1.4 1.5-0.8 0-1.4-0.7-1.4-1.5 0-0.8 0.6-1.4 1.4-1.4 0.8 0 1.4 0.6 1.4 1.4z"/>
|
||||
<path id="<Path>" class="s50" d="m579.7 202.3c0 1.7-1.3 3.1-3 3.1-1.7 0-3-1.4-3-3.1 0-1.6 1.3-3 3-3 1.7 0 3 1.4 3 3z"/>
|
||||
<path id="<Path>" class="s50" d="m510.7 213.6c0 0.8-0.6 1.4-1.4 1.4-0.8 0-1.5-0.6-1.5-1.4 0-0.8 0.7-1.5 1.5-1.5 0.8 0 1.4 0.7 1.4 1.5z"/>
|
||||
<path id="<Path>" class="s20" d="m509 283.9c0 1.3-1 2.3-2.3 2.3-1.2 0-2.2-1-2.2-2.3 0-1.2 1-2.2 2.3-2.2 1.2 0 2.2 1 2.2 2.2z"/>
|
||||
<path id="<Path>" class="s50" d="m524.5 258.8c0 1.2-1 2.2-2.2 2.2-1.3 0-2.3-1-2.3-2.2 0-1.3 1-2.3 2.3-2.3 1.2 0 2.2 1 2.2 2.3z"/>
|
||||
<path id="<Path>" class="s50" d="m517.6 254.2c0 0.8-0.7 1.5-1.5 1.5-0.8 0-1.4-0.7-1.4-1.5 0-0.8 0.6-1.4 1.4-1.4 0.8 0 1.5 0.6 1.5 1.4z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s49" d="m537.1 236c0.5 1.7 2.2 2.7 3.9 2.3 1.7-0.5 2.8-2.2 2.3-3.9-0.4-1.7-2.1-2.8-3.9-2.3-1.7 0.4-2.7 2.2-2.3 3.9z"/>
|
||||
<path id="<Path>" class="s20" d="m571.1 201.1c0.3 1.1 1.4 1.7 2.4 1.4 1.1-0.2 1.7-1.3 1.5-2.4-0.3-1-1.4-1.7-2.4-1.4-1.1 0.3-1.7 1.3-1.5 2.4z"/>
|
||||
<path id="<Path>" class="s50" d="m552.2 182.9c0.3 1 1.4 1.7 2.4 1.4 1.1-0.3 1.8-1.4 1.5-2.4-0.3-1.1-1.4-1.8-2.5-1.5-1 0.3-1.7 1.4-1.4 2.5z"/>
|
||||
<path id="<Path>" class="s50" d="m493.9 190.2c0.1 0.7 0.8 1.1 1.5 0.9 0.7-0.2 1.1-0.9 0.9-1.5-0.1-0.7-0.8-1.1-1.5-1-0.7 0.2-1.1 0.9-0.9 1.6z"/>
|
||||
<path id="<Path>" class="s50" d="m495.4 182.9c0.4 1.5 1.8 2.3 3.3 2 1.4-0.4 2.2-1.9 1.9-3.3-0.4-1.4-1.8-2.3-3.3-1.9-1.4 0.3-2.3 1.8-1.9 3.2z"/>
|
||||
<path id="<Path>" class="s50" d="m557.2 177.4c0.2 0.7 0.9 1.1 1.6 0.9 0.7-0.1 1.1-0.8 0.9-1.5-0.2-0.7-0.9-1.1-1.6-1-0.7 0.2-1.1 0.9-0.9 1.6z"/>
|
||||
<path id="<Path>" class="s50" d="m572.7 285.3c-0.6 0.5-1.5 0.5-2-0.1-0.5-0.6-0.5-1.6 0.2-2.1 0.6-0.5 1.5-0.4 2 0.2 0.5 0.6 0.4 1.5-0.2 2z"/>
|
||||
<path id="<Path>" class="s50" d="m576 277.7c-1.2 1-3.1 0.9-4.2-0.4-1.1-1.3-0.9-3.2 0.3-4.2 1.3-1.1 3.2-0.9 4.3 0.3 1 1.3 0.9 3.2-0.4 4.3z"/>
|
||||
<path id="<Path>" class="s20" d="m571.4 270.3c-0.6 0.9-0.4 2.1 0.5 2.8 0.9 0.6 2.1 0.4 2.7-0.5 0.7-0.9 0.5-2.1-0.4-2.8-0.9-0.6-2.1-0.4-2.8 0.5z"/>
|
||||
<path id="<Path>" class="s50" d="m573.1 244.1c-0.7 0.9-0.4 2.1 0.5 2.8 0.9 0.6 2.1 0.4 2.8-0.5 0.6-0.9 0.4-2.2-0.5-2.8-0.9-0.7-2.2-0.4-2.8 0.5z"/>
|
||||
<path id="<Path>" class="s50" d="m580.5 244.4c-0.4 0.5-0.3 1.3 0.3 1.8 0.6 0.4 1.4 0.2 1.8-0.3 0.4-0.6 0.3-1.4-0.3-1.8-0.6-0.5-1.4-0.3-1.8 0.3z"/>
|
||||
<g id="<Group>" style="opacity: .9">
|
||||
<path id="<Path>" class="s21" d="m528.4 308.3c0.5 1.8 2.2 2.8 3.9 2.4 1.7-0.5 2.8-2.2 2.3-3.9-0.4-1.7-2.1-2.8-3.8-2.3-1.8 0.4-2.8 2.1-2.4 3.8z"/>
|
||||
<path id="<Path>" class="s21" d="m537.7 291.1c0.3 1.2 1.5 1.9 2.7 1.6 1.3-0.3 2-1.6 1.7-2.8-0.3-1.2-1.6-1.9-2.8-1.6-1.2 0.3-1.9 1.5-1.6 2.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s49" d="m549 230.9c0 2-1.7 3.6-3.6 3.6-2 0-3.6-1.6-3.6-3.6 0-2 1.6-3.6 3.6-3.6 1.9 0 3.6 1.6 3.6 3.6z"/>
|
||||
<path id="<Path>" class="s20" d="m502.2 202.3c0 1.3-1 2.3-2.3 2.3-1.2 0-2.2-1-2.2-2.3 0-1.2 1-2.2 2.2-2.2 1.3 0 2.3 1 2.3 2.2z"/>
|
||||
<path id="<Path>" class="s50" d="m517.7 177.2c0 1.2-1 2.2-2.2 2.2-1.3 0-2.3-1-2.3-2.2 0-1.3 1-2.3 2.3-2.3 1.2 0 2.2 1 2.2 2.3z"/>
|
||||
<path id="<Path>" class="s50" d="m583.4 168.9c0 0.8-0.6 1.4-1.4 1.4-0.8 0-1.4-0.6-1.4-1.4 0-0.8 0.6-1.4 1.4-1.4 0.8 0 1.4 0.6 1.4 1.4z"/>
|
||||
<path id="<Path>" class="s50" d="m579.7 161.4c0 1.7-1.3 3-3 3-1.7 0-3-1.3-3-3 0-1.6 1.3-3 3-3 1.7 0 3 1.4 3 3z"/>
|
||||
<path id="<Path>" class="s50" d="m510.7 172.6c0 0.8-0.6 1.5-1.4 1.5-0.8 0-1.5-0.7-1.5-1.5 0-0.8 0.7-1.4 1.5-1.4 0.8 0 1.4 0.6 1.4 1.4z"/>
|
||||
<path id="<Path>" class="s20" d="m509 243c0 1.2-1 2.2-2.3 2.2-1.2 0-2.2-1-2.2-2.2 0-1.2 1-2.2 2.3-2.2 1.2 0 2.2 1 2.2 2.2z"/>
|
||||
<path id="<Path>" class="s50" d="m524.5 217.8c0 1.3-1 2.3-2.2 2.3-1.3 0-2.3-1-2.3-2.3 0-1.2 1-2.2 2.3-2.2 1.2 0 2.2 1 2.2 2.2z"/>
|
||||
<path id="<Path>" class="s50" d="m517.6 213.3c0 0.8-0.7 1.4-1.5 1.4-0.8 0-1.4-0.6-1.4-1.4 0-0.8 0.6-1.5 1.4-1.5 0.8 0 1.5 0.7 1.5 1.5z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s49" d="m537.1 195c0.5 1.7 2.2 2.8 3.9 2.3 1.7-0.4 2.8-2.1 2.3-3.9-0.4-1.7-2.1-2.7-3.9-2.3-1.7 0.5-2.7 2.2-2.3 3.9z"/>
|
||||
<path id="<Path>" class="s20" d="m571.1 160.2c0.3 1 1.4 1.7 2.4 1.4 1.1-0.3 1.7-1.4 1.5-2.4-0.3-1.1-1.4-1.7-2.4-1.4-1.1 0.2-1.7 1.3-1.5 2.4z"/>
|
||||
<path id="<Path>" class="s50" d="m552.2 141.9c0.3 1.1 1.4 1.8 2.4 1.5 1.1-0.3 1.8-1.4 1.5-2.5-0.3-1.1-1.4-1.7-2.5-1.4-1 0.2-1.7 1.3-1.4 2.4z"/>
|
||||
<path id="<Path>" class="s50" d="m493.9 149.3c0.1 0.6 0.8 1 1.5 0.9 0.7-0.2 1.1-0.9 0.9-1.6-0.1-0.7-0.8-1.1-1.5-0.9-0.7 0.2-1.1 0.9-0.9 1.6z"/>
|
||||
<path id="<Path>" class="s50" d="m495.4 142c0.4 1.4 1.8 2.3 3.3 1.9 1.4-0.3 2.2-1.8 1.9-3.2-0.4-1.5-1.8-2.3-3.3-2-1.4 0.4-2.3 1.9-1.9 3.3z"/>
|
||||
<path id="<Path>" class="s50" d="m557.2 136.5c0.2 0.7 0.9 1.1 1.6 0.9 0.7-0.2 1.1-0.9 0.9-1.6-0.2-0.6-0.9-1.1-1.6-0.9-0.7 0.2-1.1 0.9-0.9 1.6z"/>
|
||||
<path id="<Path>" class="s50" d="m572.7 244.4c-0.6 0.5-1.5 0.4-2-0.2-0.5-0.6-0.5-1.5 0.2-2 0.6-0.5 1.5-0.4 2 0.2 0.5 0.6 0.4 1.5-0.2 2z"/>
|
||||
<path id="<Path>" class="s50" d="m576 236.7c-1.2 1.1-3.1 0.9-4.2-0.3-1.1-1.3-0.9-3.2 0.3-4.3 1.3-1 3.2-0.9 4.3 0.4 1 1.3 0.9 3.1-0.4 4.2z"/>
|
||||
<path id="<Path>" class="s20" d="m571.4 229.4c-0.6 0.9-0.4 2.1 0.5 2.7 0.9 0.7 2.1 0.4 2.7-0.4 0.7-0.9 0.5-2.2-0.4-2.8-0.9-0.6-2.1-0.4-2.8 0.5z"/>
|
||||
<path id="<Path>" class="s50" d="m573.1 203.1c-0.7 0.9-0.4 2.2 0.5 2.8 0.9 0.7 2.1 0.5 2.8-0.4 0.6-0.9 0.4-2.2-0.5-2.8-0.9-0.7-2.2-0.5-2.8 0.4z"/>
|
||||
<path id="<Path>" class="s50" d="m580.5 203.4c-0.4 0.6-0.3 1.4 0.3 1.8 0.6 0.4 1.4 0.3 1.8-0.3 0.4-0.6 0.3-1.4-0.3-1.8-0.6-0.4-1.4-0.3-1.8 0.3z"/>
|
||||
<g id="<Group>" style="opacity: .9">
|
||||
<path id="<Path>" class="s21" d="m528.4 267.4c0.5 1.7 2.2 2.8 3.9 2.3 1.7-0.4 2.8-2.2 2.3-3.9-0.4-1.7-2.1-2.7-3.8-2.3-1.8 0.5-2.8 2.2-2.4 3.9z"/>
|
||||
<path id="<Path>" class="s21" d="m537.7 250.1c0.3 1.2 1.5 2 2.7 1.7 1.3-0.4 2-1.6 1.7-2.8-0.3-1.2-1.6-1.9-2.8-1.6-1.2 0.3-1.9 1.5-1.6 2.7z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 35 KiB |
@@ -1,17 +0,0 @@
|
||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="512" height="512">
|
||||
<title>snigdhaos</title>
|
||||
<style>
|
||||
tspan { white-space:pre }
|
||||
.s0 { fill: #000000 }
|
||||
</style>
|
||||
<filter id="f0">
|
||||
<feFlood flood-color="#754ffe" flood-opacity="1" />
|
||||
<feBlend mode="normal" in2="SourceGraphic"/>
|
||||
<feComposite in2="SourceAlpha" operator="in" />
|
||||
</filter>
|
||||
<g id="graphics" filter="url(#f0)">
|
||||
<path id="Layer" class="s0" d="m303.2 29c-18.6-5.9-38-9.2-57.5-9.9-19.5-0.6-39 1.3-58 5.8-19 4.6-37.3 11.6-54.4 21-17.1 9.5-32.8 21.1-46.8 34.7q5.5 1.8 10.7 4.4 5.2 2.6 10 6 4.7 3.4 8.8 7.6 4.1 4.1 7.5 8.8 2.4 3.4 4.4 6.9 2 3.6 3.7 7.4 1.7 3.8 2.9 7.7 1.3 3.9 2.2 7.9 11.6-6.3 24-11.2 12.4-4.8 25.2-8.1 12.9-3.3 26.1-5 13.2-1.7 26.5-1.7c10-0.3 20.1 0.4 30 2 9.9 1.7 19.6 4.3 29 7.9 9.5 3.5 18.5 8 27 13.3 8.6 5.3 16.6 11.5 23.9 18.4 60.3 55.3 40 98.8 30.6 170.7-1.5 8.2-1.8 16.5-1 24.8 0.8 8.3 2.7 16.4 5.8 24.2 3 7.7 7.1 15 12.2 21.6 5.1 6.6 11 12.5 17.7 17.4-9.5-44.4 23.4-111.7 27.2-119.2 8.4-26.4 11.6-54.1 9.2-81.7-2.3-27.5-10.1-54.3-22.9-78.8-12.9-24.5-30.4-46.3-51.7-63.9-21.3-17.7-45.8-31-72.3-39z"/>
|
||||
<path id="Layer" class="s0" d="m336.1 165.4c-29.8-29.5-72-39.4-112.6-36.1l-12.1 8.6c14.6 0.5 29.1 3.1 43 7.5 13.9 4.4 27.1 10.7 39.3 18.7 12.3 8 23.4 17.5 33.1 28.5 9.6 10.9 17.8 23.1 24.2 36.2q1.3 2.5 2.5 5.2 1.2 2.6 2.2 5.3 1.1 2.6 2.1 5.3 1 2.7 1.8 5.5l12.6-23.7c-3.2-26-14.7-39.2-36.1-61z"/>
|
||||
<path id="Layer" class="s0" d="m340.6 248.7c-58.5-147.8-276-110.5-279.6 51 0.2 11.1-0.1 34 0 45.1 0.1 1.7 0.6 3.4 1.7 4.9 1 1.4 2.4 2.5 4.1 3.1 1.6 0.7 3.4 0.8 5.1 0.4 1.7-0.4 3.3-1.3 4.5-2.6l42-47.4q0.3-0.4 0.7-0.6 0.3-0.3 0.7-0.5 0.4-0.2 0.8-0.3 0.4-0.1 0.9-0.1l8.6-0.5-18.4 29.7q-1 1.7-1.7 3.6-0.8 1.9-1.1 3.9-0.4 1.9-0.4 3.9 0 2.1 0.4 4c2.2 12.6 4.8 43.9-21 64.6q-1.9 1.5-3.5 3.4-1.5 1.9-2.6 4.1-1.1 2.2-1.6 4.6-0.6 2.3-0.7 4.8v42.7c0.1 2.9 0.6 5.7 1.8 8.4 1.1 2.7 2.7 5.1 4.7 7.1 2.1 2 4.5 3.7 7.2 4.8 2.6 1.1 5.5 1.6 8.4 1.6 98.5-19.9 153.3-77.6 165.4-96.8q0.3-0.5 0.7-0.8 0.4-0.3 0.9-0.6 0.4-0.2 0.9-0.3 0.5-0.2 1.1-0.2h53.1c3.5 0 6.8-0.7 10-2 3.2-1.3 6-3.2 8.4-5.7 2.5-2.4 4.4-5.2 5.7-8.4 1.4-3.1 2.1-6.5 2.1-9.9-1.4-32.7 4.6-88.7-9.3-119z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 82 KiB |
@@ -1,545 +0,0 @@
|
||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3710 2652" width="500" height="357">
|
||||
<title>Wavy_Edu-02_Single-05-ai</title>
|
||||
<defs>
|
||||
<linearGradient id="g1" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(6.9,-586.526,972.593,11.442,1729.189,2908.055)">
|
||||
<stop offset=".494" stop-color="#ebeff2"/>
|
||||
<stop offset="1" stop-color="#ffffff"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g2" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1180.057,2164.368,-2554.434,1392.728,2303.12,688.17)">
|
||||
<stop offset="0" stop-color="#444b8c"/>
|
||||
<stop offset=".996" stop-color="#26264f"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g3" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(200.872,1224.362,-4687.752,769.086,1766.532,433.402)">
|
||||
<stop offset=".004" stop-color="#e38ddd"/>
|
||||
<stop offset="1" stop-color="#9571f6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g4" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(471.01,0,0,45.399,1655.931,768.482)">
|
||||
<stop offset="0" stop-color="#ff9085"/>
|
||||
<stop offset="1" stop-color="#fb6fbb"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g5" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(471.01,0,0,44.037,1655.931,815.54)">
|
||||
<stop offset="0" stop-color="#ff9085"/>
|
||||
<stop offset="1" stop-color="#fb6fbb"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g6" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(334.655,0,0,38.363,1573.188,955.472)">
|
||||
<stop offset="0" stop-color="#ff9085"/>
|
||||
<stop offset="1" stop-color="#fb6fbb"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g7" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(183.795,1120.274,-4519.373,741.461,1769.282,434.392)">
|
||||
<stop offset=".004" stop-color="#e38ddd"/>
|
||||
<stop offset="1" stop-color="#9571f6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g8" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(334.437,0,0,44.389,1463.751,668.151)">
|
||||
<stop offset="0" stop-color="#ff9085"/>
|
||||
<stop offset="1" stop-color="#fb6fbb"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g9" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(471.01,0,0,48.594,1655.931,1694.91)">
|
||||
<stop offset="0" stop-color="#ff9085"/>
|
||||
<stop offset="1" stop-color="#fb6fbb"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g10" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(471.01,0,0,49.955,1655.931,1740.606)">
|
||||
<stop offset="0" stop-color="#ff9085"/>
|
||||
<stop offset="1" stop-color="#fb6fbb"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g11" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(458.815,0,0,50.418,1871.096,1778.783)">
|
||||
<stop offset="0" stop-color="#ff9085"/>
|
||||
<stop offset="1" stop-color="#fb6fbb"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g12" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(203.93,1243.002,-6495.992,1065.75,1833.465,178.445)">
|
||||
<stop offset=".004" stop-color="#e38ddd"/>
|
||||
<stop offset="1" stop-color="#9571f6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g13" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(334.437,0,0,42.79,1463.751,1611.895)">
|
||||
<stop offset="0" stop-color="#ff9085"/>
|
||||
<stop offset="1" stop-color="#fb6fbb"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g14" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(475.74,0,0,34.684,1573.188,1144.659)">
|
||||
<stop offset="0" stop-color="#ff9085"/>
|
||||
<stop offset="1" stop-color="#fb6fbb"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g15" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(471.01,0,0,34.976,1655.931,1237.951)">
|
||||
<stop offset="0" stop-color="#ff9085"/>
|
||||
<stop offset="1" stop-color="#fb6fbb"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g16" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(471.01,0,0,36.338,1655.931,1283.647)">
|
||||
<stop offset="0" stop-color="#ff9085"/>
|
||||
<stop offset="1" stop-color="#fb6fbb"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g17" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(301.84,0,0,36.722,1464.584,1332.275)">
|
||||
<stop offset="0" stop-color="#ff9085"/>
|
||||
<stop offset="1" stop-color="#fb6fbb"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g18" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(188.767,1150.577,-5132.456,842.045,1700.892,386.487)">
|
||||
<stop offset=".004" stop-color="#e38ddd"/>
|
||||
<stop offset="1" stop-color="#9571f6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g19" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(425.772,0,0,41.025,1655.931,1467.191)">
|
||||
<stop offset="0" stop-color="#ff9085"/>
|
||||
<stop offset="1" stop-color="#fb6fbb"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g20" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(420.649,0,0,41.948,1755.443,1511.158)">
|
||||
<stop offset="0" stop-color="#ff9085"/>
|
||||
<stop offset="1" stop-color="#fb6fbb"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g21" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(420.649,0,0,43.164,1755.443,1556.712)">
|
||||
<stop offset="0" stop-color="#ff9085"/>
|
||||
<stop offset="1" stop-color="#fb6fbb"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g22" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(184.892,1126.962,-4227.694,693.607,1529.195,464.729)">
|
||||
<stop offset=".004" stop-color="#e38ddd"/>
|
||||
<stop offset="1" stop-color="#9571f6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g23" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(386.15,1851.397,-2472.626,515.721,2471.603,1087.811)">
|
||||
<stop offset="0" stop-color="#ff9085"/>
|
||||
<stop offset="1" stop-color="#fb6fbb"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g24" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(84.008,2.429,-1.19,41.172,2776.132,2545.438)">
|
||||
<stop offset="0" stop-color="#311944"/>
|
||||
<stop offset="1" stop-color="#893976"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g25" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(86.092,23.67,-12.438,45.238,2508.961,2520.272)">
|
||||
<stop offset="0" stop-color="#311944"/>
|
||||
<stop offset="1" stop-color="#893976"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g26" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(251.892,-567.825,209.132,92.773,3644.106,2895.706)">
|
||||
<stop offset="0" stop-color="#311944"/>
|
||||
<stop offset="1" stop-color="#893976"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g27" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(341.618,-569.477,372.773,223.619,3932.951,3253.663)">
|
||||
<stop offset="0" stop-color="#311944"/>
|
||||
<stop offset="1" stop-color="#893976"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g28" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(291.498,1397.59,-923.955,192.711,2222.246,1211.967)">
|
||||
<stop offset="0" stop-color="#ff9085"/>
|
||||
<stop offset="1" stop-color="#fb6fbb"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g29" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-121.756,-578.339,477.007,-100.423,3382.448,2249.506)">
|
||||
<stop offset="0" stop-color="#ff9085"/>
|
||||
<stop offset="1" stop-color="#fb6fbb"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g30" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(316.014,1515.132,-1249.818,260.677,2615.607,1103.264)">
|
||||
<stop offset="0" stop-color="#ff9085"/>
|
||||
<stop offset="1" stop-color="#fb6fbb"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g31" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(50.455,-142.956,327.681,115.652,2680.825,1877.815)">
|
||||
<stop offset=".004" stop-color="#e38ddd"/>
|
||||
<stop offset="1" stop-color="#9571f6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g32" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-16.92,116.905,-164.14,-23.757,2847.886,1656.119)">
|
||||
<stop offset=".004" stop-color="#e38ddd"/>
|
||||
<stop offset="1" stop-color="#9571f6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g33" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(105.971,-150.478,190.229,133.965,2651.149,1781.447)">
|
||||
<stop offset=".004" stop-color="#e38ddd"/>
|
||||
<stop offset="1" stop-color="#9571f6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g34" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-197.761,-401.701,410.133,-201.912,2830.591,1827.243)">
|
||||
<stop offset=".004" stop-color="#e38ddd"/>
|
||||
<stop offset="1" stop-color="#9571f6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g35" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-425.641,0,0,-268.965,2805.795,1492.243)">
|
||||
<stop offset=".004" stop-color="#e38ddd"/>
|
||||
<stop offset="1" stop-color="#9571f6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g36" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-79.089,-203.072,176.48,-68.732,2820.569,1400.642)">
|
||||
<stop offset="0" stop-color="#311944"/>
|
||||
<stop offset="1" stop-color="#6b3976"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g37" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-109.533,-281.243,445.908,-173.664,2844.679,1427.642)">
|
||||
<stop offset="0" stop-color="#311944"/>
|
||||
<stop offset="1" stop-color="#6b3976"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g38" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-101.881,-407.527,324.377,-81.094,1146.206,1664.054)">
|
||||
<stop offset=".004" stop-color="#6165d7"/>
|
||||
<stop offset="1" stop-color="#aa80f9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g39" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-51.667,34.335,-19.484,-29.32,799.077,2503.167)">
|
||||
<stop offset="0" stop-color="#444b8c"/>
|
||||
<stop offset=".996" stop-color="#26264f"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g40" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(10.168,-71.917,34.476,4.874,810.372,2557.241)">
|
||||
<stop offset="0" stop-color="#ffc444"/>
|
||||
<stop offset=".996" stop-color="#f36f56"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g41" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-53.936,35.843,-29.156,-43.873,798.734,2500.703)">
|
||||
<stop offset="0" stop-color="#444b8c"/>
|
||||
<stop offset=".996" stop-color="#26264f"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g42" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-46.351,41.23,-23.398,-26.304,1092.038,2526.828)">
|
||||
<stop offset="0" stop-color="#444b8c"/>
|
||||
<stop offset=".996" stop-color="#26264f"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g43" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,-72.632,34.821,0,1110.789,2578.788)">
|
||||
<stop offset="0" stop-color="#ffc444"/>
|
||||
<stop offset=".996" stop-color="#f36f56"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g44" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-291.803,-1178.15,771.208,-191.012,225.708,2847.091)">
|
||||
<stop offset="0" stop-color="#444b8c"/>
|
||||
<stop offset=".996" stop-color="#26264f"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g45" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-766.692,-533.206,497.179,-714.888,1107.994,2117.848)">
|
||||
<stop offset=".004" stop-color="#6165d7"/>
|
||||
<stop offset="1" stop-color="#aa80f9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g46" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-48.387,43.04,-35.011,-39.36,1091.353,2524.436)">
|
||||
<stop offset="0" stop-color="#444b8c"/>
|
||||
<stop offset=".996" stop-color="#26264f"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g47" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-251.017,365.475,-269.058,-184.795,957.134,1106.178)">
|
||||
<stop offset="0" stop-color="#ffc444"/>
|
||||
<stop offset=".996" stop-color="#f36f56"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g48" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-289.783,421.919,-437.244,-300.309,1046.808,1163.276)">
|
||||
<stop offset="0" stop-color="#ffc444"/>
|
||||
<stop offset=".996" stop-color="#f36f56"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g49" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(41.511,0,0,188.333,804.969,1534.24)">
|
||||
<stop offset=".004" stop-color="#6165d7"/>
|
||||
<stop offset="1" stop-color="#aa80f9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g50" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(312.847,0,0,225.223,834.749,1580.232)">
|
||||
<stop offset=".004" stop-color="#6165d7"/>
|
||||
<stop offset="1" stop-color="#aa80f9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g51" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(151.724,190.889,-449.758,357.482,1387.102,1417.356)">
|
||||
<stop offset="0" stop-color="#ffc444"/>
|
||||
<stop offset=".996" stop-color="#f36f56"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g52" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1043.101,-725.439,878.799,1263.616,557.285,2197.043)">
|
||||
<stop offset=".004" stop-color="#6165d7"/>
|
||||
<stop offset="1" stop-color="#aa80f9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g53" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(172.249,0,0,358.85,2102.776,190.938)">
|
||||
<stop offset="0" stop-color="#ffc444"/>
|
||||
<stop offset=".996" stop-color="#f36f56"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g54" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(333.989,0,0,374.611,1806.203,506.511)">
|
||||
<stop offset="0" stop-color="#aa80f9"/>
|
||||
<stop offset=".996" stop-color="#6165d7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g55" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(63.086,257.12,-170.985,41.952,2045.267,1072.848)">
|
||||
<stop offset=".004" stop-color="#e38ddd"/>
|
||||
<stop offset="1" stop-color="#9571f6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g56" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(334.056,0,0,351.194,1963.133,555.608)">
|
||||
<stop offset="0" stop-color="#aa80f9"/>
|
||||
<stop offset=".996" stop-color="#6165d7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g57" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(21.721,0,0,78.31,2111.479,1103.557)">
|
||||
<stop offset="0" stop-color="#311944"/>
|
||||
<stop offset="1" stop-color="#a03976"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g58" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(559.089,679.323,-1102.484,907.355,2256.792,-160.98)">
|
||||
<stop offset="0" stop-color="#aa80f9"/>
|
||||
<stop offset=".996" stop-color="#6165d7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g59" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-629.455,584.116,-737.307,-794.537,3131.651,157.283)">
|
||||
<stop offset="0" stop-color="#444b8c"/>
|
||||
<stop offset=".996" stop-color="#26264f"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g60" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-361.735,-325.23,241.898,-269.049,2747.983,242.356)">
|
||||
<stop offset="0" stop-color="#ffc444"/>
|
||||
<stop offset=".996" stop-color="#f36f56"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g61" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(113.413,0,0,55.689,2295.136,137.321)">
|
||||
<stop offset="0" stop-color="#311944"/>
|
||||
<stop offset="1" stop-color="#a03976"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g62" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-2.465,-225.569,217.322,-2.375,2275.933,462.022)">
|
||||
<stop offset="0" stop-color="#311944"/>
|
||||
<stop offset="1" stop-color="#a03976"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g63" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-483.742,-434.925,423.982,-471.571,2648.57,248.393)">
|
||||
<stop offset="0" stop-color="#ffc444"/>
|
||||
<stop offset=".996" stop-color="#f36f56"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g64" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-292.61,0,0,-43.492,2384.202,533.117)">
|
||||
<stop offset=".004" stop-color="#e38ddd"/>
|
||||
<stop offset="1" stop-color="#9571f6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g65" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-401.628,0,0,-185.597,2245.069,385.218)">
|
||||
<stop offset=".004" stop-color="#e38ddd"/>
|
||||
<stop offset="1" stop-color="#9571f6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g66" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(271.979,269.803,-278.701,280.948,1920.617,175.2)">
|
||||
<stop offset=".004" stop-color="#e38ddd"/>
|
||||
<stop offset="1" stop-color="#9571f6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g67" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(309.467,-304.515,245.271,249.259,2558.878,703.313)">
|
||||
<stop offset="0" stop-color="#ffc444"/>
|
||||
<stop offset=".996" stop-color="#f36f56"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g68" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(83.975,0,0,37.828,2240.65,504.518)">
|
||||
<stop offset="0" stop-color="#311944"/>
|
||||
<stop offset="1" stop-color="#a03976"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<style>
|
||||
.s0 { fill: #97a6b7 }
|
||||
.s1 { fill: url(#g1) }
|
||||
.s2 { fill: #ffffff }
|
||||
.s3 { opacity: .3;mix-blend-mode: multiply;fill: #d8dee8 }
|
||||
.s4 { fill: url(#g2) }
|
||||
.s5 { opacity: .6;mix-blend-mode: soft-light;fill: #ffffff }
|
||||
.s6 { opacity: .4;mix-blend-mode: soft-light;fill: #ffffff }
|
||||
.s7 { fill: url(#g3) }
|
||||
.s8 { opacity: .5;fill: url(#g4) }
|
||||
.s9 { opacity: .5;fill: url(#g5) }
|
||||
.s10 { opacity: .5;fill: url(#g6) }
|
||||
.s11 { fill: url(#g7) }
|
||||
.s12 { opacity: .5;fill: url(#g8) }
|
||||
.s13 { opacity: .5;fill: url(#g9) }
|
||||
.s14 { opacity: .5;fill: url(#g10) }
|
||||
.s15 { opacity: .5;fill: url(#g11) }
|
||||
.s16 { fill: url(#g12) }
|
||||
.s17 { opacity: .5;fill: url(#g13) }
|
||||
.s18 { opacity: .5;fill: url(#g14) }
|
||||
.s19 { opacity: .5;fill: url(#g15) }
|
||||
.s20 { opacity: .5;fill: url(#g16) }
|
||||
.s21 { opacity: .5;fill: url(#g17) }
|
||||
.s22 { fill: url(#g18) }
|
||||
.s23 { opacity: .5;fill: url(#g19) }
|
||||
.s24 { opacity: .5;fill: url(#g20) }
|
||||
.s25 { opacity: .5;fill: url(#g21) }
|
||||
.s26 { fill: url(#g22) }
|
||||
.s27 { mix-blend-mode: soft-light;fill: #ffffff }
|
||||
.s28 { fill: url(#g23) }
|
||||
.s29 { fill: url(#g24) }
|
||||
.s30 { fill: #d8dee8 }
|
||||
.s31 { fill: url(#g25) }
|
||||
.s32 { fill: url(#g26) }
|
||||
.s33 { fill: url(#g27) }
|
||||
.s34 { fill: url(#g28) }
|
||||
.s35 { fill: url(#g29) }
|
||||
.s36 { fill: url(#g30) }
|
||||
.s37 { fill: url(#g31) }
|
||||
.s38 { fill: url(#g32) }
|
||||
.s39 { fill: url(#g33) }
|
||||
.s40 { fill: url(#g34) }
|
||||
.s41 { opacity: .3;mix-blend-mode: multiply;fill: url(#g35) }
|
||||
.s42 { fill: url(#g36) }
|
||||
.s43 { fill: url(#g37) }
|
||||
.s44 { fill: url(#g38) }
|
||||
.s45 { fill: url(#g39) }
|
||||
.s46 { fill: url(#g40) }
|
||||
.s47 { fill: url(#g41) }
|
||||
.s48 { fill: url(#g42) }
|
||||
.s49 { fill: url(#g43) }
|
||||
.s50 { fill: url(#g44) }
|
||||
.s51 { fill: url(#g45) }
|
||||
.s52 { fill: url(#g46) }
|
||||
.s53 { fill: url(#g47) }
|
||||
.s54 { fill: #26264f }
|
||||
.s55 { fill: url(#g48) }
|
||||
.s56 { fill: url(#g49) }
|
||||
.s57 { opacity: .3;mix-blend-mode: multiply;fill: url(#g50) }
|
||||
.s58 { fill: url(#g51) }
|
||||
.s59 { fill: url(#g52) }
|
||||
.s60 { fill: url(#g53) }
|
||||
.s61 { fill: url(#g54) }
|
||||
.s62 { fill: url(#g55) }
|
||||
.s63 { opacity: .3;mix-blend-mode: multiply;fill: url(#g56) }
|
||||
.s64 { fill: url(#g57) }
|
||||
.s65 { fill: url(#g58) }
|
||||
.s66 { fill: url(#g59) }
|
||||
.s67 { fill: url(#g60) }
|
||||
.s68 { fill: url(#g61) }
|
||||
.s69 { fill: url(#g62) }
|
||||
.s70 { opacity: .3;mix-blend-mode: multiply;fill: url(#g63) }
|
||||
.s71 { fill: url(#g64) }
|
||||
.s72 { fill: url(#g65) }
|
||||
.s73 { opacity: .3;mix-blend-mode: multiply;fill: url(#g66) }
|
||||
.s74 { fill: url(#g67) }
|
||||
.s75 { fill: url(#g68) }
|
||||
</style>
|
||||
<g id="_Artboards_">
|
||||
</g>
|
||||
<g id="Illustration">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s0" d="m2127.3 2403.8c-37.9-12.6-66.3-44.7-74.3-84.3l-55.2-273.1-472.1 16.7-58.1 284.6c-8.1 39.8 24.5 79.8 62 94.5l197.5 77.3c36.7 14.3 76.2 20.1 115.5 16.7l417.4-35.7c12.2-1 22-10.6 23.4-22.9 1.4-12.3 10-26.2-1.7-30z"/>
|
||||
<path id="<Path>" class="s1" d="m2131.9 2387.2c-37.8-12.4-66.1-44.2-74.1-83.2l-55.2-269.8-460.6 16.6-58 281c-8.1 39.3 13.4 78.8 50.9 93.3l197.3 76.3c36.7 14.2 76.1 19.9 115.3 16.5l417-35.2c12.2-1.1 22-10.5 23.4-22.7 1.4-12.1-5.9-23.6-17.5-27.4z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s0" d="m561 2227.9c-51.1 3.1-93-30.2-93-74v-1582c0-43.9 41.9-77.8 93-75.6l2377.9 164.6c37.6 1.7 57.8-28.7 57.8 8.7v1345.4c0 37.3-30.4 69.5-68 71.8z"/>
|
||||
<path id="<Path>" class="s2" d="m582.3 2227.9c-51.2 3.1-93.1-30.2-93.1-74v-1582c0-43.9 41.9-77.8 93.1-75.6l2367.7 102.6c37.5 1.6 68 33.3 68 70.7v1345.4c0 37.3-30.5 69.5-68 71.8z"/>
|
||||
<path id="<Path>" class="s3" d="m2950 630.6l-2367.7-97.4c-27.3-1.2-49.6 16.9-49.6 40.4v1230.3 347.6c0 23.4 22.3 41.1 49.6 39.6l2367.7-136c20.1-1.2 36.4-18.3 36.4-38.4v-307.5-1040.9c0-20-16.3-36.9-36.4-37.7z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s4" d="m2932.4 1941.2l-2324.4 114.8c-24.4 1.2-44.2-14.9-44.2-36v-1425.7c0-21.1 19.8-37.5 44.2-36.6l2324.4 86.3c18.2 0.7 33 16 33 34.1v1228.6c0 18.2-14.8 33.6-33 34.5z"/>
|
||||
<path id="<Path>" class="s5" d="m1187.8 708.3l-530.8-15.6v-50.6l530.8 17.1z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 701.6l-122.6-3.7v-34.6l122.6 4z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 749.3l-122.6-3.3v-34.6l122.6 3.6z"/>
|
||||
<path id="<Path>" class="s7" d="m2048.9 766l-475.7-13v-34l475.7 14z"/>
|
||||
<path id="<Path>" class="s8" d="m2126.9 813.9l-471-11.5v-33.9l471 12.5z"/>
|
||||
<path id="<Path>" class="s9" d="m2126.9 859.6l-471-10.2v-33.9l471 11.2z"/>
|
||||
<path id="<Path>" class="s5" d="m2126.9 905.3l-471-8.8v-33.9l471 9.8z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 797l-122.6-3v-34.6l122.6 3.3z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 844.7l-122.6-2.6v-34.6l122.6 2.9z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 892.4l-122.6-2.3v-34.6l122.6 2.6z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 940.1l-122.6-2v-34.5l122.6 2.2z"/>
|
||||
<path id="<Path>" class="s5" d="m1766.4 945.3l-301.8-4.8v-34.3l301.8 5.4z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 987.8l-122.6-1.6v-34.6l122.6 1.8z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 1035.5l-122.6-1.3v-34.6l122.6 1.5z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 1083.1l-122.6-0.8v-34.6l122.6 1.1z"/>
|
||||
<path id="<Path>" class="s10" d="m1907.8 993.8l-334.6-4.3v-34l334.6 5z"/>
|
||||
<path id="<Path>" class="s5" d="m2081.7 1041.9l-425.8-4.3v-33.8l425.8 5.1z"/>
|
||||
<path id="<Path>" class="s11" d="m2081.7 1087.7l-425.8-3v-33.9l425.8 4z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 1130.8l-122.6-0.5v-34.6l122.6 0.8z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 1178.5l-122.6-0.1v-34.6l122.6 0.4z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 1226.2l-122.6 0.2v-34.6l122.6 0.1z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 1273.9l-122.6 0.5v-34.5l122.6-0.3z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 1321.6l-122.6 0.9v-34.6l122.6-0.6z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 1369.3l-122.6 1.2v-34.6l122.6-1z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 1417l-122.6 1.6v-34.6l122.6-1.4z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 1464.6l-122.6 2v-34.6l122.6-1.7z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 1512.3l-122.6 2.4v-34.6l122.6-2.1z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 1560l-122.6 2.7v-34.6l122.6-2.4z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 1607.7l-122.6 3v-34.5l122.6-2.8z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 1655.4l-122.6 3.4v-34.6l122.6-3.1z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 1703.1l-122.6 3.7v-34.6l122.6-3.4z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 1750.8l-122.6 4.1v-34.6l122.6-3.8z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 1798.5l-122.6 4.4v-34.6l122.6-4.2z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 1846.2l-122.6 4.8v-34.6l122.6-4.6z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 1893.8l-122.6 5.2v-34.6l122.6-4.9z"/>
|
||||
<path id="<Path>" class="s6" d="m1437.8 1941.5l-122.6 5.5v-34.5l122.6-5.3z"/>
|
||||
<path id="<Path>" class="s12" d="m1798.2 712.5l-334.4-10.1v-34.2l334.4 10.8z"/>
|
||||
<path id="<Path>" class="s5" d="m2048.9 1684.5l-475.7 14.5v-34.1l475.7-13.5z"/>
|
||||
<path id="<Path>" class="s13" d="m2126.9 1727.8l-471 15.7v-33.9l471-14.7z"/>
|
||||
<path id="<Path>" class="s14" d="m2126.9 1773.5l-471 17.1v-33.9l471-16.1z"/>
|
||||
<path id="<Path>" class="s15" d="m2329.9 1811.2l-458.8 18v-33.4l458.8-17z"/>
|
||||
<path id="<Path>" class="s16" d="m2329.9 1856.4l-458.8 19.2v-33.4l458.8-18.3z"/>
|
||||
<path id="<Path>" class="s5" d="m2329.9 1901.5l-458.8 20.6v-33.4l458.8-19.7z"/>
|
||||
<path id="<Path>" class="s17" d="m1798.2 1645.5l-334.4 9.2v-34.3l334.4-8.5z"/>
|
||||
<path id="<Path>" class="s18" d="m2048.9 1179.3l-475.7-0.6v-34l475.7 1.6z"/>
|
||||
<path id="<Path>" class="s5" d="m2126.9 1225.1l-471 0.8v-33.9l471 0.3z"/>
|
||||
<path id="<Path>" class="s19" d="m2126.9 1270.8l-471 2.1v-33.8l471-1.1z"/>
|
||||
<path id="<Path>" class="s20" d="m2126.9 1316.5l-471 3.5v-33.9l471-2.5z"/>
|
||||
<path id="<Path>" class="s21" d="m1766.4 1365.9l-301.8 3.1v-34.3l301.8-2.4z"/>
|
||||
<path id="<Path>" class="s5" d="m1907.8 1410.8l-334.6 4.4v-34.1l334.6-3.6z"/>
|
||||
<path id="<Path>" class="s22" d="m2081.7 1454.3l-425.8 6.9v-33.9l425.8-5.9z"/>
|
||||
<path id="<Path>" class="s23" d="m2081.7 1500.2l-425.8 8v-33.9l425.8-7.1z"/>
|
||||
<path id="<Path>" class="s24" d="m2176.1 1543.9l-420.7 9.2v-33.7l420.7-8.2z"/>
|
||||
<path id="<Path>" class="s25" d="m2176.1 1589.5l-420.7 10.4v-33.7l420.7-9.5z"/>
|
||||
<path id="<Path>" class="s26" d="m1798.2 1132.4l-334.4-1.5v-34.2l334.4 2.1z"/>
|
||||
<path id="<Path>" class="s27" d="m1187.8 784.9l-303.8-7.5v-50l303.8 8.5z"/>
|
||||
<path id="<Path>" class="s5" d="m805.4 775.4l57.2 1.5v-50.1l-57.2-1.5z"/>
|
||||
<path id="<Path>" class="s5" d="m1187.8 855.5l-303.8-6.3v-50l303.8 7.2z"/>
|
||||
<path id="<Path>" class="s5" d="m805.4 847.6l57.2 1.1v-50l-57.2-1.3z"/>
|
||||
<path id="<Path>" class="s5" d="m1187.8 926l-303.8-5v-50l303.8 5.9z"/>
|
||||
<path id="<Path>" class="s5" d="m805.4 919.7l57.2 0.9v-50l-57.2-1.1z"/>
|
||||
<path id="<Path>" class="s27" d="m1187.8 1426.5l-530.8 7.2v-50.6l530.8-5.6z"/>
|
||||
<path id="<Path>" class="s5" d="m1187.8 1503.2l-303.8 5.5v-50l303.8-4.6z"/>
|
||||
<path id="<Path>" class="s5" d="m805.4 1510.1l57.2-1v-50.1l-57.2 0.9z"/>
|
||||
<path id="<Path>" class="s5" d="m1187.8 1573.7l-303.8 6.8v-50l303.8-5.9z"/>
|
||||
<path id="<Path>" class="s5" d="m805.4 1582.2l57.2-1.3v-50l-57.2 1.1z"/>
|
||||
<path id="<Path>" class="s5" d="m1187.8 1644.2l-303.8 8.1v-50l303.8-7.1z"/>
|
||||
<path id="<Path>" class="s5" d="m805.4 1654.3l57.2-1.5v-50l-57.2 1.4z"/>
|
||||
<path id="<Path>" class="s27" d="m1187.8 997l-530.8-6.5v-50.6l530.8 8z"/>
|
||||
<path id="<Path>" class="s5" d="m1187.8 1073.6l-303.8-2.3v-49.9l303.8 3.2z"/>
|
||||
<path id="<Path>" class="s5" d="m805.4 1070.7l57.2 0.4v-50l-57.2-0.6z"/>
|
||||
<path id="<Path>" class="s5" d="m1187.8 1144.1l-303.8-1v-49.9l303.8 1.9z"/>
|
||||
<path id="<Path>" class="s5" d="m805.4 1142.8l57.2 0.2v-50l-57.2-0.3z"/>
|
||||
<path id="<Path>" class="s5" d="m1187.8 1286.1l-303.8 1.5v-49.9l303.8-0.7z"/>
|
||||
<path id="<Path>" class="s5" d="m805.4 1288l57.2-0.3v-50l-57.2 0.2z"/>
|
||||
<path id="<Path>" class="s5" d="m1187.8 1356.6l-303.8 2.8v-49.9l303.8-1.9z"/>
|
||||
<path id="<Path>" class="s5" d="m805.4 1360.2l57.2-0.6v-50l-57.2 0.4z"/>
|
||||
<path id="<Path>" class="s5" d="m1187.8 1214.7l-303.8 0.2v-49.9l303.8 0.6z"/>
|
||||
<path id="<Path>" class="s5" d="m805.4 1215l57.2-0.1v-50l-57.2-0.1z"/>
|
||||
<path id="<Path>" class="s27" d="m1187.8 1714.7l-530.8 16.3v-50.6l530.8-14.7z"/>
|
||||
<path id="<Path>" class="s5" d="m1187.8 1791.4l-303.8 10.7v-50l303.8-9.8z"/>
|
||||
<path id="<Path>" class="s5" d="m805.4 1804.9l57.2-2.1v-50l-57.2 1.9z"/>
|
||||
<path id="<Path>" class="s5" d="m1187.8 1861.9l-303.8 12v-50l303.8-11.1z"/>
|
||||
<path id="<Path>" class="s5" d="m805.4 1877l57.2-2.3v-50l-57.2 2.1z"/>
|
||||
<path id="<Path>" class="s5" d="m1187.8 1932.4l-303.8 13.3v-50l303.8-12.4z"/>
|
||||
<path id="<Path>" class="s5" d="m805.4 1949.1l57.2-2.5v-50l-57.2 2.3z"/>
|
||||
<path id="<Path>" class="s5" d="m1252.3 1929.8l-11.6 0.5v-1269.4l11.6 0.4z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s5" d="m2702.8 1988.8c-515.4 10.8-631.3 84.4-777.8-3.8-201.2-121.1-109.6-336.7-305.6-449.7-246.5-142.2-530.7 118.2-659.4-8.8-128.1-126.3 113.9-423.8-26.2-755.4-56.2-133-151.9-219.5-218.1-269l-133.4-5.8c-51.2-2.2-93.1 31.7-93.1 75.6v1582c0 43.8 41.9 77.1 93.1 74l2367.7-141.1c37.5-2.3 68-34.5 68-71.8v-23.9c-71-2.5-180.9-5.1-315.2-2.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s28" d="m2560.1 1542.5c-24.4-26 43.1-124 79.3-166.9 31.6-37.5 64.1-76 104-71.1 35 4.3 69.1 41.2 71.1 76.6 5.5 95.2-219.7 198.5-254.4 161.4z"/>
|
||||
<path id="<Path>" class="s29" d="m2853.2 2548.8c4.6 3.8 5.5 13.1 6 19.2 0.3 2.7 0.4 4.1 0.1 5-2.2 7.1-15.9 7.8-37.2 10-33.7 3.4-43.8 6.1-46.4 1.1-2.5-4.7 3.5-12.4 4.2-13.3 3.6-4.6 8-6.2 16.6-9.1 16-5.2 26.7-8.1 30-8.9 20.3-5.5 23.7-6.4 26.7-4z"/>
|
||||
<path id="<Path>" class="s30" d="m2833.2 2518l-3.4 38.5c0.9 1.8 12.4 7.4 21.4 2.6l8.7-37.8z"/>
|
||||
<path id="<Path>" class="s31" d="m2585.7 2543.9c5.5 6.1 6.8 17.3 2 22.8-4.7 5.4-11.8 1.3-31.9 1.9-21.5 0.7-27.1 5.8-41.7 1.7-5.9-1.6-16.3-5.6-16.1-9.8 0.1-2.9 5.4-4.5 23.1-10.4 25.2-8.4 25.1-8.9 30.4-9.8 13.5-2.2 26.9-4.4 34.2 3.6z"/>
|
||||
<path id="<Path>" class="s30" d="m2571.9 2508.8l-10.8 35.9c0.9 1.9 11.8 8.3 21.2 4.3l16.1-34.9z"/>
|
||||
<path id="<Path>" class="s32" d="m2667.8 1722.9c-1.6 120.6-9.8 256.2-29.5 403.5-19.6 145.6-46.9 277.2-76.7 392.9q20.6 5.5 41.3 11.1c34.9-32.6 78.9-83.8 100.2-156.3 13.2-44.9 8.8-68 17.1-123.3 13.4-88 40.3-134.2 68.2-205.2 25.1-63.8 54.7-157.4 70.6-282.5q-95.6-20.1-191.2-40.2z"/>
|
||||
<path id="<Path>" class="s33" d="m2792 1711.4c8.4 153.4 15.4 309.6 20.6 468.6 4 119.3 6.8 237.1 8.8 353.4q21.1 2.6 42.1 5.2c13.6-25.3 31.7-64 44-113.5 15-60.2 11.6-96 18.2-158.4 7.3-69.9 18.1-85.2 37.1-173.4 38.6-179.2 57.8-268.7 14.8-324.5-14-18-57.8-63.4-185.6-57.4z"/>
|
||||
<path id="<Path>" class="s34" d="m2996.9 1326c-32.9-9.3-81.2-20.1-140.3-23.4-84.2-4.8-126.4-7.2-156.3 12.9-68.9 46.3-15.5 153.3-43.8 418.5-4 37.9-4.9 76.1-7.8 114-4.8 62.9-6 66.3-1.6 72.7 27.5 40 129.8-20.3 279.9 3.5 83.9 13.4 122 44.1 145 21.9 26.8-25.8 3.8-95.3-16-155.1-22.8-68.7-36.8-69.5-49.7-121.2-13.5-54.1-5.3-81.9-3.2-167.1 1-40.8 0.8-101.5-6.2-176.7z"/>
|
||||
<g id="<Group>" style="opacity: .3;mix-blend-mode: multiply">
|
||||
<path id="<Path>" class="s35" d="m2792.9 1823.9c39.2-3.1 64.6 19.1 98.5 1.8 46.4-23.7 61.3-97.4 58.4-149.6-4.5-79.2-49.8-100.1-42-151.4 4.2-27.7 24-64.5 95-102 1 31.6 0.8 58.6 0.3 80-2.1 85.2-10.3 113 3.2 167.1 12.9 51.7 26.9 52.5 49.7 121.2 19.8 59.8 42.8 129.3 16 155.1-23 22.2-61.1-8.5-145-21.9-129.3-20.5-223.2 21.3-264.2 7.8 49.6-82 94.6-105.3 130.1-108.1z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s36" d="m2943.4 1331.4c28-23 84.3 3.1 99.4 10 83.9 38.8 159.3 143.5 140.6 254.1-2.8 16.5-15.8 94.1-81.4 131.7-59.3 33.9-139.3 25.2-203.5-22.8q-13.1-11.7-26.2-23.4-13-13.9-25.9-27.9c13.5-11.3 36.6-27.6 68.9-38 42.6-13.7 73.7 10.9 93.5-7.8 13.6-13 13.6-35.9 10.3-49.7-6.8-28-31.5-35.8-52-55.7-48.3-46.6-57.2-142.9-23.7-170.5z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s37" d="m2540.9 1692.4l375.4-5.6-99.8 48.2-276.5-18.1z"/>
|
||||
<path id="<Path>" class="s38" d="m2929.6 1696.8c0 7-4.4 13.3-11 15.7l-120 47-0.5-32.6 118.2-40.1c6.7-1.9 13.3 3.1 13.3 10z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s2" d="m2871.8 1674.6c2.3-0.5-11.3-27.5-21.9-24.4-10.6 3.1-62.5 33.2-67.2 45.6-4.8 12.4-4.8 12.4-4.8 12.4 0 0 22.7 1.8 36.7-2.9 14.1-4.8 38.4-26.6 57.2-30.7z"/>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s39" d="m2788.1 1498.2l26.5 240.9c0.9 8.3-10.7 20.7-19.1 20.3l-388.2-23.8c-6.3-0.3-11.7-5-12.7-11.3l-48.8-232.7c-1.4-8.5 13.8-17.2 22.4-17l406.8 11.4c6.8 0.2 12.4 5.4 13.1 12.2z"/>
|
||||
<path id="<Path>" class="s40" d="m2779.3 1505.2l26.4 240.9c0.9 8.3-5.8 15.5-14.2 15.1l-393-18.6c-6.4-0.3-11.7-5-12.8-11.3l-40.2-233.8c-1.4-8.4 5.2-16.1 13.8-15.9l406.8 11.5c6.8 0.2 12.4 5.3 13.2 12.1z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s41" d="m2548.4 1686.1c34.4-14.5 22.2-42.3 62.8-76.8 53.4-45.6 107.9-25.9 127-61.2 6-11 8.8-28.1-1.5-55.9l29.4 0.9c6.8 0.2 12.4 5.3 13.2 12.1l26.4 240.9c0.9 8.3-5.8 15.5-14.2 15.1l-393-18.6c-6.4-0.3-11.7-5-12.8-11.3l-5.5-32.3c11.9-6.6 26.1-12.6 42.8-16 57.6-11.7 85.9 19.9 125.4 3.1z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s2" d="m2373.7 1708.9c-0.6-2 0.7-4 2.8-4.1 8.3-0.4 27.5-0.6 38.2 6 13.8 8.4 31.7 23.9 16.6 31.7l-14 7.2q-1 0.5-2.1 0.3c-5-1.1-26-5.7-28.3-6.9-2.1-1-10.1-24.8-13.2-34.2z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s2" d="m2850.3 1210.5c-0.2 25 2.6 44.8 5.3 58.3 3 15.6 5.2 19.6 7.9 22.9 4.2 4.9 10.6 9 46.4 17.9 19.4 4.8 21.9 4.7 22.4 6.6 2.1 9.4-51.1 41.6-105.9 33.8-33.6-4.7-64.2-23.9-62.3-33.9 1.9-10.2 35.4-4.7 45.4-23.1 7-12.7-0.8-30.8-10-45.8 8.9-16.7 41.9-20 50.8-36.7z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s42" d="m2788 1220.3c-7.9-10.5-8.4-28.9 0.7-40.5 7.9-10 20.2-11.4 27.6-12.3 21.5-2.5 48.6 6.5 58 26.3 5.6 11.7-6.5 36-8.4 40.4-2.1 4.9-6 6.6-9.6 10.3-5 5.2-12.8 13.5-25.5 27.3-1-4.1-2.5-9.2-4.8-14.6-1-2.1-4.7-10.3-10.2-17.1-11.2-13.7-20.3-9.8-27.8-19.8z"/>
|
||||
<path id="<Path>" class="s2" d="m2849 1260.2c0 0-14.1 23.1-42.2 21.3-25.2-1.7-28.9-58.1-12.8-70 5.4-4 16.1-5.7 24.8-3.2 5.2 1.4 6.9 3.6 15.4 5.7 7.8 2.1 10 1.2 12.4 3.2 2.9 2.5 5.1 8.6 0.1 25 4.8-4.8 10.6-6.7 14.7-4.7 0.6 0.3 2.4 1.4 3.3 3.2 3.6 6.5-2.3 14.7-15.7 19.5z"/>
|
||||
<path id="<Path>" class="s43" d="m2847.7 1213.8c-1.2 0.9 2.5 5.4 2.8 11.9 0.5 12.4-12.1 27.3-24.9 28.6-7.6 0.7-9.7-3.9-22.2-5.2-7.8-0.8-14.3 0.2-18.3 1.1-4 13.6-0.3 27.2 8.8 33.5 9.9 6.8 22.4 2.7 27.6 1 3.5-1.2 14.8-4.9 20.6-15.2 6.2-10.7 0.2-17.2 7.2-24.4 3.5-3.7 8.2-5.3 12.7-12.4 1.2-1.9 2-3.6 2.5-4.7-6.4-6.9-15-15.5-16.8-14.2z"/>
|
||||
<path id="<Path>" class="s2" d="m2794.2 1255.2c0 0 5.4 2.9 14.8 2.3 0.5 0 1 0.2 1 0.4 0.2 0.9-5.8 4.9-11.3 3.3-4-1.1-7-4.8-6.5-5.8 0.2-0.4 1.1-0.3 2-0.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s44" d="m830.3 1354.3c-6.7 2.5-108.4 42.9-129.3 149.1-1.7 8.6-18.1 99.8 43.8 164.2 69.3 72.3 202.9 70.5 255.9 10.1 12.4-14.1 18.9-29.7 22.6-42.8l-14-37.1c-17-20.6-40.3-25.5-52.6-28.5-30.6-7.6-53.7 6-71.2-8.7-9.7-8.1-11.6-19.9-13.3-30.4-5.8-35.7 14.3-57.6 15.8-79.6 1.1-16.5 6.8-52.6-14.7-76.1-13.6-14.9-32.4-18.9-43-20.2z"/>
|
||||
<path id="<Path>" class="s45" d="m790.6 2537.4c-1.2-6.5-22.3-12.4-32.7-3.7-5.2 4.4-8.8 13.2-5.8 17.2 1.1 1.4-3.4 4 0.9 4 14.2 0.2 38.8-11 37.6-17.5z"/>
|
||||
<path id="<Path>" class="s46" d="m768.5 2539.8l-21.7-3.1c10.1-12.1 8.2-50.6 8.2-50.6l23.1 5.1c0 0-2.7 10.6-7.1 26.2-1.6 5.4-2.2 13.7-2.5 22.4z"/>
|
||||
<path id="<Path>" class="s47" d="m770.4 2537.1c0 0-26.1-6-28.9-0.8-2.9 5.2-5.1 19.1 11.5 18.6 16.6-0.4 18.9-13.4 17.4-17.8z"/>
|
||||
<path id="<Path>" class="s48" d="m1088.5 2561.9c-2.1-6.3-23.9-9.2-33 1-4.5 5-6.8 14.2-3.3 17.7 1.3 1.3-2.8 4.5 1.5 3.9 14.1-1.8 36.8-16.3 34.8-22.6z"/>
|
||||
<path id="<Path>" class="s49" d="m1066.9 2567.4h-21.9c8.2-13.4 1-51.3 1-51.3l23.6 1.9c0 0-1.2 10.8-3.4 26.9-0.8 5.5-0.3 13.9 0.7 22.5z"/>
|
||||
<path id="<Path>" class="s50" d="m1123.7 1738.4c10.2 33.5 24.7 87.6 34 155.5 26.6 193.7-30 199.9-19.4 414.6 3.4 68.5-59.4 226.5-64.9 230-2.7 0.2-5.6 0.4-8.7 0.3-5.4-0.2-13.1-1-22.1-3.7-9.9-1.7-45.7-98.7-37.4-156.4 5.9-40.9 4.2-84.7 0.8-172.3-0.6-14.2-36.9-276.3-36.9-276.3-11.1 97-23.8 179.4-34.8 243.3-35.4 205.4-150.5 329.6-156.6 331.6-1.1 0.5-11.9 4.4-20.8-1.4-3.9-2.6-5.2-5.9-5.2-5.9-3.1-2.4 0.9-205 36-357.5 50.9-221.3 28.8-273.1 44.9-371.9 14-85.6 291.1-29.9 291.1-29.9z"/>
|
||||
<path id="<Path>" class="s51" d="m1137.4 1771.8c-30.6 15.7-109.5 43.9-203.4 29.9-41.7-6.2-75.2-19.8-99.3-32.3q-1.1-0.6-2.1-1.1c24.4-73.8 5.3-113.3-3.8-149.7-12.8-51.9-13-48-23.6-89.2-17.5-68.1-20.4-137.6-8.4-151.8 32.4-38.3 90.8-39.7 121-40.6 33.9-1 111.7-12.9 154.5 25.6 0.7 0.7-8 5.4-3.7 10.4 4 4.7 17.7 21.2 30.2 43.4 9.1 16.1 17.2 34.9 25.5 62.9 14.5 49.4 18.6 91.4 20 109.7q0.7 9.1 1.2 17.6c5.7 90.9-1.5 134.8-8.1 165.2z"/>
|
||||
<path id="<Path>" class="s52" d="m1068.4 2564.5c0 0-26.7-2.3-28.8 3.2-2 5.5-2.3 19.6 14.1 16.8 16.3-2.7 16.8-15.9 14.7-20z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s53" d="m1015.2 1293.7c9.2-18.4 3.2-38.2 1.8-42.5-5.7-18-7.5-20.6-11.1-24.3l-5.2-4.7c0 0-0.3-0.2-0.6-0.4-3.5-2.1-16.2-4.9-18.9-4.9-8.7 0.2-24 32.2-30.7 80.3q-1 2.7-2 5.4c-4.2 11.1-7.7 21.9-10.7 32.5-57.7 9-65.2 16.4-65.2 20.3 0 8.3 33.7 15.6 58.9 17.5 54.7 4.1 109.5-14.1 108.5-24.2-0.4-4.4-11.6-9.3-58-12.2q0.8-11.5 1.7-23c3.6-1.1 24.7-6.2 31.5-19.8z"/>
|
||||
<path id="<Path>" class="s54" d="m1020.5 1212c-2.9 14.7-12.9 29.1-17 31-0.5 0.2-3.5 1.8-6.4 4.8-0.4 0.4-0.8 0.9-1.2 1.6-5.1 8.7 7.6 22.5 4 26.1-2.7 2.6-12-3.4-13.7-1-1.6 2.2 5.8 8.9 4 11.6-1.4 2.1-6.2-1-10.1 1.8-1.9 1.4-1.7 2.8-4.4 7.7-1.6 2.7-3.5 5.7-4.9 7.3-6.8 7.6-21.9 8-24 4-0.6-1.1 0.3-1.8 0.1-5.2 0 0-0.2-3.1-1.6-7-2-5.6-8.5-10.5-14.8-17.2-11.6-12.3-13.7-21.3-14.2-24.3-0.2-1-0.3-1.8-0.4-2.4-1.4-11.6 1.7-27.6 8.4-36.4 11.4-14.9 28.4-3.5 46.7-16.9 21.1-15.5 15.7-43.2 25.7-44.2 11-1.2 29.1 31.4 23.8 58.7z"/>
|
||||
<path id="<Path>" class="s55" d="m995.2 1271c-2.6-5.7-9.9-2.2-11.2 4.2-1.2 6.4 3.7 14.3 10 14.2 6.3-0.1 4.8-10.8 1.2-18.4z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s56" d="m843.4 1722.6q-0.1 0-0.2 0c-1.1-0.2-1.9-1.1-1.8-2.2 4-35.8-3.4-61.9-10-84.8-1.6-5.7-3.1-11.1-4.5-16.5-7.3-29.4-10.5-40.8-13.8-52.8-2.3-7.9-4.5-16-8.1-29.6-0.2-1 0.4-2.1 1.4-2.4 1.1-0.3 2.2 0.4 2.4 1.4 3.6 13.6 5.8 21.7 8.1 29.5 3.3 12.1 6.5 23.5 13.8 52.9 1.4 5.4 2.9 10.8 4.5 16.4 6.7 23.3 14.2 49.7 10.1 86.3-0.1 1-0.9 1.8-1.9 1.8z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s57" d="m1137.4 1771.8c-30.6 15.7-109.5 43.9-203.4 29.9-41.7-6.2-75.2-19.8-99.3-32.3 10.9-8.5 24.4-22.7 46.6-46.8 26.9-29.2 58.4-18.3 76.9-7.3 13.4 7.8 29.9 8.1 43.5 0.6 13.6-7.5 22.2-21.7 22.6-37.2 0.2-7.1-0.2-15.2-1-24.4-6.4-66.4 85.7-72.1 85.7-72.1 13-6.7 25.3 4.2 36.5 24.4 5.7 90.9-1.5 134.8-8.1 165.2z"/>
|
||||
<path id="<Path>" class="s58" d="m1459.2 1475.8c-3.7 0.3-8.2 4.1-11.3 5.9-4.5 2.5-9 5-13.6 7.4-8.8 4.6-18.1 8-28.2 7.8 0.3-1.5 0.8-2.9 1.3-4.3 1.8-4 4-7.4 2.7-8.6-2-1.8-10.4 1.8-18.2 9.3-3.2 3-6.2 6.7-8.7 10.8-4 6.8-3.3 10.6-6.6 15.7-5 4.5-8.7 5.5-8.7 5.5v1.4l0.5 1.7c-4.4 3.4-9.4 5.4-13.3 6.7 6.9 1.9 13.6 3.7 20.5 5.6l4.8 8c0 0 26-5.5 41.7-15 7.3-4.5 9.8-10 10.5-14.6 0.4-3 0-5.6-0.4-7.3-0.4-1.2-0.7-1.9-0.7-1.9 0 0 21.5-8.9 29.9-28.2 1.3-2.9 1.4-6.3-2.2-5.9z"/>
|
||||
<path id="<Path>" class="s59" d="m1368.4 1517.2c12.3 8.6 18.8 20.2 22.2 27.7-9 21.1-29.4 60.3-71.6 89.2-69.2 47.4-170.8 49-241.5-5.1-84.5-64.5-98.6-188.3-63.1-241.3 4.1-6.1 17.5-26.2 38.4-28.5 13.1-1.4 31 4 59.4 37.1 59 69.1 38.1 112.3 73 132.5 52.3 30.3 129.9-48.9 183.2-11.6z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s60" d="m2246.2 191.6c-21.6-6.3-50.6 33.5-74.7 66.6-36.1 49.5-78.2 107.4-66.9 176.9 11.2 68.4 69.8 121.6 86.5 114 14.3-6.5-13.2-52.5 7.9-114 17-49.6 45.1-49.6 64-98.3 23.4-60.4 9.9-137.4-16.8-145.2z"/>
|
||||
<path id="<Path>" class="s61" d="m2235.5 506.5c-111.7 27.1-185.3 70.7-228.3 101.5-23.2 16.7-34 27.1-39.8 42.2-33.1 86.5 136.9 217.2 155 230.9q11.9-27.7 23.8-55.3c-17.6-96.5-46.8-126.7-71.3-135.7-6.9-2.5-18.4-5.2-18.1-8.5 0.5-7.6 65.1 3.3 126.8-19.3 61.5-22.5 123.3-79.5 112.3-117.1-2-6.9-10.5-26.8-60.4-38.7z"/>
|
||||
<path id="<Path>" class="s62" d="m2127.2 1138.5c0 0 10.4 3.7 10.4 11.9 0.1 8.3-10.5 44.5-22 57.4-11.5 12.8-12.5-6.4-11.8-18.8 0.7-12.3 3.7-40 6.6-45.4 2.8-5.3 16.8-5.1 16.8-5.1z"/>
|
||||
<path id="<Path>" class="s63" d="m2093.8 632.9c-20.3-0.4-67.9-4.2-80.5 19.3-10.6 19.7 7.9 49.4 19.3 67.7 31 49.7 61 54.8 82.1 85.3 8.2 11.9 15.6 28.4 18 52q6.7-15.7 13.5-31.4c-17.6-96.5-46.8-126.7-71.3-135.7-6.9-2.5-18.4-5.2-18.1-8.5 0.5-7.6 65.1 3.3 126.8-19.3 56.1-20.5 112.2-69.6 113.4-106.7-88.8 63.7-155.7 78.3-203.2 77.3z"/>
|
||||
<path id="<Path>" class="s64" d="m2133.2 1103.6c-0.6 12.6-1.7 23.2-2.7 31.1-2.1 17.4-4.1 24.3-6.8 30.6-2.3 5.4-8.2 17.4-11 16.5-2.9-0.8 0-14 2.3-50.8 0.3-5.3 1.3-22.3 1.3-22.3z"/>
|
||||
<path id="<Path>" class="s65" d="m2299.9 513.8c-64.3 38.8-106.1 82.9-130.4 112.7-28.7 35.2-72.3 88.7-88.1 168.4-8.4 42.6-4.3 80.7 4.4 155.3 8.5 74 20.8 134.3 30.4 175.5q7.4 2.9 14.9 5.9c13.2-24.3 30.6-62.9 36.8-112.2 10.1-80.7-20-106.3-5.5-163.5 12.5-49.6 48.9-79.9 121.6-140.7 59.7-50 114.8-79.6 135.2-141.9 3.5-10.5 6.5-23.5 0.8-35.4-12.2-25.6-58.9-34.5-120.1-24.1z"/>
|
||||
<path id="<Path>" class="s66" d="m2351.3 196.2c-16.7-3.6-44.2-2.9-70.4-23.5-7.9-6.2-35.8-28.2-32.4-59.7 3-27.7 29.3-42.6 32.5-44.3 18.6-10.3 37.1-8 57.7-5.2 26.6 3.7 35.5 10.9 54 15.9 45.8 12.4 61.3-13.4 107.4-11.2 59 2.8 64.1 46.3 113.7 47.4 55.7 1.2 66.4-53.3 121.4-62.5 76.3-12.9 191.8 69.3 189.4 164-1.3 54.7-42 117.4-94.1 136.3-30.3 10.9-63 7.4-72.4 27.2-6.6 14 8.3 24.8 6.9 49.3-1.8 31.5-28.9 53.6-33.3 57.2-40.7 33.2-131.9 16.4-194.2-30.5-112.4-84.6-95.4-240.8-186.2-260.4z"/>
|
||||
<path id="<Path>" class="s67" d="m2480.3 185c-37.8-4.7-81.4-8.2-129.9-8.9-102.5-1.4-117.2 11.6-120.9 21.2-7 18 5 26.9-1.8 58.2-4.1 18.7-0.3 27.2-8.1 47.3-7.7 19.6-1.7 30.1 5.1 76 8.7 58.7 12.7 88.5-3.8 112.2-11.4 16.4-24.1 17.8-22.9 25.6 2.6 16.7 60.1 7.5 132.9 39.4 21.1 9.3 40.5 20.7 56.8 30.2 38.1 22.4 45.1 31 62.8 41.1 55.8 32 139.6 35.1 183.6-3.6 16.4-14.5 28.3-35.7 22.9-43.5-7.3-10.6-40 13.4-70-1.2-19.9-9.7-16.1-25.5-39.1-44-27.7-22.3-46.9-10.6-65.8-25.1-29.4-22.7-16-76.8-7.7-167.7 3.4-37.6 6.8-91.3 5.9-157.2z"/>
|
||||
<path id="<Path>" class="s68" d="m2369.4 163.9c14 8.6 36.6 20 39.1 23 2.5 3.1-68.4 15.3-112.6-7 0 0-6.8-3.8 19.8-9.1 5.7-1.2 4.5-12.2 3.8-23.6l5.3-9.9c0 0 30.7 17.9 44.6 26.6z"/>
|
||||
<path id="<Path>" class="s69" d="m2334.2 130.6c0 0 5.5 23.3-15 34.8-18.4 10.3-49.4-31.9-43.6-47.6 1.9-5.3 8.9-12 16.1-14.2 5-1.6 24.3-1 32.5 15.2 2.1-4.8 6-7.2 8.6-6.5 3.3 1 3.8 7 3.9 8.4 0.4 4.7-1.5 8.3-2.5 9.9z"/>
|
||||
<path id="<Path>" class="s70" d="m2302.4 503.4c21.1 8.8 24 27.7 53.2 38.4 27.8 10.2 37.1-2.6 64.9 5.9 41.7 12.8 57.6 53 63.9 49.2 5.8-3.5 0.3-42-26.5-66.9-30.8-28.6-64-15.5-83.7-45.3-7.6-11.5-13.5-30-6.8-44.2 9-19.3 32.7-12.6 45.2-28.6 22.5-28.6-30.2-80.3-15.7-123.9 5.7-17.5 24.1-39.3 83.3-53.9-0.8 43.8-3.3 80.3-5.8 108.1-8.3 90.9-21.7 145 7.7 167.7 18.9 14.5 38.1 2.8 65.8 25.1 23 18.5 19.2 34.3 39.1 44 30 14.6 62.7-9.4 70 1.2 5.4 7.8-6.5 29-22.9 43.5-44 38.7-127.8 35.6-183.6 3.6-17.7-10.1-24.7-18.7-62.8-41.1-16.3-9.5-35.7-20.9-56.8-30.2-51.1-22.4-94.6-24.6-117-29.6 44.4-29.6 71.4-30.1 88.5-23z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s71" d="m2098.8 533.1l267.7 13c3.7 0.2 7 2.2 9 5.3l7.4 11.9c3.7 5.9-0.8 13.6-7.7 13.3l-283.6-10.8z"/>
|
||||
<path id="<Path>" class="s72" d="m1853 385.2l276.6 5.4c8.2 0.1 15.7 4.6 19.7 11.7l95.8 168.5-292.1-11.6c-8-0.3-15.4-4.7-19.5-11.6l-88.7-148.2c-3.8-6.3 0.8-14.3 8.2-14.2z"/>
|
||||
<path id="<Path>" class="s73" d="m2149.3 402.3c-4-7.1-11.5-11.6-19.7-11.7l-6.1-0.1c-0.9 8.9-3.6 17.1-9.1 23.6-17 20.6-45.4 7.9-66.5 29.7-23.2 24-1.8 52.4-22.5 74.7-21.8 23.5-57.1 4.4-97.7 19.4l5.8 9.7c4.1 6.9 11.5 11.3 19.5 11.6l292.1 11.6z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s74" d="m2322.6 533.3q-4.5-12-9-23.9c33.3-9.2 79.4-22.7 126.7-39.6 11.7-4.2 16-9.6 19.1-13.7 24.3-32.2-37.5-88.9-36.4-162.5 0.8-51 31.8-109.4 59-110.1 55.4-1.3 177.6 233.8 74.7 334.1-51.1 49.9-146.5 55.6-234.1 15.7z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s75" d="m2313.6 509.4c-21-11.2-46 0.2-47.6 1-4.6 2.2-11.3 6-18.1 12.9-0.8 1.1-9.8 13.7-6.5 17.7 2.6 3.2 12.9 0.6 25.2-7.1 5.2-0.7 12.9-1.4 22.1-0.6 17 1.6 24.7 7 30.9 2.3 4.5-3.3 6-10.5 4.4-15.8-1.7-5.7-6.9-8.6-10.4-10.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 44 KiB |
Before Width: | Height: | Size: 742 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 385 KiB |
Before Width: | Height: | Size: 50 KiB |
Before Width: | Height: | Size: 5.1 KiB |
@@ -1,15 +0,0 @@
|
||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="512" height="512">
|
||||
<title>snigdhaos-favicon</title>
|
||||
<style>
|
||||
.s0 { fill: #ffffff }
|
||||
</style>
|
||||
<filter id="f0">
|
||||
<feFlood flood-color="#754ffe" flood-opacity="1" />
|
||||
<feBlend mode="normal" in2="SourceGraphic"/>
|
||||
<feComposite in2="SourceAlpha" operator="in" />
|
||||
</filter>
|
||||
<g id="Folder 1" filter="url(#f0)">
|
||||
<path id="Layer" fill-rule="evenodd" class="s0" d="m218.1 365.9l37.7-37.7 37.7 37.7 37.7 37.7-75.4 75.4q-109.9-109.9-219.8-219.8 0-113.1 0-226.2l144.4 144.4-37.8 37.7-53.3-53.4v75.4l128.8 128.8z"/>
|
||||
<path id="Layer" fill-rule="evenodd" class="s0" d="m331.2 177.4l144.3-144.4q0 113.1 0 226.2c-35.5 35.6-71.1 71.1-106.6 106.7l-113.1-113.1-37.7 37.7-37.7-37.7 75.4-75.4 113.1 113.1 53.3-53.4v-75.4l-53.3 53.4z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 822 B |
Before Width: | Height: | Size: 52 KiB |
Before Width: | Height: | Size: 121 KiB |
@@ -1,500 +0,0 @@
|
||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" width="1000" height="1000">
|
||||
<title>2682153-ai</title>
|
||||
<defs>
|
||||
<linearGradient id="g1" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-5.119,559.251,-259.525,-2.375,1211.262,89.735)">
|
||||
<stop offset="0" stop-color="#1d3f8f"/>
|
||||
<stop offset=".005" stop-color="#24c7c1"/>
|
||||
<stop offset=".996" stop-color="#99faff"/>
|
||||
</linearGradient>
|
||||
<clipPath clipPathUnits="userSpaceOnUse" id="cp1">
|
||||
<path d="m643.29 709.9h-181.69c-25.36 0-45.92-20.56-45.92-45.93v-505.91c0-25.36 20.56-45.92 45.92-45.92h181.69c25.36 0 45.92 20.56 45.92 45.92v505.91c0 25.26-20.67 45.93-45.92 45.93z"/>
|
||||
</clipPath>
|
||||
<clipPath clipPathUnits="userSpaceOnUse" id="cp2">
|
||||
<path d="m487.07 293.13c-27.72 0-50.2-22.47-50.2-50.2 0-27.72 22.48-50.2 50.2-50.2 27.72 0 50.2 22.48 50.2 50.2 0 27.73-22.48 50.2-50.2 50.2z"/>
|
||||
</clipPath>
|
||||
<linearGradient id="g2" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(8.54,33.598,-28.592,7.268,495.803,233.321)">
|
||||
<stop offset=".265" stop-color="#000000" stop-opacity=".91"/>
|
||||
<stop offset=".555" stop-color="#e0ac9b" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<clipPath clipPathUnits="userSpaceOnUse" id="cp3">
|
||||
<path d="m487.07 446.35c-27.72 0-50.2-22.48-50.2-50.2 0-27.73 22.48-50.2 50.2-50.2 27.72 0 50.2 22.47 50.2 50.2 0 27.72-22.48 50.2-50.2 50.2z"/>
|
||||
</clipPath>
|
||||
<linearGradient id="g3" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(8.54,33.598,-28.592,7.268,495.803,386.539)">
|
||||
<stop offset=".265" stop-color="#000000" stop-opacity=".91"/>
|
||||
<stop offset=".555" stop-color="#e0ac9b" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<clipPath clipPathUnits="userSpaceOnUse" id="cp4">
|
||||
<path d="m487.07 599.57c-27.72 0-50.2-22.48-50.2-50.2 0-27.73 22.48-50.2 50.2-50.2 27.72 0 50.2 22.47 50.2 50.2 0 27.72-22.48 50.2-50.2 50.2z"/>
|
||||
</clipPath>
|
||||
<linearGradient id="g4" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(30.604,80.883,-62.206,23.538,438.419,320.44)">
|
||||
<stop offset=".265" stop-color="#000000" stop-opacity=".91"/>
|
||||
<stop offset=".555" stop-color="#0e608f" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g5" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(36.195,95.657,-104.435,39.516,400.132,448.212)">
|
||||
<stop offset=".265" stop-color="#000000" stop-opacity=".91"/>
|
||||
<stop offset=".555" stop-color="#0e608f" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<clipPath clipPathUnits="userSpaceOnUse" id="cp5">
|
||||
<path d="m382.48 314.51c5.2-0.79 4.15 4.64 7.86 0.92 0.85-0.86 4.75-6.72 4.88-7.92 0.6-5.84-2.11-18.22-5.52-21.58-3.21-3.15-9.68-3.59-14.14-3.04-9.1 1.13-15.87 4.65-14.83 18.89 0.6 8.1 6.44 13.01 16.74 12.45 2.07-0.11 2.73 0.12 4.8 0.07 0.28 0 0.57 0 0.8 0.16 0.22 0.16-0.37-0.12-0.59 0.05z"/>
|
||||
</clipPath>
|
||||
<linearGradient id="g6" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-4.604,60.767,-41.066,-3.111,748.435,510.631)">
|
||||
<stop offset=".265" stop-color="#000000" stop-opacity=".91"/>
|
||||
<stop offset=".555" stop-color="#e0ac9b" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g7" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(29.087,-196.334,399.008,59.113,624.083,836.412)">
|
||||
<stop offset="0" stop-color="#1d3f8f"/>
|
||||
<stop offset=".005" stop-color="#24c7c1"/>
|
||||
<stop offset=".996" stop-color="#99faff"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g8" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(100.163,-197.422,269.178,136.568,634.496,820.389)">
|
||||
<stop offset="0" stop-color="#1d3f8f"/>
|
||||
<stop offset=".005" stop-color="#24c7c1"/>
|
||||
<stop offset=".996" stop-color="#99faff"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g9" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-27.909,34.974,-25.611,-20.437,798.016,616.774)">
|
||||
<stop offset=".265" stop-color="#000000" stop-opacity=".91"/>
|
||||
<stop offset=".533" stop-color="#fffefc" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g10" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(6.23,123.348,-324.387,16.383,416.235,681.342)">
|
||||
<stop offset=".265" stop-color="#000000" stop-opacity=".91"/>
|
||||
<stop offset=".555" stop-color="#e33270" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g11" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(10.378,73.441,-120.736,17.06,803.012,797.401)">
|
||||
<stop offset=".265" stop-color="#000000" stop-opacity=".91"/>
|
||||
<stop offset=".555" stop-color="#e33270" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g12" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-10.893,73.346,-69.368,-10.302,202.954,689.606)">
|
||||
<stop offset=".265" stop-color="#000000" stop-opacity=".91"/>
|
||||
<stop offset=".555" stop-color="#e33270" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<style>
|
||||
.s0 { fill: #122757 }
|
||||
.s1 { fill: url(#g1) }
|
||||
.s2 { fill: #fcfdff }
|
||||
.s3 { fill: none;stroke: #1087b3;stroke-miterlimit:10;stroke-width: 4 }
|
||||
.s4 { fill: #ffffff;stroke: #1087b3;stroke-miterlimit:10;stroke-width: 4 }
|
||||
.s5 { fill: #ed926e }
|
||||
.s6 { fill: #ffffff }
|
||||
.s7 { fill: #e33270 }
|
||||
.s8 { fill: url(#g2) }
|
||||
.s9 { fill: url(#g3) }
|
||||
.s10 { fill: #f2f6f9 }
|
||||
.s11 { fill: none;stroke: #ffffff;stroke-miterlimit:10;stroke-width: 4 }
|
||||
.s12 { fill: #ffa587 }
|
||||
.s13 { fill: #d61e65 }
|
||||
.s14 { fill: #2e86b8 }
|
||||
.s15 { fill: url(#g4) }
|
||||
.s16 { fill: url(#g5) }
|
||||
.s17 { fill: #e0ac9b }
|
||||
.s18 { opacity: .1;fill: #292929 }
|
||||
.s19 { fill: #24c7c1 }
|
||||
.s20 { fill: #e38266 }
|
||||
.s21 { fill: #fffefc }
|
||||
.s22 { fill: url(#g6) }
|
||||
.s23 { fill: none;stroke: #8739c2;stroke-miterlimit:10;stroke-width: 1.5 }
|
||||
.s24 { fill: url(#g7) }
|
||||
.s25 { fill: #0e608f }
|
||||
.s26 { fill: url(#g8) }
|
||||
.s27 { fill: none;stroke: #000000;stroke-miterlimit:10;stroke-width: 2 }
|
||||
.s28 { fill: none;stroke: #c9cdd1;stroke-miterlimit:10;stroke-width: 2 }
|
||||
.s29 { fill: url(#g9) }
|
||||
.s30 { fill: #1a7f8f }
|
||||
.s31 { fill: url(#g10) }
|
||||
.s32 { fill: #4641ab }
|
||||
.s33 { fill: url(#g11) }
|
||||
.s34 { fill: none;stroke: #e33270;stroke-miterlimit:10 }
|
||||
.s35 { fill: url(#g12) }
|
||||
.s36 { fill: none;stroke: #25333d;stroke-miterlimit:10;stroke-width: 1.5 }
|
||||
.s37 { fill: none;stroke: #110809;stroke-miterlimit:10;stroke-width: 2 }
|
||||
.s38 { fill: #51b7d6 }
|
||||
</style>
|
||||
<g id="BACKGROUND">
|
||||
</g>
|
||||
<g id="OBJEKTS">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s0" d="m644 719.3h-183.1c-30 0-54.4-24.3-54.4-54.4v-506c0-30 24.4-54.4 54.4-54.4h183.1c30 0 54.4 24.4 54.4 54.4v506c0 29.9-24.5 54.4-54.4 54.4z"/>
|
||||
<path id="<Path>" class="s1" d="m643.3 709.9h-181.7c-25.4 0-45.9-20.6-45.9-45.9v-505.9c0-25.4 20.5-46 45.9-46h181.7c25.3 0 45.9 20.6 45.9 46v505.9c0 25.2-20.7 45.9-45.9 45.9z"/>
|
||||
<g id="<Clip Group>" clip-path="url(#cp1)">
|
||||
<path id="<Path>" class="s2" d="m709.2 160.5h-310.3v-57h310.3z"/>
|
||||
<path id="<Path>" class="s2" d="m770.1 732.1h-373.2v-84.5h373.2z"/>
|
||||
<path id="<Path>" class="s2" d="m723 484.6h-339.8v-15.7h339.8z"/>
|
||||
<path id="<Path>" class="s2" d="m723 329.4h-339.8v-15.7h339.8z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s0" d="m481.1 106.3l1.2 11.8c0.8 7.7 8.2 13.7 17.1 13.7h106.1c8.9 0 16.3-6 17.1-13.7l1.2-11.8z"/>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s3" d="m556.7 223.3h113.9"/>
|
||||
<path id="<Path>" class="s3" d="m556.7 237h113.9"/>
|
||||
<path id="<Path>" class="s3" d="m556.7 250.8h113.9"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s4" d="m487.1 293.1c-27.8 0-50.2-22.4-50.2-50.2 0-27.7 22.4-50.2 50.2-50.2 27.7 0 50.2 22.5 50.2 50.2 0 27.8-22.5 50.2-50.2 50.2z"/>
|
||||
<g id="<Clip Group>" clip-path="url(#cp2)">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s0" d="m481 254.3q0.5 1.4 1.3 2.7c0.9 1.6 2.4 2.9 2.9 4.6 0.6 1.7 0.2 3.6 0 5.4-1.4 9.8 1.3 21.1 8 28.6q1 1.1 2.2 2h25.9q1.2-0.7 2.2-1.6c2.3-1.7 4.3-3.9 5.8-6.4 1.3-2.2 2.1-4.7 3.1-7 1.3-2.8 2.9-5.5 3.9-8.4 0.9-2.9 1.1-6.3-0.5-8.9-2.1-3.4-6.9-5-7.9-9-0.6-2.6 0.7-5.7-0.8-7.9-2.2-3.1-7.5-1.3-10.2-3.9-1.6-1.5-1.7-3.9-1.8-6.1-0.2-2.2-0.6-4.6-2.5-5.7-1.3-0.7-2.8-0.6-4.1-1.2-2-0.8-3.1-3-3.5-5.2-0.5-2.1-0.4-4.3-1.1-6.4-1.4-4-7-5.6-10.9-5.7-4.3-0.2-8.9 0.4-12.5 2.8-3.3 2.2-7.3 6.5-7.2 10.7 0.1 4.2 3.9 7.3 5.6 11.1 2.1 4.8 0.7 10.6 2.1 15.5z"/>
|
||||
<path id="<Path>" class="s5" d="m477.4 234.4q0.1-0.1 0.1-0.1c0.5-1.1 1.4-1.9 2.3-2.6 3.3-2.5 8.7-3.4 12.4-1.4 1.8 1 2.8 3 3.1 5 0.3 1.8 0.1 3.5 0 5.3-0.3 6.7 0.5 26.7 4.4 27.9 5 1.4 3.4 5.8 5 5.5-6 1.1-10.6 10.2-16.7 11-6 0.7-13.6-10.4-18.5-14 3.2-0.3 5.7-1.7 6.6-5.1 2.1-7.8 1.5-16.1 0.8-24.3-0.3-2.4-0.6-5.1 0.5-7.2z"/>
|
||||
<path id="<Path>" class="s6" d="m506.3 297.6q0-0.4-0.1-0.8c-0.5-4.4-0.8-8.9-1-13.3q-0.2-3.4-0.3-6.8c-0.1-1.7 0.4-5-0.5-6.3-2.9 1.9-5.4 4.9-8 7.3q-4.3 3.8-8.8 7.5c-0.4 0.3-15.9-13-17.6-14-1.7 1.2-1.9 6.6-2.3 8.6-0.6 3.3-1.3 6.6-1.3 10q0 3.9 0 7.8z"/>
|
||||
<path id="<Path>" class="s7" d="m538.4 297.6c-0.9-4.3-2.3-8.5-4.7-12.1-6.3-9.3-18.8-13-28.9-15.9-4.8-1.3-5 1.5-5.8 6.3-0.6 3.5-0.8 7.2-1 10.8-0.2 3.5-0.5 7.3-0.7 10.9z"/>
|
||||
<path id="<Path>" class="s7" d="m449.4 297.6h30.9c-0.8-2.9-1.7-5.8-2.4-8.6-1.1-4.8-3.2-9.8-4.6-14.7-0.4-1.5-0.7-3-1.1-4.5-3.3 0.2-7.3 2-10.5 2.9-5.2 1.5-11 3.5-13.4 8.3-2 4-1.1 8.7 0.1 12.9 0.3 1.3 0.7 2.5 1 3.7z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s5" d="m500.9 233.4c0 11.2-7 20.3-15.7 20.3-8.6 0-15.7-9.1-15.7-20.3 0-11.2 7.1-20.2 15.7-20.2 8.7 0 15.7 9 15.7 20.2z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s5" d="m473.3 233.2c-0.8-0.7-1.8-1.2-2.9-1.2-1.1 0-2.2 0.5-3 1.2q-0.6 0.6-0.8 1.4-0.4 0.7-0.4 1.6c0.1 1 0.4 2.2 1.2 2.9 0.8 0.7 1.8 1.2 3 1.2 1 0 2.1-0.4 2.9-1.2q0.6-0.6 0.9-1.3 0.3-0.8 0.3-1.6c0-1.1-0.4-2.2-1.2-3z"/>
|
||||
<path id="<Path>" class="s5" d="m503.8 233.2c-0.8-0.7-1.8-1.2-2.9-1.2-1.1 0-2.2 0.5-2.9 1.2q-0.7 0.6-0.9 1.4-0.4 0.7-0.4 1.6c0.1 1 0.4 2.2 1.3 2.9 0.8 0.7 1.8 1.2 2.9 1.2 1.1 0 2.2-0.4 2.9-1.2q0.6-0.6 0.9-1.3 0.4-0.8 0.4-1.6c-0.1-1.1-0.4-2.2-1.3-3z"/>
|
||||
<path id="<Path>" class="s0" d="m501.9 215.3q-0.1-0.1-0.2-0.3-0.5-0.6-1.1-1.1c-3.4-3.7-7.7-6.6-12.5-8-5.4-1.7-11.4-1.6-16.7 0.5-1.6 0.7-3.1 1.5-4.3 2.7-1.3 1.2-2.2 2.8-2.3 4.5q0 0.6 0.2 1.3c-0.9 0.7-1.7 1.6-2.2 2.7-0.5 1.3-0.4 2.3-0.1 3.5-0.7 0.9-1.3 1.9-1.3 3.1 0 1 0.7 2.1 1.6 2.5-0.3 1.7-0.1 3.4 1.3 4.6 1.9 1.6 4.8 1.7 7.1 0.8 6.4-2.3 11.8-6.7 17.7-10 1.2-0.7 2.3-1.3 3.6-1.6 1.3-0.3 2.8-0.2 3.8 0.6 3.2 2.5 1.3 7.5 3.8 10.2 0.4 0.4 0.9 0.7 1.5 0.8 0.8 0 1.6-0.5 2.1-1.2 3.3-4.7 1.3-11.5-2-15.6z"/>
|
||||
<path id="<Path>" class="s0" d="m501.2 297.6c2.7-1 9.6-3.5 9.6-3.5l-5.2-24.5-5.6-1.9c0 0-2.4 11.4-3.2 22.1q-0.3 3.9-0.6 7.8z"/>
|
||||
<path id="<Path>" class="s0" d="m480.8 297.6q-0.4-2.8-0.9-5.6c-0.3-1.4-5.3-23.7-6.3-23.5 0 0-5.6 1.1-5.6 1.1l-1.7 28z"/>
|
||||
<path id="<Path>" class="s6" d="m480.9 244.5c0.9 4.8 6.8 4.8 8.3 0.2"/>
|
||||
<path id="<Path>" class="s8" d="m495.5 248.9c-0.1 0.9-3.4 2.5-4.1 2.8-3.1 1.4-6.3 1.6-9.6 1.5 2.4 2.8 5 5.4 7.7 7.9 1.7 1.7 3.6 3.4 5.1 5.3 2.1-0.6 0.9-10.6 0.9-17.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s4" d="m487.1 446.3c-27.8 0-50.2-22.4-50.2-50.2 0-27.7 22.4-50.2 50.2-50.2 27.7 0 50.2 22.5 50.2 50.2 0 27.8-22.5 50.2-50.2 50.2z"/>
|
||||
<g id="<Clip Group>" clip-path="url(#cp3)">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s7" d="m481 421c7.5 0.1 14.9-0.9 22.1-2.9 6.2-1.7 12.5-4.3 16.7-9.1 2.2-2.4 3.7-6.1 2.1-8.9-1.4-2.3-4.3-3.1-6.7-4.4-4.2-2.4-6.6-6.8-8.2-11.2-1.6-4.4-1.8-10.3-4.9-13.9-2-2.4-6.3-3.1-9.1-3.2-4.3-0.2-8.9 0.5-12.5 2.8-5.2 3.4-7.6 8.9-8.8 14.8-0.7 3.1-0.7 6.3-1.5 9.3-1.6 5.6-5.7 10.2-8.5 15.3-0.6 1-1.1 2.2-0.9 3.4 0.2 0.9 0.8 1.6 1.5 2.3 4.6 4.6 11.7 5.7 18.3 5.7q0.2 0 0.4 0z"/>
|
||||
<path id="<Path>" class="s5" d="m477.4 387.6q0.1-0.1 0.1-0.1c0.5-1 1.4-1.9 2.3-2.6 3.3-2.4 8.7-3.4 12.4-1.4 1.8 1 2.8 3 3.1 5.1 0.3 1.7 0.1 3.5 0 5.2-0.3 6.7 0.5 26.8 4.4 27.9 5 1.4 3.4 5.8 5 5.5-6 1.1-10.6 10.2-16.7 11-6 0.7-13.6-10.4-18.5-14 3.2-0.3 5.7-1.7 6.6-5.1 2.1-7.8 1.5-16.1 0.8-24.3-0.3-2.4-0.6-5 0.5-7.2z"/>
|
||||
<path id="<Path>" class="s0" d="m533.7 438.7c-3.6-5.2-8.8-8.6-14.5-11-2.8-1.1-5.8-2.1-8.8-2.9q-2.2-0.6-4.4-1.2c-1.3-0.3-3-1.1-4.4-1.1 0.3 1.3-1.4 2.9-2.2 3.7-3.7 3.4-9 4.7-13.9 4-4.9-0.8-9.4-3.4-13-6.8-1.3 0.2-2.7 0.4-4.1 0.7-2.2 0.4-4.4 1.2-6.7 1.9-5.2 1.5-11 3.4-13.4 8.2-2 4-1.1 8.7 0.1 13 0.3 1.2 0.7 2.4 1 3.6h17 13.9 17 9 32.1c-0.9-4.3-2.3-8.5-4.7-12.1z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s5" d="m500.9 386.6c0 11.2-7 20.3-15.7 20.3-8.6 0-15.7-9.1-15.7-20.3 0-11.1 7.1-20.2 15.7-20.2 8.7 0 15.7 9.1 15.7 20.2z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s5" d="m473.3 386.5c-0.8-0.8-1.8-1.3-2.9-1.3-1.1 0-2.2 0.5-3 1.3q-0.6 0.5-0.8 1.3-0.4 0.7-0.4 1.6c0.1 1.1 0.4 2.2 1.2 2.9 0.8 0.8 1.8 1.2 3 1.2 1 0 2.1-0.4 2.9-1.2q0.6-0.5 0.9-1.3 0.3-0.8 0.3-1.6c0-1.1-0.4-2.2-1.2-2.9z"/>
|
||||
<path id="<Path>" class="s5" d="m503.8 386.5c-0.8-0.8-1.8-1.3-2.9-1.3-1.1 0-2.2 0.5-2.9 1.3q-0.7 0.5-0.9 1.3-0.4 0.7-0.4 1.6c0.1 1.1 0.4 2.2 1.3 2.9 0.8 0.8 1.8 1.2 2.9 1.2 1.1 0 2.2-0.4 2.9-1.2q0.6-0.5 0.9-1.3 0.4-0.8 0.4-1.6c-0.1-1.1-0.4-2.2-1.3-2.9z"/>
|
||||
<path id="<Path>" class="s7" d="m501.9 368.5q-0.1-0.1-0.2-0.3c-2.4-2.9-5.2-5-9.1-5.6-3-0.5-6.1-0.2-9.2-0.1-4.6 0.1-9.4-0.5-13.7 1-4.4 1.5-8.3 5.7-7.4 10.3 0.7 4 5 6.5 9 6.7 4.1 0.2 8-1.3 11.8-2.9 3.1-1.2 6.4-3.1 9.6-3.9 1.3-0.3 2.8-0.1 3.8 0.7 3.2 2.4 1.3 7.4 3.8 10.1 0.4 0.4 0.9 0.7 1.5 0.8 0.8 0.1 1.6-0.5 2.1-1.2 3.3-4.7 1.3-11.5-2-15.6z"/>
|
||||
<path id="<Path>" class="s6" d="m480.9 397.8c0.9 4.7 6.8 4.7 8.3 0.1"/>
|
||||
<path id="<Path>" class="s9" d="m495.5 402.1c-0.1 1-3.4 2.5-4.1 2.8-3.1 1.4-6.3 1.7-9.6 1.5 2.4 2.8 5 5.4 7.7 8 1.7 1.7 3.6 3.4 5.1 5.3 2.1-0.6 0.9-10.7 0.9-17.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s3" d="m556.7 374.5h113.9"/>
|
||||
<path id="<Path>" class="s3" d="m556.7 388.3h113.9"/>
|
||||
<path id="<Path>" class="s3" d="m556.7 402h113.9"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s3" d="m556.7 523.8h113.9"/>
|
||||
<path id="<Path>" class="s3" d="m556.7 537.6h113.9"/>
|
||||
<path id="<Path>" class="s3" d="m556.7 551.3h113.9"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s4" d="m487.1 599.6c-27.8 0-50.2-22.5-50.2-50.2 0-27.8 22.4-50.2 50.2-50.2 27.7 0 50.2 22.4 50.2 50.2 0 27.7-22.5 50.2-50.2 50.2z"/>
|
||||
<g id="<Clip Group>" clip-path="url(#cp4)">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s0" d="m497.8 508.1c-1.8-0.4-3.6-0.6-5.3-0.5-4.7 0.1-9.2 1.8-13.5 3.8-2.9 1.3-5.8 2.9-8.2 5.1-1.6 1.4-3 3.2-3.9 5.2-1 2.2-0.6 4.1-0.7 6.4-0.2 5.6-0.4 11.2-0.1 16.9 0.3 7.1-1 16.4 6.7 20.2 2.7 1.5 6 1.3 9.1 0.9 6-0.7 11.8-2.1 17.4-4.3 3.9-1.4 7.8-3 9.4-7.1 1.1-2.7 1.7-5.6 1.9-8.5 0.3-2.9-0.3-5.6 0.1-8.4 0.6-5.2 0.4-10.6-0.8-15.7-0.8-3.6-2.1-7.2-4.6-9.9-2-2.1-4.7-3.5-7.5-4.1z"/>
|
||||
<path id="<Path>" class="s6" d="m541.6 627.1c-0.3-2.4-0.9-4.7-1.5-7.2-0.5-2.4-1.4-4.7-2.5-6.9q-0.8-1.6-1.8-3.1c-0.3-0.5-0.8-1-1-1.5-0.1-0.6-0.1-1.2-0.3-1.8-0.1-0.7-0.5-1.4-0.9-2q-0.6-1-1.1-2-0.5-0.7-0.9-1.5c-2.5-3.7-6.6-5.6-10.8-6.7-4.4-1.2-9-1.4-13.5-2.3-1.3-0.2-2.6-0.4-3.9-0.5-5.5-0.3-11 0.2-16.4 0.8q-3.3 0.4-6.5 0.8-4.1 0.6-8.3 1.2c-1.2 0.1-2.5 0.2-3.7 0.4q-2 0.2-4.1 0.7c-4.9 1.2-9.8 2.4-14.2 5q-3.3 1.9-6.1 4.5c-0.7 0.7-1.8 1.3-2.6 2q-1.4 1-2.7 2.1c-3.5 3-6.7 6.2-9.5 9.9q-2.9 3.8-5.1 8.1z"/>
|
||||
<path id="<Path>" class="s5" d="m475.4 562c1.4-6.2 8.5-11.3 14.4-12.6 1.8-0.4 3.7-0.5 5.4 0.1 4.2 1.3 6.2 6.3 6.9 10.3 1.1 5.7 1 11.9 1.5 17.7 0.3 3.4 0.5 6.9 2 10 1.8 3.7 5 5.2 9 5.7 0 3.8-1.7 7.4-3.6 10.6-2.1 3.6-4.8 6.9-8.5 9.1-3.8 2.4-8.5 3.3-12.9 2.6-5.2-0.8-9.9-3.6-13.8-7.2-2.2-2.1-4.4-4.5-6-7.1-0.2-0.4-4.1-6-3.7-6.1q1.5-0.2 3-0.5c0.7-0.2 1.5-0.3 2.2-0.6 3.2-1.4 3.6-5.5 3.9-8.6 0.6-5.6 0.7-11.3 0.2-16.9-0.1-1.6-0.3-3.3-0.2-4.9q0-0.8 0.2-1.6z"/>
|
||||
<path id="<Path>" class="s5" d="m502.7 526.2c-1.3-1.2-2.8-2.2-4.3-3.1-2.8-1.8-6-3.2-9.4-3.2-6.3-0.2-14.1 1.9-16.4 8.5-0.7 2.1-0.9 4.4-1.3 6.7-0.7 5.4-2.2 10.8-2.6 16.3-0.2 4.1 0.3 8.5 2.2 12.2 2 4 5.6 6.6 9.7 8.3 9.4 3.9 22.9 2.3 26-8.8 0.8-2.7 1.6-5.4 1.6-8.3 0-2.8-1-5.6-1.6-8.4-0.9-3.8-0.9-7.5-1.1-11.4-0.2-3.1-0.4-6.4-2.8-8.8z"/>
|
||||
<path id="<Path>" class="s0" d="m467.4 526.8c0.4 3.1 3.4 5.7 7.9 5.7 8.7 0.1 26.1-1.1 30.9-9.8 0.9-1.7 1.1-3.8 0-5.3-0.9-1.2-2.4-1.8-3.9-2.1-7-1.8-14.3 0.3-21.5 1.6-3 0.5-6.1 0.9-8.8 2.4-3.6 2-5 4.9-4.6 7.5z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s10" d="m484.3 554c0.1 1.5 1 3.2 2.6 3.5 1 0.2 2.5 0.5 3.5 0.3 1.7-0.5 3-2.2 3.6-3.8z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s0" d="m510.5 562.1q0.1-0.2 0.1-0.3 0.4-5.7 0.3-11.5c-0.1-2.7-0.2-6.3-1.3-8.8q-0.1-0.3-0.3-0.5c-0.4-0.5-1.2-0.7-1.8-0.4-1.6 0.7-1.2 3.4-1.4 4.8-0.6 4.9 0.3 11.9-5 14.3-2.4 1.1-5.1 1.1-7.7 0.9-2.6-0.1-5.2-0.5-7.7-0.1-1.8 0.2-3.4 0.8-5.1 0.9-4.2 0.3-6.6-3-8.2-6.5-1.1-2.4-1.8-5-2.5-7.5q-1.2-4.6-2.5-9.2c-0.1-0.3-0.2-0.7-0.5-0.6-0.3 0-0.4 0.3-0.5 0.5-0.8 2.9-0.7 6.3-1 9.3-0.4 6.9 0.8 12.5 3.3 18.9 1.4 3.6 2.7 7.8 6.2 9.8 7 3.8 15.5 4.4 23.2 2.1 3.8-1.1 7.5-3 9.7-6.3 1.9-2.9 2.4-6.4 2.7-9.8z"/>
|
||||
<path id="<Path>" class="s5" d="m503.5 540c-1.4 2.1-1.4 5.5 0.2 7.5 3.3 4.2 8.1-0.1 7-5.1-1-4.2-4.8-5.7-7.2-2.4z"/>
|
||||
<path id="<Path>" class="s0" d="m503.8 554.5q-0.3 0-0.6-0.1c-0.6 0-1.3 0.1-2 0-1.5-0.4-2-2.3-2.7-3.6-2.2-3.8-7.6-4.9-11.5-3.8-2 0.5-3.9 1.8-5.1 3.5-0.4 0.6-0.7 1.1-1.1 1.6-1.2 1.2-3.1 1.1-4.7 1.5-3.3 0.9-7.8 5.2-3.5 8.1 3 2 7.3-1.1 9-3.5 1-1.3 1.8-2.8 2.6-4.3 0.8-1.5 1.1-2 2.8-2.2 2.2-0.2 4.6-0.2 6.5 1.1 1.8 1.2 2.8 4.4 3.8 6.4 0.6 1.1 1.3 2.2 2.3 2.9 2 1.4 5.4 0.1 6.3-2.1 0.7-1.9 0.2-4.8-2.1-5.5z"/>
|
||||
<path id="<Path>" class="s5" d="m467 540c-1.5 2.1-1.5 5.5 0.1 7.5 3.4 4.2 8.2-0.1 7-5.1-0.9-4.2-4.7-5.7-7.1-2.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s11" d="m556 568.1h86.4"/>
|
||||
<path id="<Path>" class="s11" d="m556 576.9h86.4"/>
|
||||
<path id="<Path>" class="s11" d="m556 585.8h86.4"/>
|
||||
<path id="<Path>" class="s11" d="m556 594.6h86.4"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s11" d="m556 422.7h86.4"/>
|
||||
<path id="<Path>" class="s11" d="m556 431.6h86.4"/>
|
||||
<path id="<Path>" class="s11" d="m556 440.4h86.4"/>
|
||||
<path id="<Path>" class="s11" d="m556 449.2h86.4"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s11" d="m556 269.5h86.4"/>
|
||||
<path id="<Path>" class="s11" d="m556 278.3h86.4"/>
|
||||
<path id="<Path>" class="s11" d="m556 287.2h86.4"/>
|
||||
<path id="<Path>" class="s11" d="m556 296h86.4"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s3" d="m487.1 293.1c-27.8 0-50.2-22.4-50.2-50.2 0-27.7 22.4-50.2 50.2-50.2 27.7 0 50.2 22.5 50.2 50.2 0 27.8-22.5 50.2-50.2 50.2z"/>
|
||||
<path id="<Path>" class="s3" d="m487.1 446.3c-27.8 0-50.2-22.4-50.2-50.2 0-27.7 22.4-50.2 50.2-50.2 27.7 0 50.2 22.5 50.2 50.2 0 27.8-22.5 50.2-50.2 50.2z"/>
|
||||
<path id="<Path>" class="s3" d="m487.1 599.6c-27.8 0-50.2-22.5-50.2-50.2 0-27.8 22.4-50.2 50.2-50.2 27.7 0 50.2 22.4 50.2 50.2 0 27.7-22.5 50.2-50.2 50.2z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s12" d="m396.4 324.8c-2.8-6.8-3.1-13.6-3.5-20.6-2.8-0.9-7.5 0.5-11.2 1.1-2.1 0.4-9.2 0.6-9.8 2.9-0.7 2.7 2.9 7.2 4 9.5 2.3 4.5 3.6 10.2 3 15.2-0.4 3.1-1.5 6-1.7 9.1-0.1 1.8 0.2 3.7 0.8 5.4 3.5 9.9 10.6-0.1 16.2-1.2 4.5-0.9 11.9-1.9 9.9-8.4-2.9-4.1-5.8-8.3-7.7-13z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s12" d="m382.5 314.5c5.2-0.8 4.1 4.6 7.8 0.9 0.9-0.8 4.9-7.9 4.7-9.1-1.5-7.4-1.9-17-5.3-20.4-4-3.9-11.5-4.5-16.7-5-3.7-0.3-7.8 0.4-10 3.3-1.8 2.3-1.9 5.5-2 8.4-0.1 6-1.2 12.6 2.9 17.5 3.3 3.9 8.6 5.2 13.6 4.9 2-0.1 2.7-0.6 4.8-0.7 0.2 0 0.5 0 0.8 0.2 0.2 0.1-0.4-0.2-0.6 0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s12" d="m344 656.6c1 8.7 2 17.3 2.3 26 0.3 7.2-3.1 17.9 2.2 23.5 5.5 5.8 12.9 4.1 17.5-1.9 7.2-9.5 4.1-25.1 6.1-36.3 2.9-16.6 4.9-33.4 5.8-50.3 0.4-7.4 0.5-15.5-3.7-21.7-6.9-10.2-22.5-7.8-28.8 1.8-4.5 6.9-5 15.6-4.8 23.9 0.3 11.7 1.9 23.4 3.4 35z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s0" d="m366.5 695.1c-3.2 1.6-6.4 3.1-10 1.9-3.4-1.1-6.6-3.4-8.9-6.2-0.5-0.5-0.9-1-1.4-1.4-2.1-1.3-4.8 0.3-6.2 2.3-1.4 1.9-2.2 4.4-4.2 5.8-0.8 0.7-1.9 1-2.9 1.4-4 1.5-7.9 3-12 4.4-3.3 1.1-8.5 4-12 4-1.5 0.5-3.2 1.3-3.9 2.9-0.6 1.4 0 3.2 1 4.3 2.5 2.9 6 3.6 9.6 3.8 5.4 0.2 11.1 0.5 16.4 0.6 4.3 0 8.2-1.9 12.2-2.9 4.5-1.1 7.1 0.3 11.3 1.9 18 6.6 20.1-12.9 15.6-25.2-1.5 0.8-3 1.7-4.6 2.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s13" d="m363.8 458.9c8.6-9.1 23.2-7.5 35.1-4 16.2 4.8 11.9 24 6.4 35.7-3.7 8.1-6.2 12.7-7.5 21.9-1.5 10.7-4.5 21.3-9 31.1-1.9 4.3-4.1 8.6-4.3 13.2-0.2 6.9 4.1 13.4 3.5 20.3-0.5 5.2-3.7 9.8-4.4 14.9-0.5 4.3 0.8 8.6 1.7 12.9 1.8 8.5 2.2 17.3 1 26-1.4 11-3.9 8-13.7 8.3-4.4 0.1-51.9-2.5-51.8-2.9q4.4-24.1 8.9-48.2c0.5-3.2 1.1-6.4 1.3-9.6 0.2-3.8-0.2-7.7-0.5-11.5-2.4-36.2 9-78.7 32.3-107q0.5-0.6 1-1.1z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m411.1 437q0-0.8-0.1-1.7c-0.9-14.1-0.9-28.4 0.1-42.6 0.5-6.6 1.8-13.4 1.5-20-0.3-6.6-1.1-13.1-2.1-19.7-1-6.3-3.4-19.8-11.3-20.6-5.9-0.6-16.3-0.7-21.2 3.4-2.6 2.2-4 6.9-6.1 9.6-2.6 3.5-5.8 6.5-8.8 9.8-6 6.6-11.5 15.3-9 23.8 1.7 5.5 6.4 10 6.8 15.7 0.2 3-0.9 6.1-0.2 9 0.6 2.7 2.6 4.8 4 7.2 3.5 6.1 2.7 13.2 1.1 19.8-1.1 4.6-5.7 10.6-3.3 15.4 1.7 3.5 7.3 3.2 10.6 3.6q7.9 0.8 15.9 1.3c2.9 0.2 6.1 0.8 8.9 1.6 2.8 0.8 6.1 3 9 1.2 0.7-0.5 1.3-1.2 1.8-1.9 2.9-4.3 2.8-9.7 2.4-14.9z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s15" d="m403.4 361c1.1 15.1-3 30-7.1 44.6-0.6 2.2-1.2 4.4-2.5 6.3-1.3 1.9-3.5 3.3-5.8 3.1-9.5-0.7-14.2-25.2-12.1-32.6 2.8-10 18-21.2 26-26.6 1.1 1.6 1.4 3.2 1.5 5.2z"/>
|
||||
<path id="<Path>" class="s16" d="m403.8 482.1c-3.7-4.5-10.5 2.2-14.1 4.4-9.1 5.5-18.3 11.1-28.7 13.3-3.5 0.7-7.2 1-10.4 2.5 11.4 13.4 22.9 26.7 34.9 39.6 4.3-3.8 6.2-12.8 7.3-17.7 2.2-9.1 5-18.1 7.9-27 1.2-3.9 6.4-11.2 3.1-15.1z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s12" d="m327 328.5q0.7-5 1.9-9.8c0.5-2 3.5-1.1 3 0.9q-0.2 0.7-0.3 1.5c0.9 0 1.8 0.8 1.5 1.9q-0.1 0.5-0.2 0.9c0.6 0 1.2 0.2 1.6 0.7-0.4 1.7-1.2 3.2-0.7 5 0.4 1.7 3.2 3.4 3 4.3 0 0 0.1 0 0.1 0q0.1 0.1 0.2 0.2c0.1 0.1 0.3 0 0.3-0.1q0.2-0.1 0.3-0.1c2.1 2.6 5.3 3.6 4.9 11.5 0 2 0.2 15.6-0.6 15.5-2.6-0.1-7.4-1.2-10-1.5-0.5-0.1-4.4 3.2-4.7 0-0.1-2.1 5.2-16.3 5.1-17.3q0-0.5-0.1-0.9c-0.5-0.7-0.4-1.3-0.9-2q-0.3-0.3-0.6-0.6 0 0 0 0-0.2-0.3-0.4-0.6c-1.1-1.5-2.4-3.5-3.1-5.3-0.4-1.1-0.3-1.8 0-2.9-0.3-0.4-0.4-0.8-0.3-1.3z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s14" d="m403.3 348.9q-0.3-0.9-0.6-1.8c-0.6-1.6-1.3-3.2-2.5-4.3-1.5-1.5-3.4-2.2-5.3-2.7-7.7-1.9-16.2 0.5-21.8 6-2.3 2.2-4 4.8-5.6 7.5q-3 5.3-5.2 10.9c-0.7 1.7-1.3 3.5-2.5 4.8-1.4 1.5-3.3 2.4-5.1 3.3-6.2 3.4-10.7 8.3-14.8 14-0.9-4.5 0.6-9.2 1.6-13.7 1.4-6.1 2-12.4 1.7-18.6-0.1-0.4-0.1-0.8-0.4-1-0.2-0.2-0.6-0.2-0.9-0.3q-6.3-0.1-12.6-0.3c-0.5 0-1.1 0-1.6 0.3-0.4 0.4-0.5 1-0.6 1.5-1.9 11.6-9.2 22-9.5 33.7-0.2 5.4 1.1 10.6 2.4 15.8 1.1 4.6 7.1 17.4 13.5 15.4 10.5-3.1 21-7.6 28.9-15.4 1.7-1.7 3.3-3.4 5.2-4.7 4-2.6 9.2-2.9 12.9-5.9 3.7-3.1 4.9-8 7.6-11.9 3-4.1 7.6-6.9 10.7-10.9 4.8-6 6.4-14.3 4.5-21.7z"/>
|
||||
<path id="<Path>" class="s0" d="m340.5 335.8c-2.7-10.9-6.9-21.5-10.7-32-0.7-1.9-3.8-1.1-3.1 0.8q0.2 0.7 0.5 1.4-0.1 0.3-0.1 0.5l2.1 5.9c1.8 5.8 3.6 11.6 6 17.1l1.1 3.2q0.5 2 1 3.9c0.5 2.1 3.7 1.2 3.2-0.8z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s12" d="m335.4 333.3c0.4-0.9 0.8-0.5 1.2 0 0 0.3 0.1 0.6 0.4 0.7 0.3 0.1 0.6 0 0.8-0.2 0.7-0.4 1.2-1.5 1.2-2.2q0-0.1 0-0.1-0.1-0.3-0.1-0.6-0.1-0.1-0.3-0.2c-0.8-0.5-1.3-1-1.7-1.8l-0.7-1.9c-0.3-1.3 1.5-2 2.5-0.3 0.6 1.2 2 1.3 2.6 1.8 0.7 0.6 1.2 1.4 1.3 2.3q0 0 0 0.1c0.3 0.9 0.3 2.5 0.3 4.2q0 0.2 0 0.4c1 2.9 0.5 5.9-1.5 8.2-0.3 0.4-0.8-0.1-0.5-0.4q0.1-0.2 0.2-0.3-0.1-0.1-0.1-0.2c-1.2-0.2-3.1-1.8-4.5-4.8-0.4-0.8-0.9-1.4-1-2-0.7-0.5-0.5-1.9-0.1-2.7z"/>
|
||||
</g>
|
||||
<g id="<Clip Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s0" d="m359.9 305.1c2 1.3 4.4 1 6.1-0.5 0.6-0.5 1.3 0.4 0.7 0.9-2.1 1.9-5.1 2.1-7.5 0.6-0.7-0.4 0.1-1.4 0.7-1z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>" clip-path="url(#cp5)">
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s17" d="m378 295.3q0.2-0.7 0.7-1.1c1.4 0.1 2.6 0.8 3.2 2.2 0.5 1.5 0 3.8-1.9 4-0.8 0.1-1.8-0.2-2.5-0.7q0-0.6 0-1.4 0.1-1.5 0.5-3z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s12" d="m350.6 565.1q0 0.3 0 0.7c0.2 3.9 3.4 7 6.9 8.7 5.7 2.8 12.3 3.5 18.1 6.1 1.4 0.6 2.7 1.5 4 2.3 0.7 0.6 1.5 1.1 2.1 1.8 0.7 0.9 1.1 2.1 1.5 3.1 1 2.5 3.4 8.1 6.2 8.8 3.1 0.8 6.2-3.2 7.2-5.6 1.3-3.1 3.1-6.2 3.9-9.5 1-3.3 0.8-7.1-1.1-9.9-3.1-4.4-9-5.1-14-7-4.8-1.8-9.2-4.5-13.8-6.8-3.8-1.9-9.2-5.1-13.6-4.8-3.6 0.2-5.4 4.3-6.5 7.7-0.4 1.5-0.8 2.9-0.9 4.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s0" d="m391.9 566.8c1 4.1 3.4 9.7 1.6 13.5-1.2 2.7-3 4.5-6 5.4-1.2 0.3-2.5 0.4-3.7 0.8-1.2 0.4-2.4 1.1-2.9 2.3-0.6 1.3-0.3 2.9 0.6 4.1 1.5 2.2 4.2 3 6 5 1.3 1.4 1.8 3.1 2.6 4.8 2.7 5.7 4 11.2 5.5 17.3 0.7 2.7 1.9 5.6 4.4 6.9 1.9 0.9 4.1 0.6 5.9-0.3 9.9-5 5.1-23.1 2.5-31.1-1-3.2-2.3-6.5-1.4-9.7 0.7-2.3 2.5-4.2 3.4-6.4 1.6-3.8 0.5-10.4-3.6-12.7-1.3-0.7-15.3-1.4-14.9 0.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s12" d="m291.7 548.1c0.8-7 6.5-17.6 12.1-22 9.2-7.1 25.3 3 33.4 7.7 15 8.8 29.3 19.1 44.1 28.3 1.1 0.8 2.3 1.5 3.2 2.6 3.3 4 0.5 10.5-4.1 12.8-4.6 2.4-10.1 1.7-15.2 0.9-17.9-3-34.6-8.3-51.7-13.8-6.2-2-18.2-4.1-21.2-10.6-0.8-1.9-0.9-3.9-0.6-5.9z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s0" d="m373.6 267.3c-0.7 1-1.4 2-2 3-3.1 4.9-2.1 9.9 0.7 14.6 0.9 1.6 2.1 3.1 2.8 4.8 1.3 3.5 0 7.4 0.8 11 0.7 3.4 3.1 6 5.4 8.5 4.3 4.8 7.8 7.7 14.2 6.2 4.3-1 11.6-3.6 14.9-6.8 4.5-4.4 3.7-13.2 3.4-18.9q-1.2-24.8-0.4-49.6c0.3-8.1 1.4-16.2 1.3-24.3 0-6.2 0.6-13.7-1.6-19.6-1.7-4.4-5.5-8.3-10.2-8.7-3.9-0.2-7.5 2-10.3 4.7-8.6 8.2-11.4 21.9-6.7 32.8 1.1 2.5 2.5 5.5 1.1 7.9-0.7 1-1.8 1.7-2.8 2.4-4.3 2.9-8.1 7.3-8.3 12.5-0.2 4.2 2 8.3 1.3 12.4-0.4 2.7-2 4.9-3.6 7.1z"/>
|
||||
<path id="<Path>" class="s7" d="m411.2 442.6h-50.2c-0.4 3-1 6-1.7 8.9-1 4.4-4.8 6.1-8.7 7.8-16.9 7.4-35.2 11.7-51.7 19.9-16.5 8.3-31.9 21.7-36 39.7-1.9 8.6-2.9 18.8 2.2 26.3 6.2 9.1 16.3 12.4 24.6 19 3.5 2.8 6.4 6.6 10.7 8 3.7 1.2 7.8 0.3 11.2 2 4.6 2.3 6.9 8.5 11.9 9.1q4.8-20.2 9.5-40.4c1-4.3 5.4-10.9 2.3-13.8-1.7-1.5-21.6-6.6-22.9-5.9 8.1-4.6 18.1-3 27.4-2.8 13.8 0.3 27.5-3.1 39.6-9.5 5.8-3.1 10.7-7.3 16.2-10.7 6-3.8 11.5-8.6 14.3-15.4 3-7.6 2.8-16 2.4-24q-0.4-9.1-1.1-18.2z"/>
|
||||
<path id="<Path>" class="s0" d="m357 289.5q-0.4-0.2-0.7-0.5c-1.2-1.3-1.8-3-2.2-4.6-0.8-2.7-1.3-5.5-0.7-8.1 0.6-2.7 2.7-5.2 5.4-5.5 0.9-0.1 1.8 0.1 2.7-0.1 1.8-0.3 3.1-1.9 4-3.5 0.8-1.6 1.4-3.3 2.4-4.8 1.2-1.9 3.1-3.2 5-4.4 3-1.9 6.6-3.6 10-2.6 3.7 1.2 5.7 5.2 6.1 9 0.3 3.7-0.6 7.5-0.7 11.3-0.1 2.3 0 4.5-0.4 6.7-1.3 7.1-8.6 6.9-14.4 7.6-4.2 0.6-12.5 2.5-16.5-0.5z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s18" d="m817.3 812.6h-273.1c-6.5 0-11.8-5.2-11.8-11.7 0-6.6 5.3-11.8 11.8-11.8h273.1c6.5 0 11.8 5.2 11.8 11.8 0 6.5-5.3 11.7-11.8 11.7z"/>
|
||||
<path id="<Path>" class="s18" d="m497.1 830.3h-60.9c-4.4 0-7.9-3.5-7.9-7.8 0-4.4 3.5-7.9 7.9-7.9h60.9c4.3 0 7.8 3.5 7.8 7.9 0 4.3-3.5 7.8-7.8 7.8z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s19" d="m590 803.7h230.3c12.6-4.7 24.5-11.1 34.4-20.1 26.5-24.2 26.7-60.9 11.9-91.1-9.4-19-14-40.2-13.4-61.4 0.3-10.3 1.9-20.7 0.6-30.9-2.8-21.7-18.5-40.5-38.2-50.1-19.6-9.6-42.6-10.8-64.1-6.6-34.8 6.7-62.7 28.5-66 65.3-1.9 21 2.1 42.3 0.3 63.4-1.6 17.8-8.9 36.7-23 46.7q-3.9 2.8-8.5 4.5c-9.9 3.8-21.1 3.4-31 7.2-6.8 2.6-12.7 7.1-18.4 11.7-4.5 3.6-9.2 7.6-11.4 12.9-2.8 6.6-5.1 15.6-7.2 22.6-2.2 7.3-1.6 15.4 1.7 22.3q0.9 1.9 2 3.6z"/>
|
||||
<path id="<Path>" class="s7" d="m717.9 670.5c-6.5-6.4-13.6-12.2-19.7-18.9-9.4-10.1-17-23.2-15.5-36.9 0.5-4.8 2.1-9.8 0.8-14.4-1.1-3.6-3.8-6.4-5.7-9.6-4.8-7.9-5.2-18-1.9-26.6 3.4-8.6 10.2-15.6 18.2-20.1 3.7-2.1 7.8-3.8 10.6-7 9.2-10.3 1.7-27.2 9.3-38.5 7.2-10.6 27.3-0.2 35 4.8 3.9 2.5 7.1 5.3 8.9 7.9 4.5 6.4 6.6 14.2 7.8 21.9 0.8 4.8 1.4 10.1 4.9 13.5 3.3 3.3 8.2 3.9 12.6 5.4 7.2 2.3 13.4 7.3 17.4 13.7 2.9 4.6 4.7 10.1 8.9 13.6 3.7 3.1 8.6 4.1 13 6.1 25.9 11.4 25.5 46.8 21.5 70.2-2.9 16.7-8.4 34.1-21.6 44.8-6.2 5-14.7 8.5-22.7 9.5-8.9 1.2-15.7-7.5-24-10.8-2.4-0.9-5-1.7-7.7-1.9-2.2-0.1-4.5 0.2-6.7-0.1-7.7-0.9-15-3.9-22-6.9-2-0.9-4.1-1.8-5.9-3.1-2.3-1.8-4.1-4.2-5.9-6.5-3-3.6-6.2-6.9-9.6-10.1z"/>
|
||||
<path id="<Path>" class="s20" d="m696.2 605.5c-8.2 23.9-30.2 42.4-55.1 46.4 3.1 5.3 4.4 10.1 6 16 17.1 0.2 35-4.5 47.2-16.6 12.2-12 17-32.2 8.4-46.9-1.1-1.8-5.9-0.9-6.5 1.1z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s21" d="m686.9 595.6c2.9-7.8 8.1-15.4 11.8-22.5q3.2-6.2 6.4-12.4c1.4-2.8 3.1-8.7 6.3-9.9 2.5-0.9 5.6 1.3 7.9 2.1 3.5 1.3 7 2.2 10.5 3.5 6.9 2.4 13.7 5.6 18.7 11 5.2 5.7 8.8 13.2 8.2 21.1-0.3 4.5-2.3 8.7-3.3 13.1-1.3 5.1-1.2 10.4-1.1 15.6 0.4 16.2 1.7 32.4 3.7 48.4 0.4 2.8 0.8 5.8-0.3 8.4-2.8 6.6-20.2 4.9-26.4 5.5-9.9 0.8-21.3 3.2-30.6-1.3-1.2-10.2-1.8-20.5-1.8-30.8 0.1-8.6 2.4-17.3-3-24.6-4.7-6.4-10.3-12.2-8.8-20.7 0.4-2.2 1-4.4 1.8-6.5z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s12" d="m708.6 547.6c0.1-2.7 0.3-5.4 0-8.1-0.2-2.1-1.8-3-3.4-4.4-3.3-2.7-5.5-6.5-6.9-10.6-3.3-9.8-3.8-21.8 5.4-28.7 5.2-3.9 12.8-4.6 18.3-1 7.7 5 8.8 15.7 9.1 25q0.3 10.7 0.6 21.5c0.2 7.7 0.9 17.5-7.2 21.5-2.8 1.4-6.1 1.8-9.1 1-1.8-0.5-3.5-1.4-4.7-2.8-3.1-3.5-2.3-9.2-2.1-13.4z"/>
|
||||
<path id="<Path>" class="s22" d="m711.1 538.4c0.7 1.1 1.6 2.2 2.2 3.4 0.8 1.9 1.4 3.8 2.2 5.6 1.5 3.3 3.6 6.3 6.1 8.8 1.2 1.2 2.5 2.2 4.1 2.6 1.6 0.4 3.4 0 4.4-1.3 0.5-0.8 0.7-1.8 0.8-2.8 1.2-8.9 1.8-18.1 0.1-26.9-4.5 6-12.5 10.7-19.9 10.6z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s23" d=""/>
|
||||
</g>
|
||||
<path id="<Path>" class="s24" d="m531.8 801.5q1.4 1.2 2.8 2.2h244.8c10.9-5.1 20.9-12 28.3-21.3 9.5-12 14.1-28.6 9.1-43.1-2.7-7.6-7.7-14.2-13.3-19.9-15-15.4-35-25.7-56.2-29.3l11.9 1.4c-28.1-7.5-57.7-5.4-86.7-3.3q-39.9 2.9-79.8 5.9c-17.5 1.2-35.2 1.7-47.6 15-13.2 14.2-21.9 32.6-24.5 51.7-2 14.6 0.2 31 11.2 40.7z"/>
|
||||
<path id="<Path>" class="s12" d="m515.7 791.2q5.6-5.9 11.3-11.7c4.1-4.2 8.2-8.5 11.5-13.4 2.7-4.1 4.9-8.7 6.3-13.5 1.2-4.3 1.7-9.1-0.4-13-2.4-4.4-7.9-6.5-12.8-6-5 0.5-9.5 3.2-13.3 6.4-8.6 7.3-14.2 17.3-19.4 27.2-5.5 10.3-11.2 19.8-18.5 29-2.3 3-4.8 7-3 10.4 1.4 2.7 4.8 3.5 7.8 3.8 6.2 0.6 12.2-0.5 16.7-5.1q6.9-7.1 13.8-14.1z"/>
|
||||
<path id="<Path>" class="s0" d="m483.5 794.8c-0.8-0.4-1.7-0.6-2.6-0.4-2.6 0.7-4.4 4-6.9 5.3-3.7 1.7-7.7 2.9-11.6 3.8-2.4 0.6-4.7 1-7.1 1.4q-5.5 0.9-11 1.8c-2.5 0.5-5 0.9-7.3 2-6.4 3.2-5.5 10.7 0.6 13.5 4.4 2 10.3 2 15.1 1.3 12.2-1.9 24.5 1.3 36.7 0 9.2-1 11.8-7.9 14.3-15.9 0.3-1.2 0.8-2.4 1.1-3.6-2.9-1.2-6.8-0.7-10-1.9-3-1.1-5.7-2.7-8.1-4.8-1-0.9-2-1.9-3.2-2.5z"/>
|
||||
<path id="<Path>" class="s25" d="m757.9 676.3c-1.2-4.8-2.9-9.7-6.5-12.8-3.5-3.2-9.4-3.6-12.4 0.2-1 1.2-1.6 2.9-2.6 4.1-3.1 3.8-10.8 1.3-14.7 1.2-6.2-0.2-12.4 0.2-18.6 0.6-15.1 1-30.2 2.3-45.2 3.6q-21.1 1.9-42.2 3.7c-7.1 0.6-14.3 1.6-21.5 2-6.2 0.3-11.3-1.1-17.4 1.7-5.1 2.4-9.5 6.2-13.7 9.9-6.5 5.5-13 10.9-19.3 16.5-3.7 3.2-7.3 6.4-10.7 9.7-9.8 9.4-18.8 19.5-27.8 29.6q-11.4 12.8-22.7 25.6c14.4 11.2 27.5 23.9 40.3 36.9 2.3-2.1 4.5-4.6 6.1-6q5-4.5 9.7-9.3c1.6-1.6 3.3-3.3 3.9-5.5 0.5-1.7 0.4-3.6 0.7-5.3 1.3-5.8 7.5-8.7 11.9-12.5 6.5-5.4 7.4-13.1 11.5-20 3.7-6.1 11.2-8.8 16.2-13.8 4.7-4.8 7-11.3 11-16.7 3.2-4.4 11.3-10.4 16.8-6.4 4.3 3.2 3.7 10.6 9 13.2 3.6 1.8 7.9 1.7 11.8 2.4 13.3 2.3 26.8 3.7 40.2 5q11.4 1.1 22.9 2.2c12.7 1.3 25.7 2.5 38.1-1.2 9.7-2.9 19.2-9.5 24.1-19.3 1.2-2.3 2-4.8 2.6-7.4 2.4-10.3 0.8-22.3-1.5-31.9z"/>
|
||||
<path id="<Path>" class="s12" d="m769.8 586c14.9 8.3 17.2 26.7 17.7 43 0.3 8.3-0.2 16.9-3.4 24.7-8.4 20.8-33.9 26-53.9 25.3-25.8-0.9-51.5-6.2-75.2-15.6-0.2-4.9 0.4-8.2 1.5-13 15.1 4.1 30.9 6.2 46.6 6.3 11.5 0 23-1 33.7-4.7 6.8-2.4 13.6-6.3 16.6-12.4 5.4-11-3.6-22.7-4.9-33.6-0.4-3.8-0.9-7.8 0.5-11.4 0.6-1.6 1.5-3 2.4-4.4 1.4-2.1 2.8-4.2 4.9-5.5 3.2-1.8 7.2-1.6 10.5-0.1q1.6 0.6 3 1.4z"/>
|
||||
<path id="<Path>" class="s0" d="m576.6 677.1h105.3c0.7 0 1.4-0.2 2-0.5 2.9-1.7 1.5-5.4-2-5.4h-105.3c-0.8 0-1.5 0.2-2.1 0.5-2.9 1.7-1.4 5.4 2.1 5.4z"/>
|
||||
<path id="<Path>" class="s0" d="m575.9 677.4h99.8c1.3 0 2-1.4 1.3-2.4l-34.1-50c-0.2-0.4-0.7-0.7-1.2-0.7h-99.9c-1.2 0-1.9 1.4-1.3 2.4l34.1 50c0.3 0.4 0.8 0.7 1.3 0.7z"/>
|
||||
<path id="<Path>" class="s7" d="m709.4 503.5c2.9-0.6 5.6-1 8.9 0.2 3.2 1.2 6.1 3.4 8.1 6.2 2.4 3.4 2.7 6.4 3 10.5q1.3 14.2 2.6 28.4c0.1 1.5 0.3 3.1 1.1 4.4 1 1.8 3 2.8 4.9 3.4 3.5 1.2 7.4 1.3 10.5-0.6 3.2-1.8 5-5.4 5.6-9 0.6-3.5 0.2-7.2-0.2-10.8-1-8.1-0.3-17.9-4.4-25.2-2.8-5.5-7-10.3-11.1-15-3.9-4.5-8-9-13.3-11.6-3-1.4-6.2-2.2-9.5-2.9-6.3-1.2-13.1-1.8-18.9 1.1-5.6 2.8-12 14.7-5 19.4 1 0.7 2.2 1 3.3 1.3 2.9 0.8 5.8 1.7 8.8 1.3 2.1-0.3 3.9-0.7 5.6-1.1z"/>
|
||||
<path id="<Path>" class="s12" d="m724.3 515.9c1.6-2.8 5.1-4.5 8.1-2.7 3.2 1.9 2.6 6.5 0 8.7-2.4 2.1-6.7 1.7-7.8-1.7-0.2-0.7-0.2-1.3-0.1-1.9-0.5-0.6-0.7-1.5-0.2-2.4z"/>
|
||||
<path id="<Path>" class="s26" d="m656.8 768.6q-7.8 0.3-15.6 1c-8.6 0.7-17.7 1.4-25.5-2.4-2.8-1.3-5.3-3.1-7.6-5-46.1-39.4 73.1-58.8 96.1-54.3 9.1 1.8 17.7 5.2 26.7 7.4 9 2.3 18.7 3.1 27.3-0.2 5.6-2.2 10.4-6.1 16.1-8.3 11.2-4.3 28.4-0.8 32.6 11.4 5.1 14.6-2.4 27.8-16.2 33.7-9 4-18.9 4.3-28 8-9.8 3.9-20.9 4.4-31.5 5.4-24.8 2.6-49.6 2.1-74.4 3.3z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s21" d="m753.5 616.6c-2.6 0.6-5.1 1.4-7.5 2.5q-3.1-5.2-6.3-10.3c-3.9-6.3-7.3-13-10.8-19.5-2.6-4.7-2.6-10-1.4-15.1 0.8-3.3 0.6-6.2 1-9.4 0.7-4.7 2.4-9.3 3-14.1 0.1-0.9 23 7.3 25.6 9.4 14.7 11.9 25.4 28.6 30.3 46.9-5.3 0.5-10 3.1-14.9 4.9-6.1 2.2-12.7 3-19 4.7z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s27" d="m711.2 527.3c-2 1.9-5.4 1.9-7.3 0"/>
|
||||
<path id="<Path>" class="s28" d="m608.9 645.3c-2.5-1.6-5.8-0.8-7.4 1.7-1.6 2.6-0.8 5.9 1.7 7.5"/>
|
||||
<path id="<Path>" class="s12" d="m646.3 756.5c-2.7-7.6-4.3-15.7-6.7-23.5-1.1-3.5-2.3-7-4.4-10-2.1-3.1-5.2-5.5-8.8-6.2-6.2-1.2-12.4 3.2-15.3 8.8-7.3 14.7-1 30.9 8.5 42.6 3.3 4 6.8 7.8 10.2 11.7 3.4 3.9 5.8 9.1 9.2 12.8 5.3 5.7 14.6 1.9 18.9-3.2 5.2-6.1-1.5-14.5-5-19.7-2.9-4.1-4.9-8.6-6.6-13.3z"/>
|
||||
<path id="<Path>" class="s0" d="m655.4 777.1c-0.4 0.4-0.9 0.9-1.6 1.6-3.2 2.9-6.4 5.9-10.7 6.8-2.1 0.5-4.2 0-6.3 0.5-2.1 0.4-4.1 2.2-3.6 4.2 0.7 2.6 2.4 4 2.8 6.7 0.4 3.4 0.2 6.8-0.2 10.2-0.9 7-3.1 13.8-5.6 20.4-1.4 3.7-4.1 9.3-1.3 13 2.2 2.7 6.5 2.4 9.6 1 4.8-2.2 8.3-6.3 11-10.7 2.7-4.4 4.6-9.3 7-13.9 2.2-4.2 4.8-8.3 7.7-12.1 1.3-1.8 2.8-3.6 3.7-5.6 1.9-4.4 0.8-9.5-2.3-13.1-2.1-2.4-4.8-7.6-7.6-9.1-1.3-0.6-1.9-0.5-2.6 0.1z"/>
|
||||
<path id="<Path>" class="s14" d="m584.2 725c0.9 2.2 1.3 4.5 2 6.7 1.2 4 3.4 7.6 5.4 11.2q7.7 13.1 15.4 26.2l7.8 13.1c0.3 0.6 0.9 1.8 1.6 3.3 13.9-8.2 27.5-16.8 40.8-26-3-4.9-6.4-9.7-7.1-15.3-0.4-2.9 0-5.8-0.3-8.6-0.9-6.9-5.8-12.5-9.9-18.1-7.4-10-12.6-21.4-18.9-32.2q-1.1-1.9-2.3-3.8c-4.3-7-9.4-13.8-15.7-19.2-3.2-2.8-6.6-4.8-10.2-6.9-3-1.7-5.2-4.2-8.5-5.6-14.1-5.8-25.3 5.7-25.7 20-0.3 10.2 4.2 19.8 9.3 28.7q5.2 9.1 11.2 17.8c1.9 2.7 3.9 5.5 5.1 8.7z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s29" d="m739.7 599c0.8 11.8-0.4 23.8-3.7 35.2 0.6-2.2 6.6-5.9 8.3-7.6 2-2 6.7-5.5 7-8.4 0.2-2.6-3.2-6.8-4.6-9q-3.2-5.3-7-10.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s3" d="m326 292.6l-22-13.5h-106.9c-10.9 0-19.8-8.9-19.8-19.9v-17.3c0-11 8.9-19.9 19.8-19.9h109.1c10.9 0 19.8 8.9 19.8 19.9z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s7" d="m268.4 250.6c0 2.3 1.8 4.2 4.1 4.2 2.3 0 4.2-1.9 4.2-4.2 0-2.4-1.9-4.2-4.2-4.2-2.3 0-4.1 1.8-4.1 4.2z"/>
|
||||
<path id="<Path>" class="s7" d="m243.3 250.6c0 2.3 1.9 4.2 4.2 4.2 2.3 0 4.2-1.9 4.2-4.2 0-2.4-1.9-4.2-4.2-4.2-2.3 0-4.2 1.8-4.2 4.2z"/>
|
||||
<path id="<Path>" class="s7" d="m218.3 250.6c0 2.3 1.8 4.2 4.1 4.2 2.3 0 4.2-1.9 4.2-4.2 0-2.4-1.9-4.2-4.2-4.2-2.3 0-4.1 1.8-4.1 4.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s18" d="m431 787.1h-32.9c-4 0-7.2-3.2-7.2-7.2 0-3.9 3.2-7.2 7.2-7.2h32.9c4 0 7.2 3.3 7.2 7.2 0 4-3.2 7.2-7.2 7.2z"/>
|
||||
<path id="<Path>" class="s19" d="m408.2 710.6c-1.8-7-4.2-14.3-2.2-21.3 1.3-4.6 4.5-8.5 5.7-13.2 2.1-7.5-1-15.7 0.4-23.4 1.3-7.3 6.5-13.3 9.2-20.2 3.7-9.1 3.1-19.4 6.2-28.7 1-3 2.5-6 5.2-7.7 2.7-1.7 6.7-1.5 8.5 1.1 1 1.5 1.1 3.4 1 5.2-0.8 19.4-16.5 36.7-13.6 55.9 0.8 5.4 3.1 10.9 1.8 16.2-1.4 5.3-6.1 9.1-8.3 14.1-2.5 5.4-1.8 11.7-1 17.6 0.8 5.9 1.6 12.1-0.5 17.7-1.1 2.9-10.1 12.9-13.3 7.7-0.4-0.6 2.4-7.9 2.5-9.3 0.2-3.9-0.6-7.9-1.6-11.7z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s30" d="m401.1 719q0-0.2-0.1-0.4c-0.2-4.6-3.4-8.5-6.9-11.6-5.7-5-11.2-18.2-12.2-25.8-0.7-5.3 0.2-10.6-0.2-15.9-0.6-8.1-4.2-15.7-6.7-23.5-2.2-7.2-3.4-14.8-3.6-22.3-0.1-3 0.3-6.5 2.9-8 2.1-1.3 4.9-0.5 6.7 1.1 1.8 1.7 2.8 4 3.5 6.4 3.5 11.7 2.2 24.6 7.2 35.7 2.3 5.1 5.9 9.7 6.9 15.1 1.2 6-0.9 12.2 0.6 18.1 2.5 9.8 12.1 15.4 12.9 26 0 1.2 0 2.4 0.4 3.6 0.5 1.8 1.8 3.2 2.8 4.7 2.6 4 6.8 12.8 2.5 16.3-7.8 6.4-17-7.1-17.1-13.8-0.1-1.9 0.4-3.8 0.4-5.7z"/>
|
||||
<path id="<Path>" class="s30" d="m425.5 705.6c0.8-2.6 1.6-5.3 3.2-7.6 3-4.1 8.4-6.5 10-11.4 0.6-2 0.5-4.1 0.7-6.2 0.5-3.8 2.4-7.4 5.5-9.5 3-2.2 7.4-2.6 10.6-0.6 4.2 2.5 5.4 7.9 6.2 12.7 2.5 14.9 3.7 31.1-3.5 44.4-0.4 0.6-0.8 1.2-1.3 1.6-1.7 1-3.8-0.7-4.8-2.5-4.4-8.4 1.2-19.6-3.3-28-0.3-0.7-0.8-1.4-1.6-1.4-0.6-0.1-1.1 0.3-1.5 0.8-2.2 2.5-2.5 6.3-4.7 8.9-2 2.2-5.3 3.1-7.4 5.3-1.7 1.8-2.4 4.4-3.1 6.9-1.1 4.4-2.4 22.1-9 14.4-5.7-6.7 2-20.8 4-27.8z"/>
|
||||
<path id="<Path>" class="s7" d="m415.2 784.1h-0.9c-12.7 0-23.4-9.5-25-22.1l-4-32.7h58.4l-3.4 32.3c-1.4 12.8-12.2 22.5-25.1 22.5z"/>
|
||||
<path id="<Path>" class="s31" d="m413 745.3q14.8-4.1 29.5-8.6 0.2 0 0.4-0.1l0.8-7.3h-58.4l2.7 22c8.3-2 16.8-3.8 25-6z"/>
|
||||
<path id="<Path>" class="s7" d="m441.2 732.8h-52.8c-3.2 0-6-2.2-6.8-5.3-1.1-4.5 2.3-8.7 6.8-8.7h52.8c4.4 0 7.7 3.8 6.9 8.1-0.5 3.4-3.4 5.9-6.9 5.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path id="<Path>" class="s21" d="m730.5 651.8q0 0.2 0 0.4"/>
|
||||
<path id="<Path>" class="s32" d=""/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s18" d="m821.1 875.5h-49.8c-4.4 0-8-3.6-8-8v-1.6c0-4.4 3.6-8 8-8h49.8c4.5 0 8 3.6 8 8v1.6c0 4.4-3.5 8-8 8z"/>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s7" d="m760.4 796.7l69.1 1.4-6.2 49.6c-3.9 12.5-15.3 21.1-28.4 21.3-14.7 0.2-27.3-10.2-30-24.6z"/>
|
||||
<path id="<Path>" class="s0" d="m813.8 681.4q-0.1-0.2-0.1-0.3c-0.5-7.4 4.7-14.6 3.2-21.9-0.1-0.8-0.4-1.6-1.1-2-1.2-0.7-2.5 0.4-3.4 1.4-5.1 6.4-4.6 14.9-3.6 22.5 1 8.3-3 14.9-4.3 23-1 5.6 0.1 10.7-1.1 16.1-1.3 6.4-2.1 12.2-0.1 18.7 0.9 2.7 2.2 5.4 1.9 8.3-0.3 3.4-2.8 6.3-4.1 9.5-3.6 8.6 1.3 19.4-3.6 27.3-0.5 0.8-1.2 1.6-2.2 1.6-1.2-0.1-1.8-1.3-2.2-2.4-5.5-15.1-11-32.1-8.8-48.3 0.5-3.5 1.4-7 1.6-10.6 0.3-3.3-0.1-6.6-0.4-9.8q-1.2-11.6-2.5-23.2c-0.1-1.4-0.3-2.9-1.1-4-0.8-1.2-2.5-1.9-3.7-1.1-0.8 0.6-1.1 1.7-1.3 2.7-1.4 7.8 1.6 15.8 0.9 23.7-0.4 4.5-1.9 8.7-2.8 13.1-1.8 9.6 1.2 22.2 3 31.8 1.3 6.8 1.9 13.8 2.9 20.7 0.5 3.7 2.1 7.3 2.5 10.9 0.3 2.8-2 12.1-4.8 5.5-1.1-2.6-1.6-5.6-1.4-8.5 0.1-1.5 0.4-3.1 0.3-4.6-0.2-1.5-1-3.1-2.4-3.7-1.5-0.6-3.3 0-4.7-0.7-1.6-0.8-2-2.9-2.2-4.7-0.7-5.5-1.3-11.2 0.6-16.3 0.6-1.7 1.4-3.2 1.7-4.9 0.8-4.2-2.6-6-3.3-9.6-0.7-3.4 1.9-6.3 2.3-9.5 0.3-2.4-1.1-5-3.4-6-0.6-0.3-1.4-0.5-1.8-1.1-0.7-0.8-0.4-2-0.1-3q0.9-2.9 2.2-5.8c2.4-5.3-4.3-9.8-8.3-5.5-1.8 1.9-1.8 4.8-1.7 7.4 0.7 15.7 1.4 31.6 4.5 47 2.2 10.6 5.6 21.1 10.7 30.6 2.4 4.5 5.9 8.5 8 13 3.1 6.4 5.1 15.5 14.6 13.6 5.3-1.1 9.3-5.3 12.7-9.5 5-6.3 9.6-14.8 6.2-22-1-2-2.5-3.7-3.2-5.8-0.6-1.7-0.5-3.6-0.5-5.4 0.3-6.3 1-12.7 2.4-18.9 1.5-7.2 4.6-15.6 2.4-23-1.8-6.2-3.9-11.1-2.3-18 1.7-7.1 7.1-13.2 6.9-20.4-0.1-6.3-4.5-11.7-5-17.9z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s30" d="m772.6 779.8c1.8 5.8 2.7 11.9 2.6 17.9 0 4.4-0.5 8.8-0.1 13.1h50.6c1.7-5 2.4-10.3 1.8-15.1-0.8-5.7-2.7-12.4 1.2-16.6 1.3-1.4 3.1-2.3 4.3-3.8 3-3.7 1.2-9.1-0.9-13.3-3.7-7.4-5.7-14.7-0.6-21.8 4-5.4 10.7-9.3 12.1-16.3 1.9-9.4-7.7-19.6-2.9-27.9 1.3-2.4 3.5-4 5.2-6.1 3-3.8 3.8-9.2 2.1-13.7-1-2.9-3.8-6.8-6.9-7.7-4.5-1.4-4.5 0.7-6 5-2.7 7.9-3.9 16.3-3.4 24.7 0.7 12.5-4.2 26.5-6.2 38.9-1.1 6.7-2.4 13.4-3.8 20.1-0.8 4.2-1.4 8.5-2.6 12.5-0.7 2-3.7 6-3.6 7.9-1.3-16.3 6.9-31.7 9-47.8 0.1-1.4 0.3-3-0.4-4.2-0.6-1-1.5-1.7-2.2-2.6-3.3-4.6 1.1-15.2 1.7-20.5 1.2-9.3 1.6-18.6 2.3-27.9 0.8-11.2 2.4-22 1.1-33.4-0.1-0.4-0.1-0.9-0.5-1.2-0.4-0.4-1.3-0.2-1.7 0.3-0.4 0.5-0.6 1.1-0.7 1.8-2.6 16.4-3.3 33.2-5.9 49.7-2.8 18-4.8 36-6.8 54.1-2 17.4-6.2 34.7-8.3 52.2-0.5 3.9-1.8 8.7-5.6 9.1-3.4 0.5-6-3.2-6.4-6.6-1.1-9.1 6.7-16.6 10.1-25.1 2.5-6.2 2.6-13.2 1.2-19.8-1.3-6.7-3.9-14.3 0.1-19.8 1.6-2.3 4.2-3.8 5.5-6.2 0.9-1.8 1.1-4 1.2-6 0.2-6.5 0-12.9-0.6-19.3-0.6-5.6-2.7-11.6-2.2-17.2 0.9-10.9 3.9-21.6 3.3-32.7-0.5-9.6-8.1 5.3-8.3 9.2-0.3 5.1 0.6 10.2-0.1 15.2-0.8 5.7-3.6 11.2-2.7 16.9 0.1 0.8 0.3 1.5 0 2.2-0.2 0.7-1 1.3-1.7 0.9-0.3-0.1-0.5-0.5-0.6-0.9-3.8-9.6 5.2-26.7-2.8-34.6-6.3 7.8-4.8 25.7-4.4 35.2 1.1 24.4 5.3 49.2 0.6 73.5-0.3 1.8-0.8 3.6-2.1 4.8-2.2 1.9-5.9 0.8-7.8-1.4-1.9-2.3-2.5-5.3-3.3-8.2-0.8-2.8-1.8-5.8-4.2-7.5-2.5 2.6-3.1 6.4-2.6 9.9 0.5 3.5 1.8 6.8 2.9 10.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path id="<Path>" class="s33" d="m826.7 824.5l-57 22.8-8-37.2z"/>
|
||||
<path id="<Path>" class="s7" d="m828 824.5h-66.5c-4.3 0-7.8-3.5-7.8-7.8v-18.7c0-4.3 3.5-7.7 7.8-7.7h66.5c4.3 0 7.8 3.4 7.8 7.7v18.7c0 4.3-3.5 7.8-7.8 7.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s18" d="m416.5 865.7h-302.5c-6.5 0-11.7-5.3-11.7-11.8 0-6.5 5.2-11.8 11.7-11.8h302.5c6.6 0 11.8 5.3 11.8 11.8 0 6.5-5.2 11.8-11.8 11.8z"/>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Compound Path>" class="s20" d="m214.8 654.3c0.2-4.7-5.1-8.7-9.6-6.1-1.8 1.1-3 2.9-4.2 4.6-5.3 7.9-10.5 15.7-14.9 24.1-3.7 7.1-6.8 14.5-11.2 21.2-4.3 6.6-10.9 11-14.5 18.2-2.8 5.6-3.6 12.9 0.2 18.8 3.5 5.6 10.6 8.6 16.7 8.1 6.2-0.4 11.4-3.9 15.1-8.3 8.1-9.6 9-21.9 11.3-33.7q3.9-19.7 9.5-39c0.5-1.8 1.5-5 1.6-7.9z"/>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s20" d="m249.5 753.9c-1.6-11.8-1.2-23.9 1.5-34.8 1.5-6.1 4.4-12.7 10.2-14.8 10.8-3.8 18.5 7.1 21 15.7 1.8 6.3 4.2 12.8 5.7 19.1 2 8 2.9 16.3 4.1 24.5 2.4 16.7 4.2 33.4 5.8 50.2 0.3 2.9 0.5 5.9-0.3 8.7-1.2 4.3-5 7.6-9.4 8.6-4.4 0.9-9.2-0.5-12.5-3.4-1.7-1.6-3.1-3.5-4-5.6-1-2.3-1.4-4.9-2-7.4-1.1-5.3-2.7-10.6-4.9-15.6-2.1-4.9-5.8-9.4-7.6-14.4-3.5-9.7-6.3-20.5-7.6-30.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path id="<Path>" class="s25" d="m299.5 795.9c-1.6-9.5-4.8-18.8-6.7-28.3-2.1-10-3.8-20-5.6-29.9-4.6-25-13.5-48.2-26.8-69.8-0.9-1.5-1.8-3-3.1-4.2-2.8-2.6-6.7-3.6-10.5-4-4.7-0.6-9.6-0.3-14 1.5-1.7 0.8-3.2 1.8-4.5 3-3.4 1.9-6.5 4.3-9.4 6.8-27.5 23.1-45.7 54.9-68.2 82.7-6.4 7.9-12.9 15.9-15.9 25.8-3.1 10.2-9 18.7-10 29.8q0 0.7-0.1 1.5c-0.4 7.6 1.2 15.3 5 21.9 4.9 8.3 11.9 11 21.3 12.2 8 1 16.2 0.6 24.1-1.3 6.2-1.5 15.1-3.4 20.1-7.5 2-1.6 3.7-3.8 5.3-5.8 9.8-12.7 18.6-25.3 25-40 5.2-12.2 8.7-25.1 13-37.5q0.6 1.6 1.1 3.2c3.2 8.4 6 18.2 10.8 25.9 2.4 3.7 4.1 7.4 5.9 11.5 1 2.3 3.6 11.8 5.7 12.9q11.6-0.7 23.1-1.9 4.4-1.2 8.9-2.2c2.1-0.9 4.2-1.9 6.3-2.9-0.3-1.1-0.6-2.2-0.8-3.4z"/>
|
||||
<path id="<Path>" class="s12" d="m270.6 645.5q0-0.2-0.1-0.3-0.3-2.5-1.2-4.9-1-3-2.6-5.7-1.1-1.9-2.2-3.8c-2.1-3.6-3.9-7.1-4.9-11.1-1-3.7-1.4-7.4-2.7-10.9-0.6-1.5-2.9-1.4-2.9 0.3 0.1 4.3 0.6 8.6 1.5 12.8q0 0.2 0 0.5 0 0 0 0.1-0.2 1.9-0.2 3.8c-0.7 0.4-1.2 1.2-1.4 2.6q-0.1 0-0.1 0c-1.9-1.1-3.8 1.8-1.9 2.8q0.1 0.1 0.1 0.1c-1.3 0.2-2.3 1.7-1.1 2.7 5.3 4.6 8.6 8.8 11.4 15.1 0.5 1.1 1.3 2.1 2.4 2.5 1.2 1 2.8 1.3 4.3 0.4 0.7 0 1.2-0.4 1.5-0.9 0.3-0.3 0.5-0.8 0.6-1.3q0.4-0.6 0.3-1.6c-0.1-1.1-0.4-2.2-0.8-3.2z"/>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s12" d="m270.6 644.7c-0.4-1.5-0.8-3-1.5-4.3-3.5-6.9-18.3-8.6-19.7 0.9q0 0.1-0.1 0.2c0.4 1.5 1.3 2.9 2.7 4.1 0.9 0.8 2.1 0.6 3 1.3 0.7 0.5 1.1 1.3 1.3 2.1 2.1 4 1.6 9.1 0.1 13.7 0.7 0.1 1.7-0.3 2.3-0.4 2-0.5 4.5-0.9 6.5-0.2 1.7 0.6 2.8 3.1 5 2.7 1-0.2 1.4-1.5 1.5-2.5 0.5-5.9 0.2-11.8-1.1-17.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s0" d="m341 838.6c-0.4-1.1-1-2.1-1.8-2.6-1.3-1-3.1-1.3-4.7-1.7-10-2.3-19.2-7.3-26.6-14.3-2.5-2.3-5.8-8.7-9.5-8.7-3.4 0.1-5.8 4.4-8.5 6-6 3.5-14.2 4.7-20.9 2.6-1.2 5.9-0.6 12.6-0.1 18.2 0.1 0.9 0.2 1.8 0.7 2.6 0.9 1.1 2.4 1.4 3.8 1.7 14.9 2.5 29.8 3.3 44.8 4.8 5.4 0.5 11 1.6 16.4 0.8 2.3-0.4 5.1-1.1 6.3-3.3 0.9-1.5 0.9-4.1 0.1-6.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s12" d="m138.5 639.2c2.1-2.9 4.2-5.8 6.1-8.7 4.9-7.7 8.3-16.2 11-24.9 0.9-2.9 2.4-7.1 6-6.9 3 0.2 6.2 2.8 9 3.9 6 2.5 12 4.8 17.9 7.8q0.2 0.1 0.4 0.3c-4.4 15.8-12.7 31.8-18.3 47.3-4.7 13.3-8.9 26.8-12.6 40.5q-0.2 0-0.3-0.1c-5.1-0.6-13.1-1.3-17.3-4.4-3.4-2.4-6.5-6.8-8.5-10.4-4.7-8.5-6-19-2.8-28.2 2.1-6 5.7-11.1 9.4-16.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s12" d="m182.2 633.4c-3.4 0.1-6.9-0.3-10.1-0.5-1.4-0.1-3.1-0.4-4.8-0.5-1.5 0-3 0-4.2 0.4-4.1 1.4-4.6 5.5-8.8 1.2-2.4-2.4-6.2-6-6-9.6 0.2-1.8 1-3.6 1.7-5.3 2.6-6.1 4.7-12.3 6.3-18.6q1.5-6 2.4-12.2c0.5-3.1-0.3-4.9 2.2-6.5 2.2-1.3 6.6-1.3 9-1.3 4.1 0 7.6-2.2 11.4-3.1 4.7-1.1 8.9-3.4 13.7-4.1 2.5-0.4 5.2-0.4 7.4 0.9 1.6 1 2.7 2.8 3.4 4.6 1.6 3.9 1.7 8.3 1.6 12.6-0.5 11.8-1.2 26.1-9.5 35.4-1.5 1.6-3.2 3.1-5.1 4.2-3.3 1.7-6.9 2.3-10.6 2.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s7" d="m184.9 653.6c-3.4-3.3-7.2-6.1-11-8.9-15.8-11.4-33.3-12-46.7 2.8-20.2 22.2-27.4 53.6-26.9 83.7 0.3 18 3.2 35.9 6.7 53.6 1.8 8.8 3.8 17.7 5.6 26.5 1.4 7.4 0.7 13.9 6.5 19.5 1.5 1.6 4 2.8 5.9 1.5 0.6-0.4 1-1 1.4-1.7 4.1-6.9 6.3-14.8 9.2-22.4 3.4-8.8 7.4-16.6 16.5-19.6 10.7-3.5 21.4-11.3 31-17.2 2.7-1.7 3.9-1.4 3.3-4-4.4-19.1-3.3-37.9 1.1-57 1.8-7.9 3-17.2 6.1-24.8 3.6-8.8 3.2-16.3-2.4-24.6-1.8-2.7-4-5.2-6.3-7.4z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s12" d="m378.8 837.3c1.3-4.5-2.8-9.7-5.3-12.8-5.6-7.3-10.6-15-15.7-22.6-5.2-7.7-9-15.8-18.8-17.6-7.5-1.3-17.4 3.3-15.9 12.1 0.7 4.5 3.7 8.2 6.6 11.7q4 4.9 8 9.8 5.6 6.9 11.3 13.7c1.8 2.2 3.6 4.4 5.9 6.2 4.5 3.3 21.7 7.3 23.9-0.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m345.1 825.4q8.1-4.6 16.1-9.5c1.8-1.1 3.7-2.3 4.8-4.1 0-0.1-5.6-8.9-6.2-9.7q-5.5-7.6-11.4-15c-7.6-9.6-15.5-18.9-23.7-28.1-8.8-9.9-17.8-19.5-27-29.1-8.2-8.6-15.4-18.2-26.7-22.6q-0.1 0-0.2 0c-4.8-0.9-9.7-1.1-14.6-0.8-19.1 1.1-30.3 11.7-44.4 23.3q-15.4 12.7-30.7 25.4c-19.7 16.2-39.4 32.4-57.5 50.4q-1.2 1.2-2.4 2.5c-1.7 1.7-3.1 3.5-4.3 5.6-4.2 7.5-1.2 15.3 2.4 22.3 6.4 13 20.2 19.5 34.4 21.3 16.9 2.1 33.7-2.7 47.8-11.8 7.2-4.6 12-9.7 17.2-16.2 5.7-7.1 12.1-12.9 16-21.3 2-4.3 3.4-8.9 5.8-13 3.3-5.4 8.5-9.7 10.9-15.6 1.4-3.7 1.8-7.9 4.1-11.1 5.6-7.8 9.5 0 12.9 3.9 3.4 3.9 6.5 5.8 10.9 8.1 5.3 2.9 9.8 7.8 14.9 11.2 4.4 2.9 9 5.4 13 8.9 2.8 2.4 5.3 5.2 7.8 7.9 3.7 3.8 7.6 7.3 11.6 10.7q2.9 2.4 5.9 4.7c1.5 1.3 3.4 4.3 5.4 4.7 2.3 0.6 5.1-1.8 7.1-2.9q0.1-0.1 0.1-0.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s12" d="m267 657c-0.7 0.3-1.5 0-2.7-0.1-0.6-0.1-6.6-0.5-6.6-0.3-0.4 4.8-2.4 9.8-4.3 13.5-2.8 5.6-6.3 10.9-9.1 16.4-1 1.9-2 3.9-2.9 5.9-4 9.2-6.9 18.9-5.4 28.9q0.5 3.4 2.1 5.5c0.6 0.8 1.6 1.3 2.6 1.4 3.1 0.2 6.1 0.6 9.3 0.1q2.3-0.4 4.3-1.2c5.4-3.9 9.3-11 11.3-16.6 3-8.3 3.3-17 4.6-25.6 1.3-9.1 1.1-18.7 1.6-27.9 0-1-0.1-2.2-1-2.6-0.9-0.3-1.8 0.5-2.4 1.3-0.5 0.8-0.9 1.2-1.4 1.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s0" d="m241.1 643.6l8.6 10c1.3 1.6 3.9 0.8 4.2-1.3l7.4-63.6c0-0.6-0.2-1.3-0.6-1.8l-9.5-11c-1-1.2-3-0.6-3.1 1l-7.6 64.9c-0.1 0.6 0.1 1.3 0.6 1.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s7" d="m131.7 658.5c0.9-5.8 7.4-9.7 12.2-12.2 15.1-7.5 31.2 0 43.4 8.9 8.4 6 17 12.5 21.6 21.7 1.3 2.6 2.3 5.6 4.8 7.2 3.6 2.4 8.5 0.8 12.5 2.4 3.4 1.3 6.4 6.7 10 7 1.8 0.2 8.2-4.8 6.7-6.2 7.9 7.1 16.7 12.9 25.7 18.5q0 0.1 0 0.1c-1.3 7.6-3 15.9-8.9 20.8-6.9 5.8-17.1 4.9-26 3.2-17.7-3.4-34.5-9.8-51.8-14.5-21.7-5.9-51-16.4-49.7-43.1 0.2-4.2-1.2-10.1-0.5-13.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s0" d="m352.1 854.9c-1.3-0.1-2.8-0.3-3.6-1.3-0.6-0.6-0.8-1.4-0.9-2.2-1.4-7.8-2.1-13.4 0.3-20.8 4.8 1.2 10 2.1 15 2.1 2.8-0.1 7.4 0 9.8-1.9 1.8-1.4 2.4-6.7 4-7.2 0.6-0.1 1.1 0.3 1.5 0.6 3.3 2.9 5.5 6.7 9.1 9.1 3 2 6.6 2.7 10.2 3.4q7 1.4 14.1 2.7c2.9 0.6 6 1.3 8.2 3.4 4 3.7 3 8.2-1.7 10.5-2.2 1-4.6 1.5-7 1.8-9.4 1.3-19.5 0.5-29 0.6-10 0.1-20 0-30-0.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path id="<Path>" class="s0" d="m150.8 604.7c0.2-1.6 0.4-3.2 0.4-4.9 0.1-4.1-0.3-8.1-0.2-12.1 0.2-6.2 1.9-12.9 7-16.6 2.9-2.1 6.5-3 9.5-4.9 3.2-2.1 5.5-5.2 8.4-7.6 3.4-2.8 7.6-4.6 11.9-5.1 3.9-0.5 7.3 1.3 11 0.2 2.8-0.8 5.2-2.6 7.9-3.8 2.7-1.2 6.2-1.5 8.4 0.5 2.5 2.4 1.8 6.6 0.7 9.9q-1.7 5.1-4 9.9c-0.5 1.2-1.1 2.4-1.1 3.7 0 0.8 0.3 1.6 0.2 2.4 0 1.7-1.3 3.2-2.9 3.9-1.5 0.7-3.2 0.9-4.9 1.1q-8.5 0.7-17.1 1.5c-4.3 0.4-8.9 1.2-11.7 5-3.4 4.6-0.9 11-4.5 15.4-4.1 5.1-9.7 9.5-14.9 13.3-0.9 0.7-2 1.4-3.1 1.3-1.3-0.2-2.3-1.4-2.6-2.7-0.3-1.3 0-2.7 0.3-4 0.4-2.2 0.9-4.3 1.3-6.4z"/>
|
||||
<path id="<Path>" class="s12" d="m167 599.8c-2.6-1.1-6.8-1.1-9 0.5-2.2 1.6-2.5 5.2-2 7.7 0.4 2.7 2.4 5 5.2 5.5 5.8 1 7.2-4.1 8.1-8.4 0.3-1.2 0.5-2.5-0.1-3.6-0.2-0.5-0.7-0.8-1.2-1.2q-0.4-0.2-1-0.5z"/>
|
||||
<path id="<Path>" class="s12" d="m261.1 640c-0.5 0-1 0.2-1.5 0.6q-1.7 1.1-3.4 2.1c-0.6 0.4-1.2 0.7-1.8 0.6-1-0.2-1.3-1.4-1.9-2.1-0.7-0.9-2.7-1.9-3.7-1.3-1.8 1.2-1 3.4 0.1 4.7 1.6 2.9 4.5 4.9 6.9 7 0.9 0.7 2 1.5 3.1 1.2 0.3-0.2 0.6-0.4 0.9-0.7 1.7-1.6 2.3-3.9 2.9-6.1 0.4-1.6 1.2-4.5-0.5-5.7q-0.6-0.3-1.1-0.3z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s20" d="m213 638.3c-3.3 2.6-1.9 10.6 1.5 8.2 10-7.1 12.6-12.9 26.3-15 4.1-0.6 5.6-4.9 1.5-4.3-14.8 2.2-17.6 1.8-29.3 11.1z"/>
|
||||
<path id="<Path>" class="s20" d="m237.1 635.6q-0.4-0.1-0.8-0.1c-2.2 0-4.4 0.9-6 2.4-1.2 1.3-2.1 3.3-3.9 3.7-0.4 0.1-0.9 0.1-1.2-0.2-0.2-0.2-0.4-0.5-0.4-0.8-0.3-1.2-0.1-2.6 0.6-3.6 0.7-1 1.6-1.9 2.5-2.6 0.4-0.3 0.8-0.6 1.1-0.9 0.3-0.4 0.5-0.8 0.4-1.3-0.1-1.9-2.3-2.3-3.7-1.7-4.7 1.9-9.5 3.8-13.4 7-2.6 2.2-4.7 5-6.7 7.8-1.9 2.8-3.1 5.8-5.1 8.6-1 1.5-0.9 3.5 0.4 4.8 1.6 1.6 3.3 3.3 5.1 4.8 1.7 1.3 3.9 1.8 5.4 3.5 0.2 0 0.3-0.3 0.4-0.5 0.9-2.6 1.4-5.3 2.4-7.8 0.7-1.9 2-3.4 3.8-4.2 1.9-0.9 4.1-1.3 6-2.5 2-1.2 3.6-2.9 5-4.8 1.4-1.8 2.7-3.7 4.3-5.4 1.3-1.5 3.4-1.8 4.8-3.3 0.4-0.5 0.7-1.1 0.6-1.8-0.2-0.6-0.8-1-1.6-1.1z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s34" d="m194.6 624.4c-0.2 1.6-1.8 2.9-3.4 2.9"/>
|
||||
<path id="<Path>" class="s34" d="m163 603.8c-1.5-0.3-2.6 1.4-2.5 2.9 0.2 1.4 1.2 2.6 2.1 3.7"/>
|
||||
<path id="<Path>" class="s35" d="m152.1 703.5c11 5.5 22.4 10 34.1 13.6-2.8 7.2-5.1 14.4-7 21.9-0.6 2.5-1.2 5.2-2.5 7.5-0.2 0.3-0.5 0.7-0.9 0.8-0.4 0.1-0.7-0.1-1-0.3-8.4-4.5-11.5-14.7-16.3-23-3.4-6-8.2-11.7-8.7-18.6-0.1-0.9 1.5-2.3 2.3-1.9z"/>
|
||||
<path id="<Path>" class="s36" d="m253.7 718.6c0.7 0.2 1.2 0.7 1.5 1.2-2.2 3.5-6.9 5.2-10.8 3.9"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s37" d="m191.1 612.8c2 2.2 5.8 2.5 8.1 0.7"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s3" d="m245.9 476.6c0.1 36.2 0.1 70.9 0.1 70.9l-29.8-18.2c-3-1.9-6.6-2.9-10.2-2.9h-107.3c-10.8 0-19.6-8.8-19.6-19.6v-30.2c0-10.7 8.8-19.5 19.6-19.5h127.7c10.8 0 19.5 8.7 19.5 19.5z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s7" d="m113.4 483.6c0.4-3.4 3.2-6.5 6.6-6.5 2.8 0.1 5.1 2.2 7.1 4.1h0.3c2-1.9 4.2-4 7-4.1 3.4 0 6.2 3.1 6.7 6.5 0.4 3.3-0.9 6.6-2.8 9.5-2.7 4.2-10.8 10.3-10.8 10.3q-0.2-0.1-0.3-0.1c-0.1 0-0.2-0.2-0.2-0.2-4.4-2.4-8.2-5.8-10.9-10-1.8-2.9-3.2-6.2-2.7-9.5z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s38" d="m172.5 504.5h28v-27.4h-28z"/>
|
||||
<path id="<Path>" class="s11" d="m194.7 485.4h-16.4"/>
|
||||
<path id="<Path>" class="s11" d="m194.7 494.8h-16.4"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s3" d="m723.5 341.2c-0.1 40-0.1 121.8-0.1 121.8l32.9-20.1c3.4-2.1 7.3-3.2 11.3-3.2h104.5c12 0 21.7-9.7 21.7-21.6v-76.9c0-11.9-9.7-21.6-21.7-21.6h-127c-12 0-21.6 9.7-21.6 21.6z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s6" d="m801.3 374.1h-30.3v-30.3h30.3z"/>
|
||||
<path id="<Path>" class="s6" d="m801.3 416.7h-30.3v-30.2h30.3z"/>
|
||||
<path id="<Path>" class="s6" d="m856.4 374.1h-30.2v-30.3h30.2z"/>
|
||||
<path id="<Path>" class="s7" d="m856.4 416.7h-30.2v-30.2h30.2z"/>
|
||||
<path id="<Path>" class="s3" d="m772.8 350.3l14.5 16.7 22.7-32.3"/>
|
||||
<path id="<Path>" class="s3" d="m772.8 394.8l14.5 16.7 22.7-32.3"/>
|
||||
<path id="<Path>" class="s3" d="m826.2 350.3l14.4 16.7 22.9-32.1"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 54 KiB |
Before Width: | Height: | Size: 115 KiB |
@@ -1,17 +0,0 @@
|
||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 415 86" width="415" height="86">
|
||||
<title>snigdhaos-hello</title>
|
||||
<style>
|
||||
.s0 { fill: #ffffff }
|
||||
.s1 { paint-order:stroke fill markers;stroke: #754ffe;stroke-width: 6;stroke-linejoin: round;;fill: #754ffe }
|
||||
</style>
|
||||
<filter id="f0">
|
||||
<feFlood flood-color="#754ffe" flood-opacity="1" />
|
||||
<feBlend mode="normal" in2="SourceGraphic"/>
|
||||
<feComposite in2="SourceAlpha" operator="in" />
|
||||
</filter>
|
||||
<g id="Folder 1" filter="url(#f0)">
|
||||
<path id="Layer" fill-rule="evenodd" class="s0" d="m39.9 59.3l5.7-5.7 5.7 5.7 5.7 5.7-11.4 11.4q-16.6-16.6-33.2-33.2 0-17.1 0-34.2l21.8 21.8-5.7 5.7-8.1-8v11.3l19.5 19.5z"/>
|
||||
<path id="Layer" fill-rule="evenodd" class="s0" d="m57 30.8l21.8-21.8q0 17.1 0 34.2-8.1 8-16.1 16.1l-17.1-17.1-5.7 5.7-5.7-5.7 11.4-11.4 17.1 17.1 8-8.1v-11.3l-8 8z"/>
|
||||
</g>
|
||||
<path id="SNIGDHA OS" class="s1" aria-label="SNIGDHA OS" d="m109.4 22.3l5.3 5.3h-20.5v10.4h13.8l5.1 5.1v15.7l-5.1 5.2h-14.6l-5.2-5.2v-4.2l6-5.7v9.9h12.9v-15.7h-13.7l-5.2-5.1v-10.4l5.2-5.3zm43.2 0v41.6h-11.6l-10.1-36.2h-5.1l3.7 3.5v32.7h-5.9v-41.6h11.5l10 36.4h5.2l-3.7-3.8v-32.6zm17.9 0v41.7h-6v-41.7zm33.5 0l5.2 5.3h-21.5v31.2h14.1v-15.7h-9.7l5.2-5.1h10.5v26h-6v-4.5l-4.5 4.5h-10.4l-5.2-5.2v-31.2l5.2-5.3zm40.6 5.3v31.2l-5.2 5.2h-20.8v-31.3l5.2-5.1h-5.9v-5.3h21.5zm-15.7 31.2h9.7v-31.2h-14.1v35.7zm53-36.4v41.7h-6v-20.9h-14.1v20.9h-6v-41.7h6v20.1l4.4-4.5h9.7v-15.6zm37.5 0v41.7h-5.9v-15.6h-14.1v15.6h-6v-36.4l5.2-5.3zm-5.9 9l3.8-3.7h-17.9v20l4.5-4.5h9.6zm53.6-3.7v31.1l-5.2 5.3h-15.6l-5.2-5.3v-31.1l5.2-5.3h15.6zm-20.1 31.2h14.1v-31.2h-14.1zm50.5-36.4l5.3 5.3h-20.5v10.3h13.8l5.1 5.2v15.6l-5.1 5.3h-14.6l-5.2-5.3v-4.1l6-5.7v9.8h12.9v-15.6h-13.7l-5.2-5.2v-10.3l5.2-5.3z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 468 KiB |
@@ -1,15 +0,0 @@
|
||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" width="256" height="256">
|
||||
<title>snigdhaos-icon</title>
|
||||
<style>
|
||||
.s0 { fill: #ffffff }
|
||||
</style>
|
||||
<filter id="f0">
|
||||
<feFlood flood-color="#754ffe" flood-opacity="1" />
|
||||
<feBlend mode="normal" in2="SourceGraphic"/>
|
||||
<feComposite in2="SourceAlpha" operator="in" />
|
||||
</filter>
|
||||
<g id="Folder 1" filter="url(#f0)">
|
||||
<path id="Layer" fill-rule="evenodd" class="s0" d="m108.9 182.9l19-19 19 19 19 19.1-38 38q-55.5-55.4-110.9-110.9 0-57 0-114.1l72.8 72.8-19 19-26.9-26.9v38.1l65 64.9z"/>
|
||||
<path id="Layer" fill-rule="evenodd" class="s0" d="m165.9 87.8l72.8-72.8q0 57.1 0 114.1-26.9 26.9-53.8 53.8l-57-57-19.1 19-19-19 38.1-38.1 57 57.1 26.9-26.9v-38.1l-26.9 26.9z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 757 B |
@@ -1,18 +0,0 @@
|
||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 277 54" width="277" height="54">
|
||||
<title>Snigdha OS Web</title>
|
||||
<style>
|
||||
.s0 { fill: #000000 }
|
||||
.s1 { fill: #754ffe }
|
||||
</style>
|
||||
<filter id="f0">
|
||||
<feFlood flood-color="#754ffe" flood-opacity="1" />
|
||||
<feBlend mode="normal" in2="SourceGraphic"/>
|
||||
<feComposite in2="SourceAlpha" operator="in" />
|
||||
</filter>
|
||||
<g id="Folder 1" filter="url(#f0)">
|
||||
<path id="Layer" class="s0" d="m33.9 1.1c-2.2-0.6-4.4-1-6.6-1.1q-3.3-0.1-6.6 0.7c-2.2 0.5-4.3 1.3-6.2 2.4q-3 1.6-5.4 3.9 0.7 0.2 1.3 0.5 0.6 0.3 1.1 0.7 0.5 0.4 1 0.9 0.5 0.4 0.9 1 0.2 0.4 0.5 0.8 0.2 0.4 0.4 0.8 0.2 0.4 0.3 0.9 0.2 0.4 0.3 0.9 1.3-0.7 2.7-1.3 1.4-0.5 2.9-0.9 1.5-0.4 3-0.6 1.5-0.2 3-0.2 1.7 0 3.4 0.3 1.7 0.2 3.3 0.9 1.6 0.6 3.1 1.5 1.4 0.9 2.7 2.1c6.9 6.3 4.6 11.3 3.5 19.4q-0.2 1.5-0.1 2.9 0.1 1.4 0.7 2.7 0.5 1.4 1.4 2.5 0.8 1.1 2 2c-1.1-5.1 2.7-12.7 3.1-13.6 0.9-3 1.3-6.2 1-9.3-0.2-3.2-1.1-6.2-2.6-9-1.5-2.8-3.5-5.3-5.9-7.3-2.4-2-5.2-3.5-8.2-4.5z"/>
|
||||
<path id="Layer" class="s0" d="m37.6 16.7c-3.4-3.4-8.2-4.5-12.8-4.1l-1.4 0.9q2.5 0.2 4.9 0.9c1.6 0.5 3.1 1.2 4.5 2.1q2.1 1.4 3.8 3.3c1.1 1.2 2 2.6 2.7 4.1q0.2 0.3 0.3 0.6 0.1 0.3 0.3 0.6 0.1 0.3 0.2 0.6 0.1 0.4 0.2 0.6l1.4-2.6c-0.3-3-1.7-4.5-4.1-7z"/>
|
||||
<path id="Layer" class="s0" d="m38.1 26.2c-6.6-16.9-31.5-12.6-31.9 5.8 0.1 1.3 0 3.9 0 5.2q0 0.3 0.2 0.5c0.1 0.2 0.3 0.3 0.5 0.4q0.3 0.1 0.6 0c0.2 0 0.4-0.1 0.5-0.3l4.8-5.4q0 0 0.1-0.1 0 0 0 0 0.1 0 0.1 0 0.1 0 0.1-0.1h1l-2.1 3.4q-0.1 0.2-0.2 0.4-0.1 0.2-0.1 0.4-0.1 0.3-0.1 0.5 0 0.2 0.1 0.4c0.3 1.5 0.5 5-2.4 7.4q-0.2 0.2-0.4 0.4-0.2 0.2-0.3 0.5-0.1 0.2-0.2 0.5 0 0.3 0 0.5v4.9q0 0.5 0.1 0.9 0.2 0.5 0.6 0.9c0.2 0.2 0.5 0.4 0.8 0.5q0.5 0.2 1 0.2c11.2-2.3 17.4-8.9 18.8-11q0.1-0.1 0.1-0.1 0-0.1 0.1-0.1 0.1 0 0.1 0 0.1 0 0.1 0h6.1q0.6-0.1 1.2-0.3c0.3-0.1 0.6-0.4 0.9-0.6q0.4-0.4 0.7-1 0.2-0.5 0.2-1.1c-0.2-3.8 0.5-10.1-1.1-13.6z"/>
|
||||
</g>
|
||||
<path id="SNIGDHA OS" class="s1" aria-label="SNIGDHA OS" d="m77.1 33.5q0 2.4-1.2 4.2-1.3 1.8-3.6 2.9-2.4 1-5.7 1-3.6 0-6.1-1-2.4-1.1-4.1-2.7l3.1-3.4q1.5 1.2 3.2 1.9 1.7 0.7 3.8 0.7 1.3 0 2.2-0.4 1-0.3 1.5-1.1 0.6-0.7 0.6-1.7 0-0.9-0.4-1.6-0.5-0.6-1.5-1.1-1-0.6-2.8-1.1-3-0.9-4.9-2-1.8-1.2-2.6-2.6-0.8-1.5-0.8-3.4 0-2.4 1.3-4.1 1.3-1.7 3.5-2.5 2.2-0.9 4.9-0.9 3 0 5.3 0.9 2.2 0.8 3.9 2.4l-2.9 3.3q-1.3-1.1-2.8-1.6-1.5-0.5-3-0.5-1.2 0-2.1 0.3-0.8 0.2-1.3 0.8-0.5 0.6-0.5 1.4 0 0.8 0.5 1.4 0.4 0.5 1.6 1 1.1 0.5 3.2 1.2 2.4 0.7 4.1 1.7 1.8 1.1 2.7 2.6 0.9 1.6 0.9 4zm21.6 7.5h-7.4l-6.8-20.7q0.1 0.8 0.3 2 0.1 1.2 0.3 2.6 0.1 1.4 0.2 3.1 0.1 1.6 0.1 3.3v9.7h-5.2v-25.8h7.6l6.6 20.7q-0.2-1.2-0.4-2.8-0.2-1.7-0.4-3.7-0.1-2-0.1-4.3v-9.9h5.2zm4.7-25.7h16.7v4.4h-5.3v16.9h5.3v4.4h-16.7v-4.4h5.3v-16.9h-5.3zm31.6 26.4q-3.6 0-6.1-1.5-2.5-1.6-3.9-4.6-1.2-3-1.2-7.4 0-3.3 0.9-5.8 0.9-2.6 2.5-4.3 1.7-1.7 3.9-2.6 2.1-0.8 4.6-0.8 2.9 0 4.8 0.8 1.9 0.9 3.4 2.4l-3.2 3.3q-1.1-1.1-2.2-1.6-1.1-0.5-2.5-0.5-1.3 0-2.4 0.5-1 0.5-1.9 1.6-0.8 1.1-1.2 2.8-0.4 1.8-0.4 4.2 0 3.4 0.5 5.3 0.5 2 1.7 2.9 1.1 0.9 2.8 0.9 0.9 0 1.7-0.2 0.8-0.3 1.5-0.6v-5.9h-3.2l-0.6-4.3h9.5v12.8q-1.9 1.2-4.1 1.9-2.2 0.7-4.9 0.7zm25.3-13.6q0-2.6-0.5-4.3-0.4-1.6-1.2-2.5-0.7-0.9-1.8-1.2-1-0.3-2.2-0.3h-1.3v16.9h1.3q1.2 0 2.3-0.4 1-0.4 1.8-1.4 0.8-0.9 1.2-2.6 0.4-1.7 0.4-4.2zm6.3 0q0 3.1-0.7 5.4-0.6 2.2-1.8 3.7-1.2 1.5-2.8 2.3-1.6 0.9-3.4 1.2-1.8 0.4-3.8 0.4h-6.9v-25.8h6.5q2.5 0 4.8 0.5 2.3 0.5 4.1 1.9 1.8 1.4 2.9 3.9 1.1 2.5 1.1 6.5zm21.3 13h-6.1v-10.9h-6.2v10.9h-6.1v-25.8h6.1v9.9h6.2v-9.9h6.1zm18.2 0l-1.4-5.5h-7.5l-1.4 5.5h-6.3l7.8-25.7h7.4l7.9 25.7zm-5.1-21.4l-2.8 11.4h5.6zm55 8.5q0 4.1-1.2 7.2-1.2 3-3.5 4.7-2.3 1.7-5.7 1.7-3.3 0-5.6-1.7-2.3-1.6-3.5-4.7-1.2-3-1.2-7.2 0-4.1 1.2-7.1 1.2-3 3.5-4.7 2.3-1.7 5.6-1.7 3.4 0 5.7 1.6 2.3 1.7 3.5 4.7 1.2 3 1.2 7.2zm-6.3 0q0-4.7-0.9-6.9-1-2.2-3.2-2.2-2.1 0-3.1 2.2-0.9 2.2-0.9 6.9 0 4.8 0.9 6.9 1 2.2 3.1 2.2 2.3 0 3.2-2.2 0.9-2.2 0.9-6.9zm28.2 5.4q0 2.4-1.2 4.2-1.3 1.9-3.6 2.9-2.4 1.1-5.7 1.1-3.6 0-6.1-1.1-2.4-1.1-4.1-2.7l3.1-3.4q1.5 1.3 3.2 1.9 1.7 0.7 3.8 0.7 1.3 0 2.2-0.4 1-0.3 1.5-1 0.6-0.7 0.6-1.7 0-1-0.4-1.6-0.5-0.7-1.5-1.2-1-0.5-2.8-1.1-3-0.9-4.9-2-1.8-1.1-2.6-2.6-0.8-1.5-0.8-3.4 0-2.4 1.3-4.1 1.3-1.6 3.5-2.5 2.2-0.9 4.9-0.9 3 0 5.3 0.9 2.2 0.8 3.9 2.4l-2.9 3.3q-1.3-1.1-2.8-1.6-1.5-0.5-3-0.5-1.2 0-2.1 0.3-0.8 0.3-1.3 0.8-0.5 0.6-0.5 1.4 0 0.8 0.5 1.4 0.4 0.5 1.6 1 1.1 0.5 3.2 1.2 2.4 0.7 4.1 1.8 1.8 1 2.7 2.6 0.9 1.5 0.9 3.9z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 109 KiB |
Before Width: | Height: | Size: 95 KiB |
@@ -1,30 +0,0 @@
|
||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" width="1000" height="1000">
|
||||
<title>6380326-ai</title>
|
||||
<style>
|
||||
.s0 { fill: #3d3d3d }
|
||||
</style>
|
||||
<g id="OBJECTS">
|
||||
<filter id="f0">
|
||||
<feFlood flood-color="#754ffe" flood-opacity="1" />
|
||||
<feBlend mode="normal" in2="SourceGraphic"/>
|
||||
<feComposite in2="SourceAlpha" operator="in" />
|
||||
</filter>
|
||||
<g id="<Group>" filter="url(#f0)">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Compound Path>" fill-rule="evenodd" class="s0" d="m770 514.7c-1.4 27.9-21.1 57.9-60.6 57.9h-153.2c-3 0-5.4-2.4-5.4-5.4v-127.1c0-3 2.4-5.4 5.4-5.4h10.5l-37.3-37.3-37.2 37.2h7.8c3 0 5.3 2.4 5.3 5.4v57.6c8.4 2.4 14.1 10 14.1 18.7 0 10.6-8.7 19.3-19.4 19.3-10.7 0-19.4-8.7-19.4-19.3 0-8.7 5.8-16.3 14.1-18.7v-52.3h-15.5c-2.1 0-4.1-1.3-4.9-3.3-0.8-2-0.4-4.3 1.2-5.8l50.1-50.1c1.9-2 5.6-2 7.6 0l50.2 50.2c1.5 1.5 2 3.8 1.2 5.8-0.9 2-2.8 3.3-5 3.3h-18.1v116.5h147.9c32.6 0 48.7-24.8 50-47.7 1.2-23.5-12-48.7-44.2-52.1l-1.8-0.2c-2.7-0.2-4.9-2.6-4.8-5.4q0-0.3 0-0.6c0-10.8-4.2-21.1-11.9-28.8-7.8-7.7-18-12-28.9-12-8.9 0-17.3 2.9-24.5 8.2-1.4 1.1-3.2 1.4-4.9 0.8-1.6-0.5-2.9-1.8-3.4-3.5-1.2-3.9-2.5-7.8-4-11.5q-0.4 0-0.9 0c-8.3 0-15-6.8-15-15.1 0-8.2 6.7-15 15-15 8.3 0 15 6.8 15 15 0 4-1.6 7.8-4.4 10.7 0.9 2.2 1.7 4.2 2.4 6.1 7.5-4.2 16-6.4 24.7-6.4 26.8 0 49.2 20.8 51.4 47.4 36.9 5.4 52.3 36.3 50.8 62.9zm-270 10.2c4.8 0 8.7-3.9 8.7-8.6 0-4.8-3.9-8.7-8.7-8.7-4.8 0-8.7 3.9-8.7 8.7 0 4.7 3.9 8.6 8.7 8.6z"/>
|
||||
<path id="<Compound Path>" fill-rule="evenodd" class="s0" d="m356.7 423.3c-7.2-5.3-15.6-8.2-24.5-8.2-22.5 0-40.8 18.3-40.8 40.8q0 0.3 0 0.6c0.1 2.8-2.1 5.2-4.8 5.4l-1.8 0.2c-32.2 3.4-45.4 28.6-44.2 52.1 1.3 22.9 17.4 47.7 50 47.7h8c2.2-5.9 7.8-9.7 14.1-9.7 8.3 0 15 6.7 15 15 0 8.3-6.7 15-15 15-6.3 0-11.9-3.8-14.1-9.6h-8c-39.5 0-59.2-30-60.6-57.9-1.4-26.6 13.9-57.5 50.8-62.9 2.2-26.6 24.6-47.4 51.4-47.4 8.7 0 17.2 2.2 24.7 6.4 8.1-23 21.9-43.9 40-60.4q-0.9-2.9-0.9-6c0-10.7 8.6-19.4 19.3-19.4 10.7 0 19.4 8.7 19.4 19.4 0 10.7-8.7 19.4-19.4 19.4-4.5 0-8.8-1.6-12.3-4.5-17.9 16.7-31.1 37.9-38 61.3-0.5 1.7-1.8 3-3.4 3.5-1.7 0.6-3.5 0.3-4.9-0.8zm58.6-70.2c4.8 0 8.7-3.9 8.7-8.7 0-4.8-3.9-8.7-8.7-8.7-4.8 0-8.7 3.9-8.7 8.7 0 4.8 3.9 8.7 8.7 8.7z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s0" d="m613.9 375.4c-1.6 0-3.1-0.6-4.2-1.9-27.1-32.9-67-51.7-109.6-51.7-3 0-5.4-2.4-5.4-5.4 0-3 2.4-5.4 5.4-5.4 45.8 0 88.8 20.3 117.9 55.6 1.9 2.3 1.6 5.7-0.7 7.6-1 0.8-2.2 1.2-3.4 1.2z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s0" d="m443.4 333.1c-2.1 0-4.1-1.2-5-3.3-1.1-2.8 0.2-5.9 2.9-7.1 9.5-3.9 19.5-6.9 29.6-8.9 2.9-0.6 5.8 1.3 6.3 4.3 0.6 2.9-1.3 5.7-4.2 6.3-9.4 1.8-18.7 4.6-27.5 8.3q-1 0.4-2.1 0.4z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s0" d="m528.2 630.7c-0.8-2-2.7-3.3-4.9-3.3h-18v-31.2c5.7-2.1 9.7-7.6 9.7-14 0-8.2-6.7-14.9-15-14.9-8.3 0-15 6.7-15 14.9 0 6.4 4 11.9 9.7 14v36.5c0 3 2.4 5.4 5.3 5.4h10.4l-37.9 37.8-38.4-38.4h10.7c2.9 0 5.3-2.4 5.3-5.4v-64.9c0-2.9-2.4-5.3-5.3-5.3h-81.2c-3 0-5.4 2.4-5.4 5.3 0 3 2.4 5.4 5.4 5.4h75.8v54.2h-18.2c-2.2 0-4.1 1.3-5 3.3-0.8 2-0.3 4.3 1.2 5.8l51.4 51.4c1 1 2.3 1.5 3.7 1.5 1.5 0 2.8-0.5 3.8-1.5l50.8-50.8c1.5-1.5 2-3.8 1.1-5.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.3 KiB |
@@ -1,421 +0,0 @@
|
||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 715 731" width="715" height="731">
|
||||
<title>481-ai</title>
|
||||
<defs>
|
||||
<linearGradient id="g1" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(154.827,113.668,-167.156,227.683,63.892,604.719)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g2" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(122.169,62.716,-75.551,147.172,99.995,508.302)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g3" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(111.416,76.992,-105.444,152.589,124.83,424.582)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g4" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(120.242,56.402,-33.331,71.058,107.761,424.122)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g5" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-343.134,-188.179,108.643,-198.104,623.745,774.013)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g6" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,391.999,595.622)">
|
||||
<stop offset="0" stop-color="#2b237c"/>
|
||||
<stop offset="1" stop-color="#180d5b"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g7" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-165.08,-93.843,11.541,-20.302,418.603,737.001)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset=".282" stop-color="#1f3372"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g8" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-292.403,-189.918,123.352,-189.915,504.405,697.674)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g9" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,391.999,551.387)">
|
||||
<stop offset="0" stop-color="#2b237c"/>
|
||||
<stop offset="1" stop-color="#180d5b"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g10" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-148.563,-83.76,10.602,-18.805,397.675,680.58)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset=".282" stop-color="#1f3372"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g11" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-190.738,-43.072,43.602,-193.085,456.69,662.69)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g12" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-343.134,-188.179,108.643,-198.105,623.745,690.68)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g13" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,391.999,512.288)">
|
||||
<stop offset="0" stop-color="#2b237c"/>
|
||||
<stop offset="1" stop-color="#180d5b"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g14" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-165.08,-93.843,11.541,-20.302,418.603,653.667)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset=".282" stop-color="#1f3372"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g15" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-292.403,-189.918,123.351,-189.915,504.405,614.34)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g16" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,391.999,468.054)">
|
||||
<stop offset="0" stop-color="#2b237c"/>
|
||||
<stop offset="1" stop-color="#180d5b"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g17" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-148.563,-83.76,10.602,-18.805,397.675,597.247)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset=".282" stop-color="#1f3372"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g18" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-190.738,-43.072,43.602,-193.085,456.69,579.357)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g19" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-343.134,-188.179,108.643,-198.105,623.745,607.346)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g20" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,391.999,428.955)">
|
||||
<stop offset="0" stop-color="#2b237c"/>
|
||||
<stop offset="1" stop-color="#180d5b"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g21" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-165.08,-93.843,11.541,-20.302,418.603,570.334)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset=".282" stop-color="#1f3372"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g22" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-292.403,-189.918,123.351,-189.915,504.405,531.007)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g23" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,391.999,384.721)">
|
||||
<stop offset="0" stop-color="#2b237c"/>
|
||||
<stop offset="1" stop-color="#180d5b"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g24" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-148.563,-83.76,10.602,-18.805,397.675,513.914)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset=".282" stop-color="#1f3372"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g25" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-190.738,-43.072,43.602,-193.084,456.69,496.024)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g26" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-343.134,-188.179,108.643,-198.104,623.745,524.013)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g27" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,391.999,345.622)">
|
||||
<stop offset="0" stop-color="#2b237c"/>
|
||||
<stop offset="1" stop-color="#180d5b"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g28" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-165.08,-93.843,11.541,-20.302,418.603,487.001)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset=".282" stop-color="#1f3372"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g29" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-292.403,-189.918,123.352,-189.915,504.405,447.674)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g30" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,391.999,301.387)">
|
||||
<stop offset="0" stop-color="#2b237c"/>
|
||||
<stop offset="1" stop-color="#180d5b"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g31" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-148.563,-83.76,10.602,-18.805,397.675,430.58)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset=".282" stop-color="#1f3372"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g32" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-190.738,-43.072,43.602,-193.085,456.69,412.69)">
|
||||
<stop offset="0" stop-color="#180d5b"/>
|
||||
<stop offset="1" stop-color="#42e8e0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="g33" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,-235.895,76.835,0,-11.252,328.489)">
|
||||
<stop offset="0" stop-color="#42e8e0"/>
|
||||
<stop offset="1" stop-color="#180d5b"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<style>
|
||||
.s0 { fill: #160a5b }
|
||||
.s1 { fill: #24126a }
|
||||
.s2 { opacity: .7;fill: url(#g1) }
|
||||
.s3 { fill: #453c9e }
|
||||
.s4 { opacity: .7;fill: url(#g2) }
|
||||
.s5 { fill: #f0f6ff }
|
||||
.s6 { fill: #fcd1c5 }
|
||||
.s7 { fill: #4846a5 }
|
||||
.s8 { opacity: .7;fill: url(#g3) }
|
||||
.s9 { opacity: .7;fill: url(#g4) }
|
||||
.s10 { fill: #aa8383 }
|
||||
.s11 { fill: #c4ccd6 }
|
||||
.s12 { fill: #e2b1a6 }
|
||||
.s13 { fill: #936d6d }
|
||||
.s14 { fill: #312a91 }
|
||||
.s15 { opacity: .7;fill: url(#g5) }
|
||||
.s16 { fill: url(#g6) }
|
||||
.s17 { opacity: .7;fill: url(#g7) }
|
||||
.s18 { opacity: .7;fill: url(#g8) }
|
||||
.s19 { opacity: .3;fill: #42e8e0 }
|
||||
.s20 { fill: #42e8e0 }
|
||||
.s21 { fill: url(#g9) }
|
||||
.s22 { opacity: .7;fill: url(#g10) }
|
||||
.s23 { opacity: .5;fill: #5cfff3 }
|
||||
.s24 { fill: url(#g11) }
|
||||
.s25 { opacity: .5;fill: #42e8e0 }
|
||||
.s26 { opacity: .7;fill: url(#g12) }
|
||||
.s27 { fill: url(#g13) }
|
||||
.s28 { opacity: .7;fill: url(#g14) }
|
||||
.s29 { opacity: .7;fill: url(#g15) }
|
||||
.s30 { fill: url(#g16) }
|
||||
.s31 { opacity: .7;fill: url(#g17) }
|
||||
.s32 { fill: url(#g18) }
|
||||
.s33 { opacity: .7;fill: url(#g19) }
|
||||
.s34 { fill: url(#g20) }
|
||||
.s35 { opacity: .7;fill: url(#g21) }
|
||||
.s36 { opacity: .7;fill: url(#g22) }
|
||||
.s37 { fill: url(#g23) }
|
||||
.s38 { opacity: .7;fill: url(#g24) }
|
||||
.s39 { fill: url(#g25) }
|
||||
.s40 { opacity: .7;fill: url(#g26) }
|
||||
.s41 { fill: url(#g27) }
|
||||
.s42 { opacity: .7;fill: url(#g28) }
|
||||
.s43 { opacity: .7;fill: url(#g29) }
|
||||
.s44 { fill: url(#g30) }
|
||||
.s45 { opacity: .7;fill: url(#g31) }
|
||||
.s46 { fill: url(#g32) }
|
||||
.s47 { opacity: .7;fill: url(#g33) }
|
||||
.s48 { opacity: .9;fill: #42e8e0 }
|
||||
.s49 { opacity: .2;fill: #42e8e0 }
|
||||
</style>
|
||||
<g id="321353356351 1">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s0" d="m229.7 581.2c0 0 1.5 1.6 3.1 3.5 1.6 1.8 6 4.4 7.9 5.6 1.9 1.2 10.5 7.7 12.3 14.1 1.8 6.4-4.4 7.2-10.6 6.1-6.3-1.1-12.2-6.9-13.9-9-1.7-2.1-7.6-6.8-15.3-10.8-7.7-4-3.1-9.3-3.1-9.3z"/>
|
||||
<path id="<Path>" class="s0" d="m172.5 600.2c0 0-1.2 2.9-1.6 6.6-0.4 3.7-0.9 11.7-1.1 14.1-0.2 2.3-0.2 8.1 3.9 13.6 4.1 5.5 6.3 7.7 11.8 5.5 5.5-2.2 5.3-11.4 4.4-16.1-1-4.8-1.9-15.4-1.8-16.5 0.1-1.1-0.3-1.8-0.3-1.8z"/>
|
||||
<path id="<Path>" class="s1" d="m248.7 472.3c0 0-1.2 42.4-11.1 64.8 0 0-7 19.8-8 43.3 0 0 1.7 4.1-0.6 7.3-2.4 3.3-16.8 6.4-19.2-4.5-2.4-10.8-1.5-31 1.1-39.5 2.7-8.4-0.9-31.7-0.9-31.7 0 0-4 2.6-9.1 19.3-5.2 16.7-9 23.1-10.8 27.7-1.8 4.6-3.4 32.9-2.3 46.8 0 0-11.7 1.6-15.1-4-3.4-5.6-4.5-34.6-3.7-43.8 0.9-9.3 4.7-38.9 4.2-48-0.5-9.2-2.4-16.6-0.3-25.8 2.1-9.1 63.9-29.4 63.9-29.4z"/>
|
||||
<path id="<Path>" class="s2" d="m248.7 472.3c0 0-1.2 42.4-11.1 64.8 0 0-7 19.8-8 43.3 0 0 1.7 4.1-0.6 7.3-2.4 3.3-16.8 6.4-19.2-4.5-2.4-10.8-1.5-31 1.1-39.5 2.7-8.4-0.9-31.7-0.9-31.7 0 0-4 2.6-9.1 19.3-5.2 16.7-9 23.1-10.8 27.7-1.8 4.6-3.4 32.9-2.3 46.8 0 0-11.7 1.6-15.1-4-3.4-5.6-4.5-34.6-3.7-43.8 0.9-9.3 4.7-38.9 4.2-48-0.5-9.2-2.4-16.6-0.3-25.8 2.1-9.1 63.9-29.4 63.9-29.4z"/>
|
||||
<path id="<Path>" class="s0" d="m173.2 510c-0.5-9.2-2.4-16.6-0.3-25.8 0.7-3.4 10-8.4 21.2-13.3 18.9-1.8 42.9-3.8 44.6-3.5 1.5 0.2 5.4 1.7 8.6 3l1.4 1.9c0 0-0.1 2.6-0.4 6.8-4.4 1.3-12.9 0-12.9 0-1.2 2.9-8.6 13.5-17.7 18-9.2 4.6-36 3-37.6 4.8-1.5 1.7-1.8 24.9-1.7 27.8 0.2 2.9-2.5 21.5-5 37.9-2.4 16.1 1.3 35.7 1.4 36.3-0.8-0.5-1.6-1.2-2.1-2.1-3.4-5.6-4.5-34.6-3.7-43.8 0.9-9.3 4.7-38.9 4.2-48z"/>
|
||||
<path id="<Path>" class="s3" d="m228 334c0 0 13.7 3.1 18.3 4.2 0.8 0.2 1.4 0.7 1.7 1.5 1.3 3.3 4.6 13.8 2.1 29.1-3.1 18.8-2.1 31.5-2.1 31.5l6.3 33c0 0 8 31.5 7.3 32.3-0.6 0.9-18.3 14.4-23.9 12.5-5.5-1.9-3.7-5.1-3.7-5.1 0 0-4.4 22.8-24.3 22.6-19.8-0.2-36-0.1-39.3-8.2-3.4-8 0.9-41.6 4.4-55 3.5-13.3 11.8-39.9 11.8-39.9l-29-32.1 24.8-19c0 0 5.9-11 8.3-12.4 2.5-1.4 3.7-0.2 3.7-0.2z"/>
|
||||
<path id="<Path>" class="s3" d="m228 334c0 0 13.7 3.1 18.3 4.2 0.8 0.2 1.4 0.7 1.7 1.5 1.3 3.3 4.6 13.8 2.1 29.1-3.1 18.8-2.1 31.5-2.1 31.5l6.3 33c0 0 8 31.5 7.3 32.3-0.6 0.9-18.3 14.4-23.9 12.5-5.5-1.9-3.7-5.1-3.7-5.1 0 0-4.4 22.8-24.3 22.6-19.8-0.2-36-0.1-39.3-8.2-3.4-8 0.9-41.6 4.4-55 3.5-13.3 11.8-39.9 11.8-39.9l-29-32.1 24.8-19c0 0 5.9-11 8.3-12.4 2.5-1.4 3.7-0.2 3.7-0.2z"/>
|
||||
<path id="<Path>" class="s4" d="m228 334c0 0 13.7 3.1 18.3 4.2 0.8 0.2 1.4 0.7 1.7 1.5 1.3 3.3 4.6 13.8 2.1 29.1-3.1 18.8-2.1 31.5-2.1 31.5l6.3 33c0 0 8 31.5 7.3 32.3-0.6 0.9-18.3 14.4-23.9 12.5-5.5-1.9-3.7-5.1-3.7-5.1 0 0-4.4 22.8-24.3 22.6-19.8-0.2-36-0.1-39.3-8.2-3.4-8 0.9-41.6 4.4-55 3.5-13.3 11.8-39.9 11.8-39.9l-29-32.1 24.8-19c0 0 5.9-11 8.3-12.4 2.5-1.4 3.7-0.2 3.7-0.2z"/>
|
||||
<path id="<Path>" class="s5" d="m191.3 328.8c0 0-5.1 6.1 2.2 14.4 4.5 5.1 12.2 16 18.8 27.5 4.1 7.1 7.9 10.9 10 17 0 0 0.3-7.3 0.6-18.5 0.3-10.6 0.4-21.6 0-24.4-1-5.7-26-18.8-31.6-16z"/>
|
||||
<path id="<Path>" class="s6" d="m210.2 347.2c0 0 2.6 1.6 3.5 1.5 0.9-0.2 3.8-2.9 3.8-2.9 0 0 7.2-0.2 8-3.3 0.7-3 1.3-6.1 2-7.7 0.7-1.6 3.8-9.3 3.8-12.5 0.1-3.1-0.1-8.6 1.3-11.6 1.3-3 3.2-32.5-25.4-31.6-28.5 0.8-19.6 30.4-19.6 30.4 0 0-2.1 0.9-0.8 4.7 1.2 3.8 1.5 4.2 2.2 6.1 0.6 1.9 0.9 3.1 2.7 4.6l0.5 3.5c0 0-1.4 5.4 2.2 10.6 3.5 5.2 15.8 8.2 15.8 8.2z"/>
|
||||
<path id="<Path>" class="s7" d="m247.1 338.5c0 0 3 0.5 12.9 25.3 5.5 13.9 14 28.2 15.8 38.5 1.8 10.3 0.8 21.3-1.3 22-1.9 0.8-37.4 14.1-48.5 18.2-0.6 0.3-1.2-0.1-1.3-0.8l-3.1-17.1 22-8.5c0 0 4.2-5.1 8.1-7 0 0-4.4-8.1-4.1-10.4 0.3-2.2-0.4-25.1 2.2-34.5 2.5-9.3-2.7-25.7-2.7-25.7z"/>
|
||||
<path id="<Path>" class="s8" d="m247.1 338.5c0 0 3 0.5 12.9 25.3 5.5 13.9 14 28.2 15.8 38.5 1.8 10.3 0.8 21.3-1.3 22-1.9 0.8-37.4 14.1-48.5 18.2-0.6 0.3-1.2-0.1-1.3-0.8l-3.1-17.1 22-8.5c0 0 4.2-5.1 8.1-7 0 0-4.4-8.1-4.1-10.4 0.3-2.2-0.4-25.1 2.2-34.5 2.5-9.3-2.7-25.7-2.7-25.7z"/>
|
||||
<path id="<Path>" class="s6" d="m234.2 404.1c0 0 3-2 3.8-2.3 0.7-0.3 4.8-1.7 5.5-2 0.6-0.3 3-0.1 4.2 0 0.4 0.1 0.8 0.3 1 0.7 0.9 1.7 3.5 6.8 3.2 8.7 0 0-7.3 4.6-8.1 6.7l-1.2 0.3c0 0-4.9-10.6-8.4-12.1z"/>
|
||||
<path id="<Path>" class="s1" d="m174.8 432.4c0.8-3.2 1.9-7.2 3.2-11.3l44.5 19c0 0-13.3 16.4-36.7 15.4-6.4-0.3-11.1-2.6-14.5-4.6 1.1-7.3 2.3-14 3.5-18.5z"/>
|
||||
<path id="<Path>" class="s1" d="m157.6 360.4c0 0 11.7 1.6 21.2 16.6 9.5 15.1 16.4 32.5 16.4 32.5l0.3 2c0.9 5.1 6.3 8 11.1 5.9 10-4.5 24.8-11.3 27.6-13.3 0 0 8.9 4.9 11.3 16.5 1.9 9.3 1.4 9.3 1.4 9.3 0 0-39.5 18.4-54.8 18.3-15.3-0.2-34.6-50.4-36.8-60.8-2.1-10.4-4.5-24.1 2.3-27z"/>
|
||||
<path id="<Path>" class="s7" d="m157.6 360.4c0 0 11.7 1.6 21.2 16.6 9.5 15.1 16.4 32.5 16.4 32.5l0.3 2c0.9 5.1 6.3 8 11.1 5.9 10-4.5 24.8-11.3 27.6-13.3 0 0 8.9 4.9 11.3 16.5 1.9 9.3 1.4 9.3 1.4 9.3 0 0-39.5 18.4-54.8 18.3-15.3-0.2-34.6-50.4-36.8-60.8-2.1-10.4-4.5-24.1 2.3-27z"/>
|
||||
<path id="<Path>" class="s9" d="m157.6 360.4c0 0 11.7 1.6 21.2 16.6 9.5 15.1 16.4 32.5 16.4 32.5l0.3 2c0.9 5.1 6.3 8 11.1 5.9 10-4.5 24.8-11.3 27.6-13.3 0 0 8.9 4.9 11.3 16.5 1.9 9.3 1.4 9.3 1.4 9.3 0 0-39.5 18.4-54.8 18.3-15.3-0.2-34.6-50.4-36.8-60.8-2.1-10.4-4.5-24.1 2.3-27z"/>
|
||||
<path id="<Path>" class="s3" d="m200.9 419.7c0 0-5 4.7-7.2 2.1-2.1-2.5-1.5-2.8-1.5-2.8 0 0-4.5 0-5-2.9-0.6-2.8-2.8-1.3-2.9-4.4-0.2-3.1 3.6-2.5 3.6-2.5z"/>
|
||||
<path id="<Path>" class="s6" d="m206.9 417.2c0 0-1.4-1.2-3.1-2.7-1.8-1.5-4.7-7.7-5.1-8.3-0.5-0.5-6.5-5.1-9.4-5.2-2.8-0.1-0.7 3.2 0 3.6 0.6 0.5 3.4 1.9 3.4 1.9 0 0 2.9 2.4 3.2 2.7 0.4 0.4-8-0.5-9.3 0.3-1.3 0.8-1 2.9-0.1 3.5 0.9 0.6 1.6 0.6 1.6 0.6 0 0-0.9 2.5 1.6 3.7 2.5 1.1 3.1 0.5 3.1 0.5 0 0 0.2 4.3 4.4 3.5z"/>
|
||||
<path id="<Path>" class="s10" d="m233.2 295.6c0 0 3.8 11.9-6 8.5-9.8-3.4-18.7-9-21.8-6.9-2.3 1.7-2.2 6.7-2 9 0 0.7-0.2 1.5-0.6 2.2l-2.9 4.2q-0.5 0.7-0.6 1.6l-0.2 2.9c0 0.8-0.6 1.4-1.4 1.4h-0.6c-0.8 0.1-1.4-0.4-1.6-1.2l-0.7-4.3c0 0-2.3-5.8-7.2-3.5 0 0-3.3-4.4-2.2-13.7 1.1-9.4 5.3-19.1 23.7-20.7 18.3-1.6 24.1 20.5 24.1 20.5z"/>
|
||||
<path id="<Path>" class="s11" d="m205.2 357.6l2.7-2.1c0 0 2.5 2.1 3.5 4.4 1 2.2 0 9.3 0 9.3l0.9 1.5 1-1.9 0.9-8.5c0 0-1-6.2-1.1-6.3 0-0.2-5.3 0.5-5.3 0.5 0 0-1.8 1.4-2.6 3.1z"/>
|
||||
<path id="<Path>" class="s11" d="m218.4 349.2c0 0 2.9 0.2 4.2 1.3 0 0-3 0.2-3.5 0.3-0.5 0-0.7-1.6-0.7-1.6z"/>
|
||||
<path id="<Path>" class="s1" d="m212.8 349.9l-5 4.6c0 0 4.4 2 5.6 5.9 0 0 5.3 1 5.8-1 0.5-1.9 0-6.8 0.7-9 0.6-2.1-7.1-0.5-7.1-0.5z"/>
|
||||
<path id="<Path>" class="s1" d="m219 359.3c0 0 1 4.1 2 5.7 1 1.7 2 3.6 2 3.6l-0.1 23.6c0 0-8.7-17.9-10.6-21.5 0 0 0.3-8.7 1.1-10.3 0.8-1.7 5.6-1.1 5.6-1.1z"/>
|
||||
<path id="<Path>" class="s12" d="m195.7 324.4c5.7 16.5 21.8 21.4 21.8 21.4 0 0-2.9 2.7-3.8 2.9-0.9 0.1-3.5-1.5-3.5-1.5 0 0-12.3-3-15.8-8.2-3.6-5.2-2.2-10.6-2.2-10.6l-0.5-3.5c2.6 0.9 4-0.5 4-0.5z"/>
|
||||
<path id="<Path>" class="s1" d="m182.6 343.7c0 0 2.3 7.8 2.5 8.1 0.3 0.2 5.7-0.4 5.7-0.4l-2.6 5c0 0 27.1 29 32.7 44.6 0 0-12.8-19.8-35.4-43.4l3.2-4.8-5.5 1z"/>
|
||||
<path id="<Path>" class="s1" d="m227.1 336.8l1.4 1.6-1.7 1.6 5 4.5c0 0 1.5 31.8-4.6 52.8 0 0 8.3-19.3 6.4-53.6l-5.4-3.7 1.8-1.7z"/>
|
||||
<path id="<Path>" class="s0" d="m210 512q0 0-0.2 0.2l7-7.5c-3.2 4.6 0.5 25.5 0.9 30.3 0.4 4.8-3.7 14.6-5.3 26.2-1.5 11.6 1.6 28.1 1.6 28.1-2-1.1-3.6-3.1-4.2-6.1-2.4-10.8-1.5-31 1.1-39.5 2.7-8.4-0.9-31.7-0.9-31.7z"/>
|
||||
<path id="<Path>" class="s13" d="m197.1 318.5c-0.8 0.1-1.4-0.4-1.6-1.2l-0.7-4.3c0 0-2.3-5.8-7.2-3.5 0 0-3.1-4.2-2.3-13 5.5 8.1 17.5 11.9 17.5 11.9l-2.9 4.2q-0.5 0.7-0.6 1.6l-0.2 2.9c0 0.8-0.6 1.4-1.4 1.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m434.1 689.9l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s14" d="m434.1 668.8l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s15" d="m434.1 652.1l-97.8-56.5 97.8-56.5 97.9 56.5z"/>
|
||||
<path id="<Path>" class="s16" d="m560.9 595.6v21.1l-126.8 73.2v-21.1z"/>
|
||||
<path id="<Path>" class="s14" d="m307.4 595.6v21.1l126.7 73.2v-21.1z"/>
|
||||
<path id="<Path>" class="s17" d="m307.4 595.6v21.1l126.7 73.2v-21.1z"/>
|
||||
<path id="<Path>" class="s14" d="m434.1 645.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s14" d="m434.1 624.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s18" d="m434.1 624.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s19" d="m434.1 578.5l-46.9-27.1 46.9-27.1 47 27.1z"/>
|
||||
<path id="<Path>" class="s19" d="m434.1 542.7l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
||||
<path id="<Path>" class="s20" d="m434.1 542.7l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s21" d="m560.9 551.4v21l-126.8 73.2v-21z"/>
|
||||
<path id="<Path>" class="s14" d="m307.4 551.4v21l126.7 73.2v-21z"/>
|
||||
<path id="<Path>" class="s22" d="m307.4 551.4v21l126.7 73.2v-21z"/>
|
||||
<path id="<Path>" class="s19" d="m434.1 645.6v23.2l-126.7-73.2v-23.2z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s19" d="m336.3 589.1v6.5l97.8 56.5 97.9-56.5v-6.5l-97.9 56.5z"/>
|
||||
<path id="<Path>" class="s19" d="m434.1 645.6v6.5l-97.8-56.5v-6.5z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s23" d="m307.4 572.4v23.2l126.7 73.2 126.8-73.2v-23.2l-126.8 73.2z"/>
|
||||
<path id="<Path>" class="s24" d="m310.3 551.4l125.3-72.4-1.5-0.8-126.7 73.2 126.7 73.2 1.5-0.9z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s25" d="m307.4 572.4v23.2l1.7 1v-23.2z"/>
|
||||
<path id="<Path>" class="s25" d="m560.9 572.4v23.2l-1.7 1v-23.2z"/>
|
||||
<path id="<Path>" class="s25" d="m434.1 645.6l-2.9-1.7v23.2l2.9 1.7 3-1.7v-23.2z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m434.1 606.5l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s14" d="m434.1 585.5l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s26" d="m434.1 568.8l-97.8-56.5 97.8-56.5 97.9 56.5z"/>
|
||||
<path id="<Path>" class="s27" d="m560.9 512.3v21l-126.8 73.2v-21z"/>
|
||||
<path id="<Path>" class="s14" d="m307.4 512.3v21l126.7 73.2v-21z"/>
|
||||
<path id="<Path>" class="s28" d="m307.4 512.3v21l126.7 73.2v-21z"/>
|
||||
<path id="<Path>" class="s14" d="m434.1 562.3l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s14" d="m434.1 541.3l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s29" d="m434.1 541.3l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s19" d="m434.1 495.2l-46.9-27.1 46.9-27.1 47 27.1z"/>
|
||||
<path id="<Path>" class="s19" d="m434.1 459.3l31.1 18 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
||||
<path id="<Path>" class="s20" d="m434.1 459.3l31.1 18 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s30" d="m560.9 468.1v21l-126.8 73.2v-21z"/>
|
||||
<path id="<Path>" class="s14" d="m307.4 468.1v21l126.7 73.2v-21z"/>
|
||||
<path id="<Path>" class="s31" d="m307.4 468.1v21l126.7 73.2v-21z"/>
|
||||
<path id="<Path>" class="s19" d="m434.1 562.3v23.2l-126.7-73.2v-23.2z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s19" d="m336.3 505.8v6.5l97.8 56.5 97.9-56.5v-6.5l-97.9 56.5z"/>
|
||||
<path id="<Path>" class="s19" d="m434.1 562.3v6.5l-97.8-56.5v-6.5z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s23" d="m307.4 489.1v23.2l126.7 73.2 126.8-73.2v-23.2l-126.8 73.2z"/>
|
||||
<path id="<Path>" class="s32" d="m310.3 468.1l125.3-72.4-1.5-0.8-126.7 73.2 126.7 73.2 1.5-0.9z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s25" d="m307.4 489.1v23.2l1.7 1v-23.2z"/>
|
||||
<path id="<Path>" class="s25" d="m560.9 489.1v23.2l-1.7 1v-23.2z"/>
|
||||
<path id="<Path>" class="s25" d="m434.1 562.3l-2.9-1.7v23.2l2.9 1.7 3-1.7v-23.2z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m434.1 523.2l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s14" d="m434.1 502.2l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s33" d="m434.1 485.5l-97.8-56.5 97.8-56.6 97.9 56.6z"/>
|
||||
<path id="<Path>" class="s34" d="m560.9 429v21l-126.8 73.2v-21z"/>
|
||||
<path id="<Path>" class="s14" d="m307.4 429v21l126.7 73.2v-21z"/>
|
||||
<path id="<Path>" class="s35" d="m307.4 429v21l126.7 73.2v-21z"/>
|
||||
<path id="<Path>" class="s14" d="m434.1 479l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s14" d="m434.1 457.9l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s36" d="m434.1 457.9l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s19" d="m434.1 411.8l-46.9-27.1 46.9-27.1 47 27.1z"/>
|
||||
<path id="<Path>" class="s19" d="m434.1 376l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
||||
<path id="<Path>" class="s20" d="m434.1 376l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s37" d="m560.9 384.7v21.1l-126.8 73.2v-21.1z"/>
|
||||
<path id="<Path>" class="s14" d="m307.4 384.7v21.1l126.7 73.2v-21.1z"/>
|
||||
<path id="<Path>" class="s38" d="m307.4 384.7v21.1l126.7 73.2v-21.1z"/>
|
||||
<path id="<Path>" class="s19" d="m434.1 479v23.2l-126.7-73.2v-23.2z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s19" d="m336.3 422.5v6.5l97.8 56.5 97.9-56.5v-6.5l-97.9 56.5z"/>
|
||||
<path id="<Path>" class="s19" d="m434.1 479v6.5l-97.8-56.5v-6.5z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s23" d="m307.4 405.8v23.2l126.7 73.2 126.8-73.2v-23.2l-126.8 73.2z"/>
|
||||
<path id="<Path>" class="s39" d="m310.3 384.7l125.3-72.3-1.5-0.9-126.7 73.2 126.7 73.2 1.5-0.8z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s25" d="m307.4 405.8v23.2l1.7 1v-23.2z"/>
|
||||
<path id="<Path>" class="s25" d="m560.9 405.8v23.2l-1.7 1v-23.2z"/>
|
||||
<path id="<Path>" class="s25" d="m434.1 479l-2.9-1.7v23.2l2.9 1.7 3-1.7v-23.2z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s14" d="m434.1 439.9l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s14" d="m434.1 418.8l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s40" d="m434.1 402.1l-97.8-56.5 97.8-56.5 97.9 56.5z"/>
|
||||
<path id="<Path>" class="s41" d="m560.9 345.6v21.1l-126.8 73.2v-21.1z"/>
|
||||
<path id="<Path>" class="s14" d="m307.4 345.6v21.1l126.7 73.2v-21.1z"/>
|
||||
<path id="<Path>" class="s42" d="m307.4 345.6v21.1l126.7 73.2v-21.1z"/>
|
||||
<path id="<Path>" class="s14" d="m434.1 395.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s14" d="m434.1 374.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<path id="<Path>" class="s43" d="m434.1 374.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s19" d="m434.1 328.5l-46.9-27.1 46.9-27.1 47 27.1z"/>
|
||||
<path id="<Path>" class="s19" d="m434.1 292.7l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
||||
<path id="<Path>" class="s20" d="m434.1 292.7l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s44" d="m560.9 301.4v21l-126.8 73.2v-21z"/>
|
||||
<path id="<Path>" class="s14" d="m307.4 301.4v21l126.7 73.2v-21z"/>
|
||||
<path id="<Path>" class="s45" d="m307.4 301.4v21l126.7 73.2v-21z"/>
|
||||
<path id="<Path>" class="s19" d="m434.1 395.6v23.2l-126.7-73.2v-23.2z"/>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s19" d="m336.3 339.1v6.5l97.8 56.5 97.9-56.5v-6.5l-97.9 56.5z"/>
|
||||
<path id="<Path>" class="s19" d="m434.1 395.6v6.5l-97.8-56.5v-6.5z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s23" d="m307.4 322.4v23.2l126.7 73.2 126.8-73.2v-23.2l-126.8 73.2z"/>
|
||||
<path id="<Path>" class="s46" d="m310.3 301.4l125.3-72.4-1.5-0.8-126.7 73.2 126.7 73.2 1.5-0.9z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s25" d="m307.4 322.4v23.2l1.7 1v-23.2z"/>
|
||||
<path id="<Path>" class="s25" d="m560.9 322.4v23.2l-1.7 1v-23.2z"/>
|
||||
<path id="<Path>" class="s25" d="m434.1 395.6l-2.9-1.7v23.2l2.9 1.7 3-1.7v-23.2z"/>
|
||||
</g>
|
||||
<path id="<Path>" class="s47" d="m480.8 301.5l-1.7-262.8h-92.7l1.1 262.8 46.6 27z"/>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s48" d="m444 271.8c0 2-1.7 3.6-3.6 3.6-2 0-3.6-1.6-3.6-3.6 0-1.9 1.6-3.6 3.6-3.6 1.9 0 3.6 1.7 3.6 3.6z"/>
|
||||
<path id="<Path>" class="s19" d="m397.2 243.3c0 1.2-1 2.2-2.3 2.2-1.2 0-2.2-1-2.2-2.2 0-1.2 1-2.2 2.2-2.2 1.3 0 2.3 1 2.3 2.2z"/>
|
||||
<path id="<Path>" class="s49" d="m412.7 218.1c0 1.2-1 2.3-2.2 2.3-1.3 0-2.3-1.1-2.3-2.3 0-1.3 1-2.3 2.3-2.3 1.2 0 2.2 1 2.2 2.3z"/>
|
||||
<path id="<Path>" class="s49" d="m478.4 209.8c0 0.8-0.6 1.5-1.4 1.5-0.8 0-1.4-0.7-1.4-1.5 0-0.8 0.6-1.4 1.4-1.4 0.8 0 1.4 0.6 1.4 1.4z"/>
|
||||
<path id="<Path>" class="s49" d="m474.7 202.3c0 1.7-1.3 3.1-3 3.1-1.7 0-3-1.4-3-3.1 0-1.6 1.3-3 3-3 1.7 0 3 1.4 3 3z"/>
|
||||
<path id="<Path>" class="s49" d="m405.7 213.6c0 0.8-0.6 1.4-1.4 1.4-0.8 0-1.5-0.6-1.5-1.4 0-0.8 0.7-1.5 1.5-1.5 0.8 0 1.4 0.7 1.4 1.5z"/>
|
||||
<path id="<Path>" class="s19" d="m404 283.9c0 1.3-1 2.3-2.3 2.3-1.2 0-2.2-1-2.2-2.3 0-1.2 1-2.2 2.3-2.2 1.2 0 2.2 1 2.2 2.2z"/>
|
||||
<path id="<Path>" class="s49" d="m419.5 258.8c0 1.2-1 2.2-2.2 2.2-1.3 0-2.3-1-2.3-2.2 0-1.3 1-2.3 2.3-2.3 1.2 0 2.2 1 2.2 2.3z"/>
|
||||
<path id="<Path>" class="s49" d="m412.6 254.2c0 0.8-0.7 1.5-1.5 1.5-0.8 0-1.4-0.7-1.4-1.5 0-0.8 0.6-1.4 1.4-1.4 0.8 0 1.5 0.6 1.5 1.4z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s48" d="m432.1 236c0.5 1.7 2.2 2.7 3.9 2.3 1.7-0.5 2.8-2.2 2.3-3.9-0.4-1.7-2.1-2.8-3.9-2.3-1.7 0.4-2.7 2.2-2.3 3.9z"/>
|
||||
<path id="<Path>" class="s19" d="m466.1 201.1c0.3 1.1 1.4 1.7 2.4 1.4 1.1-0.2 1.7-1.3 1.5-2.4-0.3-1-1.4-1.7-2.4-1.4-1.1 0.3-1.7 1.3-1.5 2.4z"/>
|
||||
<path id="<Path>" class="s49" d="m447.2 182.9c0.3 1 1.4 1.7 2.4 1.4 1.1-0.3 1.8-1.4 1.5-2.4-0.3-1.1-1.4-1.8-2.5-1.5-1 0.3-1.7 1.4-1.4 2.5z"/>
|
||||
<path id="<Path>" class="s49" d="m388.9 190.2c0.1 0.7 0.8 1.1 1.5 0.9 0.7-0.2 1.1-0.9 0.9-1.5-0.1-0.7-0.8-1.1-1.5-1-0.7 0.2-1.1 0.9-0.9 1.6z"/>
|
||||
<path id="<Path>" class="s49" d="m390.4 182.9c0.4 1.5 1.8 2.3 3.3 2 1.4-0.4 2.2-1.9 1.9-3.3-0.4-1.4-1.8-2.3-3.3-1.9-1.4 0.3-2.3 1.8-1.9 3.2z"/>
|
||||
<path id="<Path>" class="s49" d="m452.2 177.4c0.2 0.7 0.9 1.1 1.6 0.9 0.7-0.1 1.1-0.8 0.9-1.5-0.2-0.7-0.9-1.1-1.6-1-0.7 0.2-1.1 0.9-0.9 1.6z"/>
|
||||
<path id="<Path>" class="s49" d="m467.7 285.3c-0.6 0.5-1.5 0.5-2-0.1-0.5-0.6-0.5-1.6 0.2-2.1 0.6-0.5 1.5-0.4 2 0.2 0.5 0.6 0.4 1.5-0.2 2z"/>
|
||||
<path id="<Path>" class="s49" d="m471 277.7c-1.2 1-3.1 0.9-4.2-0.4-1.1-1.3-0.9-3.2 0.3-4.2 1.3-1.1 3.2-0.9 4.3 0.3 1 1.3 0.9 3.2-0.4 4.3z"/>
|
||||
<path id="<Path>" class="s19" d="m466.4 270.3c-0.6 0.9-0.4 2.1 0.5 2.8 0.9 0.6 2.1 0.4 2.7-0.5 0.7-0.9 0.5-2.1-0.4-2.8-0.9-0.6-2.1-0.4-2.8 0.5z"/>
|
||||
<path id="<Path>" class="s49" d="m468.1 244.1c-0.7 0.9-0.4 2.1 0.5 2.8 0.9 0.6 2.1 0.4 2.8-0.5 0.6-0.9 0.4-2.2-0.5-2.8-0.9-0.7-2.2-0.4-2.8 0.5z"/>
|
||||
<path id="<Path>" class="s49" d="m475.5 244.4c-0.4 0.5-0.3 1.3 0.3 1.8 0.6 0.4 1.4 0.2 1.8-0.3 0.4-0.6 0.3-1.4-0.3-1.8-0.6-0.5-1.4-0.3-1.8 0.3z"/>
|
||||
<g id="<Group>" style="opacity: .9">
|
||||
<path id="<Path>" class="s20" d="m423.4 308.3c0.5 1.8 2.2 2.8 3.9 2.4 1.7-0.5 2.8-2.2 2.3-3.9-0.4-1.7-2.1-2.8-3.8-2.3-1.8 0.4-2.8 2.1-2.4 3.8z"/>
|
||||
<path id="<Path>" class="s20" d="m432.7 291.1c0.3 1.2 1.5 1.9 2.7 1.6 1.3-0.3 2-1.6 1.7-2.8-0.3-1.2-1.6-1.9-2.8-1.6-1.2 0.3-1.9 1.5-1.6 2.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s48" d="m444 230.9c0 2-1.7 3.6-3.6 3.6-2 0-3.6-1.6-3.6-3.6 0-2 1.6-3.6 3.6-3.6 1.9 0 3.6 1.6 3.6 3.6z"/>
|
||||
<path id="<Path>" class="s19" d="m397.2 202.3c0 1.3-1 2.3-2.3 2.3-1.2 0-2.2-1-2.2-2.3 0-1.2 1-2.2 2.2-2.2 1.3 0 2.3 1 2.3 2.2z"/>
|
||||
<path id="<Path>" class="s49" d="m412.7 177.2c0 1.2-1 2.2-2.2 2.2-1.3 0-2.3-1-2.3-2.2 0-1.3 1-2.3 2.3-2.3 1.2 0 2.2 1 2.2 2.3z"/>
|
||||
<path id="<Path>" class="s49" d="m478.4 168.9c0 0.8-0.6 1.4-1.4 1.4-0.8 0-1.4-0.6-1.4-1.4 0-0.8 0.6-1.4 1.4-1.4 0.8 0 1.4 0.6 1.4 1.4z"/>
|
||||
<path id="<Path>" class="s49" d="m474.7 161.4c0 1.7-1.3 3-3 3-1.7 0-3-1.3-3-3 0-1.6 1.3-3 3-3 1.7 0 3 1.4 3 3z"/>
|
||||
<path id="<Path>" class="s49" d="m405.7 172.6c0 0.8-0.6 1.5-1.4 1.5-0.8 0-1.5-0.7-1.5-1.5 0-0.8 0.7-1.4 1.5-1.4 0.8 0 1.4 0.6 1.4 1.4z"/>
|
||||
<path id="<Path>" class="s19" d="m404 243c0 1.2-1 2.2-2.3 2.2-1.2 0-2.2-1-2.2-2.2 0-1.2 1-2.2 2.3-2.2 1.2 0 2.2 1 2.2 2.2z"/>
|
||||
<path id="<Path>" class="s49" d="m419.5 217.8c0 1.3-1 2.3-2.2 2.3-1.3 0-2.3-1-2.3-2.3 0-1.2 1-2.2 2.3-2.2 1.2 0 2.2 1 2.2 2.2z"/>
|
||||
<path id="<Path>" class="s49" d="m412.6 213.3c0 0.8-0.7 1.4-1.5 1.4-0.8 0-1.4-0.6-1.4-1.4 0-0.8 0.6-1.5 1.4-1.5 0.8 0 1.5 0.7 1.5 1.5z"/>
|
||||
</g>
|
||||
<g id="<Group>">
|
||||
<path id="<Path>" class="s48" d="m432.1 195c0.5 1.7 2.2 2.8 3.9 2.3 1.7-0.4 2.8-2.1 2.3-3.9-0.4-1.7-2.1-2.7-3.9-2.3-1.7 0.5-2.7 2.2-2.3 3.9z"/>
|
||||
<path id="<Path>" class="s19" d="m466.1 160.2c0.3 1 1.4 1.7 2.4 1.4 1.1-0.3 1.7-1.4 1.5-2.4-0.3-1.1-1.4-1.7-2.4-1.4-1.1 0.2-1.7 1.3-1.5 2.4z"/>
|
||||
<path id="<Path>" class="s49" d="m447.2 141.9c0.3 1.1 1.4 1.8 2.4 1.5 1.1-0.3 1.8-1.4 1.5-2.5-0.3-1.1-1.4-1.7-2.5-1.4-1 0.2-1.7 1.3-1.4 2.4z"/>
|
||||
<path id="<Path>" class="s49" d="m388.9 149.3c0.1 0.6 0.8 1 1.5 0.9 0.7-0.2 1.1-0.9 0.9-1.6-0.1-0.7-0.8-1.1-1.5-0.9-0.7 0.2-1.1 0.9-0.9 1.6z"/>
|
||||
<path id="<Path>" class="s49" d="m390.4 142c0.4 1.4 1.8 2.3 3.3 1.9 1.4-0.3 2.2-1.8 1.9-3.2-0.4-1.5-1.8-2.3-3.3-2-1.4 0.4-2.3 1.9-1.9 3.3z"/>
|
||||
<path id="<Path>" class="s49" d="m452.2 136.5c0.2 0.7 0.9 1.1 1.6 0.9 0.7-0.2 1.1-0.9 0.9-1.6-0.2-0.6-0.9-1.1-1.6-0.9-0.7 0.2-1.1 0.9-0.9 1.6z"/>
|
||||
<path id="<Path>" class="s49" d="m467.7 244.4c-0.6 0.5-1.5 0.4-2-0.2-0.5-0.6-0.5-1.5 0.2-2 0.6-0.5 1.5-0.4 2 0.2 0.5 0.6 0.4 1.5-0.2 2z"/>
|
||||
<path id="<Path>" class="s49" d="m471 236.7c-1.2 1.1-3.1 0.9-4.2-0.3-1.1-1.3-0.9-3.2 0.3-4.3 1.3-1 3.2-0.9 4.3 0.4 1 1.3 0.9 3.1-0.4 4.2z"/>
|
||||
<path id="<Path>" class="s19" d="m466.4 229.4c-0.6 0.9-0.4 2.1 0.5 2.7 0.9 0.7 2.1 0.4 2.7-0.4 0.7-0.9 0.5-2.2-0.4-2.8-0.9-0.6-2.1-0.4-2.8 0.5z"/>
|
||||
<path id="<Path>" class="s49" d="m468.1 203.1c-0.7 0.9-0.4 2.2 0.5 2.8 0.9 0.7 2.1 0.5 2.8-0.4 0.6-0.9 0.4-2.2-0.5-2.8-0.9-0.7-2.2-0.5-2.8 0.4z"/>
|
||||
<path id="<Path>" class="s49" d="m475.5 203.4c-0.4 0.6-0.3 1.4 0.3 1.8 0.6 0.4 1.4 0.3 1.8-0.3 0.4-0.6 0.3-1.4-0.3-1.8-0.6-0.4-1.4-0.3-1.8 0.3z"/>
|
||||
<g id="<Group>" style="opacity: .9">
|
||||
<path id="<Path>" class="s20" d="m423.4 267.4c0.5 1.7 2.2 2.8 3.9 2.3 1.7-0.4 2.8-2.2 2.3-3.9-0.4-1.7-2.1-2.7-3.8-2.3-1.8 0.5-2.8 2.2-2.4 3.9z"/>
|
||||
<path id="<Path>" class="s20" d="m432.7 250.1c0.3 1.2 1.5 2 2.7 1.7 1.3-0.4 2-1.6 1.7-2.8-0.3-1.2-1.6-1.9-2.8-1.6-1.2 0.3-1.9 1.5-1.6 2.7z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 33 KiB |
Before Width: | Height: | Size: 24 KiB |
@@ -1 +0,0 @@
|
||||
// Add your own custom styles here
|
@@ -1,6 +0,0 @@
|
||||
################ English language ##################
|
||||
[en]
|
||||
languageName = "En"
|
||||
languageCode = "en-us"
|
||||
contentDir = "content/english"
|
||||
weight = 1
|
@@ -1,70 +0,0 @@
|
||||
############# English navigation ##############
|
||||
|
||||
# main menu
|
||||
[[main]]
|
||||
name = "Home"
|
||||
pageRef = "/"
|
||||
weight = 1
|
||||
|
||||
[[main]]
|
||||
name = "About"
|
||||
pageRef = "/about"
|
||||
weight = 2
|
||||
|
||||
[[main]]
|
||||
name = "Blog"
|
||||
pageRef = "/blog"
|
||||
weight = 3
|
||||
|
||||
[[main]]
|
||||
name = "Docs"
|
||||
weight = 4
|
||||
identifier = "docs"
|
||||
url = "https://snigdhaos.org/documentation/"
|
||||
target = "_blank"
|
||||
|
||||
[[main]]
|
||||
name = "Get Started"
|
||||
pageRef = "/get-started"
|
||||
weight = 5
|
||||
|
||||
# footer menu
|
||||
[[footer]]
|
||||
name = "Cloud"
|
||||
weight = 1
|
||||
identifier = "cloud"
|
||||
url = "https://cloud.snigdhaos.org/"
|
||||
target = "_blank"
|
||||
|
||||
[[footer]]
|
||||
name = "Forum"
|
||||
weight = 2
|
||||
identifier = "forum"
|
||||
url = "https://forum.snigdhaos.org/"
|
||||
target = "_blank"
|
||||
|
||||
[[footer]]
|
||||
name = "Uptime"
|
||||
weight = 3
|
||||
identifier = "uptime"
|
||||
url = "https://uptime.snigdhaos.org/"
|
||||
target = "_blank"
|
||||
|
||||
[[footer]]
|
||||
name = "Tools"
|
||||
weight = 4
|
||||
identifier = "tools"
|
||||
url = "https://tools.snigdhaos.org/"
|
||||
target = "_blank"
|
||||
|
||||
[[footer]]
|
||||
name = "Status"
|
||||
weight = 5
|
||||
identifier = "status"
|
||||
url = "https://snigdha-os.github.io/snigdhaos-status/"
|
||||
target = "_blank"
|
||||
|
||||
[[footer]]
|
||||
name = "Privacy Policy"
|
||||
pageRef = "/privacy-policy"
|
||||
weight = 6
|
@@ -1,93 +0,0 @@
|
||||
[hugoVersion]
|
||||
extended = true
|
||||
min = "0.115.2"
|
||||
|
||||
# [[imports]]
|
||||
# path = "github.com/zeon-studio/hugoplate"
|
||||
|
||||
[[imports]]
|
||||
path = "github.com/gethugothemes/hugo-modules/search"
|
||||
|
||||
[[imports]]
|
||||
path = "github.com/gethugothemes/hugo-modules/pwa"
|
||||
|
||||
[[imports]]
|
||||
path = "github.com/gethugothemes/hugo-modules/images"
|
||||
|
||||
[[imports]]
|
||||
path = "github.com/gethugothemes/hugo-modules/videos"
|
||||
|
||||
[[imports]]
|
||||
path = "github.com/gethugothemes/hugo-modules/icons/font-awesome"
|
||||
|
||||
# [[imports]]
|
||||
# path = "github.com/gethugothemes/hugo-modules/icons/themify-icons"
|
||||
|
||||
[[imports]]
|
||||
path = "github.com/gethugothemes/hugo-modules/gzip-caching"
|
||||
|
||||
[[imports]]
|
||||
path = "github.com/gethugothemes/hugo-modules/adsense"
|
||||
|
||||
[[imports]]
|
||||
path = "github.com/gethugothemes/hugo-modules/accordion"
|
||||
|
||||
[[imports]]
|
||||
path = "github.com/gethugothemes/hugo-modules/table-of-contents"
|
||||
|
||||
[[imports]]
|
||||
path = "github.com/gethugothemes/hugo-modules/tab"
|
||||
|
||||
[[imports]]
|
||||
path = "github.com/gethugothemes/hugo-modules/modal"
|
||||
|
||||
[[imports]]
|
||||
path = "github.com/gethugothemes/hugo-modules/gallery-slider"
|
||||
|
||||
[[imports]]
|
||||
path = "github.com/gethugothemes/hugo-modules/components/preloader"
|
||||
|
||||
[[imports]]
|
||||
path = "github.com/gethugothemes/hugo-modules/components/social-share"
|
||||
|
||||
[[imports]]
|
||||
path = "github.com/gethugothemes/hugo-modules/components/cookie-consent"
|
||||
|
||||
[[imports]]
|
||||
path = "github.com/gethugothemes/hugo-modules/components/custom-script"
|
||||
|
||||
[[imports]]
|
||||
path = "github.com/gethugothemes/hugo-modules/components/render-link"
|
||||
|
||||
# [[imports]]
|
||||
# path = "github.com/gethugothemes/hugo-modules/components/valine-comment"
|
||||
|
||||
# [[imports]]
|
||||
# path = "github.com/gethugothemes/hugo-modules/components/crisp-chat"
|
||||
|
||||
[[imports]]
|
||||
path = "github.com/gethugothemes/hugo-modules/shortcodes/button"
|
||||
|
||||
[[imports]]
|
||||
path = "github.com/gethugothemes/hugo-modules/shortcodes/notice"
|
||||
|
||||
[[imports]]
|
||||
path = "github.com/gethugothemes/hugo-modules/seo-tools/basic-seo"
|
||||
|
||||
[[imports]]
|
||||
path = "github.com/gethugothemes/hugo-modules/seo-tools/site-verifications"
|
||||
|
||||
[[imports]]
|
||||
path = "github.com/gethugothemes/hugo-modules/seo-tools/google-tag-manager"
|
||||
|
||||
# [[imports]]
|
||||
# path = "github.com/gethugothemes/hugo-modules/seo-tools/baidu-analytics"
|
||||
|
||||
# [[imports]]
|
||||
# path = "github.com/gethugothemes/hugo-modules/seo-tools/matomo-analytics"
|
||||
|
||||
# [[imports]]
|
||||
# path = "github.com/gethugothemes/hugo-modules/seo-tools/plausible-analytics"
|
||||
|
||||
# [[imports]]
|
||||
# path = "github.com/gethugothemes/hugo-modules/seo-tools/counter-analytics"
|
@@ -1,101 +0,0 @@
|
||||
#################### default parameters ################################
|
||||
# favicon module: https://github.com/gethugothemes/hugo-modules/tree/master/images#favicon-implementation
|
||||
favicon = "images/snigdhaos-favicon.png"
|
||||
# logo module: https://github.com/gethugothemes/hugo-modules/tree/master/images#logo-implementation
|
||||
logo = "images/snigdhaos-hello.svg"
|
||||
logo_darkmode = "images/snigdhaos-hello.svg"
|
||||
# use `px` or `x` with logo_width, example: "100px".
|
||||
# Note: logo_width is not work with .svg file
|
||||
logo_width = "160px"
|
||||
logo_height = "32px"
|
||||
# if logo_webp set false, will not generate WEBP version of logo | default is true
|
||||
logo_webp = true
|
||||
# logo text will only show when logo is missing.
|
||||
logo_text = "SNIGDHA OS"
|
||||
# navbar fixed to top
|
||||
navbar_fixed = true
|
||||
# theme-mode
|
||||
theme_switcher = true
|
||||
theme_default = "system" # available options [light/dark/system]
|
||||
# Main Sections
|
||||
mainSections = ["blog"]
|
||||
# contact form action
|
||||
contact_form_action = "#" # contact form works with [https://airform.io/] or [https://formspree.io]
|
||||
# google tag manager, see https://developers.google.com/tag-manager/
|
||||
google_tag_manager = "" # example: G-XXXXXXXXXX
|
||||
google_adsense = "" # example: ca-pub-xxxxxxxxxxxxxxxx
|
||||
# custom script on header, example: custom_script= "<script>console.log(\"Hello World\")</script>"
|
||||
custom_script = ""
|
||||
# copyright
|
||||
copyright = "Copright SNIGDHAOS.ORG ❤️ ALL RIGHTS RESERVED."
|
||||
|
||||
# Preloader
|
||||
# preloader module: https://github.com/gethugothemes/hugo-modules/tree/master/components/preloader
|
||||
[preloader]
|
||||
enable = false
|
||||
preloader = "" # use jpg, png, svg or gif format.
|
||||
|
||||
# Navigation button
|
||||
[navigation_button]
|
||||
enable = true
|
||||
label = "GitHub"
|
||||
link = "https://github.com/Snigdha-OS"
|
||||
|
||||
# search
|
||||
# search module: https://github.com/gethugothemes/hugo-modules/tree/master/search
|
||||
[search]
|
||||
enable = true
|
||||
primary_color = "#121212"
|
||||
include_sections = ["blog"]
|
||||
show_image = true
|
||||
show_description = true
|
||||
show_tags = true
|
||||
show_categories = true
|
||||
|
||||
|
||||
# seo meta data for OpenGraph / Twitter Card
|
||||
# seo module: https://github.com/gethugothemes/hugo-modules/tree/master/seo-tools/basic-seo
|
||||
[metadata]
|
||||
keywords = ["Snigdha-OS", "Snigdha"]
|
||||
description = "Be silent when it is time to hear"
|
||||
author = "eshanized"
|
||||
image = "images/snigdhaos-showcase.png"
|
||||
|
||||
|
||||
# site verifications
|
||||
# verification module: https://github.com/gethugothemes/hugo-modules/tree/master/seo-tools/site-verifications
|
||||
[site_verification]
|
||||
google = "" # Your verification code
|
||||
bing = "" # Your verification code
|
||||
baidu = "" # Your verification code
|
||||
facebook = "" # Your verification code
|
||||
mastodon = "" # Your verification code
|
||||
|
||||
# cookies
|
||||
# cookies module: https://github.com/gethugothemes/hugo-modules/tree/master/components/cookie-consent
|
||||
[cookies]
|
||||
enable = true
|
||||
expire_days = 30
|
||||
content = "Your privacy matters to us. 🌟 We use cookies to provide social media features, and to analyze our traffic. By clicking 'Accept,' you consent to the use of ALL the cookies. Thank you for trusting us with your data privacy journey. ✨"
|
||||
button = "Accept"
|
||||
|
||||
######################## sidebar widgets #########################
|
||||
[widgets]
|
||||
sidebar = ["categories", "tags"]
|
||||
|
||||
|
||||
# google map
|
||||
[google_map]
|
||||
enable = false
|
||||
map_api_key = "AIzaSyCcABaamniA6OL5YvYSpB3pFMNrXwXnLwU"
|
||||
map_latitude = "51.5223477"
|
||||
map_longitude = "-0.1622023"
|
||||
map_marker = "images/marker.png"
|
||||
|
||||
|
||||
# Subscription
|
||||
[subscription]
|
||||
enable = false
|
||||
# mailchimp subsciption
|
||||
mailchimp_form_action = "https://gmail.us4.list-manage.com/subscribe/post?u=463ee871f45d2d93748e77cad&id=a0a2c6d074" # replace this url with yours
|
||||
mailchimp_form_name = "b_463ee871f45d2d93748e77cad_a0a2c6d074"
|
@@ -1,69 +0,0 @@
|
||||
---
|
||||
# Banner
|
||||
banner:
|
||||
title: "Blazing Fast🚀<br>Optimal Performance🕛"
|
||||
content: "Snigdha OS is an Arch based Linux Distribution (*Known as <ins>**Distro**</ins>). It is light-weight, easy to use interface (***DE: Gnome**), clean and minimal, get a wide range of options during installation. It has been developed as minimal and bloatware free OS. Which is known as **Snigdha OS Arctic**. Click on the <ins>**Download**</ins> button and experience a new and modern linux distribution. "
|
||||
image: "/images/snigdhaos-icon.svg"
|
||||
button:
|
||||
enable: true
|
||||
label: "Download"
|
||||
link: "https://github.com/Snigdha-OS/"
|
||||
|
||||
# Features
|
||||
features:
|
||||
- title: "SNIGDHA OS CLOUD"
|
||||
image: "/images/snigdhaos-cloud-banner.svg"
|
||||
content: "Snigdha OS Cloud is a cloud-based file storage service developed by Snigdha OS. It allows users to store files in the cloud and share files and folders with others.<br> Powered by: **TONMOY INFRASTRUCTURE™**"
|
||||
bulletpoints:
|
||||
- "1 GB* Free Cloud Storage"
|
||||
- "Powerful search capabilities"
|
||||
- "Prioritizes the security of user data through encryption"
|
||||
- "Share files or folders with specific individuals or groups"
|
||||
- "Easy to Use Interface"
|
||||
# - "**Open-source and free** for personal and commercial use"
|
||||
button:
|
||||
enable: true
|
||||
label: "Go to Cloud"
|
||||
link: "https://cloud.snigdhaos.org/"
|
||||
|
||||
- title: "SNIGDHA OS FORUM"
|
||||
image: "/images/snigdhaos-forum-banner.svg"
|
||||
content: "**Snigdha OS Forum** offers a platform for users to engage in discussions, share information, ask questions, and connect with others who share similar interests. Get help from Admins, Mods and Members."
|
||||
bulletpoints:
|
||||
- "Organizes discussions into threads."
|
||||
- "Navigate discussions and find relevant content more easily"
|
||||
- "Profile that displays information such as username, bio, avatar, join date, and post count"
|
||||
- "Moderation tools to help maintain a healthy community environment"
|
||||
- "Features for creating and participating in polls and surveys."
|
||||
- "Optimized for mobile devices, allowing users to access and participate in discussions on smartphones and tablets"
|
||||
button:
|
||||
enable: true
|
||||
label: "Go to Forum"
|
||||
link: "https://forum.snigdhaos.org/"
|
||||
|
||||
- title: "SNIGDHA OS TOOLS"
|
||||
image: "/images/snigdhaos-tools-banner.svg"
|
||||
content: "Snigdha OS Provides Web Based Tools. Other websites charges an amount after you use certain limit. But Snigdha OS Tools doesn't charge you and usage limit is unlimited."
|
||||
bulletpoints:
|
||||
- "100% free of cost."
|
||||
- "More than 1500 Web Tools."
|
||||
- "No signup required."
|
||||
- "Unlimited Usage without any condition."
|
||||
button:
|
||||
enable: true
|
||||
label: "Go to Tools"
|
||||
link: "https://tools.snigdhaos.org"
|
||||
|
||||
- title: "SNIGDHA OS UPTIME"
|
||||
image: "/images/snigdhaos-uptime-banner.svg"
|
||||
content: "Snigdha OS Uptime helps website owners or administrators track the availability and performance of their websites. It continuously monitors websites from various locations around the world and alert the website owner if there are any issues such as downtime or slow loading times."
|
||||
bulletpoints:
|
||||
- "100% free of costs"
|
||||
- "Unlimited website monitor"
|
||||
- "Dedicated status page for monitoring"
|
||||
- "Supports custom domain & notification alerts"
|
||||
button:
|
||||
enable: true
|
||||
label: "Go to Uptime"
|
||||
link: "https://uptime.snigdhaos.org/"
|
||||
---
|
@@ -1,26 +0,0 @@
|
||||
---
|
||||
title: "SNIGDHA OS WELCOMES YOU, MASTER!"
|
||||
meta_title: "About"
|
||||
description: "Short Overview or About Snigdha OS"
|
||||
image: "/images/snigdhaos-icon.svg"
|
||||
draft: false
|
||||
---
|
||||
|
||||
**Snigdha OS** is a lightweight and highly customizable Penetration testing distribution based on **Arch Linux** and **Zen Kernel** known for its simplicity, flexibility, and focus on user-centric design. We aim to provide prioritize ease of use or pre-configured environments, We are trying to provide a minimalist approach, providing users with a bare-bones system upon installation, allowing them to build and configure their operating system to suit their specific needs and preferences.
|
||||
|
||||
Key features of **Snigdha OS** include:
|
||||
|
||||
🎯 Rolling Release Model: **Snigdha OS** follows a rolling release model <sup>[?](https://en.wikipedia.org/wiki/Rolling_release)</sup>, which means that instead of releasing fixed, periodic updates, packages are continuously updated to their latest versions. This ensures users have access to the latest software releases without the need for major system upgrades.
|
||||
|
||||
🎯 Package Manager: **Snigdha OS** utilizes the Pacman<sup>[?](https://wiki.archlinux.org/title/pacman)</sup> package manager for package management. Pacman is a powerful command-line tool that allows users to easily install, update, and remove software packages from the Arch repositories as well as from the Arch User Repository (AUR), a community-driven repository of user-contributed packages. **Snigdha OS** also comes with both [Pamac](https://wiki.manjaro.org/index.php/Pamac) & [Octopi](https://tintaescura.com/projects/octopi/).
|
||||
|
||||
🎯 Minimalist Installation: **Snigdha OS** installation provides users with a minimal base system, allowing users to customize their system from the ground up. During installation, users have complete control over which components and packages to install, enabling them to create a system tailored to their specific requirements.
|
||||
|
||||
🎯 Arch User Repository (AUR): The Arch User Repository is a vast collection of user-contributed packages that are not officially maintained by **Arch Linux** developers. It allows users to easily install software that is not available in the official repositories, expanding the range of available software options. We also provide support for **Chaotic-AUR.**
|
||||
|
||||
🎯 Documentation and Community Support: **Snigdha OS** boasts extensive documentation which provides detailed guides, tutorials, and troubleshooting information for users at all levels of expertise. Additionally, the **Snigdha OS** community is known for its active and helpful forums, where users can seek assistance, share knowledge, and collaborate on projects.
|
||||
|
||||
Overall, **Snigdha OS** appeals to users who value simplicity, customization, and the ability to fine-tune their system to meet their specific requirements. It's an ideal choice for users who enjoy the process of building and maintaining their Linux environment.
|
||||
|
||||
## About the Authors:
|
||||
- [ESHANIZED](/authors/eshanized/)
|
@@ -1,3 +0,0 @@
|
||||
---
|
||||
title: "Authors"
|
||||
---
|
@@ -1,36 +0,0 @@
|
||||
---
|
||||
title: Eshanized
|
||||
email: eshan@snigdhaos.org
|
||||
image: "https://github.com/Snigdha-OS/Snigdha-OS.github.io/blob/master/assets/images/eshanized-face.png?raw=True"
|
||||
description: this is meta description
|
||||
social:
|
||||
- name: github
|
||||
icon: fa-brands fa-github
|
||||
link: https://github.com/eshanized
|
||||
|
||||
- name: twitter
|
||||
icon: fa-brands fa-twitter
|
||||
link: https://twitter.com/eshanized
|
||||
|
||||
- name: linkedin
|
||||
icon: fa-brands fa-linkedin
|
||||
link: https://linkedin.com/in/eshanized
|
||||
|
||||
- name: facebook
|
||||
icon: fa-brands fa-facebook
|
||||
link: https://facebook.com/eshanized
|
||||
|
||||
- name: instagram
|
||||
icon: fa-brands fa-instagram
|
||||
link: https://instagram.com/eshanized
|
||||
---
|
||||
|
||||
{{< notice "About" >}}
|
||||
Lead Maintainer & Developer
|
||||
{{< /notice >}}
|
||||
|
||||
```bash
|
||||
#!/bin/bash
|
||||
echo -e "BE SILENT WHEN IT IS TIME TO HEAR!"
|
||||
```
|
||||
To leverage my expertise in computer science and systems programming to contribute to the creation and enhancement of cutting-edge operating systems.I aim to specialize in kernel development, device drivers, and system architecture, mastering the intricacies of operating system internals to optimize performance and reliability.
|
@@ -1,10 +0,0 @@
|
||||
---
|
||||
title: Iconized
|
||||
email: icon@snigdhaos.org
|
||||
image: "https://github.com/eshanized/eshanized/blob/main/eshanized_square.png?raw=True"
|
||||
description: this is meta description
|
||||
social:
|
||||
- name: github
|
||||
icon: fa-brands fa-github
|
||||
link: https://github.com/iconized
|
||||
---
|
@@ -1,5 +0,0 @@
|
||||
---
|
||||
title: "Blog"
|
||||
meta_title: "Blog"
|
||||
description: "Discover Articles Related Snigdha OS & More"
|
||||
---
|
@@ -1,94 +0,0 @@
|
||||
---
|
||||
title: "How to check package version on Snigdha OS?"
|
||||
meta_title: "How to check package version on Snigdha OS?"
|
||||
description: "How to check package version on Snigdha OS?"
|
||||
# date: 2024-04-14T05:00:00Z
|
||||
# image: "/images/snigdhaos-versioning.png"
|
||||
categories: ["Information"]
|
||||
author: "Eshanized"
|
||||
tags: ["version"]
|
||||
draft: false
|
||||
---
|
||||
|
||||
## What is Package Version?
|
||||
A package version refers to a specific release of a software package or library. It is a unique identifier that allows users and systems to distinguish one version of the software from another. Package versions are typically represented using a combination of numbers and possibly letters or other characters, following a specific format.
|
||||
|
||||
Here are some common components of a package version:
|
||||
|
||||
**Major Version**: This is the primary version number and is incremented when significant, usually backward-incompatible changes are made to the software. For example, moving from version 1 to version 2 indicates a major update with potentially substantial changes.
|
||||
|
||||
**Minor Version**: The minor version number is incremented for smaller updates that may include new features or enhancements but do not introduce significant changes that would break compatibility with existing code. For example, going from version 1.0 to 1.1 signifies a minor update.
|
||||
|
||||
**Patch Version**: Also known as the maintenance or revision number, the patch version is incremented for releases that primarily address bugs, security vulnerabilities, or other issues without introducing new features. For example, moving from version 1.1.0 to 1.1.1 indicates a patch release.
|
||||
|
||||
**Pre-release and Build Metadata**: Some package versions include additional information such as pre-release identifiers (e.g., alpha, beta, rc for release candidates) or build metadata (e.g., a timestamp or commit hash) to provide further context about the version. These components typically appear after the main version number and are separated by hyphens or other delimiters.
|
||||
|
||||
{{< notice "Example" >}}
|
||||
|
||||
A package version might look like this: `2.1.0-beta.1+20220315`.
|
||||
|
||||
In this version:
|
||||
- Major version: 2
|
||||
- Minor version: 1
|
||||
- Patch version: 0
|
||||
- Pre-release identifier: beta.1
|
||||
- Build metadata: 20220315
|
||||
{{< /notice >}}
|
||||
|
||||
> Package versions are crucial for software development, deployment, and dependency management. They allow developers to communicate changes effectively, ensure compatibility between different versions of software components, and track which version of a package is installed in a system or project. Various versioning schemes exist, and different projects may follow different conventions, but the underlying purpose remains the same: to provide clear and unambiguous versioning for software packages.
|
||||
|
||||
## Checking package version
|
||||
To find out an installed package(Eg. Visual Studio Code) version in Snigdha OS, run the following command:
|
||||
```bash
|
||||
sudo pacman -Q visual-studio-code-bin
|
||||
```
|
||||
or
|
||||
```bash
|
||||
q visual-studio-code-bin
|
||||
```
|
||||
|
||||
{{< notice "Output" >}}
|
||||
```bash
|
||||
visual-studio-code-bin 1.88.1-1
|
||||
```
|
||||
{{< /notice >}}
|
||||
|
||||
If you want in depth then execute the following in the terminal:
|
||||
```bash
|
||||
sudo pacman -Qi visual-studio-code-bin
|
||||
```
|
||||
or
|
||||
```bash
|
||||
qi visual-studio-code-bin
|
||||
```
|
||||
|
||||
{{< notice "Output" >}}
|
||||
```bash
|
||||
Name : visual-studio-code-bin
|
||||
Version : 1.88.1-1
|
||||
Description : Visual Studio Code (vscode): Editor for building and debugging
|
||||
modern web and cloud applications (official binary version)
|
||||
Architecture : x86_64
|
||||
URL : https://code.visualstudio.com/
|
||||
Licenses : custom: commercial
|
||||
Groups : None
|
||||
Provides : code vscode
|
||||
Depends On : libxkbfile gnupg gtk3 libsecret nss gcc-libs libnotify
|
||||
libxss glibc lsof shared-mime-info xdg-utils alsa-lib
|
||||
Optional Deps : glib2: Needed for move to trash functionality [installed]
|
||||
libdbusmenu-glib: Needed for KDE global menu [installed]
|
||||
org.freedesktop.secrets: Needed for settings sync [installed]
|
||||
icu69: Needed for live share
|
||||
Required By : None
|
||||
Optional For : None
|
||||
Conflicts With : code
|
||||
Replaces : None
|
||||
Installed Size : 361.31 MiB
|
||||
Packager : Garuda Builder <team@garudalinux.org>
|
||||
Build Date : Sat 13 Apr 2024 08:41:36 PM IST
|
||||
Install Date : Sun 14 Apr 2024 05:52:35 AM IST
|
||||
Install Reason : Explicitly installed
|
||||
Install Script : Yes
|
||||
Validated By : SHA-256 Sum Signature
|
||||
```
|
||||
{{< /notice >}}
|
@@ -1,29 +0,0 @@
|
||||
---
|
||||
title: "What is Linux Zen Patched Kernel?"
|
||||
meta_title: "What is Linux Zen Patched Kernel?"
|
||||
description: "What is Linux Zen Patched Kernel?"
|
||||
# image: "/images/linux-kernel.jpg"
|
||||
categories: ["Information"]
|
||||
author: "Iconized"
|
||||
tags: ["Information"]
|
||||
draft: false
|
||||
---
|
||||
The Linux Zen Kernel is a customized version of the Linux kernel aimed at providing users with enhanced performance, responsiveness, and power management features. It's designed to optimize the kernel for desktop, workstation, and gaming use cases.
|
||||
|
||||
Here are some key aspects of the Linux Zen Kernel:
|
||||
|
||||
1. **Performance Optimization**: The Zen Kernel is tuned for performance, prioritizing low-latency and fast response times. This is particularly beneficial for tasks that require quick interactions, such as gaming or multimedia editing.
|
||||
|
||||
2. **Improved Responsiveness**: One of the main goals of the Zen Kernel is to improve system responsiveness. This means reducing the delay between user input and system response, resulting in a smoother and more fluid user experience.
|
||||
|
||||
3. **Power Management**: The Zen Kernel also focuses on efficient power management, which is crucial for laptops and other battery-powered devices. By optimizing power usage, it can extend battery life and improve energy efficiency.
|
||||
|
||||
4. **Desktop and Workstation Use**: While the mainline Linux kernel is designed to be versatile and suitable for various use cases, the Zen Kernel specifically targets desktop and workstation environments. This specialization allows developers to fine-tune the kernel for these specific scenarios, optimizing performance and stability.
|
||||
|
||||
5. **Gaming Support**: Gaming on Linux has gained popularity over the years, and the Zen Kernel aims to provide an optimized environment for gaming enthusiasts. This includes features like better CPU scheduling, reduced input lag, and support for the latest hardware technologies commonly used in gaming rigs.
|
||||
|
||||
6. **Customization Options**: Like other custom kernel variants, the Zen Kernel offers users the flexibility to enable or disable specific features based on their requirements. This allows users to tailor the kernel to their hardware and workload, potentially improving performance even further.
|
||||
|
||||
7. **Community-driven Development**: The Zen Kernel project is driven by a community of developers and enthusiasts who collaborate to enhance the kernel's features and performance. This open development model encourages transparency, innovation, and feedback from users.
|
||||
|
||||
It's important to note that while the Zen Kernel offers several optimizations compared to the mainline Linux kernel, it may not be suitable for every use case. Users should evaluate their specific requirements and test the Zen Kernel to determine if it provides the desired improvements in performance and responsiveness for their systems. Additionally, as with any custom kernel, users should ensure compatibility with their hardware and software ecosystem before switching to the Zen Kernel.
|
@@ -1,31 +0,0 @@
|
||||
---
|
||||
title: "Linux Penetration Distribution?"
|
||||
meta_title: "Linux Penetration Distribution?"
|
||||
description: "Linux Penetration Distribution?"
|
||||
categories: ["Information"]
|
||||
author: "Iconized"
|
||||
tags: ["Information"]
|
||||
draft: false
|
||||
---
|
||||
A Linux penetration testing distribution, often referred to as a "penetration distro" or "pentesting distro," is a specialized Linux distribution designed for cybersecurity professionals, ethical hackers, and security researchers to conduct security assessments, vulnerability assessments, penetration testing, and digital forensics. These distributions come pre-installed with a wide range of tools and utilities specifically tailored for assessing and securing computer systems, networks, and applications.
|
||||
|
||||
Some common features and characteristics of Linux penetration testing distributions include:
|
||||
|
||||
1. **Pre-installed Tools**: Penetration testing distributions typically include a vast array of pre-installed tools for various purposes such as network scanning, vulnerability assessment, web application testing, password cracking, packet sniffing, and exploitation. These tools cover a broad spectrum of cybersecurity domains to facilitate comprehensive security assessments.
|
||||
|
||||
2. **User-Friendly Interfaces**: Many penetration testing distributions feature user-friendly graphical interfaces, making it easier for users who are not necessarily command-line experts to access and utilize the tools effectively. However, they also often provide robust command-line interfaces for advanced users who prefer a more hands-on approach.
|
||||
|
||||
3. **Live Environment**: Most penetration testing distributions can be booted directly from a live CD, USB drive, or run within a virtual machine without the need for installation. This allows security professionals to conduct security assessments on target systems without modifying or affecting the host environment.
|
||||
|
||||
4. **Documentation and Tutorials**: Penetration testing distributions often come with comprehensive documentation, tutorials, and guides to help users understand how to use the tools effectively and conduct various types of security assessments. This educational aspect is crucial for individuals who are new to cybersecurity or specific testing methodologies.
|
||||
|
||||
5. **Community Support**: Many penetration testing distributions are supported by active communities of cybersecurity professionals, ethical hackers, and enthusiasts who contribute to the development, improvement, and support of the distribution. Users can seek help, share knowledge, and collaborate with others in the community to enhance their skills and capabilities.
|
||||
|
||||
Examples of popular Linux penetration testing distributions include:
|
||||
|
||||
- Kali Linux: Perhaps the most well-known and widely used penetration testing distribution, Kali Linux provides a comprehensive collection of tools for penetration testing, forensics, and reverse engineering.
|
||||
- Parrot Security OS: Parrot Security OS is a Debian-based distribution that includes a variety of tools for penetration testing, digital forensics, and privacy protection.
|
||||
- BackBox: BackBox is an Ubuntu-based distribution focused on network analysis, ethical hacking, and vulnerability assessment.
|
||||
- BlackArch Linux: BlackArch Linux is an Arch Linux-based distribution that offers a vast repository of specialized tools for penetration testing and security research.
|
||||
|
||||
These distributions are continuously updated to incorporate new tools, features, and security enhancements to meet the evolving needs of cybersecurity professionals and keep pace with the rapidly changing threat landscape.
|
@@ -1,6 +0,0 @@
|
||||
---
|
||||
title: "Contact"
|
||||
meta_title: ""
|
||||
description: "this is meta description"
|
||||
draft: false
|
||||
---
|
@@ -1,239 +0,0 @@
|
||||
---
|
||||
title: "Elements"
|
||||
# meta title
|
||||
meta_title: ""
|
||||
# meta description
|
||||
description: "This is meta description"
|
||||
# save as draft
|
||||
draft: false
|
||||
---
|
||||
|
||||
{{< toc >}}
|
||||
|
||||
Here is an example of headings. You can use this heading by the following markdown rules. For example: use `#` for heading 1 and use `######` for heading 6.
|
||||
|
||||
# Heading 1
|
||||
|
||||
## Heading 2
|
||||
|
||||
### Heading 3
|
||||
|
||||
#### Heading 4
|
||||
|
||||
##### Heading 5
|
||||
|
||||
###### Heading 6
|
||||
|
||||
<hr>
|
||||
|
||||
### Emphasis
|
||||
|
||||
The emphasis, aka italics, with _asterisks_ or _underscores_.
|
||||
|
||||
Strong emphasis, aka bold, with **asterisks** or **underscores**.
|
||||
|
||||
The combined emphasis with **asterisks and _underscores_**.
|
||||
|
||||
Strike through uses two tildes. ~~Scratch this.~~
|
||||
|
||||
<hr>
|
||||
|
||||
### Button
|
||||
|
||||
{{< button label="Button" link="/" style="solid" >}}
|
||||
|
||||
<hr>
|
||||
|
||||
### Link
|
||||
|
||||
[I'm an inline-style link](https://www.google.com)
|
||||
|
||||
[I'm an inline-style link with title](https://www.google.com "Google's Homepage")
|
||||
|
||||
[I'm a reference-style link][Arbitrary case-insensitive reference text]
|
||||
|
||||
[I'm a relative reference to a repository file](../blob/master/LICENSE)
|
||||
|
||||
[You can use numbers for reference-style link definitions][1]
|
||||
|
||||
Or leave it empty and use the [link text itself].
|
||||
|
||||
URLs and URLs in angle brackets will automatically get turned into links.
|
||||
<http://www.example.com> or <http://www.example.com> and sometimes
|
||||
example.com (but not on Github, for example).
|
||||
|
||||
Some text to show that the reference links can follow later.
|
||||
|
||||
[arbitrary case-insensitive reference text]: https://www.themefisher.com
|
||||
[1]: https://gethugothemes.com
|
||||
[link text itself]: https://www.getjekyllthemes.com
|
||||
|
||||
<hr>
|
||||
|
||||
### Paragraph
|
||||
|
||||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam nihil enim maxime corporis cumque totam aliquid nam sint inventore optio modi neque laborum officiis necessitatibus, facilis placeat pariatur! Voluptatem, sed harum pariatur adipisci voluptates voluptatum cumque, porro sint minima similique magni perferendis fuga! Optio vel ipsum excepturi tempore reiciendis id quidem? Vel in, doloribus debitis nesciunt fugit sequi magnam accusantium modi neque quis, vitae velit, pariatur harum autem a! Velit impedit atque maiores animi possimus asperiores natus repellendus excepturi sint architecto eligendi non, omnis nihil. Facilis, doloremque illum. Fugit optio laborum minus debitis natus illo perspiciatis corporis voluptatum rerum laboriosam.
|
||||
|
||||
<hr>
|
||||
|
||||
### Ordered List
|
||||
|
||||
1. List item
|
||||
2. List item
|
||||
3. List item
|
||||
4. List item
|
||||
5. List item
|
||||
|
||||
<hr>
|
||||
|
||||
### Unordered List
|
||||
|
||||
- List item
|
||||
- List item
|
||||
- List item
|
||||
- List item
|
||||
- List item
|
||||
|
||||
<hr>
|
||||
|
||||
### Notice
|
||||
|
||||
{{< notice "note" >}}
|
||||
This is a simple note.
|
||||
{{< /notice >}}
|
||||
|
||||
{{< notice "tip" >}}
|
||||
This is a simple tip.
|
||||
{{< /notice >}}
|
||||
|
||||
{{< notice "info" >}}
|
||||
This is a simple info.
|
||||
{{< /notice >}}
|
||||
|
||||
{{< notice "warning" >}}
|
||||
This is a simple warning.
|
||||
{{< /notice >}}
|
||||
|
||||
<hr>
|
||||
|
||||
### Tab
|
||||
|
||||
{{< tabs >}}
|
||||
{{< tab "Tab 1" >}}
|
||||
|
||||
#### Hey There, I am a tab
|
||||
|
||||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
||||
|
||||
{{< /tab >}}
|
||||
|
||||
{{< tab "Tab 2" >}}
|
||||
|
||||
#### I wanna talk about the assassination attempt
|
||||
|
||||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
||||
|
||||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
||||
|
||||
{{< /tab >}}
|
||||
|
||||
{{< tab "Tab 3" >}}
|
||||
|
||||
#### We know you’re dealing in stolen ore
|
||||
|
||||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
||||
|
||||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo
|
||||
|
||||
{{< /tab >}}
|
||||
{{< /tabs >}}
|
||||
|
||||
<hr>
|
||||
|
||||
### Accordions
|
||||
|
||||
{{< accordion "Why should you need to do this?" >}}
|
||||
|
||||
- Lorem ipsum dolor sit amet consectetur adipisicing elit.
|
||||
- Lorem ipsum dolor sit amet consectetur adipisicing elit.
|
||||
- Lorem ipsum dolor sit amet consectetur
|
||||
|
||||
{{< /accordion >}}
|
||||
|
||||
{{< accordion "How can I adjust Horizontal centering" >}}
|
||||
|
||||
- Lorem ipsum dolor sit amet consectetur adipisicing elit.
|
||||
- Lorem ipsum dolor sit amet consectetur adipisicing elit.
|
||||
- Lorem ipsum dolor sit amet consectetur
|
||||
|
||||
{{< /accordion >}}
|
||||
|
||||
{{< accordion "Should you use Negative margin?" >}}
|
||||
|
||||
- Lorem ipsum dolor sit amet consectetur adipisicing elit.
|
||||
- Lorem ipsum dolor sit amet consectetur adipisicing elit.
|
||||
- Lorem ipsum dolor sit amet consectetur
|
||||
|
||||
{{< /accordion >}}
|
||||
|
||||
<hr>
|
||||
|
||||
### Code and Syntax Highlighting
|
||||
|
||||
This is an `Inline code` sample.
|
||||
|
||||
```javascript
|
||||
var s = "JavaScript syntax highlighting";
|
||||
alert(s);
|
||||
```
|
||||
|
||||
```python
|
||||
s = "Python syntax highlighting"
|
||||
print s
|
||||
```
|
||||
|
||||
<hr>
|
||||
|
||||
### Blockquote
|
||||
|
||||
> Did you come here for something in particular or just general Riker-bashing? And blowing into maximum warp speed, you appeared for an instant to be in two places at once.
|
||||
|
||||
<hr>
|
||||
|
||||
### Tables
|
||||
|
||||
| Tables | Are | Cool |
|
||||
| ------------- | :-----------: | ----: |
|
||||
| col 3 is | right-aligned | $1600 |
|
||||
| col 2 is | centered | $12 |
|
||||
| zebra stripes | are neat | $1 |
|
||||
|
||||
<hr>
|
||||
|
||||
### Image
|
||||
|
||||
{{< image src="images/image-placeholder.png" caption="" alt="alter-text" height="" width="" position="center" command="fill" option="q100" class="img-fluid" title="image title" webp="false" >}}
|
||||
|
||||
<hr>
|
||||
|
||||
### Gallery
|
||||
|
||||
{{< gallery dir="images/gallery" class="" height="400" width="400" webp="true" command="Fit" option="" zoomable="true" >}}
|
||||
|
||||
<hr>
|
||||
|
||||
### Slider
|
||||
|
||||
{{< slider dir="images/gallery" class="max-w-[600px] ml-0" height="400" width="400" webp="true" command="Fit" option="" zoomable="true" >}}
|
||||
|
||||
<hr>
|
||||
|
||||
### Youtube video
|
||||
|
||||
{{< youtube ResipmZmpDU >}}
|
||||
|
||||
<hr>
|
||||
|
||||
### Custom video
|
||||
|
||||
{{< video src="https://www.w3schools.com/html/mov_bbb.mp4" width="100%" height="auto" autoplay="false" loop="false" muted="false" controls="true" class="rounded-lg" >}}
|
@@ -1,11 +0,0 @@
|
||||
---
|
||||
title: "Get Started"
|
||||
# meta title
|
||||
meta_title: "Get Started"
|
||||
# meta description
|
||||
description: "Get Started With Snigdha OS"
|
||||
# save as draft
|
||||
draft: false
|
||||
---
|
||||
|
||||
This will help you to get started with Snigdha OS.
|
@@ -1,214 +0,0 @@
|
||||
---
|
||||
title: "Privacy"
|
||||
# meta title
|
||||
meta_title: "Privacy Policy"
|
||||
# meta description
|
||||
description: "Snigdha OS Privacy Policy"
|
||||
# save as draft
|
||||
draft: false
|
||||
---
|
||||
|
||||
Version: 2024-04-25
|
||||
|
||||
# Privacy Policy
|
||||
|
||||
## 1. Privacy Policy
|
||||
|
||||
The Snigdha OS Team (hereinafter referred to as "Snigdha OS" or "we") operates the website and its services available on the Internet at https://snigdhaos.org/ including the respective sub-directories (hereinafter referred to as the "website").
|
||||
|
||||
With this privacy policy, we would like to inform you which data will be processed in which form when you visit the website or use its services. Where the GDPR applies, we hereby also comply with our duty to inform you in accordance with Art. 13 and Art. 14 of the EU-General Data Protection Regulation (GDPR).
|
||||
|
||||
## 2. Controller
|
||||
|
||||
The controller for the data processing on our website is the Snigdha OS Team. And the lead maintainer [Eshan Roy](https://eshanized.github.io)
|
||||
|
||||
Email: privacy@snigdhaos.org
|
||||
|
||||
## 3. Purposes, legal bases and storage period
|
||||
|
||||
### 3.1. General use of the platform
|
||||
|
||||
The web server of our hosting service provider automatically records the accesses to our website. Therefore, when you visit our website, you transmit certain technical data to us, namely:
|
||||
|
||||
- IP address,
|
||||
- accessed content,
|
||||
- information about the transmission,
|
||||
- date of access,
|
||||
- the amount of data transmitted,
|
||||
- the referrer,
|
||||
- the web browser/user agent.
|
||||
|
||||
Where the GDPR applies, the processing of the IP address when establishing a connection is based on Art. 6 par. 1 lit. b) GDPR to provide the website you requested.
|
||||
|
||||
Our host also creates so-called log files to maintain system security, in order to guarantee the security and integrity of our IT systems. These purposes also represent the legitimate interest for which the processing is carried out (Art. 6 par. 1 lit. f) GDPR). We store the log files for a period of 91 days and delete them afterwards.
|
||||
|
||||
### 3.2. Registering for a user account
|
||||
|
||||
Some of our services require that you sign up and create a user account(e.g Snigdha OS Cloud). For this purpose we will collect and process your user name, email address and a password. We will send you a validation email to the email address you have provided. Where the GDPR applies, the legal basis for the processing is Art. 6 para. 1 lit. b) GDPR.
|
||||
|
||||
When you use our services we will collect certain information from you and associate it with your account, such as:
|
||||
|
||||
- password for the cloud service, the forums, uptime,
|
||||
- github username (for issue tracker)
|
||||
- IRC nickname,
|
||||
- IP address,
|
||||
- language preference\*,
|
||||
- timezone,
|
||||
- geographic coordinates (longitude/latitude),
|
||||
|
||||
\* Your language preference will be asked if we need to translate our website & services. Till now, we don't need your language preferences. If user requests for translation, we will collect your language preference.
|
||||
|
||||
We generally process your personal data for as long as you have an account with us and delete it afterwards.
|
||||
|
||||
## 4. Services of the websites
|
||||
|
||||
Our websites offer you a range of services for which we process certain personal data:
|
||||
|
||||
### 4.1. [Forum](https://forum.snigdhaos.org/)
|
||||
|
||||
You can read in our forums without giving us any personal data. However, if you wish to participate by posting entries, we will ask you to sign up for an account. In this case, we will collect your user name, email address and a captcha question. You are able to select if you wish that other users could see your email address and if other users shall be able to send you mails via the forums mail function. Furthermore, you can set location options as time zone and language preference.
|
||||
|
||||
We process your data to provide you with the account, the forums and the respective functions. The captcha question is required to avoid abuse by spammers using automated tools to post their content and links to many sites. We process your location options and language preferences to provide you with the according account settings.
|
||||
|
||||
When you post comments, we display certain information about your user account next to your post such as user name, registration date, and country of origin (if you add these personal details in your user account).
|
||||
|
||||
Where the GDPR applies, the legal basis for the processing is Art. 6 para. 1 lit. b) GDPR. In case you delete your account, we store your entries based on our legitimate interest of a consistent forums according to Art. 6 para. 1 lit. f) GDPR, but we anonymize the author of your entries.
|
||||
|
||||
### 4.2. [Documentation](https://snigdhaos.org/documentation/)
|
||||
|
||||
You can read in our documentation without giving us any personal data. However, if you wish to participate creating entries, you will need your github account. In this case, we will collect your user name and email address. Furthermore, you can set location options as time zone and language preference.
|
||||
|
||||
We process your data to provide you with the account, the documentation and the respective functions. The captcha question is required to avoid abuse by spammers using automated tools to post their content and links to many sites. We process your location options and language preferences to provide you with the according account settings. When you contribute entries, we display certain information about your user account next to your entries such as user name, registration date, and country of origin (if you add these personal details in your user account).
|
||||
|
||||
### 4.3. [Cloud](https://cloud.snigdhaos.org)
|
||||
|
||||
This Privacy Policy describes how Snigdha OS Cloud ("we", "us", or "our") collects, uses, and shares information when you use our website and services ("Services"). By using our Services, you agree to the collection and use of information in accordance with this policy.
|
||||
|
||||
**Information We Collect**
|
||||
|
||||
1. **Personal Information**: When you sign up for an account, we collect personal information such as your name, email address, and payment information. We may also collect additional information you choose to provide, such as profile pictures or contact information.
|
||||
|
||||
2. **Usage Information**: We collect information about how you interact with our Services, such as the files you upload, download, or share, your IP address, browser type, and operating system.
|
||||
|
||||
3. **Cookies and Similar Technologies**: We use cookies and similar tracking technologies to enhance your experience and collect information about your usage patterns on our website.
|
||||
|
||||
**How We Use Your Information**
|
||||
|
||||
1. **Providing and Improving Services**: We use the information we collect to provide, maintain, and improve our Services, as well as to develop new features and offerings.
|
||||
|
||||
2. **Communication**: We may use your email address to communicate with you about your account, updates to our Services, or promotional offers. You can opt out of promotional emails at any time.
|
||||
|
||||
3. **Security**: We use your information to ensure the security of our Services and to protect against unauthorized access or use.
|
||||
|
||||
4. **Analytics**: We may use aggregate, non-personally identifiable information for analytics purposes to better understand how users interact with our website and Services.
|
||||
|
||||
**Information Sharing and Disclosure**
|
||||
|
||||
1. **Third-Party Service Providers**: We may share your information with third-party service providers who assist us in providing and improving our Services. These providers are contractually obligated to use your information only for the purpose of providing the services we request.
|
||||
|
||||
2. **Legal Compliance**: We may disclose your information if required to do so by law or in response to a valid legal request, such as a court order or subpoena.
|
||||
|
||||
3. **Business Transfers**: In the event of a merger, acquisition, or sale of all or a portion of our assets, your information may be transferred as part of the transaction. We will notify you of any such change in ownership or control of your personal information.
|
||||
|
||||
**Data Retention**
|
||||
|
||||
We will retain your personal information for as long as necessary to fulfill the purposes outlined in this Privacy Policy, unless a longer retention period is required or permitted by law.
|
||||
|
||||
**Your Choices**
|
||||
|
||||
You can access, update, or delete your personal information by logging into your account settings. You can also choose to disable cookies in your browser settings, although this may affect your ability to use certain features of our website.
|
||||
|
||||
**Children's Privacy**
|
||||
|
||||
Our Services are not directed to children under the age of 13, and we do not knowingly collect personal information from children. If we become aware that we have inadvertently collected personal information from a child under the age of 13, we will take steps to delete it as soon as possible.
|
||||
|
||||
**Changes to this Policy**
|
||||
|
||||
We may update this Privacy Policy from time to time to reflect changes in our practices or legal requirements. We will notify you of any material changes by posting the new Privacy Policy on this page.
|
||||
|
||||
**Contact Us**
|
||||
|
||||
If you have any questions or concerns about this Privacy Policy or our practices, you can contact us at [privacy@snigdhaos.org](mailto:privacy@snigdhaos.org).
|
||||
|
||||
Where the GDPR applies, the legal basis for the processing is Art. 6 para. 1 lit. b) GDPR. In case you delete your account, we store your entries based on our legitimate interest of a consistent wiki according to Art. 6 para. 1 lit. f) GDPR.
|
||||
|
||||
## 5. Contact
|
||||
|
||||
We offer you the opportunity to contact us via email. We will then process your email address and, if applicable, your name, a subject and the content of your request to answer your enquiry due to our legitimate interests (Art. 6 para. 1 lit. f) GDPR).
|
||||
|
||||
We will store your enquiry as long as we have lawful bases for processing the data. Where the GDPR applies, we may store data in accordance unless legal provisions prevent deletion. Where the GDPR applies, we may store data in accordance with Art. 6 para. 1 lit. f) GDPR where it is necessary for the purpose of providing evidence or to comply with legal retention periods in accordance with Art. 6 para. 1 lit. c) GDPR. If the request is made within the framework of an existing or prospective contractual relationship with us, the storage period shall be based on the underlying contractual relationship.
|
||||
|
||||
## 6. Donations
|
||||
|
||||
You can donate to Snigdha OS as a member project of the Software in the Public Interest, Inc. (SPI) as non-profit corporation using via Click&Pledge or via SPI directly using PayPal or Credit Card payment. For further information, please see the SPI donation website at: https://www.spi-inc.org/donations/. We publish the past donors on the website https://snigdhaos.org/donate/.
|
||||
|
||||
This processing is based on your consent (Art. 6 Abs. 1 lit. a) GDPR) until your withdrawal or until we end this publication of past donors. You have the right to withdraw consent at any time, without affecting the lawfulness of processing based on consent before its withdrawal e.g. by sending us an email.
|
||||
|
||||
## 7. Storage period
|
||||
|
||||
Unless explicitly stated otherwise, we will process and store your personal data for as long as it is required for the respective purpose and delete it thereafter.
|
||||
|
||||
## 8. Categories of recipients
|
||||
|
||||
We use external service providers if we are unable to provide services ourselves or if it is not reasonable to do so. These external service providers are primarily providers of IT services, such as our hosting service provider **TONMOY INFRASTRUCTURE™**.
|
||||
Street: Landstrasse 39,
|
||||
City: Sattel,
|
||||
Zip code: 6417
|
||||
Country calling code: +41
|
||||
Country: Switzerland.
|
||||
|
||||
## 9. General rights of data subjects
|
||||
|
||||
The GDPR guarantees you certain rights, which you can assert against us - if the legal requirements are met.
|
||||
|
||||
### 9.1. Art. 15 GDPR - Right of access
|
||||
|
||||
You have the right to obtain confirmation from us as to whether personal data relating to you are being processed and, if so, what these data are and the detailed circumstances of the processing.
|
||||
|
||||
### 9.2. Art. 16 GDPR - Right of rectification
|
||||
|
||||
You have the right to ask us to rectify incorrect personal data concerning you immediately. You also have the right to request the completion of incomplete personal data, including by means of a supplementary declaration, taking into account the purposes of the processing.
|
||||
|
||||
### 9.3. Art. 17 GDPR - Right to deletion
|
||||
|
||||
You have the right to demand that we delete any personal data relating to you immediately.
|
||||
|
||||
### 9.4. Art. 18 GDPR - Right to restriction of processing
|
||||
|
||||
You have the right to request us to restrict processing.
|
||||
|
||||
### 9.5. Art. 20 GDPR - Right to data portability
|
||||
|
||||
You have the right, in the event of processing based on consent or for the fulfilment of a contract, to receive the personal data concerning you which you have provided us with in a structured, common and machine-readable format and to transfer this data to another responsible party without hindrance from us or to have the data transferred directly to the other responsible party, insofar as this is technically feasible.
|
||||
|
||||
### 9.6. Art. 77 GDPR in conjunction with Section 19 BDSG - Right to lodge a complaint with a supervisory authority
|
||||
|
||||
You have the right to lodge a complaint with a supervisory authority at any time, in particular in the Member State in which you are resident, your place of work or place of the alleged infringement if you consider that the processing of personal data relating to you infringes data protection law.
|
||||
|
||||
## 10. In particular right to object and right to withdraw consent
|
||||
|
||||
### 10.1. Art. 21 GDPR - Right to object
|
||||
|
||||
You have the right to object at any time, for reasons arising from your particular situation, to the processing of personal data concerning you which is necessary on the basis of a legitimate interest on our part or in order to carry out a task in the public interest, or which is carried out in the exercise of official authority.
|
||||
|
||||
If you object, we will no longer process your personal data unless we can prove compelling legitimate grounds for processing that override your interests, rights and freedoms, or unless the processing serves to assert, exercise or defend legal claims.
|
||||
|
||||
If we process your personal data for direct marketing purposes, you have the right to object to the processing at any time. If you object to processing for direct marketing purposes, we will no longer process your personal data for these purposes.
|
||||
|
||||
In order to exercise your right of objection, you can, for example, send us an email to the email address mentioned above.
|
||||
|
||||
### 10.2. Withdrawal of consent
|
||||
|
||||
If you have given us your informed consent, you have the right to withdraw your consent at any time. In this case, all data processing that we have carried out until your withdrawal remains lawful.
|
||||
|
||||
## 11. Obligation to provide data
|
||||
|
||||
You have no contractual or legal obligation to provide us with personal data. However, we then might not be able to offer you the requested services.
|
||||
|
||||
## 12. The existence of automated decision-making (including profiling)
|
||||
|
||||
We will not make you subject to any automated decision-making, including profiling in accordance with Art. 22 para. 1 and 4 GDPR, which has legal effects on you or affects you.
|
||||
|
||||
## 13. Internet-specific data processing and cookies
|
||||
|
||||
On some sub-directories of our website, cookies are set in your browser. Cookies are small text files that are stored on your hard drive and are assigned to the browser you are using. The provider who sets the cookie can collect certain information through the cookie. The only purpose of the cookies set on our website is to enable you to use the website and its functions safely. The legal basis for the processing is our legitimate interests in the aforementioned purpose according to Art. 6 para. 1 lit. f) GDPR. The cookies are necessary for the services you have requested.
|
@@ -1,14 +0,0 @@
|
||||
---
|
||||
enable: true
|
||||
title: "Ready to build your next project with Hugo?"
|
||||
image: "/images/call-to-action.png"
|
||||
description: "Experience the future of web development with Hugoplate and Hugo. Build lightning-fast static sites with ease and flexibility."
|
||||
button:
|
||||
enable: true
|
||||
label: "Get Started Now"
|
||||
link: "https://github.com/zeon-studio/hugoplate"
|
||||
|
||||
# don't create a separate page
|
||||
_build:
|
||||
render: "never"
|
||||
---
|
@@ -1,16 +0,0 @@
|
||||
---
|
||||
enable: false
|
||||
title: "What Users Are Saying About Hugoplate"
|
||||
description: "Don't just take our word for it - hear from some of our satisfied users! Check out some of our testimonials below to see what others are saying about Hugoplate."
|
||||
|
||||
# Testimonials
|
||||
testimonials:
|
||||
- name: "Marvin McKinney"
|
||||
designation: "Web Designer"
|
||||
avatar: "/images/avatar-sm.png"
|
||||
content: "Lorem ipsum dolor sit amet consectetur adipisicing elit. Qui iusto illo molestias, assumenda expedita commodi inventore non itaque molestiae voluptatum dolore, facilis sapiente, repellat veniam."
|
||||
|
||||
# don't create a separate page
|
||||
_build:
|
||||
render: "never"
|
||||
---
|
@@ -1,29 +0,0 @@
|
||||
{
|
||||
"main": [
|
||||
{
|
||||
"name": "facebook",
|
||||
"icon": "fab fa-facebook",
|
||||
"link": "https://www.facebook.com/snigdhalinux"
|
||||
},
|
||||
{
|
||||
"name": "twitter",
|
||||
"icon": "fab fa-twitter",
|
||||
"link": "https://twitter.com/SnigdhaOS"
|
||||
},
|
||||
{
|
||||
"name": "Instagram",
|
||||
"icon": "fab fa-instagram",
|
||||
"link": "https://www.instagram.com/SnigdhaOS"
|
||||
},
|
||||
{
|
||||
"name": "github",
|
||||
"icon": "fab fa-github",
|
||||
"link": "https://www.github.com/Snigdha-OS"
|
||||
},
|
||||
{
|
||||
"name": "linkedin",
|
||||
"icon": "fab fa-linkedin",
|
||||
"link": "https://www.linkedin.com/SnigdhaOS"
|
||||
}
|
||||
]
|
||||
}
|
@@ -1,44 +0,0 @@
|
||||
{
|
||||
"colors": {
|
||||
"default": {
|
||||
"theme_color": {
|
||||
"primary": "#754ffe",
|
||||
"body": "#fff",
|
||||
"border": "#eaeaea",
|
||||
"theme_light": "#f6f6f6",
|
||||
"theme_dark": ""
|
||||
},
|
||||
"text_color": {
|
||||
"default": "#444444",
|
||||
"dark": "#040404",
|
||||
"light": "#717171"
|
||||
}
|
||||
},
|
||||
"darkmode": {
|
||||
"theme_color": {
|
||||
"primary": "#754ffe",
|
||||
"body": "#28282b",
|
||||
"border": "#3E3E3E",
|
||||
"theme_light": "#222222",
|
||||
"theme_dark": ""
|
||||
},
|
||||
"text_color": {
|
||||
"default": "#B4AFB6",
|
||||
"dark": "#fff",
|
||||
"light": "#B4AFB6"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fonts": {
|
||||
"font_family": {
|
||||
"primary": "Overpass:wght@400;600",
|
||||
"primary_type": "sans-serif",
|
||||
"secondary": "Overpass:wght@500;700",
|
||||
"secondary_type": "sans-serif"
|
||||
},
|
||||
"font_size": {
|
||||
"base": "18",
|
||||
"scale": "1.2"
|
||||
}
|
||||
}
|
||||
}
|
28
go.mod
@@ -1,28 +0,0 @@
|
||||
module hugoplate.netlify.app
|
||||
|
||||
go 1.20
|
||||
|
||||
require (
|
||||
github.com/gethugothemes/hugo-modules/accordion v0.0.0-20240423040330-6260da698660 // indirect
|
||||
github.com/gethugothemes/hugo-modules/adsense v0.0.0-20240423040330-6260da698660 // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/cookie-consent v0.0.0-20240423040330-6260da698660 // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/custom-script v0.0.0-20240423040330-6260da698660 // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/preloader v0.0.0-20240423040330-6260da698660 // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/render-link v0.0.0-20240423040330-6260da698660 // indirect
|
||||
github.com/gethugothemes/hugo-modules/components/social-share v0.0.0-20240423040330-6260da698660 // indirect
|
||||
github.com/gethugothemes/hugo-modules/gallery-slider v0.0.0-20240423040330-6260da698660 // indirect
|
||||
github.com/gethugothemes/hugo-modules/gzip-caching v0.0.0-20240423040330-6260da698660 // indirect
|
||||
github.com/gethugothemes/hugo-modules/icons/font-awesome v0.0.0-20240423040330-6260da698660 // indirect
|
||||
github.com/gethugothemes/hugo-modules/images v0.0.0-20240423040330-6260da698660 // indirect
|
||||
github.com/gethugothemes/hugo-modules/modal v0.0.0-20240423040330-6260da698660 // indirect
|
||||
github.com/gethugothemes/hugo-modules/pwa v0.0.0-20240423040330-6260da698660 // indirect
|
||||
github.com/gethugothemes/hugo-modules/search v0.0.0-20240423040330-6260da698660 // indirect
|
||||
github.com/gethugothemes/hugo-modules/seo-tools/basic-seo v0.0.0-20240423040330-6260da698660 // indirect
|
||||
github.com/gethugothemes/hugo-modules/seo-tools/google-tag-manager v0.0.0-20240423040330-6260da698660 // indirect
|
||||
github.com/gethugothemes/hugo-modules/seo-tools/site-verifications v0.0.0-20240423040330-6260da698660 // indirect
|
||||
github.com/gethugothemes/hugo-modules/shortcodes/button v0.0.0-20240423040330-6260da698660 // indirect
|
||||
github.com/gethugothemes/hugo-modules/shortcodes/notice v0.0.0-20240423040330-6260da698660 // indirect
|
||||
github.com/gethugothemes/hugo-modules/tab v0.0.0-20240423040330-6260da698660 // indirect
|
||||
github.com/gethugothemes/hugo-modules/table-of-contents v0.0.0-20240423040330-6260da698660 // indirect
|
||||
github.com/gethugothemes/hugo-modules/videos v0.0.0-20240423040330-6260da698660 // indirect
|
||||
)
|
172
hugo.toml
@@ -1,172 +0,0 @@
|
||||
######################## default configuration ####################
|
||||
# The base URL of your site (required). This will be prepended to all relative URLs.
|
||||
baseURL = "/"
|
||||
# Title of your website (required).
|
||||
title = "SNIGDHA OS "
|
||||
# Your theme name
|
||||
theme = "hugoplate"
|
||||
# Default time zone for time stamps; use any valid tz database name: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
|
||||
timeZone = "Asia/Kolkata"
|
||||
# post pagination
|
||||
paginate = 2 # see https://gohugo.io/extras/pagination/
|
||||
# post excerpt
|
||||
summaryLength = 10 # see https://gohugo.io/content-management/excerpts/
|
||||
# disable language
|
||||
disableLanguages = [
|
||||
] # example: ["fr"] for disable french language. see https://gohugo.io/content-management/multilingual/
|
||||
hasCJKLanguage = false # If hasCJKLanguage true, auto-detect Chinese/Japanese/Korean Languages in the content. see: https://gohugo.io/getting-started/configuration/#hascjklanguage
|
||||
# default language
|
||||
defaultContentLanguage = 'en'
|
||||
defaultContentLanguageInSubdir = false
|
||||
|
||||
########################### Services #############################
|
||||
[services]
|
||||
[services.googleAnalytics]
|
||||
ID = 'G-YWRHE8TLD1' # see https://gohugo.io/templates/internal/#configure-google-analytics
|
||||
|
||||
[services.disqus]
|
||||
shortname = 'themefisher-template' # we use disqus to show comments in blog posts . To install disqus please follow this tutorial https://portfolio.peter-baumgartner.net/2017/09/10/how-to-install-disqus-on-hugo/
|
||||
|
||||
########################## Permalinks ############################
|
||||
[permalinks.page]
|
||||
"pages" = "/:slugorfilename/"
|
||||
|
||||
|
||||
############################# Modules ############################
|
||||
[module]
|
||||
[[module.mounts]]
|
||||
source = "assets"
|
||||
target = "assets"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "hugo_stats.json"
|
||||
target = "assets/watching/hugo_stats.json"
|
||||
|
||||
############################# Build ##############################
|
||||
[build]
|
||||
noJSConfigInAssets = false
|
||||
useResourceCacheWhen = 'fallback'
|
||||
[build.buildStats]
|
||||
enable = true
|
||||
[[build.cachebusters]]
|
||||
source = 'assets/watching/hugo_stats\.json'
|
||||
target = 'style\.css'
|
||||
[[build.cachebusters]]
|
||||
source = '(postcss|tailwind)\.config\.js'
|
||||
target = 'css'
|
||||
[[build.cachebusters]]
|
||||
source = 'assets/.*\.(js|ts|jsx|tsx)'
|
||||
target = 'js'
|
||||
[[build.cachebusters]]
|
||||
source = 'assets/.*\.(css|scss|sass)'
|
||||
target = 'css'
|
||||
[[build.cachebusters]]
|
||||
source = 'data/.*\.(.*)$'
|
||||
target = 'css'
|
||||
[[build.cachebusters]]
|
||||
source = 'assets/.*\.(.*)$'
|
||||
target = '$1'
|
||||
|
||||
|
||||
############################# Outputs ############################
|
||||
[outputs]
|
||||
home = ["HTML", "RSS", "WebAppManifest", "SearchIndex"]
|
||||
|
||||
############################# Imaging ############################
|
||||
[imaging]
|
||||
# See https://github.com/disintegration/imaging
|
||||
# Default JPEG or WebP quality setting. Default is 75.
|
||||
quality = 80
|
||||
resampleFilter = "Lanczos"
|
||||
|
||||
############################ Caches ##############################
|
||||
[caches]
|
||||
[caches.images]
|
||||
dir = ":resourceDir/_gen"
|
||||
maxAge = "720h"
|
||||
|
||||
[caches.assets]
|
||||
dir = ":resourceDir/_gen"
|
||||
maxAge = "720h"
|
||||
|
||||
|
||||
############################ Markup ##############################
|
||||
[markup]
|
||||
[markup.goldmark.renderer]
|
||||
unsafe = true
|
||||
|
||||
[markup.highlight]
|
||||
style = 'dracula' # see https://xyproto.github.io/splash/docs/all.html
|
||||
|
||||
[markup.tableOfContents]
|
||||
startLevel = 2
|
||||
endLevel = 5
|
||||
ordered = true
|
||||
|
||||
|
||||
########################### Media types ###########################
|
||||
[mediaTypes]
|
||||
[mediaTypes."application/manifest+json"]
|
||||
suffixes = ["webmanifest"]
|
||||
|
||||
|
||||
########################### Output Format ##########################
|
||||
[outputFormats]
|
||||
[outputFormats.WebAppManifest]
|
||||
mediaType = "application/manifest+json"
|
||||
rel = "manifest"
|
||||
|
||||
[outputFormats.SearchIndex]
|
||||
mediaType = "application/json"
|
||||
baseName = "searchindex"
|
||||
isPlainText = true
|
||||
notAlternative = true
|
||||
|
||||
|
||||
############################# Plugins ##############################
|
||||
|
||||
# CSS Plugins
|
||||
[[params.plugins.css]]
|
||||
link = "plugins/swiper/swiper-bundle.css"
|
||||
lazy = true
|
||||
[[params.plugins.css]]
|
||||
link = "plugins/glightbox/glightbox.css"
|
||||
lazy = true
|
||||
[[params.plugins.css]]
|
||||
link = "plugins/font-awesome/v6/brands.css"
|
||||
lazy = true
|
||||
[[params.plugins.css]]
|
||||
link = "plugins/font-awesome/v6/solid.css"
|
||||
lazy = true
|
||||
[[params.plugins.css]]
|
||||
link = "plugins/font-awesome/v6/icons.css"
|
||||
lazy = true
|
||||
|
||||
# JS Plugins
|
||||
[[params.plugins.js]]
|
||||
link = "js/search.js"
|
||||
lazy = false
|
||||
[[params.plugins.js]]
|
||||
link = "plugins/swiper/swiper-bundle.js"
|
||||
lazy = false
|
||||
[[params.plugins.js]]
|
||||
link = "plugins/cookie.js"
|
||||
lazy = false
|
||||
[[params.plugins.js]]
|
||||
link = "plugins/glightbox/glightbox.js"
|
||||
lazy = true
|
||||
[[params.plugins.js]]
|
||||
link = "js/gallery-slider.js"
|
||||
lazy = true
|
||||
[[params.plugins.js]]
|
||||
link = "js/accordion.js"
|
||||
lazy = true
|
||||
[[params.plugins.js]]
|
||||
link = "js/tab.js"
|
||||
lazy = true
|
||||
[[params.plugins.js]]
|
||||
link = "js/modal.js"
|
||||
lazy = true
|
||||
[[params.plugins.js]]
|
||||
link = "plugins/youtube-lite.js"
|
||||
lazy = true
|
32
i18n/en.yaml
@@ -1,32 +0,0 @@
|
||||
- id: home
|
||||
translation: Home
|
||||
|
||||
- id: read_more
|
||||
translation: Continue Reading
|
||||
|
||||
- id: send
|
||||
translation: Send
|
||||
|
||||
- id: related_posts
|
||||
translation: Explore Related Posts
|
||||
|
||||
- id: categories
|
||||
translation: Categories
|
||||
|
||||
- id: tags
|
||||
translation: Tags
|
||||
|
||||
- id: toc
|
||||
translation: Table of Contents
|
||||
|
||||
- id: share
|
||||
translation: Share
|
||||
|
||||
- id: search_input_placeholder
|
||||
translation: Search ...
|
||||
|
||||
- id: no_results_for
|
||||
translation: OOPS! No results for
|
||||
|
||||
- id: empty_search_results_placeholder
|
||||
translation: Type to search..
|
Before Width: | Height: | Size: 220 KiB |
BIN
images/tn.png
Before Width: | Height: | Size: 248 KiB |
@@ -1,7 +0,0 @@
|
||||
[build]
|
||||
publish = "public"
|
||||
command = "yarn project-setup; yarn build"
|
||||
|
||||
[build.environment]
|
||||
HUGO_VERSION = "0.121.2"
|
||||
GO_VERSION = "1.20.5"
|
34
package.json
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"name": "hugoplate",
|
||||
"description": "hugo tailwindcss boilerplate",
|
||||
"version": "1.13.3",
|
||||
"license": "MIT",
|
||||
"author": "zeon.studio",
|
||||
"scripts": {
|
||||
"dev": "hugo server",
|
||||
"build": "hugo --gc --minify --templateMetrics --templateMetricsHints --forceSyncStatic",
|
||||
"preview": "hugo server --disableFastRender --navigateToChanged --templateMetrics --templateMetricsHints --watch --forceSyncStatic -e production --minify",
|
||||
"dev:example": "cd exampleSite; hugo server",
|
||||
"build:example": "cd exampleSite; hugo --gc --minify --templateMetrics --templateMetricsHints --forceSyncStatic",
|
||||
"preview:example": "cd exampleSite; hugo server --disableFastRender --navigateToChanged --templateMetrics --templateMetricsHints --watch --forceSyncStatic -e production --minify",
|
||||
"update-modules": "node ./scripts/clearModules.js && hugo mod clean --all && hugo mod get -u ./... && hugo mod tidy",
|
||||
"remove-darkmode": "node ./scripts/removeDarkmode.js && yarn format",
|
||||
"project-setup": "node ./scripts/projectSetup.js",
|
||||
"theme-setup": "node ./scripts/themeSetup.js",
|
||||
"update-theme": "node ./scripts/themeUpdate.js",
|
||||
"format": "prettier -w ."
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fullhuman/postcss-purgecss": "^5.0.0",
|
||||
"@tailwindcss/forms": "^0.5.7",
|
||||
"@tailwindcss/typography": "^0.5.10",
|
||||
"autoprefixer": "^10.4.18",
|
||||
"postcss": "^8.4.36",
|
||||
"postcss-cli": "^11.0.0",
|
||||
"prettier": "^3.2.5",
|
||||
"prettier-plugin-go-template": "0.0.15",
|
||||
"prettier-plugin-tailwindcss": "^0.5.12",
|
||||
"tailwind-bootstrap-grid": "^5.1.0",
|
||||
"tailwindcss": "^3.4.1"
|
||||
}
|
||||
}
|
@@ -1,45 +0,0 @@
|
||||
const purgecss = {
|
||||
content: ["./hugo_stats.json"],
|
||||
defaultExtractor: (content) => {
|
||||
const elements = JSON.parse(content).htmlElements;
|
||||
return [
|
||||
...(elements.tags || []),
|
||||
...(elements.classes || []),
|
||||
...(elements.ids || []),
|
||||
];
|
||||
},
|
||||
safelist: [
|
||||
/^swiper-/,
|
||||
/^lb-/,
|
||||
/^gl/,
|
||||
/^go/,
|
||||
/^gc/,
|
||||
/^gs/,
|
||||
/^gi/,
|
||||
/^gz/,
|
||||
/^gprev/,
|
||||
/^gnext/,
|
||||
/^desc/,
|
||||
/^zoom/,
|
||||
/^search/,
|
||||
/^:is/,
|
||||
/dark/,
|
||||
/show/,
|
||||
/dragging/,
|
||||
/fullscreen/,
|
||||
/loaded/,
|
||||
/visible/,
|
||||
/current/,
|
||||
/active/,
|
||||
/mark/,
|
||||
],
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
plugins: {
|
||||
tailwindcss: {},
|
||||
"@fullhuman/postcss-purgecss":
|
||||
process.env.HUGO_ENVIRONMENT === "production" ? purgecss : false,
|
||||
autoprefixer: process.env.HUGO_ENVIRONMENT === "production" ? {} : false,
|
||||
},
|
||||
};
|
32
push.sh
@@ -1,32 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Author : Eshan Roy
|
||||
# URI : https://eshanized.github.io
|
||||
|
||||
# NOTE: If you are on Snigdha OS,
|
||||
# you can install commitizen-go with `sudo pacman -S commitizen-go`
|
||||
# or `s commitizen-go`. Else you need to install `yay` or `yay-bin`
|
||||
# to install commitizen. I have written this script only for *Arch Linux.
|
||||
|
||||
# Function to check if Commitizen is installed
|
||||
check_commitizen() {
|
||||
if ! pacman -Qq commitizen-go &> /dev/null; then
|
||||
echo "Commitizen is not installed. Please install it using 'yay -S commitizen-go'." >&2
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
# Function to stage, commit, and push changes
|
||||
push_to_github() {
|
||||
git add .
|
||||
git cz
|
||||
git push origin master
|
||||
}
|
||||
|
||||
# Main Function
|
||||
main() {
|
||||
check_commitizen
|
||||
push_to_github
|
||||
}
|
||||
|
||||
main
|
@@ -1 +0,0 @@
|
||||

|
@@ -1,14 +0,0 @@
|
||||
const fs = require("fs");
|
||||
|
||||
const clearModules = (filePath) => {
|
||||
if (fs.existsSync(filePath)) {
|
||||
let fileContent = fs.readFileSync(filePath, "utf8");
|
||||
fileContent = fileContent.replace(/require\s*\([\s\S]*?\)/, "");
|
||||
fs.writeFileSync(filePath, fileContent, "utf8");
|
||||
} else {
|
||||
console.log("File does not exist.");
|
||||
}
|
||||
};
|
||||
|
||||
clearModules("go.mod");
|
||||
clearModules("exampleSite/go.mod");
|
@@ -1,116 +0,0 @@
|
||||
const fs = require("fs");
|
||||
const path = require("path");
|
||||
|
||||
const toggleComment = ({ filepath, regex }) => {
|
||||
let updatedContent = fs.readFileSync(filepath, "utf8");
|
||||
const match = updatedContent.match(regex);
|
||||
|
||||
if (match) {
|
||||
const matchedContent = match[0];
|
||||
const hasComment = matchedContent.startsWith("# ");
|
||||
if (hasComment) {
|
||||
updatedContent = updatedContent.replace(
|
||||
regex,
|
||||
matchedContent.replace("# ", ""),
|
||||
);
|
||||
fs.writeFileSync(filepath, updatedContent, "utf8");
|
||||
} else {
|
||||
const hasBreakline = matchedContent.includes("\n");
|
||||
if (hasBreakline) {
|
||||
const content = matchedContent
|
||||
.split("\n")
|
||||
.map((line) => "# " + line)
|
||||
.join("\n");
|
||||
updatedContent = updatedContent.replace(regex, content);
|
||||
fs.writeFileSync(filepath, updatedContent, "utf8");
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
const getFolderName = (rootfolder) => {
|
||||
const configPath = path.join(rootfolder, "exampleSite/hugo.toml");
|
||||
const getConfig = fs.readFileSync(configPath, "utf8");
|
||||
const match = getConfig.match(/theme\s*=\s*\[?"([^"\]]+)"\]?/);
|
||||
let selectedTheme = null;
|
||||
if (match && match[1]) {
|
||||
selectedTheme = match[1];
|
||||
}
|
||||
return selectedTheme;
|
||||
};
|
||||
|
||||
const deleteFolder = (folderPath) => {
|
||||
if (fs.existsSync(folderPath)) {
|
||||
fs.rmSync(folderPath, { recursive: true, force: true });
|
||||
}
|
||||
};
|
||||
|
||||
const createNewfolder = (rootfolder, folderName) => {
|
||||
const newFolder = path.join(rootfolder, folderName);
|
||||
fs.mkdirSync(newFolder, { recursive: true });
|
||||
return newFolder;
|
||||
};
|
||||
|
||||
const iterateFilesAndFolders = (rootFolder, { destinationRoot }) => {
|
||||
const directory = path.join(rootFolder);
|
||||
const items = fs.readdirSync(directory, { withFileTypes: true });
|
||||
items.forEach((item) => {
|
||||
if (item.isDirectory()) {
|
||||
createNewfolder(destinationRoot, item.name);
|
||||
iterateFilesAndFolders(path.join(directory, item.name), {
|
||||
currentFolder: item.name,
|
||||
destinationRoot: path.join(destinationRoot, item.name),
|
||||
});
|
||||
} else {
|
||||
const sourceFile = path.join(directory, item.name);
|
||||
const destinationFile = path.join(destinationRoot, item.name);
|
||||
fs.renameSync(sourceFile, destinationFile);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
const setupProject = () => {
|
||||
const rootfolder = path.join(__dirname, "../");
|
||||
if (!fs.existsSync(path.join(rootfolder, "themes"))) {
|
||||
// remove this part if you don't using theme demo as a module
|
||||
[
|
||||
{
|
||||
filepath: path.join(rootfolder, "exampleSite/hugo.toml"),
|
||||
regex: /^.*theme\s*=\s*("[^"\]]+"|\S+)/m,
|
||||
},
|
||||
{
|
||||
filepath: path.join(
|
||||
rootfolder,
|
||||
"exampleSite/config/_default/module.toml",
|
||||
),
|
||||
regex: /\[\[imports\]\]\s*\r?\npath = "([^"]+)"/,
|
||||
},
|
||||
].forEach(toggleComment);
|
||||
|
||||
const folderList = ["layouts", "assets", "static"];
|
||||
const folderName = getFolderName(rootfolder);
|
||||
const newfolderName = createNewfolder(
|
||||
path.join(rootfolder, "themes"),
|
||||
folderName,
|
||||
);
|
||||
|
||||
folderList.forEach((folder) => {
|
||||
const source = path.join(rootfolder, folder);
|
||||
const destination = path.join(newfolderName, folder);
|
||||
if (fs.existsSync(source)) {
|
||||
fs.mkdirSync(destination, { recursive: true });
|
||||
iterateFilesAndFolders(source, {
|
||||
currentFolder: folder,
|
||||
destinationRoot: destination,
|
||||
});
|
||||
deleteFolder(source);
|
||||
}
|
||||
});
|
||||
|
||||
const exampleSite = path.join(rootfolder, "exampleSite");
|
||||
iterateFilesAndFolders(exampleSite, { destinationRoot: rootfolder });
|
||||
deleteFolder(exampleSite);
|
||||
}
|
||||
};
|
||||
|
||||
setupProject();
|
@@ -1,69 +0,0 @@
|
||||
const fs = require("fs");
|
||||
const path = require("path");
|
||||
|
||||
const rootDirs = ["assets/scss", "layouts"];
|
||||
const configFiles = [
|
||||
{
|
||||
filePath: "exampleSite/tailwind.config.js",
|
||||
patterns: ["darkmode:\\s*{[^}]*},", 'darkMode:\\s*"class",'],
|
||||
},
|
||||
{
|
||||
filePath: "exampleSite/data/theme.json",
|
||||
patterns: ["colors.darkmode"],
|
||||
},
|
||||
];
|
||||
|
||||
rootDirs.forEach(removeDarkModeFromPages);
|
||||
configFiles.forEach(removeDarkMode);
|
||||
|
||||
function removeDarkModeFromFiles(filePath, regexPatterns) {
|
||||
const fileContent = fs.readFileSync(filePath, "utf8");
|
||||
let updatedContent = fileContent;
|
||||
regexPatterns.forEach((pattern) => {
|
||||
const regex = new RegExp(pattern, "g");
|
||||
updatedContent = updatedContent.replace(regex, "");
|
||||
});
|
||||
fs.writeFileSync(filePath, updatedContent, "utf8");
|
||||
}
|
||||
|
||||
function removeDarkModeFromPages(directoryPath) {
|
||||
const files = fs.readdirSync(directoryPath);
|
||||
|
||||
files.forEach((file) => {
|
||||
const filePath = path.join(directoryPath, file);
|
||||
const stats = fs.statSync(filePath);
|
||||
if (stats.isDirectory()) {
|
||||
removeDarkModeFromPages(filePath);
|
||||
} else if (stats.isFile()) {
|
||||
removeDarkModeFromFiles(filePath, [
|
||||
'(?:(?!["])\\S)*dark:(?:(?![,;"])\\S)*',
|
||||
"@apply?(\\s)*;",
|
||||
]);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function removeDarkMode(configFile) {
|
||||
const { filePath, patterns } = configFile;
|
||||
if (filePath === "exampleSite/tailwind.config.js") {
|
||||
removeDarkModeFromFiles(filePath, patterns);
|
||||
} else {
|
||||
const contentFile = JSON.parse(fs.readFileSync(filePath, "utf8"));
|
||||
patterns.forEach((pattern) => deleteNestedProperty(contentFile, pattern));
|
||||
fs.writeFileSync(filePath, JSON.stringify(contentFile));
|
||||
}
|
||||
}
|
||||
|
||||
function deleteNestedProperty(obj, propertyPath) {
|
||||
const properties = propertyPath.split(".");
|
||||
let currentObj = obj;
|
||||
for (let i = 0; i < properties.length - 1; i++) {
|
||||
const property = properties[i];
|
||||
if (currentObj.hasOwnProperty(property)) {
|
||||
currentObj = currentObj[property];
|
||||
} else {
|
||||
return; // Property not found, no need to continue
|
||||
}
|
||||
}
|
||||
delete currentObj[properties[properties.length - 1]];
|
||||
}
|
@@ -1,125 +0,0 @@
|
||||
const fs = require("fs");
|
||||
const path = require("path");
|
||||
|
||||
const toggleComment = ({ filepath, regex }) => {
|
||||
let updatedContent = fs.readFileSync(filepath, "utf8");
|
||||
const match = updatedContent.match(regex);
|
||||
|
||||
if (match) {
|
||||
const matchedContent = match[0];
|
||||
const hasComment = matchedContent.startsWith("# ");
|
||||
if (hasComment) {
|
||||
const hasBreakline = matchedContent.includes("\n");
|
||||
if (hasBreakline) {
|
||||
updatedContent = updatedContent.replace(
|
||||
regex,
|
||||
matchedContent.replace(/# /gm, ""),
|
||||
);
|
||||
fs.writeFileSync(filepath, updatedContent, "utf8");
|
||||
}
|
||||
} else {
|
||||
updatedContent = updatedContent.replace(regex, "# " + matchedContent);
|
||||
fs.writeFileSync(filepath, updatedContent, "utf8");
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
const createNewfolder = (rootfolder, folderName) => {
|
||||
const newFolder = path.join(rootfolder, folderName);
|
||||
fs.mkdirSync(newFolder, { recursive: true });
|
||||
return newFolder;
|
||||
};
|
||||
|
||||
const deleteFolder = (folderPath) => {
|
||||
if (fs.existsSync(folderPath)) {
|
||||
fs.rmSync(folderPath, { recursive: true, force: true });
|
||||
}
|
||||
};
|
||||
|
||||
const getFolderName = (rootfolder) => {
|
||||
const configPath = path.join(rootfolder, "exampleSite/hugo.toml");
|
||||
const getConfig = fs.readFileSync(configPath, "utf8");
|
||||
const match = getConfig.match(/theme\s*=\s*\[?"([^"\]]+)"\]?/);
|
||||
let selectedTheme = null;
|
||||
if (match && match[1]) {
|
||||
selectedTheme = match[1];
|
||||
}
|
||||
return selectedTheme;
|
||||
};
|
||||
|
||||
const iterateFilesAndFolders = (rootFolder, { destinationRoot }) => {
|
||||
const directory = path.join(rootFolder);
|
||||
const items = fs.readdirSync(directory, { withFileTypes: true });
|
||||
items.forEach((item) => {
|
||||
if (item.isDirectory()) {
|
||||
createNewfolder(destinationRoot, item.name);
|
||||
iterateFilesAndFolders(path.join(directory, item.name), {
|
||||
currentFolder: item.name,
|
||||
destinationRoot: path.join(destinationRoot, item.name),
|
||||
});
|
||||
} else {
|
||||
const sourceFile = path.join(directory, item.name);
|
||||
const destinationFile = path.join(destinationRoot, item.name);
|
||||
fs.renameSync(sourceFile, destinationFile);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
const setupTheme = () => {
|
||||
const rootFolder = path.join(__dirname, "../");
|
||||
|
||||
if (!fs.existsSync(path.join(rootFolder, "exampleSite"))) {
|
||||
// remove this part if you don't using theme demo as a module
|
||||
[
|
||||
{
|
||||
filepath: path.join(rootFolder, "config/_default/module.toml"),
|
||||
regex: /# \[\[imports\]\]\s*\r?\n# path = "([^"]+)"/,
|
||||
},
|
||||
{
|
||||
filepath: path.join(rootFolder, "hugo.toml"),
|
||||
regex: /^.*theme\s*=\s*("[^"\]]+"|\S+)/m,
|
||||
},
|
||||
].forEach(toggleComment);
|
||||
|
||||
const includesFiles = [
|
||||
"tailwind.config.js",
|
||||
"postcss.config.js",
|
||||
"go.mod",
|
||||
"hugo.toml",
|
||||
"assets",
|
||||
"config",
|
||||
"data",
|
||||
"content",
|
||||
"i18n",
|
||||
"static",
|
||||
];
|
||||
|
||||
const folder = createNewfolder(rootFolder, "exampleSite");
|
||||
|
||||
fs.readdirSync(rootFolder, { withFileTypes: true }).forEach((file) => {
|
||||
if (includesFiles.includes(file.name)) {
|
||||
if (file.isDirectory()) {
|
||||
const destination = path.join(rootFolder, "exampleSite", file.name);
|
||||
fs.mkdirSync(destination, { recursive: true });
|
||||
iterateFilesAndFolders(path.join(rootFolder, file.name), {
|
||||
destinationRoot: destination,
|
||||
});
|
||||
deleteFolder(path.join(rootFolder, file.name));
|
||||
} else {
|
||||
fs.renameSync(
|
||||
path.join(rootFolder, file.name),
|
||||
path.join(folder, file.name),
|
||||
);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
const themes = path.join(rootFolder, "themes");
|
||||
iterateFilesAndFolders(path.join(themes, getFolderName(rootFolder)), {
|
||||
destinationRoot: rootFolder,
|
||||
});
|
||||
deleteFolder(themes);
|
||||
}
|
||||
};
|
||||
|
||||
setupTheme();
|
@@ -1,19 +0,0 @@
|
||||
const { exec } = require("child_process");
|
||||
|
||||
const repositoryUrl = "https://github.com/zeon-studio/hugoplate";
|
||||
const localDirectory = "./themes/hugoplate";
|
||||
const foldersToFetch = ["assets", "layouts"];
|
||||
const foldersToSkip = ["exampleSite"];
|
||||
|
||||
const fetchFolder = (folder) => {
|
||||
exec(
|
||||
`curl -L ${repositoryUrl}/tarball/main | tar -xz --strip-components=1 --directory=${localDirectory} --exclude=$(curl -sL ${repositoryUrl}/tarball/main | tar -tz | grep -E "/(${foldersToSkip.join(
|
||||
"|",
|
||||
)})/") */${folder}`,
|
||||
);
|
||||
};
|
||||
|
||||
// Fetch each specified folder
|
||||
foldersToFetch.forEach((folder) => {
|
||||
fetchFolder(folder);
|
||||
});
|
@@ -1,103 +0,0 @@
|
||||
const fs = require("fs");
|
||||
const path = require("path");
|
||||
const themePath = path.join(__dirname, "data/theme.json");
|
||||
const themeRead = fs.readFileSync(themePath, "utf8");
|
||||
const theme = JSON.parse(themeRead);
|
||||
|
||||
let font_base = Number(theme.fonts.font_size.base.replace("px", ""));
|
||||
let font_scale = Number(theme.fonts.font_size.scale);
|
||||
let h6 = font_scale;
|
||||
let h5 = h6 * font_scale;
|
||||
let h4 = h5 * font_scale;
|
||||
let h3 = h4 * font_scale;
|
||||
let h2 = h3 * font_scale;
|
||||
let h1 = h2 * font_scale;
|
||||
let fontPrimary, fontPrimaryType, fontSecondary, fontSecondaryType;
|
||||
if (theme.fonts.font_family.primary) {
|
||||
fontPrimary = theme.fonts.font_family.primary
|
||||
.replace(/\+/g, " ")
|
||||
.replace(/:[ital,]*[ital@]*[wght@]*[0-9,;]+/gi, "");
|
||||
fontPrimaryType = theme.fonts.font_family.primary_type;
|
||||
}
|
||||
if (theme.fonts.font_family.secondary) {
|
||||
fontSecondary = theme.fonts.font_family.secondary
|
||||
.replace(/\+/g, " ")
|
||||
.replace(/:[ital,]*[ital@]*[wght@]*[0-9,;]+/gi, "");
|
||||
fontSecondaryType = theme.fonts.font_family.secondary_type;
|
||||
}
|
||||
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: ["./hugo_stats.json"],
|
||||
safelist: [{ pattern: /^swiper-/ }],
|
||||
darkMode: "class",
|
||||
theme: {
|
||||
screens: {
|
||||
sm: "540px",
|
||||
md: "768px",
|
||||
lg: "1024px",
|
||||
xl: "1280px",
|
||||
"2xl": "1536px",
|
||||
},
|
||||
container: {
|
||||
center: true,
|
||||
padding: "2rem",
|
||||
},
|
||||
extend: {
|
||||
colors: {
|
||||
text: theme.colors.default.text_color.default,
|
||||
light: theme.colors.default.text_color.light,
|
||||
dark: theme.colors.default.text_color.dark,
|
||||
primary: theme.colors.default.theme_color.primary,
|
||||
secondary: theme.colors.default.theme_color.secondary,
|
||||
body: theme.colors.default.theme_color.body,
|
||||
border: theme.colors.default.theme_color.border,
|
||||
"theme-light": theme.colors.default.theme_color.theme_light,
|
||||
"theme-dark": theme.colors.default.theme_color.theme_dark,
|
||||
darkmode: {
|
||||
text: theme.colors.darkmode.text_color.default,
|
||||
light: theme.colors.darkmode.text_color.light,
|
||||
dark: theme.colors.darkmode.text_color.dark,
|
||||
primary: theme.colors.darkmode.theme_color.primary,
|
||||
secondary: theme.colors.darkmode.theme_color.secondary,
|
||||
body: theme.colors.darkmode.theme_color.body,
|
||||
border: theme.colors.darkmode.theme_color.border,
|
||||
"theme-light": theme.colors.darkmode.theme_color.theme_light,
|
||||
"theme-dark": theme.colors.darkmode.theme_color.theme_dark,
|
||||
},
|
||||
},
|
||||
fontSize: {
|
||||
base: font_base + "px",
|
||||
"base-sm": font_base * 0.8 + "px",
|
||||
h1: h1 + "rem",
|
||||
"h1-sm": h1 * 0.9 + "rem",
|
||||
h2: h2 + "rem",
|
||||
"h2-sm": h2 * 0.9 + "rem",
|
||||
h3: h3 + "rem",
|
||||
"h3-sm": h3 * 0.9 + "rem",
|
||||
h4: h4 + "rem",
|
||||
h5: h5 + "rem",
|
||||
h6: h6 + "rem",
|
||||
},
|
||||
fontFamily: {
|
||||
primary: [fontPrimary, fontPrimaryType],
|
||||
secondary: [fontSecondary, fontSecondaryType],
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [
|
||||
require("@tailwindcss/typography"),
|
||||
require("@tailwindcss/forms"),
|
||||
require("tailwind-bootstrap-grid")({
|
||||
generateContainer: false,
|
||||
gridGutterWidth: "2rem",
|
||||
gridGutters: {
|
||||
1: "0.25rem",
|
||||
2: "0.5rem",
|
||||
3: "1rem",
|
||||
4: "1.5rem",
|
||||
5: "3rem",
|
||||
},
|
||||
}),
|
||||
],
|
||||
};
|