allow configuration of redis cluster with fully qualified redis URL

This commit is contained in:
Martin McKeaveney 2021-09-09 17:14:24 +01:00
parent 60a5602a61
commit 990882f9db
4476 changed files with 808025 additions and 2 deletions

View File

@ -56,9 +56,13 @@ function init() {
if (CLIENT) {
CLIENT.disconnect()
}
const { opts, host, port } = getRedisOptions(CLUSTERED)
const { redisProtocolUrl, opts, host, port } = getRedisOptions(CLUSTERED)
if (CLUSTERED) {
CLIENT = new Redis.Cluster([{ host, port }], opts)
} else if (redisProtocolUrl) {
CLIENT = new Redis(redisProtocolUrl)
} else {
CLIENT = new Redis(opts)
}

View File

@ -19,6 +19,14 @@ exports.SEPARATOR = SEPARATOR
exports.getRedisOptions = (clustered = false) => {
const [host, port] = REDIS_URL.split(":")
let redisProtocolUrl
// fully qualified redis URL
if (/rediss?/.test(host)) {
redisProtocolUrl = REDIS_URL
}
const opts = {
connectTimeout: CONNECT_TIMEOUT_MS,
}
@ -33,7 +41,7 @@ exports.getRedisOptions = (clustered = false) => {
opts.port = port
opts.password = REDIS_PASSWORD
}
return { opts, host, port }
return { opts, host, port, redisProtocolUrl }
}
exports.addDbPrefix = (db, key) => {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

1
packages/standard-components/node_modules/.bin/esbuild generated vendored Symbolic link
View File

@ -0,0 +1 @@
../esbuild/bin/esbuild

1
packages/standard-components/node_modules/.bin/nanoid generated vendored Symbolic link
View File

@ -0,0 +1 @@
../nanoid/bin/nanoid.cjs

1
packages/standard-components/node_modules/.bin/rollup generated vendored Symbolic link
View File

@ -0,0 +1 @@
../rollup/dist/bin/rollup

1
packages/standard-components/node_modules/.bin/vite generated vendored Symbolic link
View File

@ -0,0 +1 @@
../vite/bin/vite.js

View File

@ -0,0 +1,74 @@
# Adobe Code of Conduct
## Our Pledge
In the interest of fostering an open and welcoming environment, we as
contributors and maintainers pledge to making participation in our project and
our community a harassment-free experience for everyone, regardless of age, body
size, disability, ethnicity, gender identity and expression, level of experience,
nationality, personal appearance, race, religion, or sexual identity and
orientation.
## Our Standards
Examples of behavior that contributes to creating a positive environment
include:
* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members
Examples of unacceptable behavior by participants include:
* The use of sexualized language or imagery and unwelcome sexual attention or
advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic
address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a
professional setting
## Our Responsibilities
Project maintainers are responsible for clarifying the standards of acceptable
behavior and are expected to take appropriate and fair corrective action in
response to any instances of unacceptable behavior.
Project maintainers have the right and responsibility to remove, edit, or
reject comments, commits, code, wiki edits, issues, and other contributions
that are not aligned to this Code of Conduct, or to ban temporarily or
permanently any contributor for other behaviors that they deem inappropriate,
threatening, offensive, or harmful.
## Scope
This Code of Conduct applies both within project spaces and in public spaces
when an individual is representing the project or its community. Examples of
representing a project or community include using an official project e-mail
address, posting via an official social media account, or acting as an appointed
representative at an online or offline event. Representation of a project may be
further defined and clarified by project maintainers.
## Enforcement
Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at Grp-opensourceoffice@adobe.com. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Further details of specific enforcement policies may be posted separately.
Project maintainers who do not follow or enforce the Code of Conduct in good
faith may face temporary or permanent repercussions as determined by other
members of the project's leadership.
## Attribution
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
available at [https://contributor-covenant.org/version/1/4][version]
[homepage]: https://contributor-covenant.org
[version]: https://contributor-covenant.org/version/1/4/

View File

@ -0,0 +1,5 @@
© Copyright 2015-2019 Adobe. All rights reserved.
Adobe holds the copyright for all the files found in this repository.
See the LICENSE file for licensing information.

View File

@ -0,0 +1,201 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright 2019 Adobe
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

View File

@ -0,0 +1,32 @@
# Spectrum-CSS Workflow Icons
Build and publish spectrum-css workflow svg icons and svg sprite sheet for [Spectrum CSS](https://github.com/adobe/spectrum-css).
### Setup
```
yarn install
yarn install -g http-server
```
### For external user
Run `yarn run build` will generate the ready to publish package in `dist/`.
Run `http-server dist/ -o` to see the mini-site for all the workflow icons.
### For adobe user
1. Make sure connect to corp network.
2. Run `yarn add @a4u/a4u-collection-react-spectrum-open-source-release` and `yarn add @a4u/a4u-collection-spectrum-css-release` to update the icon set from Adobe corp artifactory.
3. Run `yarn run build-icons` to rebuild the `icons/` folder.
4. Run `yarn run build` to generate the ready to publish package in `dist/`
5. Preview the icons with `http-server dist/ -o`
### Contributing
Contributions are welcomed! Read the [Contributing Guide](./.github/CONTRIBUTING.md) for more information.
### Licensing
This project is licensed under the Apache V2 License. See [LICENSE](LICENSE) for more information.

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M27.517 17.128c-.122 0-.17-.049-.17-.171v-2.416c0-.146 0-.244.146-.244l1.217-.011c1.709 0 2.636-.512 2.636-1.635 0-1.074-.9-1.782-2.685-1.782a7.513 7.513 0 00-3.612.928c-.146.073-.17 0-.17-.1V9.283c0-.147-.025-.2.122-.269a9.02 9.02 0 014.246-.951c3.222 0 5.223 1.61 5.223 4.149a3.459 3.459 0 01-2.148 3.2 3.877 3.877 0 012.9 3.807c0 3.125-2.88 4.784-6.248 4.784a8.8 8.8 0 01-4.174-.806c-.146-.048-.146-.194-.146-.316v-2.64c0-.1.122-.146.22-.1a8.336 8.336 0 003.978 1.025c2.2 0 3.051-.9 3.051-2.05 0-1.294-.928-2-2.954-2zM4.616 11.27a20.7 20.7 0 01-2.582.67c-.167.024-.215-.024-.215-.168V9.69c0-.119.024-.191.167-.215a15.37 15.37 0 003.092-1.22.884.884 0 01.407-.12h2.353c.12 0 .144.072.144.167l-.006 12.813h2.14c.167 0 .215.072.239.216l.006 2.406c.024.191-.048.263-.191.263H2.327c-.167 0-.215-.072-.191-.215l-.006-2.454a.229.229 0 01.263-.216h2.218zM12.014 24c-.168 0-.192-.072-.192-.215v-1.723a.34.34 0 01.12-.311 58.939 58.939 0 004.5-4.045c1.89-1.842 2.713-3.033 2.713-4.373 0-1.507-1.23-2.39-3.048-2.39A8.593 8.593 0 0012.253 12c-.144.072-.239.024-.239-.143V9.484a.271.271 0 01.143-.287A9.108 9.108 0 0116.9 8c3.518 0 5.183 2.1 5.332 4.771.12 2.163-.869 3.809-2.472 5.46a37.052 37.052 0 01-3.04 2.929c1.652 0 5.053-.045 6.465-.045.168 0 .191.048.168.216l-.714 2.478a.238.238 0 01-.264.191z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M11.493 27.963a.216.216 0 00-.283-.268c-.734.287-1.852.613-2.335.131-1.524-1.526 1.487-7.762 6.491-12.766s11.3-7.816 12.758-6.36a1.089 1.089 0 01.253 1.011.219.219 0 00.281.249 9.057 9.057 0 011.495-.326.421.421 0 00.367-.379 2.248 2.248 0 00-.5-1.895L30 7.347v-.006A15.952 15.952 0 107.156 29.58a.784.784 0 00.125.1l.01.012a2.087 2.087 0 001.532.529 6.5 6.5 0 002.014-.4.456.456 0 00.3-.361 11.427 11.427 0 01.356-1.497z"/><path d="M33.5 14.729c-.293-1.771-.939-2.959-2.509-2.959-2.69 0-7.007 2.719-11 6.927-4.736 5-7.466 10.4-6.638 13.144a2.742 2.742 0 002.458 1.887 14.425 14.425 0 002.217.172 14.944 14.944 0 0011-4.744A15.958 15.958 0 0033.5 14.729z"/></svg>

After

Width:  |  Height:  |  Size: 755 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M4.936 20.484l-1.1 3.322a.235.235 0 01-.259.194H.988c-.172 0-.216-.086-.172-.237 1.143-3.236 2.976-8.543 4.335-12.275a3.813 3.813 0 00.216-1.337.136.136 0 01.151-.151h3.473a.162.162 0 01.173.108c1.575 4.336 3.3 9.276 4.9 13.676.064.151.021.216-.13.216h-2.85a.193.193 0 01-.216-.151L9.66 20.484zm4.055-2.459C8.56 16.558 7.7 14.1 7.265 12.545h-.021c-.324 1.467-1.1 3.732-1.661 5.48z"/><path d="M14.045 10.257c0-.15.022-.193.129-.214.943-.022 2.743-.043 4.565-.043 4.436 0 5.379 1.95 5.379 3.686a3.1 3.1 0 01-2.036 3v.043a3.309 3.309 0 012.572 3.236c0 2.658-2.294 4.029-6.194 4.029-1.65.022-3.386-.021-4.265-.043a.17.17 0 01-.15-.193zm2.979 5.379h1.865c1.714 0 2.25-.707 2.25-1.628 0-1.158-.772-1.629-2.422-1.629-.836 0-1.5.021-1.693.043zm0 5.937c.236 0 .729.042 1.608.042 1.8 0 2.871-.471 2.871-1.8 0-1.114-.686-1.757-2.593-1.757h-1.886zM32.752 10a7.959 7.959 0 012.946.439c.1.063.126.1.126.251v2.21c0 .189-.1.189-.188.147a7.061 7.061 0 00-2.779-.523 4.175 4.175 0 00-4.535 4.43c0 3.427 2.466 4.388 4.514 4.388a8.49 8.49 0 002.925-.5c.1-.042.167 0 .167.125v2.152c0 .147-.021.23-.167.293a8.621 8.621 0 01-3.448.588c-3.74 0-7.041-2.069-7.041-6.958 0-3.991 2.928-7.042 7.48-7.042z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36"><path d="M12 2H2a2 2 0 00-2 2v18a2 2 0 002 2h10a2 2 0 002-2V4a2 2 0 00-2-2zm0 20H2V4h10zM23.798 9.34a3.34 3.34 0 113.34 3.34 3.34 3.34 0 01-3.34-3.34zM32 18.702v6.088a.922.922 0 01-.91.934h-.908l-.91 9.342a.922.922 0 01-.908.934h-2.728a.922.922 0 01-.909-.934l-.909-9.342h-.909A.922.922 0 0122 24.79v-6.088a4.901 4.901 0 014.833-4.967h.334A4.901 4.901 0 0132 18.702zM36 3v12a1 1 0 01-1 1h-1.239a7.488 7.488 0 00-1.44-2H34V4H18v10h3.66a7.455 7.455 0 00-1.415 2H17a1 1 0 01-1-1V3a1 1 0 011-1h18a1 1 0 011 1z"/></svg>

After

Width:  |  Height:  |  Size: 597 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M25.535 21.338l-3.208 3.211 8.785 8.784a1.363 1.363 0 001.929 0l1.28-1.28a1.363 1.363 0 000-1.929zM6.658 19.531l1.452-1.452c.533-.533-.022-1.288-.022-1.288l1.492-1.438a1.363 1.363 0 001.92-.013l.811-.811 1.562 1.561 3.209-3.209-1.565-1.561.528-.529a1.363 1.363 0 000-1.929l-.64-.64s1.885-2.116 2.28-2.512c1.665-1.664 5.351-.591 5.521-1.443s-8.183-4.012-12.757.561L5.69 9.588a1.363 1.363 0 000 1.932l.322.31L4.6 13.3a.907.907 0 00-1.3-.035l-1.456 1.452a.682.682 0 000 .964l3.849 3.85a.681.681 0 00.965 0zm4.383 10.992c-1.574.566-3.541 1.277-4.9 1.763l1.754-4.9zm18.2-26.366l-22.38 22.38a1.127 1.127 0 00-.264.413l-2.124 5.864a.84.84 0 001.1 1.109l5.894-2.1a1.127 1.127 0 00.42-.267l22.375-22.4a.957.957 0 00.087-1.346l-3.764-3.744a.957.957 0 00-1.344.091z"/></svg>

After

Width:  |  Height:  |  Size: 855 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M22 8h8v14h-8z"/><path d="M35 2H1a1 1 0 00-1 1v24a1 1 0 001 1h13v5a1 1 0 01-1 1h-2a.979.979 0 00-1 1v1h16v-1a1 1 0 00-1-1h-2a1 1 0 01-1-1v-5h13a1 1 0 001-1V3a1 1 0 00-1-1zm-3 22H4V6h28z"/></svg>

After

Width:  |  Height:  |  Size: 286 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M33 6H5a1 1 0 00-1 1v20a1 1 0 01-2 0V10.5a.5.5 0 00-.5-.5h-1a.5.5 0 00-.5.5V27a3 3 0 003 3h28a3 3 0 003-3V7a1 1 0 00-1-1zm-2 22H6V8h26v19a1 1 0 01-1 1z"/><path d="M22 10h8v16h-8z"/></svg>

After

Width:  |  Height:  |  Size: 279 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M29 16h-9V7a1 1 0 00-1-1h-2a1 1 0 00-1 1v9H7a1 1 0 00-1 1v2a1 1 0 001 1h9v9a1 1 0 001 1h2a1 1 0 001-1v-9h9a1 1 0 001-1v-2a1 1 0 00-1-1z"/></svg>

After

Width:  |  Height:  |  Size: 236 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M18 2a16 16 0 1016 16A16 16 0 0018 2zm10 17a1 1 0 01-1 1h-7v7a1 1 0 01-1 1h-2a1 1 0 01-1-1v-7H9a1 1 0 01-1-1v-2a1 1 0 011-1h7V9a1 1 0 011-1h2a1 1 0 011 1v7h7a1 1 0 011 1z"/></svg>

After

Width:  |  Height:  |  Size: 271 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M24 12V5a1 1 0 00-1-1H5a1 1 0 00-1 1v18a1 1 0 001 1h7v7a1 1 0 001 1h18a1 1 0 001-1V13a1 1 0 00-1-1z"/></svg>

After

Width:  |  Height:  |  Size: 200 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M24.16 5.443l1.028-1.777a15.947 15.947 0 00-5.4-1.606v2.066a13.883 13.883 0 014.372 1.317zm5.37 4.623l1.8-1.035a16.133 16.133 0 00-3.852-3.97L26.44 6.849a14.066 14.066 0 013.09 3.217zm2.403 6.597H34a15.91 15.91 0 00-1.379-5.291L30.83 12.4a13.9 13.9 0 011.103 4.263zm0 2.674a13.9 13.9 0 01-1.1 4.258l1.791 1.032A15.91 15.91 0 0034 19.337zm-5.493 9.814l1.033 1.788a16.131 16.131 0 003.852-3.97l-1.8-1.035a14.066 14.066 0 01-3.085 3.217zm-6.655 2.723v2.066a15.947 15.947 0 005.4-1.606l-1.025-1.777a13.883 13.883 0 01-4.375 1.317zm-7.247-.98l-1.028 1.777A15.993 15.993 0 0017.107 34v-2.045a13.937 13.937 0 01-4.569-1.061zm-5.799-4.601l-1.8 1.035a16.132 16.132 0 004.214 4.062l1.026-1.775a14.071 14.071 0 01-3.44-3.322zm-2.672-6.956H2a15.9 15.9 0 001.574 5.694L5.365 24a13.889 13.889 0 01-1.298-4.663zM5.365 12l-1.791-1.031A15.9 15.9 0 002 16.663h2.067A13.889 13.889 0 015.365 12zm4.819-5.616L9.158 4.609a16.132 16.132 0 00-4.214 4.062l1.8 1.035a14.073 14.073 0 013.44-3.322zm6.923-2.339V2a15.99 15.99 0 00-5.6 1.329l1.027 1.777a13.937 13.937 0 014.573-1.061zM28 19a1 1 0 01-1 1h-7v7a1 1 0 01-1 1h-2a1 1 0 01-1-1v-7H9a1 1 0 01-1-1v-2a1 1 0 011-1h7V9a1 1 0 011-1h2a1 1 0 011 1v7h7a1 1 0 011 1z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36"><path d="M34.254.34l-.655.129a9.579 9.579 0 00-4.939 2.628L22.238 9.52 3.12 4.305a2 2 0 00-1.94.516L0 6l16.558 9.2-2.96 2.96a8.47 8.47 0 00-.874 1.024l-3.344 4.62L1 23.429l-1 1 6.368 3.537-2.024 2.796a.64.64 0 00.894.894l2.796-2.024L11.57 36l1-1-.375-8.38 4.62-3.344a8.47 8.47 0 001.024-.874l2.96-2.96L30 36l1.18-1.18a2 2 0 00.515-1.94L26.48 13.762l6.421-6.422a9.583 9.583 0 002.63-4.94l.127-.654A1.198 1.198 0 0034.254.341z"/></svg>

After

Width:  |  Height:  |  Size: 516 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M17.127 2.579L.4 32.512A1 1 0 001.272 34h33.456a1 1 0 00.872-1.488L18.873 2.579a1 1 0 00-1.746 0zM20 29.5a.5.5 0 01-.5.5h-3a.5.5 0 01-.5-.5v-3a.5.5 0 01.5-.5h3a.5.5 0 01.5.5zm0-6a.5.5 0 01-.5.5h-3a.5.5 0 01-.5-.5v-12a.5.5 0 01.5-.5h3a.5.5 0 01.5.5z"/></svg>

After

Width:  |  Height:  |  Size: 349 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M14.7 27a12.39 12.39 0 01.219-2.278h-1.136a.405.405 0 01-.4-.405v-2.433a.406.406 0 01.4-.406h2.237a12.322 12.322 0 016.909-6.078L15.708 2.482a.811.811 0 00-1.416 0L.725 26.76a.811.811 0 00.708 1.207h13.316A12.37 12.37 0 0114.7 27zM13.378 9.718a.406.406 0 01.4-.406h2.434a.406.406 0 01.405.406v9.733a.405.405 0 01-.405.405h-2.429a.405.405 0 01-.4-.405z"/><path d="M27 18.1a8.9 8.9 0 108.9 8.9 8.9 8.9 0 00-8.9-8.9zm5 9.4a.5.5 0 01-.5.5H28v3.5a.5.5 0 01-.5.5h-1a.5.5 0 01-.5-.5V28h-3.5a.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5H26v-3.5a.5.5 0 01.5-.5h1a.5.5 0 01.5.5V26h3.5a.5.5 0 01.5.5z"/></svg>

After

Width:  |  Height:  |  Size: 679 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M14.7 27a12.39 12.39 0 01.219-2.278h-1.136a.405.405 0 01-.4-.405v-2.433a.406.406 0 01.4-.406h2.237a12.322 12.322 0 016.909-6.078L15.708 2.482a.811.811 0 00-1.416 0L.725 26.76a.811.811 0 00.708 1.207h13.316A12.37 12.37 0 0114.7 27zM13.378 9.718a.406.406 0 01.4-.406h2.434a.406.406 0 01.405.406v9.733a.405.405 0 01-.405.405h-2.429a.405.405 0 01-.4-.405z"/><path d="M27 18.1a8.9 8.9 0 108.9 8.9 8.9 8.9 0 00-8.9-8.9zm-2.338 14.312l-4.128-4.127a.5.5 0 010-.707l1.037-1.037a.5.5 0 01.707 0l2.731 2.731 6.106-6.106a.5.5 0 01.707 0l1.043 1.043a.5.5 0 010 .707l-7.5 7.5a.5.5 0 01-.703-.004z"/></svg>

After

Width:  |  Height:  |  Size: 683 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36"><path d="M15.691 25.772a2.268 2.268 0 012.232-2.304q.084 0 .168.004a2.232 2.232 0 012.4 2.3 2.181 2.181 0 01-2.4 2.234 2.182 2.182 0 01-2.4-2.234zm4.434-16.977a.416.416 0 01.2.367v2.082c0 2.8-.567 7.96-.667 8.962 0 .1-.033.199-.234.199h-2.666a.221.221 0 01-.234-.2c-.066-.933-.6-6.06-.6-8.861V9.26a.355.355 0 01.167-.366 5.766 5.766 0 012-.4 6.55 6.55 0 012.034.3zM35 18A17 17 0 1118 1a17 17 0 0117 17zm-3.65 0A13.35 13.35 0 1018 31.35 13.35 13.35 0 0031.35 18z"/></svg>

After

Width:  |  Height:  |  Size: 553 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M18 2a16 16 0 1016 16A16 16 0 0018 2zm-2.6 4.775a.711.711 0 01.337-.675 6.246 6.246 0 012.225-.458 6.861 6.861 0 012.232.344.777.777 0 01.4.687v2.45c0 2.885-.577 10.891-.683 11.947a.527.527 0 01-.587.52H16.6a.568.568 0 01-.578-.473c-.1-1.364-.622-9.1-.622-11.891zM18 28.85a2.574 2.574 0 01-2.8-2.631 2.66 2.66 0 012.8-2.7 2.632 2.632 0 012.8 2.7A2.574 2.574 0 0118 28.85z"/></svg>

After

Width:  |  Height:  |  Size: 472 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36"><path d="M31 25.4h-.019l-3.335-5.478A3.588 3.588 0 0025 13.9a3.53 3.53 0 00-.936.139l-3.418-5.615a3.6 3.6 0 10-5.292 0l-3.418 5.615A3.53 3.53 0 0011 13.9a3.588 3.588 0 00-2.646 6.024L5.019 25.4H5A3.6 3.6 0 108.442 30h6.116a3.578 3.578 0 006.884 0h6.116A3.593 3.593 0 1031 25.4zM27.558 28h-6.116a3.584 3.584 0 00-1.142-1.75l3.431-5.392A3.571 3.571 0 0025 21.1a3.53 3.53 0 00.936-.139l3.07 5.044A3.593 3.593 0 0027.558 28zM18 9.6a3.543 3.543 0 00.937-.139l3.417 5.615a3.617 3.617 0 00-.618.924h-7.472a3.6 3.6 0 00-.618-.924l3.417-5.615A3.543 3.543 0 0018 9.6zM14.55 18h6.9a3.564 3.564 0 00.678 1.65l-3.687 5.794A3.56 3.56 0 0018 25.4a3.56 3.56 0 00-.441.044l-3.687-5.794A3.564 3.564 0 0014.55 18zm-4.486 2.961A3.53 3.53 0 0011 21.1a3.571 3.571 0 001.27-.242l3.43 5.392A3.584 3.584 0 0014.558 28H8.442a3.593 3.593 0 00-1.448-2z"/></svg>

After

Width:  |  Height:  |  Size: 916 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M29.241 2H12.8a.8.8 0 00-.8.806.785.785 0 00.236.56l3.5 3.5a57.07 57.07 0 00-5.442 9.691 29.236 29.236 0 00-2.174 8.486c-.082.853-.12 1.7-.12 2.536a29.888 29.888 0 00.576 5.753.827.827 0 001.618.023l.006-.023a25.346 25.346 0 012.594-6.919 22.717 22.717 0 014.3-5.429 48.574 48.574 0 017.33-5.429l4.209 4.209a.785.785 0 00.56.236.8.8 0 00.807-.8V2.759A.807.807 0 0029.241 2z"/></svg>

After

Width:  |  Height:  |  Size: 474 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><rect height="26" rx="1" ry="1" width="10" x="6" y="4"/><rect height="16" rx="1" ry="1" width="10" x="20" y="14"/><rect height="2" rx=".5" ry=".5" width="36" y="32"/></svg>

After

Width:  |  Height:  |  Size: 255 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M29 20H18v-4h7a1 1 0 001-1V7a1 1 0 00-1-1h-7V.5a.5.5 0 00-.5-.5h-1a.5.5 0 00-.5.5V6H9a1 1 0 00-1 1v8a1 1 0 001 1h7v4H5a1 1 0 00-1 1v8a1 1 0 001 1h11v5.5a.5.5 0 00.5.5h1a.5.5 0 00.5-.5V30h11a1 1 0 001-1v-8a1 1 0 00-1-1z"/></svg>

After

Width:  |  Height:  |  Size: 319 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><rect height="36" rx=".5" ry=".5" width="2" x="2"/><rect height="10" rx="1" ry="1" width="26" x="6" y="20"/><rect height="10" rx="1" ry="1" width="16" x="6" y="6"/></svg>

After

Width:  |  Height:  |  Size: 253 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M35.5 16H30V9a1 1 0 00-1-1h-8a1 1 0 00-1 1v7h-4V5a1 1 0 00-1-1H7a1 1 0 00-1 1v11H.5a.5.5 0 00-.5.5v1a.5.5 0 00.5.5H6v11a1 1 0 001 1h8a1 1 0 001-1V18h4v7a1 1 0 001 1h8a1 1 0 001-1v-7h5.5a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5z"/></svg>

After

Width:  |  Height:  |  Size: 321 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><rect height="36" rx=".5" ry=".5" width="2" x="32"/><rect height="10" rx="1" ry="1" width="26" x="4" y="20"/><rect height="10" rx="1" ry="1" width="16" x="14" y="6"/></svg>

After

Width:  |  Height:  |  Size: 255 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><rect height="2" rx=".5" ry=".5" width="36" y="2"/><rect height="26" rx="1" ry="1" width="10" x="6" y="6"/><rect height="16" rx="1" ry="1" width="10" x="20" y="6"/></svg>

After

Width:  |  Height:  |  Size: 253 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36"><path d="M28.371 22a10.71 10.71 0 00-6.969 3.093C17.804 20.944 14.02 16 7.896 16a12.449 12.449 0 00-5.285 1.266 1.001 1.001 0 00-.611.922V33.5a.5.5 0 00.5.5h1a.5.5 0 00.5-.5V18.854a9.847 9.847 0 012-.648V33.5a.5.5 0 00.5.5h3a.5.5 0 00.5-.5V18.287a9.497 9.497 0 012 .761V33.5a.5.5 0 00.5.5h3a.5.5 0 00.5-.5V22.082c.683.682 1.35 1.398 2 2.14V33.5a.5.5 0 00.5.5h3a.5.5 0 00.5-.5v-4.805a19.68 19.68 0 002 1.778V33.5a.5.5 0 00.5.5h3a.5.5 0 00.5-.5v-1.537a5.035 5.035 0 002-.17V33.5a.5.5 0 00.5.5h3a.5.5 0 00.5-.5v-6.646C34 23.995 31.212 22 28.371 22zm3.634 4.915A3.313 3.313 0 0128.452 30c-1.414 0-2.645-.103-5.722-3.418A9.369 9.369 0 0128.361 24c1.805 0 3.644 1.179 3.644 2.915zM35.993 13a2 2 0 01-2 2 1.86 1.86 0 01-.19-.039 10.912 10.912 0 01-1.095 3.183 1.959 1.959 0 011.092 2.689 9.1 9.1 0 00-4.22-1.733 8.95 8.95 0 002.37-5.601h-6.66a.5.5 0 010-1h6.659a8.92 8.92 0 00-2.267-5.477l-4.71 4.71a.5.5 0 01-.707-.707l4.71-4.71A8.92 8.92 0 0023.5 4.05v6.659a.5.5 0 01-1 0V4.05a8.92 8.92 0 00-5.476 2.266l4.71 4.71a.5.5 0 11-.707.707l-4.71-4.71A8.92 8.92 0 0014.05 12.5h6.659a.5.5 0 010 1H14.05c.027.332.046.665.1.989a14.108 14.108 0 00-5.138-1.395c-.001-.033-.019-.06-.019-.094a2 2 0 012-2 1.949 1.949 0 011.13.395c.03-.203.053-.409.094-.608a10.89 10.89 0 011.8-4.078A1.973 1.973 0 0112.993 5a2 2 0 012-2 1.974 1.974 0 011.711 1.026 10.885 10.885 0 014.326-1.844c-.006-.063-.037-.117-.037-.182a2 2 0 014 0 1.88 1.88 0 01-.039.192 10.925 10.925 0 014.343 1.812A1.972 1.972 0 0130.993 3a2 2 0 012 2 1.972 1.972 0 01-1.004 1.696 10.924 10.924 0 011.812 4.343 1.878 1.878 0 01.192-.039 2 2 0 012 2zm-7.58 6.12l-4.147-4.146a.5.5 0 01.707-.707l4.146 4.145a.5.5 0 11-.707.707zM23 21.464a.501.501 0 01-.5-.5V15.29a.5.5 0 011 0v5.674a.501.501 0 01-.5.5zm-4.92-3.045a.5.5 0 01-.353-.854l3.3-3.3a.5.5 0 01.707.708l-3.3 3.3a.5.5 0 01-.354.146z"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M33.932 25.271L30 19.829l-4.1 5.442a.386.386 0 00.252.629h2.5a11.062 11.062 0 01-8.7 3.9V17.212l2.08-.071a.718.718 0 00.67-.759v-1.517a.718.718 0 00-.67-.759l-2.08.07-.024-2.119A5.925 5.925 0 0023 7.16a5.165 5.165 0 00-4.989-5.2A5.289 5.289 0 0013 7.275a5.663 5.663 0 003 4.782v2.049h-2.007a.718.718 0 00-.67.759v1.517a.718.718 0 00.67.759H16v12.587A10.846 10.846 0 017.35 25.9H9.7a.387.387 0 00.252-.629L6 19.829l-3.932 5.442a.386.386 0 00.252.629h1.941c1.932 5.3 7.629 7.939 13.75 7.939S29.807 31.2 31.739 25.9h1.941a.386.386 0 00.252-.629zM15.344 7.123a2.783 2.783 0 012.667-2.656 2.66 2.66 0 012.645 2.541 2.873 2.873 0 01-2.645 2.771 2.783 2.783 0 01-2.667-2.656z"/></svg>

After

Width:  |  Height:  |  Size: 769 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M10 6l18 18H18l-8 8zM8.5 2.054a.5.5 0 00-.5.5v32.78a.5.5 0 00.5.5.49.49 0 00.35-.147L18.524 26h13a.5.5 0 00.354-.854L8.854 2.2a.49.49 0 00-.354-.146z"/></svg>

After

Width:  |  Height:  |  Size: 250 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M24 32v-7a1 1 0 011-1h7a1.161 1.161 0 01-.254.854l-6.892 6.892A1.161 1.161 0 0124 32z"/><path d="M31 4H5a1 1 0 00-1 1v26a1 1 0 001 1h17v-8a2 2 0 012-2h8V5a1 1 0 00-1-1zM18 24h-8v-2h8zm8-6H10v-2h16zm0-6H10v-2h16z"/></svg>

After

Width:  |  Height:  |  Size: 312 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M28.023 4.36A.967.967 0 0027.98 3a.963.963 0 00-1.362-.044 1.561 1.561 0 00-.118.144l-.011-.014-8.74 8.736.012.016a.721.721 0 00-.145.119.993.993 0 101.524 1.258l.013.013 8.739-8.737-.015-.014a.813.813 0 00.146-.117zM29.8 5.883c-.72.721-9.537 9.645-9.588 9.7a2.214 2.214 0 01-2.362.029l-.767-.725L6.286 25.474a1.5 1.5 0 00-.327.48L4.088 32.36a.375.375 0 00.5.491l6.428-1.951a1.5 1.5 0 00.46-.313L33.06 9.079zm1.014-1.711l3.106 2.956a2.78 2.78 0 00-.807-3.228 3.3 3.3 0 00-3.22-1.06c-.179.064.065.3.138.375s.735.861.783.957zM3.723 27.486c-3.053-9.059.3-16.932 8.726-21.509 1.269-.69.268-2.706-1.01-2.012C2.19 8.992-1.077 17.405 2.286 27.5c1.437 4.314 1.437-.014 1.437-.014z"/></svg>

After

Width:  |  Height:  |  Size: 773 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M33 2H3a1 1 0 00-1 1v24a1 1 0 001 1h11l3.536 6.839a.5.5 0 00.928 0L22 28h11a1 1 0 001-1V3a1 1 0 00-1-1zM15.534 5.575a.306.306 0 01.189-.336A7.962 7.962 0 0118 4.873a9.1 9.1 0 012.311.274.366.366 0 01.227.336v2.2c0 2.567-.643 9.216-.756 10.133 0 .092-.04.184-.266.184h-3.035a.24.24 0 01-.265-.184c-.075-.855-.682-7.475-.682-10.041zM18 24.729a2.519 2.519 0 01-2.7-2.661 2.624 2.624 0 012.7-2.739 2.582 2.582 0 012.7 2.739 2.52 2.52 0 01-2.7 2.661z"/></svg>

After

Width:  |  Height:  |  Size: 546 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M24.215 23.5l2.312-4.737a.5.5 0 01.9 0l2.353 4.716 5.22.736a.5.5 0 01.281.851l-3.759 3.7.914 5.191a.5.5 0 01-.723.531l-4.677-2.433-4.654 2.473a.5.5 0 01-.731-.528l.868-5.2-3.79-3.662a.5.5 0 01.271-.856z"/><path d="M33 2H3a1 1 0 00-1 1v24a1 1 0 001 1h11l3.536 6.839a.5.5 0 00.928 0l.007-.013.054-.323.775-4.642-4.842-4.679a1.989 1.989 0 01.886-3.354A2.59 2.59 0 0118 19.329a2.535 2.535 0 012.518 1.693l1.694-.254 2.954-6.051a2 2 0 013.586-.015l3.007 6.025 2.241.315V3a1 1 0 00-1-1zM20.534 7.683c0 2.567-.643 9.216-.757 10.133 0 .092-.039.184-.264.184h-3.032a.24.24 0 01-.265-.184c-.075-.855-.682-7.475-.682-10.041v-2.2a.306.306 0 01.189-.336A7.962 7.962 0 0118 4.873a9.114 9.114 0 012.312.274.367.367 0 01.226.336z"/></svg>

After

Width:  |  Height:  |  Size: 814 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M32 2H4a2 2 0 00-2 2v28a2 2 0 002 2h28a2 2 0 002-2V4a2 2 0 00-2-2zM18 30.2A12.2 12.2 0 1130.2 18 12.2 12.2 0 0118 30.2z"/><path d="M15.591 20.484l-1.1 3.322a.234.234 0 01-.259.194h-2.589c-.172 0-.215-.086-.172-.237 1.143-3.236 2.977-8.543 4.336-12.275a3.849 3.849 0 00.215-1.337.136.136 0 01.151-.151h3.473a.162.162 0 01.173.108c1.575 4.336 3.3 9.276 4.9 13.676.064.151.021.216-.13.216h-2.85a.193.193 0 01-.216-.151l-1.208-3.365zm4.055-2.459c-.431-1.467-1.294-3.926-1.725-5.48H17.9c-.324 1.467-1.1 3.732-1.661 5.48z"/></svg>

After

Width:  |  Height:  |  Size: 616 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36"><path d="M27 33.435a6.212 6.212 0 01-4.771-2.123L24.537 29H18v6.55l2.504-2.509A8.745 8.745 0 0027 36a9.298 9.298 0 009-9h-2.28A6.889 6.889 0 0127 33.435zm6.558-12.477A9.215 9.215 0 0027 18a9.298 9.298 0 00-9 9h2.28A6.889 6.889 0 0127 20.565a6.283 6.283 0 014.871 2.117L29.601 25H36v-6.535zm-17.327-5.287c-.538 0-.75 0-1.027-.016v-3.781c.18-.017.636-.033 1.206-.033 1.5 0 2.347.7 2.347 1.89 0 1.483-1.158 1.94-2.526 1.94zm-9.264-3.88c.326 1.142 1.092 3.407 1.435 4.484H5.55c.488-1.484 1.14-3.391 1.401-4.483zm20.89 1.94a1.689 1.689 0 01-.53 1.286c-.11-.003-.216-.017-.327-.017a12.004 12.004 0 00-2.696.315v-3.441c.179-.017.635-.033 1.205-.033 1.5 0 2.347.7 2.347 1.89zM15 27a12.003 12.003 0 017.331-11.058V10.31c0-.082.033-.131.115-.131.619-.016 1.825-.048 3.015-.048 3.162 0 4.335 1.76 4.335 3.553a3.83 3.83 0 01-.319 1.576 11.882 11.882 0 012.523.843v-8.88A7.222 7.222 0 0024.778 0H7.222A7.222 7.222 0 000 7.222v17.556A7.222 7.222 0 007.222 32h8.88A11.936 11.936 0 0115 27zm-3.143-6.13H10.03a.163.163 0 01-.162-.098l-.946-2.722H5.028l-.897 2.69a.162.162 0 01-.18.13h-1.63c-.097 0-.13-.048-.113-.163l3.358-9.551a2.485 2.485 0 00.146-.88c0-.065.033-.114.098-.114h2.266c.081 0 .097.016.114.098l3.765 10.463c.016.099 0 .148-.098.148zm1.375-.114V10.31c0-.082.032-.131.114-.131.62-.016 1.826-.048 3.015-.048 3.162 0 4.335 1.76 4.335 3.553 0 2.592-2.004 3.716-4.465 3.716h-1.027v3.342c0 .08-.032.13-.13.13h-1.712c-.082 0-.13-.033-.13-.115z"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M31.66 8H17.709a2.347 2.347 0 01-1.3-.393L11.59 4.393A2.343 2.343 0 0010.292 4H4.34A2.34 2.34 0 002 6.34v21.32A2.34 2.34 0 004.34 30h27.32A2.34 2.34 0 0034 27.66V10.34A2.34 2.34 0 0031.66 8zM4 11.5A1.5 1.5 0 015.5 10h25a1.5 1.5 0 011.5 1.5v.5H4z"/></svg>

After

Width:  |  Height:  |  Size: 346 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M9.9 26.469a3.2 3.2 0 01.31-.469H3a1 1 0 01-1-1V3a1 1 0 011-1h22a1 1 0 011 1v7.028a2.868 2.868 0 012-.386V3a3 3 0 00-3-3H3a3 3 0 00-3 3v22a3 3 0 003 3h6.683a3.225 3.225 0 01.217-1.531z"/><path d="M34.08 17.905l-2.242.939a9.35 9.35 0 00-2.691-2.695l.924-2.258a.862.862 0 00-.472-1.125l-1.712-.7a.863.863 0 00-1.126.471l-.924 2.258a9.33 9.33 0 00-3.808.034l-.94-2.243a.862.862 0 00-1.13-.462l-1.592.667a.863.863 0 00-.463 1.129l.94 2.243a9.338 9.338 0 00-2.695 2.691l-2.257-.924a.862.862 0 00-1.126.471l-.7 1.713a.862.862 0 00.471 1.125l2.258.925a9.312 9.312 0 00.034 3.808l-2.243.94a.863.863 0 00-.462 1.13l.667 1.592a.862.862 0 001.13.462l2.242-.939a9.325 9.325 0 002.691 2.7l-.924 2.257a.862.862 0 00.472 1.126l1.712.7a.863.863 0 001.126-.471l.924-2.258a9.329 9.329 0 003.808-.033l.94 2.242a.863.863 0 001.13.462l1.592-.667a.863.863 0 00.463-1.13l-.94-2.242a9.313 9.313 0 002.7-2.691l2.257.924a.862.862 0 001.126-.472l.7-1.712a.862.862 0 00-.471-1.125l-2.257-.925a9.33 9.33 0 00-.035-3.808l2.243-.94a.863.863 0 00.462-1.13l-.667-1.592a.862.862 0 00-1.135-.467zm-6.9 4.761a3.453 3.453 0 11-4.518-1.85 3.451 3.451 0 014.522 1.85z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M24 12a12 12 0 00-12 12 11.831 11.831 0 0012 11.8A11.662 11.662 0 0035.8 24 11.831 11.831 0 0024 12zm7.242 7.907l-7.224 9.434a1.206 1.206 0 01-.875.461h-.073a1.2 1.2 0 01-.849-.351l-4.837-4.847a1.2 1.2 0 010-1.7l1.327-1.325a1.2 1.2 0 011.7 0l2.4 2.4L27.89 17.3a1.2 1.2 0 011.686-.21l1.455 1.133a1.2 1.2 0 01.211 1.684z"/><path d="M11.521 14H5a1 1 0 01-1-1v-2a1 1 0 011-1h11.26a15.9 15.9 0 017.055-1.965A11.818 11.818 0 0012 .2 11.662 11.662 0 00.2 12a11.819 11.819 0 007.834 11.315A15.921 15.921 0 0111.521 14z"/></svg>

After

Width:  |  Height:  |  Size: 611 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><rect height="6" rx="1" ry="1" width="6" x="2" y="2"/><rect height="6" rx="1" ry="1" width="6" x="14" y="2"/><rect height="6" rx="1" ry="1" width="6" x="26" y="2"/><rect height="6" rx="1" ry="1" width="6" x="2" y="14"/><rect height="6" rx="1" ry="1" width="6" x="14" y="14"/><rect height="6" rx="1" ry="1" width="6" x="26" y="14"/><rect height="6" rx="1" ry="1" width="6" x="2" y="26"/><rect height="6" rx="1" ry="1" width="6" x="14" y="26"/><rect height="6" rx="1" ry="1" width="6" x="26" y="26"/></svg>

After

Width:  |  Height:  |  Size: 587 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><rect height="6" rx="1" ry="1" width="36" y="4"/><path d="M2 12v19a1 1 0 001 1h30a1 1 0 001-1V12zm21 12H13a1 1 0 01-1-1v-4a1 1 0 011-1h10a1 1 0 011 1v4a1 1 0 01-1 1z"/></svg>

After

Width:  |  Height:  |  Size: 257 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><rect height="6" rx="1" ry="1" width="32" y="2"/><path d="M27 18.1a8.85 8.85 0 100 17.7 8.85 8.85 0 000-17.7zm5 9.4a.5.5 0 01-.5.5h-9a.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5h9a.5.5 0 01.5.5z"/><path d="M16.893 20H11a1 1 0 01-1-1v-4a1 1 0 011-1h10a1 1 0 011 1v.769a12.109 12.109 0 018-.685V10H2v15a1 1 0 001 1h11.75a12.216 12.216 0 012.143-6z"/></svg>

After

Width:  |  Height:  |  Size: 427 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M24 20V3a1 1 0 00-1-1H13a1 1 0 00-1 1v17H5.007a.5.5 0 00-.354.854L18 34.2l13.346-13.346a.5.5 0 00-.353-.854z"/></svg>

After

Width:  |  Height:  |  Size: 209 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M16 12h17a1 1 0 011 1v10a1 1 0 01-1 1H16v6.993a.5.5 0 01-.854.354L1.8 18 15.146 4.654a.5.5 0 01.854.353z"/></svg>

After

Width:  |  Height:  |  Size: 205 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M20 12H3a1 1 0 00-1 1v10a1 1 0 001 1h17v6.993a.5.5 0 00.854.354L34.2 18 20.854 4.654a.5.5 0 00-.854.353z"/></svg>

After

Width:  |  Height:  |  Size: 205 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M24 16v17a1 1 0 01-1 1H13a1 1 0 01-1-1V16H5.007a.5.5 0 01-.354-.854L18 1.8l13.346 13.346a.5.5 0 01-.354.854z"/></svg>

After

Width:  |  Height:  |  Size: 209 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M26.2 18.284L12.181 32.3a1 1 0 01-1.414 0L3.7 25.233a1 1 0 010-1.414L17.716 9.8l-4.944-4.946A.5.5 0 0113.125 4H32v18.875a.5.5 0 01-.854.353z"/></svg>

After

Width:  |  Height:  |  Size: 241 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M8 9v24a1 1 0 001 1h24a1 1 0 001-1V14.914a1 1 0 00-.293-.707l-5.914-5.914A1 1 0 0027.086 8H9a1 1 0 00-1 1zm24 23H10V10h16v5a1 1 0 001 1h5zM8 0h2v6H8zM0 8h6v2H0z"/></svg>

After

Width:  |  Height:  |  Size: 261 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M20 10h10v2H20zm0 8h10v2H20zM6 22h12v2H6zm14-8h10v2H20zm0 8h10v2H20zM6 10h12v10H6z"/><path d="M33 4H3a1 1 0 00-1 1v24a1 1 0 001 1h30a1 1 0 001-1V5a1 1 0 00-1-1zM4 28V6h28v22z"/></svg>

After

Width:  |  Height:  |  Size: 275 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M14 16v18a2 2 0 002 2h18a2 2 0 002-2V16a2 2 0 00-2-2H16a2 2 0 00-2 2zm4 3.5a.5.5 0 01-.5.5h-1a.5.5 0 01-.5-.5v-3a.5.5 0 01.5-.5h1a.5.5 0 01.5.5zm0 7a.5.5 0 01-.5.5h-1a.5.5 0 01-.5-.5v-3a.5.5 0 01.5-.5h1a.5.5 0 01.5.5zm0 7a.5.5 0 01-.5.5h-1a.5.5 0 01-.5-.5v-3a.5.5 0 01.5-.5h1a.5.5 0 01.5.5zm16-14a.5.5 0 01-.5.5h-1a.5.5 0 01-.5-.5v-3a.5.5 0 01.5-.5h1a.5.5 0 01.5.5zm0 7a.5.5 0 01-.5.5h-1a.5.5 0 01-.5-.5v-3a.5.5 0 01.5-.5h1a.5.5 0 01.5.5zm0 7a.5.5 0 01-.5.5h-1a.5.5 0 01-.5-.5v-3a.5.5 0 01.5-.5h1a.5.5 0 01.5.5zM29.5 26h-9a.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5h9a.5.5 0 01.5.5v1a.5.5 0 01-.5.5z"/><circle cx="25" cy="9" r="2.5"/><path d="M12 12.343l-.728-.728a2 2 0 00-2.828 0L2 18.059V4h28v8h2V3a1 1 0 00-1-1H1a1 1 0 00-1 1v22a1 1 0 001 1h11z"/></svg>

After

Width:  |  Height:  |  Size: 840 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M18.189 7.906A1.806 1.806 0 1016.383 6.1a1.806 1.806 0 001.806 1.806z"/><path d="M10 10.2a3.447 3.447 0 00-2.1-1.375c-1.845 0-5.9 5.588-5.9 5.588V2h22v6h2V1a1 1 0 00-1-1H1a1 1 0 00-1 1v18a1 1 0 001 1h9z"/><path d="M15.059 30H14.5a.5.5 0 01-.5-.5v-3a.5.5 0 01.5-.5h.256a12.2 12.2 0 01.659-3H14.5a.5.5 0 01-.5-.5v-3a.5.5 0 01.5-.5h1a.5.5 0 01.5.5v2.12a12.218 12.218 0 0114-6.436V12.5a.5.5 0 01.5-.5h1a.5.5 0 01.5.5v3a.488.488 0 01-.127.307A12.268 12.268 0 0134 16.993V12a2 2 0 00-2-2H14a2 2 0 00-2 2v18a2 2 0 002 2h1.721a12.114 12.114 0 01-.662-2zM14 12.5a.5.5 0 01.5-.5h1a.5.5 0 01.5.5v3a.5.5 0 01-.5.5h-1a.5.5 0 01-.5-.5z"/><path d="M27 18.1a8.9 8.9 0 108.9 8.9 8.9 8.9 0 00-8.9-8.9zm-2.338 14.312l-4.128-4.127a.5.5 0 010-.707l1.037-1.037a.5.5 0 01.707 0l2.731 2.731 6.106-6.106a.5.5 0 01.707 0l1.043 1.043a.5.5 0 010 .707l-7.5 7.5a.5.5 0 01-.703-.004z"/></svg>

After

Width:  |  Height:  |  Size: 953 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M12 24H4V4h28v11.624a12.045 12.045 0 012 1.458V3a1 1 0 00-1-1H3a1 1 0 00-1 1v22a1 1 0 001 1h11a11.975 11.975 0 01.181-2z"/><path d="M26 16.05A9.95 9.95 0 1035.95 26 9.95 9.95 0 0026 16.05zm6 11.45a.5.5 0 01-.5.5H28v3.5a.5.5 0 01-.5.5h-3a.5.5 0 01-.5-.5V28h-3.5a.5.5 0 01-.5-.5v-3a.5.5 0 01.5-.5H24v-3.5a.5.5 0 01.5-.5h3a.5.5 0 01.5.5V24h3.5a.5.5 0 01.5.5z"/></svg>

After

Width:  |  Height:  |  Size: 456 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M12 24H4V4h28v11.624a12.045 12.045 0 012 1.458V3a1 1 0 00-1-1H3a1 1 0 00-1 1v22a1 1 0 001 1h11a11.975 11.975 0 01.181-2z"/><path d="M26 16.05A9.95 9.95 0 1035.95 26 9.95 9.95 0 0026 16.05zm-.17 16.181l-5.39-5.364a.5.5 0 01.339-.867H24v-5.5a.5.5 0 01.5-.5h3a.5.5 0 01.5.5V26h3.221a.5.5 0 01.339.867l-5.39 5.364a.25.25 0 01-.34 0z"/></svg>

After

Width:  |  Height:  |  Size: 429 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M35.895 34.782l-11.18-20.007a.819.819 0 00-1.429 0L12.105 34.782A.819.819 0 0012.82 36h22.36a.819.819 0 00.715-1.218zm-10.527-1.974a.456.456 0 01-.456.456h-1.824a.456.456 0 01-.456-.456v-1.825a.456.456 0 01.456-.456h1.824a.456.456 0 01.456.456zm0-4.56a.456.456 0 01-.456.456h-1.824a.456.456 0 01-.456-.456v-8.21a.456.456 0 01.456-.456h1.824a.456.456 0 01.456.456z"/><path d="M12.968 26h1.754l1.117-2H4V4h28v19.712l1.25 2.237A.986.986 0 0034 25V3a1 1 0 00-1-1H3a1 1 0 00-1 1v22a1 1 0 001 1h9.968z"/></svg>

After

Width:  |  Height:  |  Size: 596 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M20.689 28.358l7.745 4.317a.7.7 0 00.938-.312L34.9 18.6zM18 29.182v6.34a.426.426 0 00.7.325l4.535-3.857zM7.662 24H4V4h28v10.506l2-.611V3a1 1 0 00-1-1H3a1 1 0 00-1 1v22a1 1 0 001 1h7.737z"/><path d="M33.949 17.052l-21.921 6.742a.349.349 0 00-.056.647l6.064 2.966zM14.474 8.015h-.725a6.758 6.758 0 00-3.367.97A5.311 5.311 0 008.234 11.5a4.227 4.227 0 00-.156 2.4 5.187 5.187 0 002.534 3.252 9.092 9.092 0 004.616.831l1.588-.105-1.456-1.83a9.815 9.815 0 01-2.787-.231 3.569 3.569 0 01-2.309-1.612 2.637 2.637 0 01.072-2.552 3.985 3.985 0 013.2-1.615c.111-.008.74-.014.852-.017a4.937 4.937 0 012.42.488 3.018 3.018 0 011.644 2.172 1.552 1.552 0 00.178.71.982.982 0 00.376.288 2.962 2.962 0 001.435.307 4.887 4.887 0 00-1.621-4.423 6.542 6.542 0 00-4.346-1.548z"/><path d="M21.567 18.011h.725a6.758 6.758 0 003.367-.97 5.311 5.311 0 002.149-2.511 4.227 4.227 0 00.156-2.4 5.187 5.187 0 00-2.534-3.26 9.092 9.092 0 00-4.616-.831l-1.588.105 1.456 1.83a9.815 9.815 0 012.787.231 3.569 3.569 0 012.309 1.612 2.637 2.637 0 01-.072 2.552 3.985 3.985 0 01-3.2 1.615c-.111.008-.74.014-.852.017a4.937 4.937 0 01-2.42-.488 3.018 3.018 0 01-1.644-2.172 1.552 1.552 0 00-.178-.71.982.982 0 00-.376-.288 2.962 2.962 0 00-1.435-.307 4.887 4.887 0 001.621 4.423 6.542 6.542 0 004.345 1.552z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M13.014 25.941L14.955 24H4V4h28v5.982a3.189 3.189 0 011.023.688l.977.977V3a1 1 0 00-1-1H3a1 1 0 00-1 1v22a1 1 0 001 1h9.968c.017-.018.032-.041.046-.059z"/><path d="M35.645 16.685l-4.323-4.323a.911.911 0 00-.65-.265h-.029a1.028 1.028 0 00-.7.3L14.711 27.639a.748.748 0 00-.188.316l-2.443 7.34c-.085.282.344.638.587.638a.206.206 0 00.046 0c.207-.048 6.26-2.118 7.344-2.444a.735.735 0 00.311-.187L35.6 18.059a1.031 1.031 0 00.3-.662.916.916 0 00-.255-.712zM14.039 33.973l1.978-5.519 3.54 3.531c-1.621.487-4.118 1.57-5.518 1.988z"/></svg>

After

Width:  |  Height:  |  Size: 626 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M19.237 26.8l9.084 5.063a.819.819 0 001.1-.366l6.485-16.146zm-3.154.963V35.2a.5.5 0 00.824.381l5.32-4.525zM7.662 24H4V4h28v7.8l1.96-.611H34V3a1 1 0 00-1-1H3a1 1 0 00-1 1v22a1 1 0 001 1h8.667z"/><path d="M34.791 13.535L9.078 21.444a.409.409 0 00-.066.759l7.114 3.479z"/></svg>

After

Width:  |  Height:  |  Size: 367 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M29.585 29.5c.249.25.417.584 0 .917l-5.167 3.334c-.417.25-.583.083-.751-.334l-6.416-11.169L8.833 31.5c-.083.166-.333.332-.582 0l-4-4.168c-.417-.25-.334-.5 0-.749l9.5-7.918L2.917 14.58c-.168 0-.417-.332-.251-.749L5.5 8.164A.438.438 0 016.25 8l9.5 6.167L16.335 2a.439.439 0 01.5-.5l6.917.916c.417 0 .5.167.417.584l-3.251 11.914 11-3.333c.249-.167.5-.167.666.333l1.084 6.167c.083.416 0 .583-.334.583l-11.5.917z"/></svg>

After

Width:  |  Height:  |  Size: 508 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M24.194 25.154c2.1-.429 6.515-2.615 6.515-9.387 0-7.2-4.844-11.53-11.53-11.53-7.587 0-13.759 5.1-13.759 14.4 0 6.472 2.914 10.93 8.015 13.545a.408.408 0 01.214.385l-.085 2.833c0 .215-.043.215-.215.172A17.33 17.33 0 012.162 18.81c0-10.115 7.03-17.4 17.145-17.4 8.059 0 14.531 5.229 14.531 14.1 0 8.7-6.387 12.945-13.673 12.945-5.658 0-9.559-3.172-9.559-9.3A9.729 9.729 0 0120.593 9.08a11.411 11.411 0 014.287.686c.171.043.214.086.214.257zm-2.272-13.116a5.746 5.746 0 00-1.757-.214c-3.944 0-6.43 3.129-6.43 7.072 0 3.729 1.972 6.687 6.087 6.687a5.285 5.285 0 001.328-.129z"/></svg>

After

Width:  |  Height:  |  Size: 671 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M16.207 31.557a6.64 6.64 0 01-4.728 1.97h-.106a6.976 6.976 0 01-4.827-2.075 6.764 6.764 0 01-.1-9.661l17.779-17.8a4.874 4.874 0 013.133-1.479 3.72 3.72 0 013.042 1.12A3.537 3.537 0 0131.517 6.7a5.74 5.74 0 01-1.584 3L18.072 21.541c-.764.765-1.483 1.315-2.3.5s-.176-1.569.526-2.271c.267-.267 8.248-8.238 9.673-9.659a.732.732 0 00.014-1.021l-.675-.718a.735.735 0 00-1.056-.015L14.3 18.344a3.632 3.632 0 00-.072 5.469c2.661 2.66 5.683-.591 5.683-.591L31.7 11.466c2.508-2.5 3.47-6.6.472-9.6A6.227 6.227 0 0027.589 0a7.275 7.275 0 00-5.132 2.227L4.76 19.9A9.433 9.433 0 0018.1 33.24l15.405-15.4a.735.735 0 000-1.038l-.75-.751a.735.735 0 00-1.039 0z"/></svg>

After

Width:  |  Height:  |  Size: 744 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M15.77 22.036c-.821-.82-.176-1.569.526-2.271.267-.267 8.248-8.238 9.673-9.659a.731.731 0 00.013-1.021l-.674-.718a.734.734 0 00-1.056-.015L14.3 18.344a3.631 3.631 0 00-.071 5.469 3.876 3.876 0 00.778.6 12.161 12.161 0 01.787-2.358z"/><path d="M15.706 31.97a6.6 6.6 0 01-4.227 1.557h-.106a6.972 6.972 0 01-4.826-2.075 6.765 6.765 0 01-.106-9.661l17.78-17.8a4.874 4.874 0 013.133-1.479A3.723 3.723 0 0130.4 3.631 3.54 3.54 0 0131.517 6.7a5.732 5.732 0 01-1.584 3l-5.348 5.34a12.237 12.237 0 013.7-.172l3.411-3.4c2.509-2.5 3.471-6.6.473-9.6A6.227 6.227 0 0027.59 0a7.274 7.274 0 00-5.133 2.227L4.76 19.9a9.415 9.415 0 0012.191 14.278 12.231 12.231 0 01-1.245-2.208z"/><path d="M27 18.1a8.9 8.9 0 108.9 8.9 8.9 8.9 0 00-8.9-8.9zM20 27a6.929 6.929 0 011.475-4.252l9.777 9.777A6.966 6.966 0 0120 27zm12.525 4.252l-9.777-9.777a6.966 6.966 0 019.777 9.777z"/></svg>

After

Width:  |  Height:  |  Size: 948 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M6.25 5.634V3a1 1 0 011-1h1.5a1 1 0 011 1v1H24v2H9.756a11.028 11.028 0 00.869 4H22a2 2 0 01-2 2h-8.214a7.636 7.636 0 002.628 2.219l1.358.682-3.827 1.921-.011.006A13.187 13.187 0 016.25 5.634zm17.817 13.5l-.012.006-3.826 1.92 1.357.681A7.675 7.675 0 0124.247 24H16a2 2 0 00-2 2h11.394a11.048 11.048 0 01.851 4H12v2h14.25v1a1 1 0 001 1h1.5a1 1 0 001-1v-2.678a13.189 13.189 0 00-5.683-11.193zM28.75 2h-1.5a1 1 0 00-1 1v2.634c0 3.793-1.83 7.163-4.664 8.586l-8.742 4.389c-4.006 2.012-6.594 6.61-6.594 11.713V33a1 1 0 001 1h1.5a1 1 0 001-1v-2.678c0-3.792 1.83-7.162 4.664-8.586l8.742-4.388c4.006-2.012 6.594-6.61 6.594-11.714V3a1 1 0 00-1-1z"/></svg>

After

Width:  |  Height:  |  Size: 736 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M30 3.417a1 1 0 00-1.268-.965l-16 4.447a1 1 0 00-.732.964v16.55a6.628 6.628 0 00-6.144.057c-3.113 1.515-4.687 4.7-3.515 7.1s4.646 3.136 7.759 1.62a6.434 6.434 0 003.9-5.333V12.824l14-4v11.589a6.628 6.628 0 00-6.144.057c-3.113 1.515-4.687 4.7-3.515 7.1s4.646 3.132 7.759 1.616a6.427 6.427 0 003.9-5.353V3.417z"/></svg>

After

Width:  |  Height:  |  Size: 409 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M32.514 14.337l.078 2.248a1.834 1.834 0 00.939 1.533l1.963 1.1-2.248.078a1.834 1.834 0 00-1.533.939l-1.1 1.963-.079-2.248a1.83 1.83 0 00-.939-1.533l-1.961-1.095 2.248-.079a1.83 1.83 0 001.538-.943zM6.8 1.044l.113 3.134a2.556 2.556 0 001.3 2.137l2.736 1.532-3.126.113a2.553 2.553 0 00-2.137 1.305L4.154 12l-.113-3.133A2.553 2.553 0 002.736 6.73L0 5.2l3.133-.114A2.552 2.552 0 005.27 3.78zM26 9.565A1.565 1.565 0 0024.435 8H14v1.129a1.48 1.48 0 01-1.366 1.562l-4.6.181a1.207 1.207 0 00-1.024.655L6 13.5v18.94A1.565 1.565 0 007.565 34h16.87A1.565 1.565 0 0026 32.435zM8 14h5.5v2H8zm0 4h9v2H8zm0 4h10.75v2H8zm16 6H8v-2h16zm4.274-28l.3 2.229a1.83 1.83 0 001.085 1.434l2.06.9-2.229.3a1.834 1.834 0 00-1.434 1.085L27.155 8l-.3-2.229a1.834 1.834 0 00-1.085-1.434l-2.059-.9 2.23-.3a1.83 1.83 0 001.436-1.077z"/></svg>

After

Width:  |  Height:  |  Size: 900 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M10 10V5.207a.5.5 0 00-.854-.354L0 14l9.146 9.146a.5.5 0 00.854-.353V18h16v13a1 1 0 001 1h6a1 1 0 001-1V16a6 6 0 00-6-6z"/></svg>

After

Width:  |  Height:  |  Size: 221 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M24.031 2.675L25.853.854A.49.49 0 0026 .5a.5.5 0 00-.5-.5h-5.053A.5.5 0 0020 .447V5.5a.5.5 0 00.5.5.494.494 0 00.35-.147l1.58-1.58a14.44 14.44 0 01-1.93 27.994.6.6 0 00-.5.585V33.9a.408.408 0 00.463.4 16.471 16.471 0 003.568-31.625z"/><path d="M27.773 17.968c0-3.259-.986-6.968-4.931-6.968-3.216 0-4.995 2.98-4.995 6.968 0 3.923 1.479 7.032 5.016 7.032 3.602 0 4.91-3.43 4.91-7.032zM20.44 17.9c0-3.281.987-4.717 2.359-4.717 1.587 0 2.4 1.5 2.4 4.759 0 3.131-.707 4.824-2.337 4.824S20.44 20.948 20.44 17.9zM15.5 32.267a14.481 14.481 0 010-28.534.6.6 0 00.5-.585V2.1a.408.408 0 00-.463-.4 16.487 16.487 0 000 32.608A.408.408 0 0016 33.9v-1.048a.6.6 0 00-.5-.585z"/><path d="M14.052 17.475a3.114 3.114 0 001.761-2.852c0-2.165-1.529-3.623-4.025-3.623a6.385 6.385 0 00-3.271.836c-.117.064-.1.107-.1.215v1.972c0 .086.019.128.136.086a5.1 5.1 0 012.786-.815c1.471 0 2.187.665 2.187 1.672 0 1.072-.812 1.587-2.225 1.587h-.968c-.1 0-.116.064-.116.193V18.7c0 .107.039.15.135.15h1.123c1.664 0 2.516.643 2.516 1.908 0 1.093-.716 1.951-2.516 1.951a5.806 5.806 0 01-3.078-.9.111.111 0 00-.173.085v2.123c0 .107.019.236.116.278a6.239 6.239 0 003.215.705c2.652 0 4.839-1.479 4.839-4.181a3.315 3.315 0 00-2.342-3.344z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M35.5 16.08h-28l9.94-9.94a.967.967 0 000-1.4l-.7-.72a1.027 1.027 0 00-1.42 0L2.48 16.88a1.027 1.027 0 000 1.42l12.78 13.68a1.027 1.027 0 001.42 0l.7-.7a1.027 1.027 0 000-1.42L7.52 19H35.5a.5.5 0 00.5-.5v-1.92a.5.5 0 00-.5-.5z"/></svg>

After

Width:  |  Height:  |  Size: 326 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M33.072 31.759L24 14V4h1a1 1 0 001-1V1a1 1 0 00-1-1H11a1 1 0 00-1 1v2a1 1 0 001 1h1v10L2.928 31.759A3 3 0 005.659 36h24.682a3 3 0 002.731-4.241zM8.727 24.364L14 14.454V4h8v10.455l2.636 4.909z"/></svg>

After

Width:  |  Height:  |  Size: 292 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M27 18.1a8.9 8.9 0 108.9 8.9 8.9 8.9 0 00-8.9-8.9zm-2.338 14.312l-4.128-4.128a.5.5 0 010-.707l1.036-1.036a.5.5 0 01.707 0l2.731 2.731 6.106-6.106a.5.5 0 01.707 0l1.043 1.043a.5.5 0 010 .707l-7.5 7.5a.5.5 0 01-.702-.004z"/><path d="M14.7 27a12.229 12.229 0 011.34-5.563l-9.312 2.927L12 14.453V4h8v10.454l.98 1.825a12.231 12.231 0 011.77-.81L22 14V4h1a1 1 0 001-1V1a1 1 0 00-1-1H9a1 1 0 00-1 1v2a1 1 0 001 1h1v10L.928 31.759A3 3 0 003.659 36h14.977a12.252 12.252 0 01-3.936-9z"/></svg>

After

Width:  |  Height:  |  Size: 575 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M12 35V23a2.976 2.976 0 01.031-.3l-5.3 1.667L12 14.453V4h8v9.45l2-2.218V4h1a1 1 0 001-1V1a1 1 0 00-1-1H9a1 1 0 00-1 1v2a1 1 0 001 1h1v10L.928 31.759A3 3 0 003.659 36h8.525A2.972 2.972 0 0112 35z"/><path d="M29.722 18.331L24 12l-5.708 6.331A1 1 0 0019.035 20H22v7.5a.5.5 0 00.5.5h3a.5.5 0 00.5-.5V20h2.979a1 1 0 00.743-1.669z"/><path d="M30 22v10H18V22h-3a1 1 0 00-1 1v12a1 1 0 001 1h18a1 1 0 001-1V23a1 1 0 00-1-1z"/></svg>

After

Width:  |  Height:  |  Size: 515 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M18 36a4.406 4.406 0 004-4h-8a4.406 4.406 0 004 4zm9.143-24.615c0-3.437-3.206-4.891-7.143-5.268V3a1.079 1.079 0 00-1.143-1h-1.714A1.079 1.079 0 0016 3v3.117c-3.937.377-7.143 1.831-7.143 5.268C8.857 26.8 4 26.111 4 28.154V30h28v-1.846C32 26 27.143 26.8 27.143 11.385z"/></svg>

After

Width:  |  Height:  |  Size: 367 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M18 12l6-6 6 6-6 6z"/><rect height="3.155" rx=".789" ry=".789" transform="rotate(-44.995 30.008 18.01)" width="12.619" x="23.7" y="16.432"/><rect height="3.155" rx=".789" ry=".789" transform="rotate(-44.995 18.023 6.023)" width="12.619" x="11.713" y="4.445"/><path d="M4.06 34.06l-2.12-2.12a1.5 1.5 0 010-2.122L18 15l3 3L6.182 34.06a1.5 1.5 0 01-2.122 0zM34 30v-1a1 1 0 00-1-1H23a1 1 0 00-1 1v1h-1.5a.5.5 0 00-.5.5v3a.5.5 0 00.5.5h15a.5.5 0 00.5-.5v-3a.5.5 0 00-.5-.5z"/></svg>

After

Width:  |  Height:  |  Size: 569 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><rect height="3.155" rx=".789" ry=".789" transform="rotate(-44.995 18.023 6.023)" width="12.619" x="11.713" y="4.445"/><path d="M27 18.1a8.9 8.9 0 108.9 8.9 8.9 8.9 0 00-8.9-8.9zm5 9.4a.5.5 0 01-.5.5H28v3.5a.5.5 0 01-.5.5h-1a.5.5 0 01-.5-.5V28h-3.5a.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5H26v-3.5a.5.5 0 01.5-.5h1a.5.5 0 01.5.5V26h3.5a.5.5 0 01.5.5zm1.61-10.861l1.418-1.418a.789.789 0 000-1.116l-1.115-1.115a.789.789 0 00-1.116 0l-2.237 2.238a12.207 12.207 0 013.05 1.411zM27 14.7c.1 0 .189.012.286.014L30 12l-6-6-6 6 3.844 3.844A12.231 12.231 0 0127 14.7zm-7.062 2.238L18 15 1.939 29.818a1.5 1.5 0 000 2.122l2.122 2.12a1.5 1.5 0 002.121 0l8.761-9.5a12.305 12.305 0 014.995-7.622z"/></svg>

After

Width:  |  Height:  |  Size: 766 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M30.828 7.341a6.329 6.329 0 00-6.4-1.957c-2.4.569-5.88 4.132-7.275 6.814-.053 0-.1-.016-.156-.016a5.754 5.754 0 00-2.629.655c1-3.959 3.853-7.267-.2-10.1C10.931.465 6.342 4.172 6.342 4.172a6.328 6.328 0 00-1.958 6.4c.569 2.4 4.132 5.88 6.814 7.275 0 .054-.016.1-.016.157a5.754 5.754 0 00.655 2.629c-3.959-1-7.267-3.852-10.1.2-2.27 3.244 1.436 7.832 1.436 7.832a6.328 6.328 0 006.4 1.958c2.4-.569 5.88-4.132 7.275-6.814.053 0 .1.016.156.016a5.754 5.754 0 002.629-.655c-1 3.959-3.852 7.266.2 10.1 3.244 2.271 7.833-1.436 7.833-1.436a6.328 6.328 0 001.958-6.4c-.569-2.4-4.132-5.88-6.814-7.275 0-.054.016-.1.016-.157a5.754 5.754 0 00-.655-2.629c3.959 1 7.267 3.852 10.1-.2 2.263-3.243-1.443-7.832-1.443-7.832zM17 21a3 3 0 113-3 3 3 0 01-3 3z"/></svg>

After

Width:  |  Height:  |  Size: 837 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M14.909.347C16.261 9.619 7.182 16.871 7.182 24.3c0 5.548 4.843 10.046 10.818 10.046s10.818-4.5 10.818-10.046c0-7.667-11.494-15.743-13.909-23.953z"/></svg>

After

Width:  |  Height:  |  Size: 246 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M19.782 28H9.995a4 4 0 010-8h10.523a1 1 0 00.8-.4l11.1-14.8a.5.5 0 00-.4-.8H16.025a1 1 0 00-.8.4L3.522 19.328A7.981 7.981 0 009.969 32h10.549a1 1 0 00.8-.4l11.1-14.8a.5.5 0 00-.4-.8h-3.236z"/></svg>

After

Width:  |  Height:  |  Size: 290 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M15.071 34.724L13 31.373l-2.071 3.351a.5.5 0 01-.929-.257V24h6v10.467a.5.5 0 01-.929.257z"/><path d="M8 27.443A3.987 3.987 0 019.995 20h10.523a1 1 0 00.8-.4l11.1-14.8a.5.5 0 00-.4-.8H16.025a1 1 0 00-.8.4L3.522 19.328h.008A7.942 7.942 0 008 31.716zM32.018 16h-3.236l-9 12H18v4h2.518a1 1 0 00.8-.4l11.1-14.8a.5.5 0 00-.4-.8z"/></svg>

After

Width:  |  Height:  |  Size: 423 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M18.062 26.394l9.375 9.376c.311.316.561.2.561-.252V3a1 1 0 00-1-1H9.012a1 1 0 00-1 1L8 35.551c0 .457.262.578.586.281z"/></svg>

After

Width:  |  Height:  |  Size: 218 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M26 4v27.5l-6.522-6.523-1.412-1.411-1.416 1.411L10 31.6 10.011 4zm1-2H9.012a1 1 0 00-1 1L8 35.551c0 .288.1.443.263.443a.517.517 0 00.323-.162l9.476-9.438 9.375 9.376a.488.488 0 00.318.177c.147 0 .243-.152.243-.429V3A1 1 0 0027 2z"/></svg>

After

Width:  |  Height:  |  Size: 330 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36"><path d="M17.022 23.848l6.122 5.988a.5.5 0 00.542.106.5.5 0 00.314-.454V7a1 1 0 00-1-1H11a1 1 0 00-1 1v22.506a.523.523 0 00.306.456.481.481 0 00.542-.1z"/><path d="M17.022 23.848l6.122 5.988a.5.5 0 00.542.106.5.5 0 00.314-.454V7a1 1 0 00-1-1H11a1 1 0 00-1 1v22.506a.523.523 0 00.306.456.481.481 0 00.542-.1z"/></svg>

After

Width:  |  Height:  |  Size: 399 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36"><path d="M22 8v17.914l-3.58-3.5-1.4-1.364-1.4 1.36L12 25.944V8h10m1-2H11a1 1 0 00-1 1v22.506a.523.523 0 00.306.456.421.421 0 00.2.044.511.511 0 00.352-.148l6.174-6.01 6.122 5.988a.5.5 0 00.352.144.472.472 0 00.2-.038.5.5 0 00.294-.454V7a1 1 0 00-1-1z"/></svg>

After

Width:  |  Height:  |  Size: 342 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36"><path d="M24 8.5a9.5 9.5 0 010 19H12a9.5 9.5 0 010-19zM24 6H12a12 12 0 000 24h12a12 12 0 000-24zm0 6a6 6 0 11-6 6 6.007 6.007 0 016-6z"/></svg>

After

Width:  |  Height:  |  Size: 226 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M4 5v26a1 1 0 001 1h26a1 1 0 001-1V5a1 1 0 00-1-1H5a1 1 0 00-1 1zm26 25H6V6h24z"/><path d="M8 8v20h20V8zm18 18H10V10h16z"/></svg>

After

Width:  |  Height:  |  Size: 221 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M16.4 35.594L2.823 28.051A1.6 1.6 0 012 26.652V13.194l14.4 8zm16.777-7.543L19.6 35.594v-14.4l14.4-8v13.458a1.6 1.6 0 01-.823 1.399zm-8.54-24.334L18.762.535a1.6 1.6 0 00-1.524 0L2.592 8.468a.825.825 0 000 1.451l5.529 2.995zm8.771 4.751L27.97 5.523l-16.515 9.2L18 18.265l15.408-8.346a.825.825 0 000-1.451z"/></svg>

After

Width:  |  Height:  |  Size: 404 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M33.408 8.469l-5.437-2.947-16.516 9.2L18 18.265l.852-.461a12.255 12.255 0 014.905-2.657l9.651-5.228a.824.824 0 000-1.45zm-3 6.72A12.233 12.233 0 0134 16.893v-3.7zM2.592 9.919l5.529 3 16.516-9.2L18.762.535a1.6 1.6 0 00-1.523 0L2.592 8.469a.824.824 0 000 1.45zM16.213 21.09L2 13.193v13.459a1.6 1.6 0 00.823 1.4L16.4 35.594v-2.376a12.259 12.259 0 01-.187-12.128zM27 18.1a8.9 8.9 0 108.9 8.9 8.9 8.9 0 00-8.9-8.9zm5 9.4a.5.5 0 01-.5.5H28v3.5a.5.5 0 01-.5.5h-1a.5.5 0 01-.5-.5V28h-3.5a.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5H26v-3.5a.5.5 0 01.5-.5h1a.5.5 0 01.5.5V26h3.5a.5.5 0 01.5.5z"/></svg>

After

Width:  |  Height:  |  Size: 675 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M21.285 4.2l-5.563-3.017a1.515 1.515 0 00-1.443 0L.409 8.7a.781.781 0 000 1.373L5.645 12.9zm8.306 4.5l-5.149-2.794L8.8 14.615l6.2 3.357 14.591-7.9a.781.781 0 000-1.372zM14 20.971L0 13.193v13.459a1.6 1.6 0 00.823 1.4L14 35.371zM28 24v-3.328a.5.5 0 01.866-.341L36 28l-7.134 7.669a.5.5 0 01-.866-.341V32h-5a1 1 0 01-1-1v-6a1 1 0 011-1z"/><path d="M27 18h3v-4.807l-14 7.778v14.4l4-2.222V23a1 1 0 011-1h5v-3a1 1 0 011-1z"/></svg>

After

Width:  |  Height:  |  Size: 516 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M27.285 4.2l-5.563-3.017a1.515 1.515 0 00-1.443 0L6.409 8.7a.781.781 0 000 1.373l5.236 2.827zm8.306 4.5l-5.149-2.794L14.8 14.615l6.2 3.357 14.591-7.9a.781.781 0 000-1.372zM22 20.971v14.4l13.177-7.32a1.6 1.6 0 00.823-1.4V13.193zM6 13.193v2.664L17.646 27.5a.5.5 0 010 .707l-3.762 3.762L20 35.371v-14.4z"/><path d="M6 24v-3.328a.5.5 0 01.866-.341L14 28l-7.134 7.669A.5.5 0 016 35.328V32H1a1 1 0 01-1-1v-6a1 1 0 011-1z"/></svg>

After

Width:  |  Height:  |  Size: 515 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M12.884 30.784a.726.726 0 00-.727-.727h-1.472a.7.7 0 01-.728-.667v-7.754c0-1.7-2.814-3.651-2.814-3.651s2.814-1.885 2.814-3.621v-7.8a.687.687 0 01.715-.656h1.485a.727.727 0 00.727-.728V2.727A.727.727 0 0012.157 2h-.7a5.511 5.511 0 00-5.441 5.845c.013 2.807.027 5.752.027 6.642 0 1.19-1.569 2.305-2.677 2.943a.635.635 0 00-.007 1.123c1.108.653 2.684 1.783 2.684 2.93v6.7A5.51 5.51 0 0011.486 34h.671a.727.727 0 00.727-.727zm10.227 0a.727.727 0 01.727-.727h1.472a.7.7 0 00.728-.667v-7.754c0-1.7 2.814-3.651 2.814-3.651s-2.814-1.888-2.814-3.621v-7.8a.687.687 0 00-.715-.656h-1.485a.728.728 0 01-.727-.728V2.727A.728.728 0 0123.838 2h.7a5.508 5.508 0 015.44 5.845 2258.09 2258.09 0 00-.027 6.642c0 1.19 1.569 2.305 2.676 2.943a.635.635 0 01.008 1.123c-1.108.653-2.684 1.783-2.684 2.93v6.7A5.507 5.507 0 0124.509 34h-.671a.728.728 0 01-.727-.727z"/></svg>

After

Width:  |  Height:  |  Size: 941 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M23 2v3h3v26h-3v3h6a1 1 0 001-1V3a1 1 0 00-1-1zM6 3v30a1 1 0 001 1h6v-3h-3V5h3V2H7a1 1 0 00-1 1z"/></svg>

After

Width:  |  Height:  |  Size: 197 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="36" viewBox="0 0 36 36" width="36"><path d="M28 18a5.962 5.962 0 00-4.608 2.2l-9.552-4.867a6.067 6.067 0 10-1.346 2.6l9.622 4.9A6 6 0 1028 18zm0 9a3 3 0 113-3 3 3 0 01-3 3z"/></svg>

After

Width:  |  Height:  |  Size: 229 B

Some files were not shown because too many files have changed in this diff Show More