@dotglitch/ngx-common 3.0.0-beta.1 → 3.0.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/command-palette/breadcrumb/breadcrumb.component.d.ts +16 -0
- package/command-palette/command-palette.component.d.ts +38 -0
- package/command-palette/command-palette.service.d.ts +128 -0
- package/command-palette/index.d.ts +2 -0
- package/command-palette/shortcut/shortcut.component.d.ts +9 -0
- package/{components → core/components}/menu/menu.component.d.ts +2 -2
- package/{directives → core/components/menu}/menu.directive.d.ts +1 -1
- package/{types/menu.d.ts → core/components/menu/types.d.ts} +1 -1
- package/{components → core/components}/types.d.ts +0 -1
- package/{public-api.d.ts → core/index.d.ts} +8 -4
- package/{services → core/services}/navigation.service.d.ts +1 -1
- package/core/utils/index.d.ts +18 -0
- package/esm2022/command-palette/breadcrumb/breadcrumb.component.mjs +30 -0
- package/esm2022/command-palette/command-palette.component.mjs +257 -0
- package/esm2022/command-palette/command-palette.service.mjs +207 -0
- package/esm2022/command-palette/dotglitch-ngx-common-command-palette.mjs +5 -0
- package/esm2022/command-palette/index.mjs +3 -0
- package/esm2022/command-palette/shortcut/shortcut.component.mjs +19 -0
- package/esm2022/core/components/lazy-loader/lazy-loader.component.mjs +383 -0
- package/esm2022/core/components/lazy-loader/lazy-loader.module.mjs +33 -0
- package/esm2022/core/components/lazy-loader/lazy-loader.service.mjs +216 -0
- package/esm2022/core/components/lazy-loader/types.mjs +26 -0
- package/esm2022/core/components/menu/menu.component.mjs +433 -0
- package/esm2022/core/components/menu/menu.directive.mjs +159 -0
- package/esm2022/core/components/menu/types.mjs +2 -0
- package/esm2022/core/components/parallax-card/parallax-card.component.mjs +138 -0
- package/esm2022/core/components/types.mjs +3 -0
- package/esm2022/core/directives/image-cache.directive.mjs +143 -0
- package/esm2022/core/directives/utils.mjs +120 -0
- package/esm2022/core/dotglitch-ngx-common-core.mjs +5 -0
- package/esm2022/core/index.mjs +50 -0
- package/esm2022/core/pipes/html-bypass.pipe.mjs +27 -0
- package/esm2022/core/pipes/resource-bypass.pipe.mjs +27 -0
- package/esm2022/core/pipes/script-bypass.pipe.mjs +27 -0
- package/esm2022/core/pipes/style-bypass.pipe.mjs +27 -0
- package/esm2022/core/pipes/url-bypass.pipe.mjs +27 -0
- package/esm2022/core/services/dependency.service.mjs +55 -0
- package/esm2022/core/services/dialog.service.mjs +67 -0
- package/esm2022/core/services/fetch.service.mjs +74 -0
- package/esm2022/core/services/file.service.mjs +42 -0
- package/esm2022/core/services/keyboard.service.mjs +128 -0
- package/esm2022/core/services/navigation.service.mjs +50 -0
- package/esm2022/core/services/theme.service.mjs +64 -0
- package/esm2022/core/types/popup.mjs +2 -0
- package/esm2022/core/utils/index.mjs +69 -0
- package/esm2022/dotglitch-ngx-common.mjs +2 -2
- package/esm2022/filemanager/dotglitch-ngx-common-filemanager.mjs +5 -0
- package/esm2022/filemanager/file-grid/file-grid.component.mjs +676 -0
- package/esm2022/filemanager/filemanager.component.mjs +313 -0
- package/esm2022/filemanager/folder-rename/folder-rename.component.mjs +57 -0
- package/esm2022/filemanager/helpers.mjs +26 -0
- package/esm2022/filemanager/icon-resolver.mjs +155 -0
- package/esm2022/filemanager/index.mjs +2 -0
- package/esm2022/filemanager/mat-icons.mjs +5705 -0
- package/esm2022/filemanager/textextensions.mjs +294 -0
- package/esm2022/filemanager/toolbar/breadcrumb/breadcrumb.component.mjs +22 -0
- package/esm2022/filemanager/toolbar/icon-button/icon-button.component.mjs +32 -0
- package/esm2022/filemanager/toolbar/toolbar.component.mjs +165 -0
- package/esm2022/filemanager/tree-view/tree-view.component.mjs +51 -0
- package/esm2022/filemanager/types.mjs +2 -0
- package/esm2022/index.mjs +3 -0
- package/esm2022/monaco-editor/dotglitch-ngx-common-monaco-editor.mjs +5 -0
- package/esm2022/monaco-editor/index.mjs +2 -0
- package/esm2022/monaco-editor/monaco-editor.component.mjs +234 -0
- package/esm2022/monaco-editor/ts-type-resolver/dependency-parser.mjs +91 -0
- package/esm2022/monaco-editor/ts-type-resolver/dummy-source-cache.mjs +15 -0
- package/esm2022/monaco-editor/ts-type-resolver/import-resolver.mjs +311 -0
- package/esm2022/monaco-editor/ts-type-resolver/main.mjs +112 -0
- package/esm2022/monaco-editor/ts-type-resolver/recursion-depth.mjs +21 -0
- package/esm2022/monaco-editor/ts-type-resolver/types.mjs +14 -0
- package/esm2022/monaco-editor/ts-type-resolver/unpkg-source-resolver.mjs +21 -0
- package/esm2022/monaco-editor/ts-type-resolver/update-emitter.mjs +37 -0
- package/esm2022/overlay-wrapper/dotglitch-ngx-common-overlay-wrapper.mjs +5 -0
- package/esm2022/overlay-wrapper/index.mjs +2 -0
- package/esm2022/overlay-wrapper/overlay-wrapper.component.mjs +247 -0
- package/esm2022/tooltip/dotglitch-ngx-common-tooltip.mjs +5 -0
- package/esm2022/tooltip/index.mjs +4 -0
- package/esm2022/tooltip/tooltip.component.mjs +204 -0
- package/esm2022/tooltip/tooltip.directive.mjs +153 -0
- package/esm2022/tooltip/types.mjs +2 -0
- package/fesm2022/dotglitch-ngx-common-command-palette.mjs +508 -0
- package/fesm2022/dotglitch-ngx-common-command-palette.mjs.map +1 -0
- package/fesm2022/dotglitch-ngx-common-core.mjs +2280 -0
- package/fesm2022/dotglitch-ngx-common-core.mjs.map +1 -0
- package/fesm2022/dotglitch-ngx-common-filemanager-folder-rename.component-CnKuU8nn.mjs +60 -0
- package/fesm2022/dotglitch-ngx-common-filemanager-folder-rename.component-CnKuU8nn.mjs.map +1 -0
- package/fesm2022/dotglitch-ngx-common-filemanager.mjs +7403 -0
- package/fesm2022/dotglitch-ngx-common-filemanager.mjs.map +1 -0
- package/fesm2022/dotglitch-ngx-common-monaco-editor.mjs +850 -0
- package/fesm2022/dotglitch-ngx-common-monaco-editor.mjs.map +1 -0
- package/fesm2022/dotglitch-ngx-common-overlay-wrapper.mjs +254 -0
- package/fesm2022/dotglitch-ngx-common-overlay-wrapper.mjs.map +1 -0
- package/fesm2022/dotglitch-ngx-common-tooltip.mjs +357 -0
- package/fesm2022/dotglitch-ngx-common-tooltip.mjs.map +1 -0
- package/fesm2022/dotglitch-ngx-common.mjs +3 -2757
- package/fesm2022/dotglitch-ngx-common.mjs.map +1 -1
- package/filemanager/file-grid/file-grid.component.d.ts +94 -0
- package/filemanager/filemanager.component.d.ts +206 -0
- package/filemanager/folder-rename/folder-rename.component.d.ts +18 -0
- package/filemanager/helpers.d.ts +5 -0
- package/filemanager/icon-resolver.d.ts +13 -0
- package/filemanager/index.d.ts +1 -0
- package/filemanager/mat-icons.d.ts +5705 -0
- package/filemanager/textextensions.d.ts +3 -0
- package/filemanager/toolbar/breadcrumb/breadcrumb.component.d.ts +16 -0
- package/filemanager/toolbar/icon-button/icon-button.component.d.ts +11 -0
- package/filemanager/toolbar/toolbar.component.d.ts +31 -0
- package/filemanager/tree-view/tree-view.component.d.ts +21 -0
- package/filemanager/types.d.ts +1 -0
- package/index.d.ts +1 -5
- package/monaco-editor/README.md +3 -0
- package/monaco-editor/index.d.ts +1 -0
- package/monaco-editor/monaco-editor.component.d.ts +53 -0
- package/monaco-editor/ts-type-resolver/dependency-parser.d.ts +6 -0
- package/monaco-editor/ts-type-resolver/dummy-source-cache.d.ts +7 -0
- package/monaco-editor/ts-type-resolver/import-resolver.d.ts +28 -0
- package/monaco-editor/ts-type-resolver/main.d.ts +22 -0
- package/monaco-editor/ts-type-resolver/recursion-depth.d.ts +11 -0
- package/monaco-editor/ts-type-resolver/types.d.ts +179 -0
- package/monaco-editor/ts-type-resolver/unpkg-source-resolver.d.ts +5 -0
- package/monaco-editor/ts-type-resolver/update-emitter.d.ts +2 -0
- package/overlay-wrapper/index.d.ts +1 -0
- package/overlay-wrapper/overlay-wrapper.component.d.ts +11 -0
- package/package.json +104 -64
- package/tooltip/index.d.ts +3 -0
- package/{components/tooltip → tooltip}/tooltip.component.d.ts +3 -3
- package/{directives → tooltip}/tooltip.directive.d.ts +2 -2
- package/{types/tooltip.d.ts → tooltip/types.d.ts} +1 -1
- package/assets/lib/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- package/assets/lib/vs/base/common/worker/simpleWorker.nls.de.js +0 -8
- package/assets/lib/vs/base/common/worker/simpleWorker.nls.es.js +0 -8
- package/assets/lib/vs/base/common/worker/simpleWorker.nls.fr.js +0 -8
- package/assets/lib/vs/base/common/worker/simpleWorker.nls.it.js +0 -8
- package/assets/lib/vs/base/common/worker/simpleWorker.nls.ja.js +0 -8
- package/assets/lib/vs/base/common/worker/simpleWorker.nls.js +0 -8
- package/assets/lib/vs/base/common/worker/simpleWorker.nls.ko.js +0 -8
- package/assets/lib/vs/base/common/worker/simpleWorker.nls.ru.js +0 -8
- package/assets/lib/vs/base/common/worker/simpleWorker.nls.zh-cn.js +0 -8
- package/assets/lib/vs/base/common/worker/simpleWorker.nls.zh-tw.js +0 -8
- package/assets/lib/vs/base/worker/workerMain.js +0 -24
- package/assets/lib/vs/basic-languages/abap/abap.js +0 -10
- package/assets/lib/vs/basic-languages/apex/apex.js +0 -10
- package/assets/lib/vs/basic-languages/azcli/azcli.js +0 -10
- package/assets/lib/vs/basic-languages/bat/bat.js +0 -10
- package/assets/lib/vs/basic-languages/bicep/bicep.js +0 -11
- package/assets/lib/vs/basic-languages/cameligo/cameligo.js +0 -10
- package/assets/lib/vs/basic-languages/clojure/clojure.js +0 -10
- package/assets/lib/vs/basic-languages/coffee/coffee.js +0 -10
- package/assets/lib/vs/basic-languages/cpp/cpp.js +0 -10
- package/assets/lib/vs/basic-languages/csharp/csharp.js +0 -10
- package/assets/lib/vs/basic-languages/csp/csp.js +0 -10
- package/assets/lib/vs/basic-languages/css/css.js +0 -12
- package/assets/lib/vs/basic-languages/cypher/cypher.js +0 -10
- package/assets/lib/vs/basic-languages/dart/dart.js +0 -10
- package/assets/lib/vs/basic-languages/dockerfile/dockerfile.js +0 -10
- package/assets/lib/vs/basic-languages/ecl/ecl.js +0 -10
- package/assets/lib/vs/basic-languages/elixir/elixir.js +0 -10
- package/assets/lib/vs/basic-languages/flow9/flow9.js +0 -10
- package/assets/lib/vs/basic-languages/freemarker2/freemarker2.js +0 -12
- package/assets/lib/vs/basic-languages/fsharp/fsharp.js +0 -10
- package/assets/lib/vs/basic-languages/go/go.js +0 -10
- package/assets/lib/vs/basic-languages/graphql/graphql.js +0 -10
- package/assets/lib/vs/basic-languages/handlebars/handlebars.js +0 -10
- package/assets/lib/vs/basic-languages/hcl/hcl.js +0 -10
- package/assets/lib/vs/basic-languages/html/html.js +0 -10
- package/assets/lib/vs/basic-languages/ini/ini.js +0 -10
- package/assets/lib/vs/basic-languages/java/java.js +0 -10
- package/assets/lib/vs/basic-languages/javascript/javascript.js +0 -10
- package/assets/lib/vs/basic-languages/julia/julia.js +0 -10
- package/assets/lib/vs/basic-languages/kotlin/kotlin.js +0 -10
- package/assets/lib/vs/basic-languages/less/less.js +0 -11
- package/assets/lib/vs/basic-languages/lexon/lexon.js +0 -10
- package/assets/lib/vs/basic-languages/liquid/liquid.js +0 -10
- package/assets/lib/vs/basic-languages/lua/lua.js +0 -10
- package/assets/lib/vs/basic-languages/m3/m3.js +0 -10
- package/assets/lib/vs/basic-languages/markdown/markdown.js +0 -10
- package/assets/lib/vs/basic-languages/mips/mips.js +0 -10
- package/assets/lib/vs/basic-languages/msdax/msdax.js +0 -10
- package/assets/lib/vs/basic-languages/mysql/mysql.js +0 -10
- package/assets/lib/vs/basic-languages/objective-c/objective-c.js +0 -10
- package/assets/lib/vs/basic-languages/pascal/pascal.js +0 -10
- package/assets/lib/vs/basic-languages/pascaligo/pascaligo.js +0 -10
- package/assets/lib/vs/basic-languages/perl/perl.js +0 -10
- package/assets/lib/vs/basic-languages/pgsql/pgsql.js +0 -10
- package/assets/lib/vs/basic-languages/php/php.js +0 -10
- package/assets/lib/vs/basic-languages/pla/pla.js +0 -10
- package/assets/lib/vs/basic-languages/postiats/postiats.js +0 -10
- package/assets/lib/vs/basic-languages/powerquery/powerquery.js +0 -10
- package/assets/lib/vs/basic-languages/powershell/powershell.js +0 -10
- package/assets/lib/vs/basic-languages/protobuf/protobuf.js +0 -11
- package/assets/lib/vs/basic-languages/pug/pug.js +0 -10
- package/assets/lib/vs/basic-languages/python/python.js +0 -10
- package/assets/lib/vs/basic-languages/qsharp/qsharp.js +0 -10
- package/assets/lib/vs/basic-languages/r/r.js +0 -10
- package/assets/lib/vs/basic-languages/razor/razor.js +0 -10
- package/assets/lib/vs/basic-languages/redis/redis.js +0 -10
- package/assets/lib/vs/basic-languages/redshift/redshift.js +0 -10
- package/assets/lib/vs/basic-languages/restructuredtext/restructuredtext.js +0 -10
- package/assets/lib/vs/basic-languages/ruby/ruby.js +0 -10
- package/assets/lib/vs/basic-languages/rust/rust.js +0 -10
- package/assets/lib/vs/basic-languages/sb/sb.js +0 -10
- package/assets/lib/vs/basic-languages/scala/scala.js +0 -10
- package/assets/lib/vs/basic-languages/scheme/scheme.js +0 -10
- package/assets/lib/vs/basic-languages/scss/scss.js +0 -12
- package/assets/lib/vs/basic-languages/shell/shell.js +0 -10
- package/assets/lib/vs/basic-languages/solidity/solidity.js +0 -10
- package/assets/lib/vs/basic-languages/sophia/sophia.js +0 -10
- package/assets/lib/vs/basic-languages/sparql/sparql.js +0 -10
- package/assets/lib/vs/basic-languages/sql/sql.js +0 -10
- package/assets/lib/vs/basic-languages/st/st.js +0 -10
- package/assets/lib/vs/basic-languages/swift/swift.js +0 -13
- package/assets/lib/vs/basic-languages/systemverilog/systemverilog.js +0 -10
- package/assets/lib/vs/basic-languages/tcl/tcl.js +0 -10
- package/assets/lib/vs/basic-languages/twig/twig.js +0 -10
- package/assets/lib/vs/basic-languages/typescript/typescript.js +0 -10
- package/assets/lib/vs/basic-languages/vb/vb.js +0 -10
- package/assets/lib/vs/basic-languages/wgsl/wgsl.js +0 -307
- package/assets/lib/vs/basic-languages/xml/xml.js +0 -10
- package/assets/lib/vs/basic-languages/yaml/yaml.js +0 -10
- package/assets/lib/vs/editor/editor.main.css +0 -6
- package/assets/lib/vs/editor/editor.main.js +0 -752
- package/assets/lib/vs/editor/editor.main.nls.de.js +0 -31
- package/assets/lib/vs/editor/editor.main.nls.es.js +0 -31
- package/assets/lib/vs/editor/editor.main.nls.fr.js +0 -29
- package/assets/lib/vs/editor/editor.main.nls.it.js +0 -29
- package/assets/lib/vs/editor/editor.main.nls.ja.js +0 -31
- package/assets/lib/vs/editor/editor.main.nls.js +0 -29
- package/assets/lib/vs/editor/editor.main.nls.ko.js +0 -29
- package/assets/lib/vs/editor/editor.main.nls.ru.js +0 -31
- package/assets/lib/vs/editor/editor.main.nls.zh-cn.js +0 -31
- package/assets/lib/vs/editor/editor.main.nls.zh-tw.js +0 -29
- package/assets/lib/vs/language/css/cssMode.js +0 -13
- package/assets/lib/vs/language/css/cssWorker.js +0 -81
- package/assets/lib/vs/language/html/htmlMode.js +0 -13
- package/assets/lib/vs/language/html/htmlWorker.js +0 -453
- package/assets/lib/vs/language/json/jsonMode.js +0 -15
- package/assets/lib/vs/language/json/jsonWorker.js +0 -36
- package/assets/lib/vs/language/typescript/tsMode.js +0 -20
- package/assets/lib/vs/language/typescript/tsWorker.js +0 -37016
- package/assets/lib/vs/loader.js +0 -11
- package/assets/mat-icons.ts +0 -5704
- package/assets/material/3d.svg +0 -1
- package/assets/material/abc.svg +0 -1
- package/assets/material/actionscript.svg +0 -1
- package/assets/material/ada.svg +0 -1
- package/assets/material/adonis.svg +0 -1
- package/assets/material/advpl_include.svg +0 -1
- package/assets/material/advpl_prw.svg +0 -1
- package/assets/material/advpl_ptm.svg +0 -1
- package/assets/material/advpl_tlpp.svg +0 -1
- package/assets/material/android.svg +0 -1
- package/assets/material/angular-component.svg +0 -1
- package/assets/material/angular-directive.svg +0 -1
- package/assets/material/angular-guard.svg +0 -1
- package/assets/material/angular-pipe.svg +0 -1
- package/assets/material/angular-resolver.svg +0 -1
- package/assets/material/angular-service.svg +0 -1
- package/assets/material/angular.svg +0 -1
- package/assets/material/antlr.svg +0 -1
- package/assets/material/apiblueprint.svg +0 -1
- package/assets/material/apollo.svg +0 -1
- package/assets/material/applescript.svg +0 -1
- package/assets/material/appveyor.svg +0 -1
- package/assets/material/architecture.svg +0 -1
- package/assets/material/arduino.svg +0 -1
- package/assets/material/asciidoc.svg +0 -1
- package/assets/material/assembly.svg +0 -1
- package/assets/material/astro.svg +0 -1
- package/assets/material/astyle.svg +0 -1
- package/assets/material/audio.svg +0 -1
- package/assets/material/aurelia.svg +0 -1
- package/assets/material/authors.svg +0 -1
- package/assets/material/auto.svg +0 -1
- package/assets/material/auto_light.svg +0 -1
- package/assets/material/autohotkey.svg +0 -1
- package/assets/material/autoit.svg +0 -1
- package/assets/material/azure-pipelines.svg +0 -1
- package/assets/material/azure.svg +0 -1
- package/assets/material/babel.svg +0 -1
- package/assets/material/ballerina.svg +0 -1
- package/assets/material/bazel.svg +0 -1
- package/assets/material/bicep.svg +0 -1
- package/assets/material/bitbucket.svg +0 -13
- package/assets/material/bithound.svg +0 -1
- package/assets/material/blink.svg +0 -1
- package/assets/material/blink_light.svg +0 -1
- package/assets/material/blitz.svg +0 -1
- package/assets/material/bower.svg +0 -1
- package/assets/material/brainfuck.svg +0 -1
- package/assets/material/browserlist.svg +0 -1
- package/assets/material/browserlist_light.svg +0 -1
- package/assets/material/buck.svg +0 -1
- package/assets/material/bucklescript.svg +0 -1
- package/assets/material/buildkite.svg +0 -1
- package/assets/material/bun.svg +0 -2
- package/assets/material/bun_light.svg +0 -2
- package/assets/material/c.svg +0 -4
- package/assets/material/cabal.svg +0 -1
- package/assets/material/caddy.svg +0 -1
- package/assets/material/cadence.svg +0 -1
- package/assets/material/cake.svg +0 -1
- package/assets/material/capacitor.svg +0 -1
- package/assets/material/certificate.svg +0 -1
- package/assets/material/changelog.svg +0 -1
- package/assets/material/chess.svg +0 -1
- package/assets/material/chess_light.svg +0 -1
- package/assets/material/circleci.svg +0 -1
- package/assets/material/circleci_light.svg +0 -1
- package/assets/material/clojure.svg +0 -1
- package/assets/material/cloudfoundry.svg +0 -1
- package/assets/material/cmake.svg +0 -1
- package/assets/material/coala.svg +0 -1
- package/assets/material/cobol.svg +0 -1
- package/assets/material/coconut.svg +0 -1
- package/assets/material/code-climate.svg +0 -1
- package/assets/material/code-climate_light.svg +0 -1
- package/assets/material/codecov.svg +0 -1
- package/assets/material/codeowners.svg +0 -1
- package/assets/material/coffee.svg +0 -1
- package/assets/material/coldfusion.svg +0 -1
- package/assets/material/command.svg +0 -1
- package/assets/material/commitlint.svg +0 -1
- package/assets/material/conduct.svg +0 -1
- package/assets/material/console.svg +0 -1
- package/assets/material/contributing.svg +0 -1
- package/assets/material/cpp.svg +0 -4
- package/assets/material/craco.svg +0 -45
- package/assets/material/credits.svg +0 -1
- package/assets/material/crystal.svg +0 -1
- package/assets/material/crystal_light.svg +0 -1
- package/assets/material/csharp.svg +0 -4
- package/assets/material/css-map.svg +0 -1
- package/assets/material/css.svg +0 -1
- package/assets/material/cucumber.svg +0 -1
- package/assets/material/cuda.svg +0 -1
- package/assets/material/cypress.svg +0 -1
- package/assets/material/d.svg +0 -1
- package/assets/material/dart.svg +0 -1
- package/assets/material/dart_generated.svg +0 -1
- package/assets/material/database.svg +0 -1
- package/assets/material/denizenscript.svg +0 -1
- package/assets/material/deno.svg +0 -1
- package/assets/material/deno_light.svg +0 -1
- package/assets/material/dependabot.svg +0 -1
- package/assets/material/dhall.svg +0 -1
- package/assets/material/diff.svg +0 -1
- package/assets/material/dinophp.svg +0 -1
- package/assets/material/disc.svg +0 -1
- package/assets/material/django.svg +0 -1
- package/assets/material/docker.svg +0 -1
- package/assets/material/document.svg +0 -1
- package/assets/material/dotjs.svg +0 -1
- package/assets/material/drawio.svg +0 -1
- package/assets/material/drone.svg +0 -1
- package/assets/material/drone_light.svg +0 -1
- package/assets/material/dune.svg +0 -1
- package/assets/material/edge.svg +0 -1
- package/assets/material/editorconfig.svg +0 -1
- package/assets/material/ejs.svg +0 -1
- package/assets/material/elixir.svg +0 -1
- package/assets/material/elm.svg +0 -1
- package/assets/material/email.svg +0 -1
- package/assets/material/ember.svg +0 -1
- package/assets/material/erlang.svg +0 -1
- package/assets/material/eslint.svg +0 -1
- package/assets/material/exe.svg +0 -1
- package/assets/material/fastlane.svg +0 -1
- package/assets/material/favicon.svg +0 -1
- package/assets/material/figma.svg +0 -1
- package/assets/material/file.svg +0 -1
- package/assets/material/firebase.svg +0 -1
- package/assets/material/flash.svg +0 -1
- package/assets/material/flow.svg +0 -1
- package/assets/material/folder-admin-open.svg +0 -1
- package/assets/material/folder-admin.svg +0 -1
- package/assets/material/folder-android-open.svg +0 -1
- package/assets/material/folder-android.svg +0 -1
- package/assets/material/folder-angular-open.svg +0 -1
- package/assets/material/folder-angular.svg +0 -1
- package/assets/material/folder-animation-open.svg +0 -1
- package/assets/material/folder-animation.svg +0 -1
- package/assets/material/folder-ansible-open.svg +0 -1
- package/assets/material/folder-ansible.svg +0 -1
- package/assets/material/folder-api-open.svg +0 -1
- package/assets/material/folder-api.svg +0 -1
- package/assets/material/folder-apollo-open.svg +0 -1
- package/assets/material/folder-apollo.svg +0 -1
- package/assets/material/folder-app-open.svg +0 -1
- package/assets/material/folder-app.svg +0 -1
- package/assets/material/folder-archive-open.svg +0 -1
- package/assets/material/folder-archive.svg +0 -1
- package/assets/material/folder-audio-open.svg +0 -1
- package/assets/material/folder-audio.svg +0 -1
- package/assets/material/folder-aurelia-open.svg +0 -1
- package/assets/material/folder-aurelia.svg +0 -1
- package/assets/material/folder-aws-open.svg +0 -1
- package/assets/material/folder-aws.svg +0 -1
- package/assets/material/folder-azure-pipelines-open.svg +0 -1
- package/assets/material/folder-azure-pipelines.svg +0 -1
- package/assets/material/folder-base-open.svg +0 -1
- package/assets/material/folder-base.svg +0 -1
- package/assets/material/folder-batch-open.svg +0 -1
- package/assets/material/folder-batch.svg +0 -1
- package/assets/material/folder-benchmark-open.svg +0 -1
- package/assets/material/folder-benchmark.svg +0 -1
- package/assets/material/folder-bower-open.svg +0 -1
- package/assets/material/folder-bower.svg +0 -1
- package/assets/material/folder-buildkite-open.svg +0 -1
- package/assets/material/folder-buildkite.svg +0 -1
- package/assets/material/folder-cart-open.svg +0 -1
- package/assets/material/folder-cart.svg +0 -1
- package/assets/material/folder-changesets-open.svg +0 -5
- package/assets/material/folder-changesets.svg +0 -2
- package/assets/material/folder-ci-open.svg +0 -1
- package/assets/material/folder-ci.svg +0 -1
- package/assets/material/folder-circleci-open.svg +0 -1
- package/assets/material/folder-circleci.svg +0 -1
- package/assets/material/folder-class-open.svg +0 -1
- package/assets/material/folder-class.svg +0 -1
- package/assets/material/folder-client-open.svg +0 -1
- package/assets/material/folder-client.svg +0 -1
- package/assets/material/folder-cluster-open.svg +0 -1
- package/assets/material/folder-cluster.svg +0 -1
- package/assets/material/folder-cobol-open.svg +0 -1
- package/assets/material/folder-cobol.svg +0 -1
- package/assets/material/folder-command-open.svg +0 -1
- package/assets/material/folder-command.svg +0 -1
- package/assets/material/folder-components-open.svg +0 -1
- package/assets/material/folder-components.svg +0 -1
- package/assets/material/folder-config-open.svg +0 -1
- package/assets/material/folder-config.svg +0 -1
- package/assets/material/folder-connection-open.svg +0 -1
- package/assets/material/folder-connection.svg +0 -1
- package/assets/material/folder-constant-open.svg +0 -1
- package/assets/material/folder-constant.svg +0 -1
- package/assets/material/folder-container-open.svg +0 -1
- package/assets/material/folder-container.svg +0 -1
- package/assets/material/folder-content-open.svg +0 -1
- package/assets/material/folder-content.svg +0 -1
- package/assets/material/folder-context-open.svg +0 -1
- package/assets/material/folder-context.svg +0 -1
- package/assets/material/folder-contract-open.svg +0 -1
- package/assets/material/folder-contract.svg +0 -1
- package/assets/material/folder-controller-open.svg +0 -1
- package/assets/material/folder-controller.svg +0 -1
- package/assets/material/folder-core-open.svg +0 -1
- package/assets/material/folder-core.svg +0 -1
- package/assets/material/folder-coverage-open.svg +0 -1
- package/assets/material/folder-coverage.svg +0 -1
- package/assets/material/folder-css-open.svg +0 -1
- package/assets/material/folder-css.svg +0 -1
- package/assets/material/folder-custom-open.svg +0 -1
- package/assets/material/folder-custom.svg +0 -1
- package/assets/material/folder-cypress-open.svg +0 -1
- package/assets/material/folder-cypress.svg +0 -1
- package/assets/material/folder-database-open.svg +0 -1
- package/assets/material/folder-database.svg +0 -1
- package/assets/material/folder-debug-open.svg +0 -1
- package/assets/material/folder-debug.svg +0 -1
- package/assets/material/folder-decorators-open.svg +0 -2
- package/assets/material/folder-decorators.svg +0 -5
- package/assets/material/folder-delta-open.svg +0 -1
- package/assets/material/folder-delta.svg +0 -1
- package/assets/material/folder-dist-open.svg +0 -1
- package/assets/material/folder-dist.svg +0 -1
- package/assets/material/folder-docker-open.svg +0 -1
- package/assets/material/folder-docker.svg +0 -1
- package/assets/material/folder-docs-open.svg +0 -1
- package/assets/material/folder-docs.svg +0 -1
- package/assets/material/folder-download-open.svg +0 -1
- package/assets/material/folder-download.svg +0 -1
- package/assets/material/folder-dump-open.svg +0 -1
- package/assets/material/folder-dump.svg +0 -1
- package/assets/material/folder-environment-open.svg +0 -1
- package/assets/material/folder-environment.svg +0 -1
- package/assets/material/folder-error-open.svg +0 -1
- package/assets/material/folder-error.svg +0 -1
- package/assets/material/folder-event-open.svg +0 -1
- package/assets/material/folder-event.svg +0 -1
- package/assets/material/folder-examples-open.svg +0 -1
- package/assets/material/folder-examples.svg +0 -1
- package/assets/material/folder-expo-open.svg +0 -1
- package/assets/material/folder-expo.svg +0 -1
- package/assets/material/folder-export-open.svg +0 -1
- package/assets/material/folder-export.svg +0 -1
- package/assets/material/folder-fastlane-open.svg +0 -1
- package/assets/material/folder-fastlane.svg +0 -1
- package/assets/material/folder-firebase-open.svg +0 -1
- package/assets/material/folder-firebase.svg +0 -1
- package/assets/material/folder-flow-open.svg +0 -1
- package/assets/material/folder-flow.svg +0 -1
- package/assets/material/folder-font-open.svg +0 -1
- package/assets/material/folder-font.svg +0 -1
- package/assets/material/folder-functions-open.svg +0 -1
- package/assets/material/folder-functions.svg +0 -1
- package/assets/material/folder-gamemaker-open.svg +0 -2
- package/assets/material/folder-gamemaker.svg +0 -2
- package/assets/material/folder-generator-open.svg +0 -1
- package/assets/material/folder-generator.svg +0 -1
- package/assets/material/folder-git-open.svg +0 -1
- package/assets/material/folder-git.svg +0 -1
- package/assets/material/folder-github-open.svg +0 -1
- package/assets/material/folder-github.svg +0 -1
- package/assets/material/folder-gitlab-open.svg +0 -1
- package/assets/material/folder-gitlab.svg +0 -1
- package/assets/material/folder-global-open.svg +0 -1
- package/assets/material/folder-global.svg +0 -1
- package/assets/material/folder-godot-open.svg +0 -2
- package/assets/material/folder-godot.svg +0 -8
- package/assets/material/folder-gradle-open.svg +0 -1
- package/assets/material/folder-gradle.svg +0 -1
- package/assets/material/folder-graphql-open.svg +0 -1
- package/assets/material/folder-graphql.svg +0 -1
- package/assets/material/folder-guard-open.svg +0 -1
- package/assets/material/folder-guard.svg +0 -1
- package/assets/material/folder-gulp-open.svg +0 -1
- package/assets/material/folder-gulp.svg +0 -1
- package/assets/material/folder-helper-open.svg +0 -1
- package/assets/material/folder-helper.svg +0 -1
- package/assets/material/folder-home-open.svg +0 -1
- package/assets/material/folder-home.svg +0 -1
- package/assets/material/folder-hook-open.svg +0 -1
- package/assets/material/folder-hook.svg +0 -1
- package/assets/material/folder-husky-open.svg +0 -1
- package/assets/material/folder-husky.svg +0 -1
- package/assets/material/folder-i18n-open.svg +0 -1
- package/assets/material/folder-i18n.svg +0 -1
- package/assets/material/folder-images-open.svg +0 -1
- package/assets/material/folder-images.svg +0 -1
- package/assets/material/folder-import-open.svg +0 -1
- package/assets/material/folder-import.svg +0 -1
- package/assets/material/folder-include-open.svg +0 -1
- package/assets/material/folder-include.svg +0 -1
- package/assets/material/folder-intellij-open.svg +0 -1
- package/assets/material/folder-intellij-open_light.svg +0 -1
- package/assets/material/folder-intellij.svg +0 -1
- package/assets/material/folder-intellij_light.svg +0 -1
- package/assets/material/folder-interface-open.svg +0 -1
- package/assets/material/folder-interface.svg +0 -1
- package/assets/material/folder-ios-open.svg +0 -1
- package/assets/material/folder-ios.svg +0 -1
- package/assets/material/folder-java-open.svg +0 -1
- package/assets/material/folder-java.svg +0 -1
- package/assets/material/folder-javascript-open.svg +0 -1
- package/assets/material/folder-javascript.svg +0 -1
- package/assets/material/folder-jinja-open.svg +0 -1
- package/assets/material/folder-jinja-open_light.svg +0 -1
- package/assets/material/folder-jinja.svg +0 -1
- package/assets/material/folder-jinja_light.svg +0 -1
- package/assets/material/folder-job-open.svg +0 -1
- package/assets/material/folder-job.svg +0 -1
- package/assets/material/folder-json-open.svg +0 -1
- package/assets/material/folder-json.svg +0 -1
- package/assets/material/folder-keys-open.svg +0 -1
- package/assets/material/folder-keys.svg +0 -1
- package/assets/material/folder-kubernetes-open.svg +0 -1
- package/assets/material/folder-kubernetes.svg +0 -1
- package/assets/material/folder-layout-open.svg +0 -1
- package/assets/material/folder-layout.svg +0 -1
- package/assets/material/folder-less-open.svg +0 -1
- package/assets/material/folder-less.svg +0 -1
- package/assets/material/folder-lib-open.svg +0 -1
- package/assets/material/folder-lib.svg +0 -1
- package/assets/material/folder-log-open.svg +0 -1
- package/assets/material/folder-log.svg +0 -1
- package/assets/material/folder-lua-open.svg +0 -1
- package/assets/material/folder-lua.svg +0 -1
- package/assets/material/folder-mail-open.svg +0 -1
- package/assets/material/folder-mail.svg +0 -1
- package/assets/material/folder-mappings-open.svg +0 -1
- package/assets/material/folder-mappings.svg +0 -1
- package/assets/material/folder-markdown-open.svg +0 -1
- package/assets/material/folder-markdown.svg +0 -1
- package/assets/material/folder-mercurial-open.svg +0 -5
- package/assets/material/folder-mercurial.svg +0 -2
- package/assets/material/folder-messages-open.svg +0 -1
- package/assets/material/folder-messages.svg +0 -1
- package/assets/material/folder-meta-open.svg +0 -1
- package/assets/material/folder-meta.svg +0 -1
- package/assets/material/folder-middleware-open.svg +0 -1
- package/assets/material/folder-middleware.svg +0 -1
- package/assets/material/folder-mjml-open.svg +0 -1
- package/assets/material/folder-mjml.svg +0 -1
- package/assets/material/folder-mobile-open.svg +0 -1
- package/assets/material/folder-mobile.svg +0 -1
- package/assets/material/folder-mock-open.svg +0 -1
- package/assets/material/folder-mock.svg +0 -1
- package/assets/material/folder-netlify-open.svg +0 -5
- package/assets/material/folder-netlify.svg +0 -2
- package/assets/material/folder-next-open.svg +0 -1
- package/assets/material/folder-next.svg +0 -1
- package/assets/material/folder-ngrx-actions-open.svg +0 -1
- package/assets/material/folder-ngrx-actions.svg +0 -1
- package/assets/material/folder-ngrx-effects-open.svg +0 -1
- package/assets/material/folder-ngrx-effects.svg +0 -1
- package/assets/material/folder-ngrx-entities-open.svg +0 -1
- package/assets/material/folder-ngrx-entities.svg +0 -1
- package/assets/material/folder-ngrx-reducer-open.svg +0 -1
- package/assets/material/folder-ngrx-reducer.svg +0 -1
- package/assets/material/folder-ngrx-selectors-open.svg +0 -1
- package/assets/material/folder-ngrx-selectors.svg +0 -1
- package/assets/material/folder-ngrx-state-open.svg +0 -1
- package/assets/material/folder-ngrx-state.svg +0 -1
- package/assets/material/folder-ngrx-store-open.svg +0 -1
- package/assets/material/folder-ngrx-store.svg +0 -1
- package/assets/material/folder-node-open.svg +0 -1
- package/assets/material/folder-node.svg +0 -1
- package/assets/material/folder-nuxt-open.svg +0 -1
- package/assets/material/folder-nuxt.svg +0 -1
- package/assets/material/folder-open.svg +0 -1
- package/assets/material/folder-other-open.svg +0 -1
- package/assets/material/folder-other.svg +0 -1
- package/assets/material/folder-packages-open.svg +0 -1
- package/assets/material/folder-packages.svg +0 -1
- package/assets/material/folder-pdf-open.svg +0 -1
- package/assets/material/folder-pdf.svg +0 -1
- package/assets/material/folder-php-open.svg +0 -1
- package/assets/material/folder-php.svg +0 -1
- package/assets/material/folder-phpmailer-open.svg +0 -1
- package/assets/material/folder-phpmailer.svg +0 -1
- package/assets/material/folder-pipe-open.svg +0 -1
- package/assets/material/folder-pipe.svg +0 -1
- package/assets/material/folder-plastic-open.svg +0 -8
- package/assets/material/folder-plastic.svg +0 -2
- package/assets/material/folder-plugin-open.svg +0 -1
- package/assets/material/folder-plugin.svg +0 -1
- package/assets/material/folder-prisma-open.svg +0 -1
- package/assets/material/folder-prisma.svg +0 -1
- package/assets/material/folder-private-open.svg +0 -1
- package/assets/material/folder-private.svg +0 -1
- package/assets/material/folder-project-open.svg +0 -1
- package/assets/material/folder-project.svg +0 -1
- package/assets/material/folder-proto-open.svg +0 -1
- package/assets/material/folder-proto.svg +0 -1
- package/assets/material/folder-public-open.svg +0 -1
- package/assets/material/folder-public.svg +0 -1
- package/assets/material/folder-python-open.svg +0 -1
- package/assets/material/folder-python.svg +0 -1
- package/assets/material/folder-quasar-open.svg +0 -1
- package/assets/material/folder-quasar.svg +0 -1
- package/assets/material/folder-queue-open.svg +0 -1
- package/assets/material/folder-queue.svg +0 -1
- package/assets/material/folder-react-components-open.svg +0 -1
- package/assets/material/folder-react-components.svg +0 -1
- package/assets/material/folder-redux-actions-open.svg +0 -1
- package/assets/material/folder-redux-actions.svg +0 -1
- package/assets/material/folder-redux-reducer-open.svg +0 -1
- package/assets/material/folder-redux-reducer.svg +0 -1
- package/assets/material/folder-redux-selector-open.svg +0 -1
- package/assets/material/folder-redux-selector.svg +0 -1
- package/assets/material/folder-redux-store-open.svg +0 -1
- package/assets/material/folder-redux-store.svg +0 -1
- package/assets/material/folder-resolver-open.svg +0 -1
- package/assets/material/folder-resolver.svg +0 -1
- package/assets/material/folder-resource-open.svg +0 -1
- package/assets/material/folder-resource.svg +0 -1
- package/assets/material/folder-review-open.svg +0 -1
- package/assets/material/folder-review.svg +0 -1
- package/assets/material/folder-root-open.svg +0 -1
- package/assets/material/folder-root.svg +0 -1
- package/assets/material/folder-routes-open.svg +0 -1
- package/assets/material/folder-routes.svg +0 -1
- package/assets/material/folder-rules-open.svg +0 -1
- package/assets/material/folder-rules.svg +0 -1
- package/assets/material/folder-sass-open.svg +0 -1
- package/assets/material/folder-sass.svg +0 -1
- package/assets/material/folder-scala-open.svg +0 -1
- package/assets/material/folder-scala.svg +0 -1
- package/assets/material/folder-scripts-open.svg +0 -1
- package/assets/material/folder-scripts.svg +0 -1
- package/assets/material/folder-secure-open.svg +0 -1
- package/assets/material/folder-secure.svg +0 -1
- package/assets/material/folder-server-open.svg +0 -1
- package/assets/material/folder-server.svg +0 -1
- package/assets/material/folder-serverless-open.svg +0 -1
- package/assets/material/folder-serverless.svg +0 -1
- package/assets/material/folder-shader-open.svg +0 -1
- package/assets/material/folder-shader.svg +0 -1
- package/assets/material/folder-shared-open.svg +0 -1
- package/assets/material/folder-shared.svg +0 -1
- package/assets/material/folder-src-open.svg +0 -1
- package/assets/material/folder-src.svg +0 -1
- package/assets/material/folder-stack-open.svg +0 -1
- package/assets/material/folder-stack.svg +0 -1
- package/assets/material/folder-stencil-open.svg +0 -1
- package/assets/material/folder-stencil.svg +0 -1
- package/assets/material/folder-storybook-open.svg +0 -1
- package/assets/material/folder-storybook.svg +0 -1
- package/assets/material/folder-stylus-open.svg +0 -1
- package/assets/material/folder-stylus.svg +0 -1
- package/assets/material/folder-sublime-open.svg +0 -1
- package/assets/material/folder-sublime.svg +0 -1
- package/assets/material/folder-supabase-open.svg +0 -5
- package/assets/material/folder-supabase.svg +0 -2
- package/assets/material/folder-svelte-open.svg +0 -1
- package/assets/material/folder-svelte.svg +0 -1
- package/assets/material/folder-svg-open.svg +0 -1
- package/assets/material/folder-svg.svg +0 -1
- package/assets/material/folder-syntax-open.svg +0 -1
- package/assets/material/folder-syntax.svg +0 -1
- package/assets/material/folder-target-open.svg +0 -1
- package/assets/material/folder-target.svg +0 -1
- package/assets/material/folder-tasks-open.svg +0 -1
- package/assets/material/folder-tasks.svg +0 -1
- package/assets/material/folder-temp-open.svg +0 -1
- package/assets/material/folder-temp.svg +0 -1
- package/assets/material/folder-template-open.svg +0 -1
- package/assets/material/folder-template.svg +0 -1
- package/assets/material/folder-terraform-open.svg +0 -1
- package/assets/material/folder-terraform.svg +0 -1
- package/assets/material/folder-test-open.svg +0 -1
- package/assets/material/folder-test.svg +0 -1
- package/assets/material/folder-theme-open.svg +0 -1
- package/assets/material/folder-theme.svg +0 -1
- package/assets/material/folder-tools-open.svg +0 -1
- package/assets/material/folder-tools.svg +0 -1
- package/assets/material/folder-typescript-open.svg +0 -1
- package/assets/material/folder-typescript.svg +0 -1
- package/assets/material/folder-unity-open.svg +0 -1
- package/assets/material/folder-unity.svg +0 -1
- package/assets/material/folder-update-open.svg +0 -1
- package/assets/material/folder-update.svg +0 -1
- package/assets/material/folder-upload-open.svg +0 -1
- package/assets/material/folder-upload.svg +0 -1
- package/assets/material/folder-utils-open.svg +0 -1
- package/assets/material/folder-utils.svg +0 -1
- package/assets/material/folder-vercel-open.svg +0 -1
- package/assets/material/folder-vercel.svg +0 -1
- package/assets/material/folder-verdaccio-open.svg +0 -1
- package/assets/material/folder-verdaccio.svg +0 -1
- package/assets/material/folder-video-open.svg +0 -1
- package/assets/material/folder-video.svg +0 -1
- package/assets/material/folder-views-open.svg +0 -1
- package/assets/material/folder-views.svg +0 -1
- package/assets/material/folder-vm-open.svg +0 -1
- package/assets/material/folder-vm.svg +0 -1
- package/assets/material/folder-vscode-open.svg +0 -1
- package/assets/material/folder-vscode.svg +0 -1
- package/assets/material/folder-vue-directives-open.svg +0 -1
- package/assets/material/folder-vue-directives.svg +0 -1
- package/assets/material/folder-vue-open.svg +0 -1
- package/assets/material/folder-vue.svg +0 -1
- package/assets/material/folder-vuepress-open.svg +0 -1
- package/assets/material/folder-vuepress.svg +0 -1
- package/assets/material/folder-vuex-store-open.svg +0 -1
- package/assets/material/folder-vuex-store.svg +0 -1
- package/assets/material/folder-wakatime-open.svg +0 -1
- package/assets/material/folder-wakatime.svg +0 -1
- package/assets/material/folder-webpack-open.svg +0 -1
- package/assets/material/folder-webpack.svg +0 -1
- package/assets/material/folder-wordpress-open.svg +0 -1
- package/assets/material/folder-wordpress.svg +0 -1
- package/assets/material/folder-yarn-open.svg +0 -1
- package/assets/material/folder-yarn.svg +0 -1
- package/assets/material/folder.svg +0 -1
- package/assets/material/font.svg +0 -1
- package/assets/material/forth.svg +0 -1
- package/assets/material/fortran.svg +0 -1
- package/assets/material/foxpro.svg +0 -1
- package/assets/material/fsharp.svg +0 -1
- package/assets/material/fusebox.svg +0 -1
- package/assets/material/gamemaker.svg +0 -4
- package/assets/material/gatsby.svg +0 -1
- package/assets/material/gcp.svg +0 -1
- package/assets/material/gemfile.svg +0 -1
- package/assets/material/gemini.svg +0 -1
- package/assets/material/git.svg +0 -1
- package/assets/material/gitlab.svg +0 -1
- package/assets/material/gitpod.svg +0 -1
- package/assets/material/gleam.svg +0 -1
- package/assets/material/go-mod.svg +0 -1
- package/assets/material/go.svg +0 -1
- package/assets/material/go_gopher.svg +0 -1
- package/assets/material/godot-assets.svg +0 -7
- package/assets/material/godot.svg +0 -7
- package/assets/material/gradle.svg +0 -1
- package/assets/material/grain.svg +0 -1
- package/assets/material/graphcool.svg +0 -1
- package/assets/material/graphql.svg +0 -1
- package/assets/material/gridsome.svg +0 -1
- package/assets/material/groovy.svg +0 -1
- package/assets/material/grunt.svg +0 -1
- package/assets/material/gulp.svg +0 -1
- package/assets/material/h.svg +0 -1
- package/assets/material/hack.svg +0 -1
- package/assets/material/haml.svg +0 -1
- package/assets/material/handlebars.svg +0 -1
- package/assets/material/hardhat.svg +0 -1
- package/assets/material/haskell.svg +0 -1
- package/assets/material/haxe.svg +0 -1
- package/assets/material/hcl.svg +0 -1
- package/assets/material/hcl_light.svg +0 -1
- package/assets/material/helm.svg +0 -1
- package/assets/material/heroku.svg +0 -1
- package/assets/material/hex.svg +0 -1
- package/assets/material/horusec.svg +0 -1
- package/assets/material/hpp.svg +0 -1
- package/assets/material/html.svg +0 -1
- package/assets/material/http.svg +0 -1
- package/assets/material/husky.svg +0 -1
- package/assets/material/i18n.svg +0 -1
- package/assets/material/idris.svg +0 -1
- package/assets/material/ifanr-cloud.svg +0 -10
- package/assets/material/image.svg +0 -1
- package/assets/material/imba.svg +0 -1
- package/assets/material/ionic.svg +0 -1
- package/assets/material/istanbul.svg +0 -1
- package/assets/material/jar.svg +0 -1
- package/assets/material/java.svg +0 -1
- package/assets/material/javaclass.svg +0 -1
- package/assets/material/javascript-map.svg +0 -1
- package/assets/material/javascript.svg +0 -1
- package/assets/material/jenkins.svg +0 -1
- package/assets/material/jest.svg +0 -1
- package/assets/material/jinja.svg +0 -1
- package/assets/material/jinja_light.svg +0 -1
- package/assets/material/jsconfig.svg +0 -1
- package/assets/material/json.svg +0 -1
- package/assets/material/julia.svg +0 -1
- package/assets/material/jupyter.svg +0 -1
- package/assets/material/karma.svg +0 -1
- package/assets/material/key.svg +0 -1
- package/assets/material/kivy.svg +0 -1
- package/assets/material/kl.svg +0 -1
- package/assets/material/kotlin.svg +0 -1
- package/assets/material/kusto.svg +0 -1
- package/assets/material/laravel.svg +0 -1
- package/assets/material/lerna.svg +0 -1
- package/assets/material/less.svg +0 -1
- package/assets/material/lib.svg +0 -1
- package/assets/material/lighthouse.svg +0 -1
- package/assets/material/lilypond.svg +0 -1
- package/assets/material/liquid.svg +0 -1
- package/assets/material/lisp.svg +0 -1
- package/assets/material/livescript.svg +0 -1
- package/assets/material/lock.svg +0 -1
- package/assets/material/log.svg +0 -1
- package/assets/material/lolcode.svg +0 -1
- package/assets/material/lua.svg +0 -1
- package/assets/material/makefile.svg +0 -1
- package/assets/material/markdown.svg +0 -1
- package/assets/material/markojs.svg +0 -1
- package/assets/material/mathematica.svg +0 -1
- package/assets/material/matlab.svg +0 -1
- package/assets/material/maven.svg +0 -1
- package/assets/material/mdsvex.svg +0 -1
- package/assets/material/mdx.svg +0 -1
- package/assets/material/mercurial.svg +0 -6
- package/assets/material/merlin.svg +0 -1
- package/assets/material/mermaid.svg +0 -4
- package/assets/material/meson.svg +0 -1
- package/assets/material/minecraft.svg +0 -1
- package/assets/material/mint.svg +0 -1
- package/assets/material/mjml.svg +0 -1
- package/assets/material/mocha.svg +0 -1
- package/assets/material/modernizr.svg +0 -1
- package/assets/material/moonscript.svg +0 -1
- package/assets/material/mxml.svg +0 -1
- package/assets/material/nano-staged.svg +0 -1
- package/assets/material/nano-staged_light.svg +0 -1
- package/assets/material/ndst.svg +0 -1
- package/assets/material/nest-controller.svg +0 -1
- package/assets/material/nest-decorator.svg +0 -1
- package/assets/material/nest-filter.svg +0 -1
- package/assets/material/nest-gateway.svg +0 -1
- package/assets/material/nest-guard.svg +0 -1
- package/assets/material/nest-middleware.svg +0 -1
- package/assets/material/nest-module.svg +0 -1
- package/assets/material/nest-pipe.svg +0 -1
- package/assets/material/nest-resolver.svg +0 -1
- package/assets/material/nest-service.svg +0 -1
- package/assets/material/nest.svg +0 -1
- package/assets/material/netlify.svg +0 -7
- package/assets/material/netlify_light.svg +0 -7
- package/assets/material/next.svg +0 -1
- package/assets/material/next_light.svg +0 -1
- package/assets/material/nginx.svg +0 -1
- package/assets/material/ngrx-actions.svg +0 -1
- package/assets/material/ngrx-effects.svg +0 -1
- package/assets/material/ngrx-entity.svg +0 -1
- package/assets/material/ngrx-reducer.svg +0 -1
- package/assets/material/ngrx-selectors.svg +0 -1
- package/assets/material/ngrx-state.svg +0 -1
- package/assets/material/nim.svg +0 -1
- package/assets/material/nix.svg +0 -1
- package/assets/material/nodejs.svg +0 -1
- package/assets/material/nodejs_alt.svg +0 -1
- package/assets/material/nodemon.svg +0 -1
- package/assets/material/npm.svg +0 -1
- package/assets/material/nrwl.svg +0 -1
- package/assets/material/nuget.svg +0 -1
- package/assets/material/nunjucks.svg +0 -1
- package/assets/material/nuxt.svg +0 -1
- package/assets/material/objective-c.svg +0 -4
- package/assets/material/objective-cpp.svg +0 -1
- package/assets/material/ocaml.svg +0 -1
- package/assets/material/odin.svg +0 -1
- package/assets/material/opa.svg +0 -1
- package/assets/material/opam.svg +0 -1
- package/assets/material/otne.svg +0 -1
- package/assets/material/parcel.svg +0 -1
- package/assets/material/pascal.svg +0 -6
- package/assets/material/pawn.svg +0 -1
- package/assets/material/pdf.svg +0 -1
- package/assets/material/percy.svg +0 -1
- package/assets/material/perl.svg +0 -1
- package/assets/material/php-cs-fixer.svg +0 -1
- package/assets/material/php.svg +0 -1
- package/assets/material/php_elephant.svg +0 -1
- package/assets/material/php_elephant_pink.svg +0 -1
- package/assets/material/phpunit.svg +0 -1
- package/assets/material/pinejs.svg +0 -1
- package/assets/material/pipeline.svg +0 -1
- package/assets/material/plastic.svg +0 -7
- package/assets/material/playwright.svg +0 -1
- package/assets/material/plop.svg +0 -1
- package/assets/material/pnpm.svg +0 -1
- package/assets/material/pnpm_light.svg +0 -1
- package/assets/material/poetry.svg +0 -1
- package/assets/material/postcss.svg +0 -1
- package/assets/material/posthtml.svg +0 -1
- package/assets/material/powerpoint.svg +0 -1
- package/assets/material/powershell.svg +0 -1
- package/assets/material/prettier.svg +0 -1
- package/assets/material/prisma.svg +0 -1
- package/assets/material/processing.svg +0 -1
- package/assets/material/prolog.svg +0 -1
- package/assets/material/proto.svg +0 -1
- package/assets/material/protractor.svg +0 -1
- package/assets/material/pug.svg +0 -1
- package/assets/material/puppet.svg +0 -1
- package/assets/material/purescript.svg +0 -1
- package/assets/material/python-misc.svg +0 -1
- package/assets/material/python.svg +0 -1
- package/assets/material/qsharp.svg +0 -1
- package/assets/material/quasar.svg +0 -1
- package/assets/material/qwik.svg +0 -2
- package/assets/material/r.svg +0 -1
- package/assets/material/racket.svg +0 -1
- package/assets/material/raml.svg +0 -1
- package/assets/material/razor.svg +0 -1
- package/assets/material/rc.svg +0 -2
- package/assets/material/react.svg +0 -1
- package/assets/material/react_ts.svg +0 -1
- package/assets/material/readme.svg +0 -1
- package/assets/material/reason.svg +0 -1
- package/assets/material/red.svg +0 -1
- package/assets/material/redux-action.svg +0 -1
- package/assets/material/redux-reducer.svg +0 -1
- package/assets/material/redux-selector.svg +0 -1
- package/assets/material/redux-store.svg +0 -1
- package/assets/material/remix.svg +0 -1
- package/assets/material/remix_light.svg +0 -1
- package/assets/material/renovate.svg +0 -1
- package/assets/material/replit.svg +0 -1
- package/assets/material/rescript-interface.svg +0 -1
- package/assets/material/rescript.svg +0 -1
- package/assets/material/restql.svg +0 -1
- package/assets/material/riot.svg +0 -1
- package/assets/material/roadmap.svg +0 -1
- package/assets/material/robot.svg +0 -1
- package/assets/material/robots.svg +0 -1
- package/assets/material/rollup.svg +0 -1
- package/assets/material/rome.svg +0 -1
- package/assets/material/routing.svg +0 -1
- package/assets/material/rubocop.svg +0 -1
- package/assets/material/rubocop_light.svg +0 -1
- package/assets/material/ruby.svg +0 -1
- package/assets/material/rust.svg +0 -1
- package/assets/material/salesforce.svg +0 -1
- package/assets/material/san.svg +0 -1
- package/assets/material/sas.svg +0 -1
- package/assets/material/sass.svg +0 -1
- package/assets/material/sbt.svg +0 -1
- package/assets/material/scala.svg +0 -1
- package/assets/material/scheme.svg +0 -1
- package/assets/material/search.svg +0 -1
- package/assets/material/semantic-release.svg +0 -1
- package/assets/material/semantic-release_light.svg +0 -1
- package/assets/material/sentry.svg +0 -1
- package/assets/material/sequelize.svg +0 -1
- package/assets/material/serverless.svg +0 -1
- package/assets/material/settings.svg +0 -1
- package/assets/material/shader.svg +0 -1
- package/assets/material/shaderlab.svg +0 -1
- package/assets/material/silverstripe.svg +0 -1
- package/assets/material/siyuan.svg +0 -1
- package/assets/material/sketch.svg +0 -1
- package/assets/material/slim.svg +0 -1
- package/assets/material/slug.svg +0 -1
- package/assets/material/smarty.svg +0 -1
- package/assets/material/sml.svg +0 -1
- package/assets/material/snowpack.svg +0 -1
- package/assets/material/snowpack_light.svg +0 -1
- package/assets/material/snyk.svg +0 -1
- package/assets/material/solidity.svg +0 -1
- package/assets/material/sonarcloud.svg +0 -4
- package/assets/material/steadybit.svg +0 -1
- package/assets/material/stencil.svg +0 -1
- package/assets/material/stitches.svg +0 -1
- package/assets/material/stitches_light.svg +0 -1
- package/assets/material/storybook.svg +0 -1
- package/assets/material/stryker.svg +0 -1
- package/assets/material/stylable.svg +0 -10
- package/assets/material/stylelint.svg +0 -1
- package/assets/material/stylelint_light.svg +0 -1
- package/assets/material/stylus.svg +0 -1
- package/assets/material/sublime.svg +0 -1
- package/assets/material/supabase.svg +0 -4
- package/assets/material/svelte.svg +0 -1
- package/assets/material/svg.svg +0 -1
- package/assets/material/svgo.svg +0 -1
- package/assets/material/svgr.svg +0 -1
- package/assets/material/swc.svg +0 -1
- package/assets/material/swift.svg +0 -1
- package/assets/material/table.svg +0 -1
- package/assets/material/tailwindcss.svg +0 -1
- package/assets/material/tauri.svg +0 -1
- package/assets/material/tcl.svg +0 -1
- package/assets/material/teal.svg +0 -1
- package/assets/material/template.svg +0 -1
- package/assets/material/terraform.svg +0 -1
- package/assets/material/test-js.svg +0 -1
- package/assets/material/test-jsx.svg +0 -1
- package/assets/material/test-ts.svg +0 -1
- package/assets/material/tex.svg +0 -1
- package/assets/material/textlint.svg +0 -1
- package/assets/material/tilt.svg +0 -1
- package/assets/material/tldraw.svg +0 -4
- package/assets/material/tldraw_light.svg +0 -4
- package/assets/material/tobi.svg +0 -1
- package/assets/material/tobimake.svg +0 -1
- package/assets/material/todo.svg +0 -1
- package/assets/material/travis.svg +0 -1
- package/assets/material/tree.svg +0 -1
- package/assets/material/tsconfig.svg +0 -1
- package/assets/material/tune.svg +0 -1
- package/assets/material/turborepo.svg +0 -1
- package/assets/material/turborepo_light.svg +0 -1
- package/assets/material/twig.svg +0 -1
- package/assets/material/twine.svg +0 -1
- package/assets/material/typescript-def.svg +0 -1
- package/assets/material/typescript.svg +0 -1
- package/assets/material/typst.svg +0 -2
- package/assets/material/uml.svg +0 -1
- package/assets/material/uml_light.svg +0 -1
- package/assets/material/url.svg +0 -1
- package/assets/material/vagrant.svg +0 -1
- package/assets/material/vala.svg +0 -1
- package/assets/material/velocity.svg +0 -1
- package/assets/material/vercel.svg +0 -1
- package/assets/material/vercel_light.svg +0 -1
- package/assets/material/verdaccio.svg +0 -1
- package/assets/material/verilog.svg +0 -1
- package/assets/material/vfl.svg +0 -1
- package/assets/material/video.svg +0 -1
- package/assets/material/vim.svg +0 -1
- package/assets/material/virtual.svg +0 -1
- package/assets/material/visualstudio.svg +0 -1
- package/assets/material/vite.svg +0 -1
- package/assets/material/vitest.svg +0 -6
- package/assets/material/vlang.svg +0 -1
- package/assets/material/vscode.svg +0 -1
- package/assets/material/vue-config.svg +0 -1
- package/assets/material/vue.svg +0 -1
- package/assets/material/vuex-store.svg +0 -1
- package/assets/material/wakatime.svg +0 -1
- package/assets/material/wakatime_light.svg +0 -1
- package/assets/material/wallaby.svg +0 -1
- package/assets/material/watchman.svg +0 -1
- package/assets/material/webassembly.svg +0 -1
- package/assets/material/webhint.svg +0 -1
- package/assets/material/webpack.svg +0 -1
- package/assets/material/wepy.svg +0 -1
- package/assets/material/windicss.svg +0 -1
- package/assets/material/wolframlanguage.svg +0 -1
- package/assets/material/word.svg +0 -1
- package/assets/material/xaml.svg +0 -1
- package/assets/material/xml.svg +0 -1
- package/assets/material/yaml.svg +0 -1
- package/assets/material/yang.svg +0 -1
- package/assets/material/yarn.svg +0 -1
- package/assets/material/zig.svg +0 -1
- package/assets/material/zip.svg +0 -1
- package/assets/pop/LICENSE +0 -2
- package/assets/pop/binary.svg +0 -1
- package/assets/pop/compressed.svg +0 -1
- package/assets/pop/database.svg +0 -1
- package/assets/pop/exts/7z.svg +0 -1
- package/assets/pop/exts/apk.svg +0 -1
- package/assets/pop/exts/arc.svg +0 -1
- package/assets/pop/exts/bz.svg +0 -1
- package/assets/pop/exts/deb.svg +0 -1
- package/assets/pop/exts/gz.svg +0 -1
- package/assets/pop/exts/pdf.svg +0 -1
- package/assets/pop/exts/rar.svg +0 -1
- package/assets/pop/exts/rpm.svg +0 -1
- package/assets/pop/exts/tar.svg +0 -1
- package/assets/pop/exts/xar.svg +0 -1
- package/assets/pop/exts/xz.svg +0 -1
- package/assets/pop/exts/zip.svg +0 -1
- package/assets/pop/folder-open.svg +0 -1
- package/assets/pop/folder.svg +0 -1
- package/assets/pop/generic.svg +0 -1
- package/assets/pop/presentation.svg +0 -1
- package/assets/pop/richtext.svg +0 -1
- package/assets/pop/spreadsheet.svg +0 -1
- package/assets/pop/text.svg +0 -1
- package/esm2022/components/lazy-loader/lazy-loader.component.mjs +0 -383
- package/esm2022/components/lazy-loader/lazy-loader.module.mjs +0 -33
- package/esm2022/components/lazy-loader/lazy-loader.service.mjs +0 -217
- package/esm2022/components/lazy-loader/types.mjs +0 -26
- package/esm2022/components/menu/menu.component.mjs +0 -433
- package/esm2022/components/parallax-card/parallax-card.component.mjs +0 -138
- package/esm2022/components/tooltip/tooltip.component.mjs +0 -205
- package/esm2022/components/types.mjs +0 -3
- package/esm2022/directives/image-cache.directive.mjs +0 -143
- package/esm2022/directives/menu.directive.mjs +0 -159
- package/esm2022/directives/tooltip.directive.mjs +0 -154
- package/esm2022/directives/utils.mjs +0 -120
- package/esm2022/pipes/html-bypass.pipe.mjs +0 -27
- package/esm2022/pipes/resource-bypass.pipe.mjs +0 -27
- package/esm2022/pipes/script-bypass.pipe.mjs +0 -27
- package/esm2022/pipes/style-bypass.pipe.mjs +0 -27
- package/esm2022/pipes/url-bypass.pipe.mjs +0 -27
- package/esm2022/public-api.mjs +0 -46
- package/esm2022/services/dependency.service.mjs +0 -55
- package/esm2022/services/dialog.service.mjs +0 -69
- package/esm2022/services/fetch.service.mjs +0 -74
- package/esm2022/services/file.service.mjs +0 -42
- package/esm2022/services/keyboard.service.mjs +0 -128
- package/esm2022/services/navigation.service.mjs +0 -52
- package/esm2022/services/theme.service.mjs +0 -64
- package/esm2022/types/menu.mjs +0 -2
- package/esm2022/types/popup.mjs +0 -2
- package/esm2022/types/tooltip.mjs +0 -2
- package/esm2022/utils/index.mjs +0 -205
- package/utils/index.d.ts +0 -128
- /package/{components → core/components}/lazy-loader/lazy-loader.component.d.ts +0 -0
- /package/{components → core/components}/lazy-loader/lazy-loader.module.d.ts +0 -0
- /package/{components → core/components}/lazy-loader/lazy-loader.service.d.ts +0 -0
- /package/{components → core/components}/lazy-loader/types.d.ts +0 -0
- /package/{components → core/components}/parallax-card/parallax-card.component.d.ts +0 -0
- /package/{directives → core/directives}/image-cache.directive.d.ts +0 -0
- /package/{directives → core/directives}/utils.d.ts +0 -0
- /package/{pipes → core/pipes}/html-bypass.pipe.d.ts +0 -0
- /package/{pipes → core/pipes}/resource-bypass.pipe.d.ts +0 -0
- /package/{pipes → core/pipes}/script-bypass.pipe.d.ts +0 -0
- /package/{pipes → core/pipes}/style-bypass.pipe.d.ts +0 -0
- /package/{pipes → core/pipes}/url-bypass.pipe.d.ts +0 -0
- /package/{services → core/services}/dependency.service.d.ts +0 -0
- /package/{services → core/services}/dialog.service.d.ts +0 -0
- /package/{services → core/services}/fetch.service.d.ts +0 -0
- /package/{services → core/services}/file.service.d.ts +0 -0
- /package/{services → core/services}/keyboard.service.d.ts +0 -0
- /package/{services → core/services}/theme.service.d.ts +0 -0
- /package/{types → core/types}/popup.d.ts +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#5c6bc0" fill-rule="nonzero"/><path d="m17.293 17.786-1.53-1.512.018-.018a10.555 10.555 0 0 0 2.235-3.934h1.765v-1.205h-4.217V9.912h-1.205v1.205h-4.217v1.205h6.73a9.5 9.5 0 0 1-1.91 3.223 9.424 9.424 0 0 1-1.392-2.018h-1.205c.44.982 1.042 1.91 1.795 2.747l-3.067 3.024.856.856 3.012-3.013 1.874 1.874.458-1.229m3.392-3.054H19.48l-2.711 7.23h1.205l.674-1.808h2.862l.68 1.807h1.206l-2.711-7.23m-1.579 4.218.976-2.609.976 2.609z" fill="#c5cae9"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#009688" fill-rule="nonzero"/><path d="M18.575 12.859h3.713l-3.713-3.713v3.713M13.85 8.134h5.4l4.05 4.05v8.1c0 .74-.61 1.35-1.35 1.35h-8.1a1.35 1.35 0 0 1-1.35-1.35v-10.8c0-.75.6-1.35 1.35-1.35m0 12.15h8.1v-5.4l-2.7 2.7-1.35-1.35-4.05 4.05m1.35-7.425c-.74 0-1.35.61-1.35 1.35s.61 1.35 1.35 1.35 1.35-.61 1.35-1.35-.61-1.35-1.35-1.35z" fill-rule="nonzero" fill="#b2dfdb"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#009688" fill-rule="nonzero"/><path d="M18.575 12.859h3.713l-3.713-3.713v3.713M13.85 8.134h5.4l4.05 4.05v8.1c0 .74-.61 1.35-1.35 1.35h-8.1a1.35 1.35 0 0 1-1.35-1.35v-10.8c0-.75.6-1.35 1.35-1.35m0 12.15h8.1v-5.4l-2.7 2.7-1.35-1.35-4.05 4.05m1.35-7.425c-.74 0-1.35.61-1.35 1.35s.61 1.35 1.35 1.35 1.35-.61 1.35-1.35-.61-1.35-1.35-1.35z" fill-rule="nonzero" fill="#b2dfdb"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#039be5" style="fill:#afb42b"/><path d="M20.62 15.706h-2.434v2.434H16.97v-2.434h-2.434v-1.217h2.434v-2.434h1.217v2.434h2.434m-3.042-5.476a6.085 6.085 0 0 0-6.085 6.084 6.085 6.085 0 0 0 6.085 6.085 6.085 6.085 0 0 0 6.084-6.085 6.085 6.085 0 0 0-6.084-6.084z" style="fill:#f0f4c3;stroke-width:.60845"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#039be5" fill-rule="nonzero" style="fill:#afb42b"/><path d="M20.62 15.706h-2.434v2.434H16.97v-2.434h-2.434v-1.217h2.434v-2.434h1.217v2.434h2.434m-3.042-5.476a6.085 6.085 0 0 0-6.085 6.084 6.085 6.085 0 0 0 6.085 6.085 6.085 6.085 0 0 0 6.084-6.085 6.085 6.085 0 0 0-6.084-6.084z" style="fill:#f0f4c3;stroke-width:.60845"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#039be5"/><path d="M20.788 15.981h-2.434v2.434h-1.217V15.98h-2.434v-1.217h2.434V12.33h1.217v2.434h2.434m-3.042-5.476a6.085 6.085 0 0 0-6.085 6.084 6.085 6.085 0 0 0 6.085 6.085 6.085 6.085 0 0 0 6.084-6.085 6.085 6.085 0 0 0-6.084-6.084z" fill="#b3e5fc"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#039be5" fill-rule="nonzero"/><path d="M20.788 15.981h-2.434v2.434h-1.217V15.98h-2.434v-1.217h2.434V12.33h1.217v2.434h2.434m-3.042-5.476a6.085 6.085 0 0 0-6.085 6.084 6.085 6.085 0 0 0 6.085 6.085 6.085 6.085 0 0 0 6.084-6.085 6.085 6.085 0 0 0-6.084-6.084z" fill="#b3e5fc"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="a" x1="31.841" x2="110.24" y1="120.56" y2="73.24" gradientUnits="userSpaceOnUse"><stop stop-color="#fdd835" offset="0"/><stop stop-color="#f57c00" offset="1"/></linearGradient><linearGradient id="b" x1="48.361" x2="119.92" y1="6.908" y2="69.555" gradientUnits="userSpaceOnUse"><stop stop-color="#ef5350" offset="0"/><stop stop-color="#ff6e40" offset=".57"/><stop stop-color="#f57c00" offset="1"/></linearGradient><linearGradient id="c" x1="52.947" x2="10.538" y1="63.641" y2="37.156" gradientUnits="userSpaceOnUse"><stop stop-color="#8e24aa" offset="0"/><stop stop-color="#ab47bc" offset=".385"/><stop stop-color="#ec407a" offset=".765"/><stop stop-color="#ec407a" offset=".957"/></linearGradient><linearGradient id="d" x1="52.174" x2="10.771" y1="3.702" y2="37.897" gradientUnits="userSpaceOnUse"><stop stop-color="#ef5350" offset="0"/><stop stop-color="#EE4E72" offset=".364"/><stop stop-color="#ec407a" offset="1"/></linearGradient></defs><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#546e7a"/><path d="M118.6 71.8c.9-.8 1.4-1.9 1.5-3.2.1-2.6-1.8-4.7-4.4-4.9-1.2-.1-2.4.4-3.3 1.1l-83.8 45.9c-1.9.8-3.6 2.2-4.7 4.1-2.9 4.8-1.3 11 3.6 13.9 3.4 2 7.5 1.8 10.7-.2.2-.2.5-.3.7-.5l78-54.8c.4-.3 1.5-1.1 1.7-1.4z" fill="url(#a)" transform="translate(10.126 8.976) scale(.11021)"/><path d="M118.8 65.1 55 2.5C53.6 1 51.6 0 49.3 0c-4.3 0-7.7 3.5-7.7 7.7 0 2.1.8 3.9 2.1 5.3.4.4.8.7 1.2 1l67.4 57.7c.8.7 1.8 1.2 3 1.3 2.6.1 4.7-1.8 4.9-4.4 0-1.3-.5-2.6-1.4-3.5z" fill="url(#b)" transform="translate(10.126 8.976) scale(.11021)"/><path d="M57.1 59.5c-.1 0-39.4-31-40.2-31.5l-1.8-.9c-5.8-2.2-12.2.8-14.4 6.6-1.9 5.1.2 10.7 4.6 13.4.7.4 1.3.7 2 .9.4.2 45.4 18.8 45.4 18.8 1.8.8 3.9.3 5.1-1.2 1.5-1.9 1.2-4.6-.7-6.1z" fill="url(#c)" transform="translate(10.126 8.976) scale(.11021)"/><path d="M49.3 0c-1.7 0-3.3.6-4.6 1.5L4.9 28.3c-.1.1-.2.1-.2.2h-.1c-1.7 1.2-3.1 3-3.9 5.1-2.2 5.8.8 12.3 6.6 14.4 3.6 1.4 7.5.7 10.4-1.4.7-.5 1.3-1 1.8-1.6l34.6-31.2c1.8-1.4 3-3.6 3-6.1 0-4.2-3.5-7.7-7.8-7.7z" fill="url(#d)" transform="translate(10.126 8.976) scale(.11021)"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="a" x1="31.841" x2="110.24" y1="120.56" y2="73.24" gradientUnits="userSpaceOnUse"><stop stop-color="#fdd835" offset="0"/><stop stop-color="#f57c00" offset="1"/></linearGradient><linearGradient id="b" x1="48.361" x2="119.92" y1="6.908" y2="69.555" gradientUnits="userSpaceOnUse"><stop stop-color="#ef5350" offset="0"/><stop stop-color="#ff6e40" offset=".57"/><stop stop-color="#f57c00" offset="1"/></linearGradient><linearGradient id="c" x1="52.947" x2="10.538" y1="63.641" y2="37.156" gradientUnits="userSpaceOnUse"><stop stop-color="#8e24aa" offset="0"/><stop stop-color="#ab47bc" offset=".385"/><stop stop-color="#ec407a" offset=".765"/><stop stop-color="#ec407a" offset=".957"/></linearGradient><linearGradient id="d" x1="52.174" x2="10.771" y1="3.702" y2="37.897" gradientUnits="userSpaceOnUse"><stop stop-color="#ef5350" offset="0"/><stop stop-color="#EE4E72" offset=".364"/><stop stop-color="#ec407a" offset="1"/></linearGradient></defs><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#b0bec5"/><path d="M118.6 71.8c.9-.8 1.4-1.9 1.5-3.2.1-2.6-1.8-4.7-4.4-4.9-1.2-.1-2.4.4-3.3 1.1l-83.8 45.9c-1.9.8-3.6 2.2-4.7 4.1-2.9 4.8-1.3 11 3.6 13.9 3.4 2 7.5 1.8 10.7-.2.2-.2.5-.3.7-.5l78-54.8c.4-.3 1.5-1.1 1.7-1.4z" fill="url(#a)" transform="translate(10.126 8.976) scale(.11021)"/><path d="M118.8 65.1 55 2.5C53.6 1 51.6 0 49.3 0c-4.3 0-7.7 3.5-7.7 7.7 0 2.1.8 3.9 2.1 5.3.4.4.8.7 1.2 1l67.4 57.7c.8.7 1.8 1.2 3 1.3 2.6.1 4.7-1.8 4.9-4.4 0-1.3-.5-2.6-1.4-3.5z" fill="url(#b)" transform="translate(10.126 8.976) scale(.11021)"/><path d="M57.1 59.5c-.1 0-39.4-31-40.2-31.5l-1.8-.9c-5.8-2.2-12.2.8-14.4 6.6-1.9 5.1.2 10.7 4.6 13.4.7.4 1.3.7 2 .9.4.2 45.4 18.8 45.4 18.8 1.8.8 3.9.3 5.1-1.2 1.5-1.9 1.2-4.6-.7-6.1z" fill="url(#c)" transform="translate(10.126 8.976) scale(.11021)"/><path d="M49.3 0c-1.7 0-3.3.6-4.6 1.5L4.9 28.3c-.1.1-.2.1-.2.2h-.1c-1.7 1.2-3.1 3-3.9 5.1-2.2 5.8.8 12.3 6.6 14.4 3.6 1.4 7.5.7 10.4-1.4.7-.5 1.3-1 1.8-1.6l34.6-31.2c1.8-1.4 3-3.6 3-6.1 0-4.2-3.5-7.7-7.8-7.7z" fill="url(#d)" transform="translate(10.126 8.976) scale(.11021)"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#546e7a" fill-rule="nonzero"/><g transform="translate(10.126 8.976) scale(.11021)"><linearGradient id="a" x1="31.841" x2="110.24" y1="120.56" y2="73.24" gradientUnits="userSpaceOnUse"><stop stop-color="#fdd835" offset="0"/><stop stop-color="#f57c00" offset="1"/></linearGradient><path d="M118.6 71.8c.9-.8 1.4-1.9 1.5-3.2.1-2.6-1.8-4.7-4.4-4.9-1.2-.1-2.4.4-3.3 1.1l-83.8 45.9c-1.9.8-3.6 2.2-4.7 4.1-2.9 4.8-1.3 11 3.6 13.9 3.4 2 7.5 1.8 10.7-.2.2-.2.5-.3.7-.5l78-54.8c.4-.3 1.5-1.1 1.7-1.4z" fill="url(#a)"/><linearGradient id="b" x1="48.361" x2="119.92" y1="6.908" y2="69.555" gradientUnits="userSpaceOnUse"><stop stop-color="#ef5350" offset="0"/><stop stop-color="#ff6e40" offset=".57"/><stop stop-color="#f57c00" offset="1"/></linearGradient><path d="M118.8 65.1 55 2.5C53.6 1 51.6 0 49.3 0c-4.3 0-7.7 3.5-7.7 7.7 0 2.1.8 3.9 2.1 5.3.4.4.8.7 1.2 1l67.4 57.7c.8.7 1.8 1.2 3 1.3 2.6.1 4.7-1.8 4.9-4.4 0-1.3-.5-2.6-1.4-3.5z" fill="url(#b)"/><linearGradient id="c" x1="52.947" x2="10.538" y1="63.641" y2="37.156" gradientUnits="userSpaceOnUse"><stop stop-color="#8e24aa" offset="0"/><stop stop-color="#ab47bc" offset=".385"/><stop stop-color="#ec407a" offset=".765"/><stop stop-color="#ec407a" offset=".957"/></linearGradient><path d="M57.1 59.5c-.1 0-39.4-31-40.2-31.5l-1.8-.9c-5.8-2.2-12.2.8-14.4 6.6-1.9 5.1.2 10.7 4.6 13.4.7.4 1.3.7 2 .9.4.2 45.4 18.8 45.4 18.8 1.8.8 3.9.3 5.1-1.2 1.5-1.9 1.2-4.6-.7-6.1z" fill="url(#c)"/><linearGradient id="d" x1="52.174" x2="10.771" y1="3.702" y2="37.897" gradientUnits="userSpaceOnUse"><stop stop-color="#ef5350" offset="0"/><stop stop-color="#EE4E72" offset=".364"/><stop stop-color="#ec407a" offset="1"/></linearGradient><path d="M49.3 0c-1.7 0-3.3.6-4.6 1.5L4.9 28.3c-.1.1-.2.1-.2.2h-.1c-1.7 1.2-3.1 3-3.9 5.1-2.2 5.8.8 12.3 6.6 14.4 3.6 1.4 7.5.7 10.4-1.4.7-.5 1.3-1 1.8-1.6l34.6-31.2c1.8-1.4 3-3.6 3-6.1 0-4.2-3.5-7.7-7.8-7.7z" fill="url(#d)"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="a" x1="31.841" x2="110.24" y1="120.56" y2="73.24" gradientUnits="userSpaceOnUse"><stop stop-color="#fdd835" offset="0"/><stop stop-color="#f57c00" offset="1"/></linearGradient><linearGradient id="b" x1="48.361" x2="119.92" y1="6.908" y2="69.555" gradientUnits="userSpaceOnUse"><stop stop-color="#ef5350" offset="0"/><stop stop-color="#ff6e40" offset=".57"/><stop stop-color="#f57c00" offset="1"/></linearGradient><linearGradient id="c" x1="52.947" x2="10.538" y1="63.641" y2="37.156" gradientUnits="userSpaceOnUse"><stop stop-color="#8e24aa" offset="0"/><stop stop-color="#ab47bc" offset=".385"/><stop stop-color="#ec407a" offset=".765"/><stop stop-color="#ec407a" offset=".957"/></linearGradient><linearGradient id="d" x1="52.174" x2="10.771" y1="3.702" y2="37.897" gradientUnits="userSpaceOnUse"><stop stop-color="#ef5350" offset="0"/><stop stop-color="#EE4E72" offset=".364"/><stop stop-color="#ec407a" offset="1"/></linearGradient></defs><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#b0bec5" fill-rule="nonzero"/><path d="M118.6 71.8c.9-.8 1.4-1.9 1.5-3.2.1-2.6-1.8-4.7-4.4-4.9-1.2-.1-2.4.4-3.3 1.1l-83.8 45.9c-1.9.8-3.6 2.2-4.7 4.1-2.9 4.8-1.3 11 3.6 13.9 3.4 2 7.5 1.8 10.7-.2.2-.2.5-.3.7-.5l78-54.8c.4-.3 1.5-1.1 1.7-1.4z" fill="url(#a)" transform="translate(10.126 8.976) scale(.11021)"/><path d="M118.8 65.1 55 2.5C53.6 1 51.6 0 49.3 0c-4.3 0-7.7 3.5-7.7 7.7 0 2.1.8 3.9 2.1 5.3.4.4.8.7 1.2 1l67.4 57.7c.8.7 1.8 1.2 3 1.3 2.6.1 4.7-1.8 4.9-4.4 0-1.3-.5-2.6-1.4-3.5z" fill="url(#b)" transform="translate(10.126 8.976) scale(.11021)"/><path d="M57.1 59.5c-.1 0-39.4-31-40.2-31.5l-1.8-.9c-5.8-2.2-12.2.8-14.4 6.6-1.9 5.1.2 10.7 4.6 13.4.7.4 1.3.7 2 .9.4.2 45.4 18.8 45.4 18.8 1.8.8 3.9.3 5.1-1.2 1.5-1.9 1.2-4.6-.7-6.1z" fill="url(#c)" transform="translate(10.126 8.976) scale(.11021)"/><path d="M49.3 0c-1.7 0-3.3.6-4.6 1.5L4.9 28.3c-.1.1-.2.1-.2.2h-.1c-1.7 1.2-3.1 3-3.9 5.1-2.2 5.8.8 12.3 6.6 14.4 3.6 1.4 7.5.7 10.4-1.4.7-.5 1.3-1 1.8-1.6l34.6-31.2c1.8-1.4 3-3.6 3-6.1 0-4.2-3.5-7.7-7.8-7.7z" fill="url(#d)" transform="translate(10.126 8.976) scale(.11021)"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#1976d2"/><path d="M13.814 8.71a1.354 1.275 0 0 0-1.355 1.276v10.2a1.354 1.275 0 0 0 1.355 1.279h8.126a1.354 1.275 0 0 0 1.355-1.278V9.986A1.354 1.275 0 0 0 21.94 8.71zm0 4.465h8.126v3.188h-8.126zm0 4.462h8.126v2.55h-8.126v-2.55z" fill="#bbdefb"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#1976d2" fill-rule="nonzero"/><path d="M13.814 8.71a1.354 1.275 0 0 0-1.355 1.276v10.201a1.354 1.275 0 0 0 1.355 1.278h8.126a1.354 1.275 0 0 0 1.355-1.278v-10.2A1.354 1.275 0 0 0 21.94 8.71zm0 4.465h8.126v3.188h-8.126zm0 4.462h8.126v2.55h-8.126v-2.55z" fill="#bbdefb"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#e57373" style="fill:#78909c"/><path d="M23.395 13.464v-1.801h-3.602a1.801 1.801 0 0 0-1.801 1.801v1.801a1.801 1.801 0 0 0 1.8 1.801h1.802v1.801H17.99v1.801h3.603a1.801 1.801 0 0 0 1.8-1.8v-1.802a1.801 1.801 0 0 0-1.8-1.8h-1.801v-1.802m-4.503 5.403h-1.801v-5.403h1.8m0-1.801h-1.8a1.801 1.801 0 0 0-1.801 1.801v5.403a1.801 1.801 0 0 0 1.8 1.802h1.802a1.801 1.801 0 0 0 1.801-1.802v-5.403a1.801 1.801 0 0 0-1.801-1.801m-6.304 9.006h1.801v-5.404h-1.8m0-1.801h1.801v-1.801H8.986z" style="fill:#cfd8dc;stroke-width:.90056"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#e57373" fill-rule="nonzero" style="fill:#78909c"/><path d="M23.395 13.464v-1.801h-3.602a1.801 1.801 0 0 0-1.801 1.801v1.801a1.801 1.801 0 0 0 1.8 1.801h1.802v1.801H17.99v1.801h3.603a1.801 1.801 0 0 0 1.8-1.8v-1.802a1.801 1.801 0 0 0-1.8-1.8h-1.801v-1.802m-4.503 5.403h-1.801v-5.403h1.8m0-1.801h-1.8a1.801 1.801 0 0 0-1.801 1.801v5.403a1.801 1.801 0 0 0 1.8 1.802h1.802a1.801 1.801 0 0 0 1.801-1.802v-5.403a1.801 1.801 0 0 0-1.801-1.801m-6.304 9.006h1.801v-5.404h-1.8m0-1.801h1.801v-1.801H8.986z" style="fill:#cfd8dc;stroke-width:.90056"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#ef5350"/><path d="M10.856 20.781h11.581v-1.287H10.856m11.581-7.077H21.15v-1.93h1.287m0-1.287H12.143v6.434a2.574 2.574 0 0 0 2.573 2.573h3.86a2.574 2.574 0 0 0 2.574-2.573v-1.93h1.287a1.287 1.287 0 0 0 1.287-1.287v-1.93A1.287 1.287 0 0 0 22.437 9.2z" fill="#ffcdd2"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#ef5350" fill-rule="nonzero"/><path d="M10.856 20.781h11.581v-1.287H10.856m11.581-7.077H21.15v-1.93h1.287m0-1.287H12.143v6.434a2.574 2.574 0 0 0 2.573 2.573h3.86a2.574 2.574 0 0 0 2.574-2.573v-1.93h1.287a1.287 1.287 0 0 0 1.287-1.287v-1.93A1.287 1.287 0 0 0 22.437 9.2z" fill="#ffcdd2"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#ffca28"/><path d="M17.935 18.374a2.18 2.18 0 0 0 1.972 1.213c.829 0 1.354-.415 1.354-.987 0-.682-.542-.927-1.452-1.324l-.502-.216c-1.435-.613-2.404-1.378-2.404-3.005 0-1.5 1.167-2.638 2.917-2.638a2.957 2.957 0 0 1 2.842 1.599l-1.552.999a1.362 1.362 0 0 0-1.29-.858.873.873 0 0 0-.957.858c0 .583.374.84 1.226 1.213l.502.216c1.697.733 2.654 1.47 2.654 3.139 0 1.798-1.412 2.783-3.308 2.783a3.839 3.839 0 0 1-3.618-2.046zm-7.048.175c.315.583.583 1.027 1.283 1.027s1.066-.256 1.066-1.255v-6.774h1.998v6.804c0 2.064-1.214 3.01-2.982 3.01a3.104 3.104 0 0 1-2.993-1.826z" fill="#ffecb3"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#ffca28" fill-rule="nonzero"/><path d="M17.935 18.374a2.18 2.18 0 0 0 1.972 1.213c.829 0 1.354-.415 1.354-.987 0-.682-.542-.927-1.452-1.324l-.502-.216c-1.435-.613-2.404-1.378-2.404-3.005 0-1.5 1.167-2.638 2.917-2.638a2.957 2.957 0 0 1 2.842 1.599l-1.552.999a1.362 1.362 0 0 0-1.29-.858.873.873 0 0 0-.957.858c0 .583.374.84 1.226 1.213l.502.216c1.697.733 2.654 1.47 2.654 3.139 0 1.798-1.411 2.783-3.308 2.783a3.839 3.839 0 0 1-3.618-2.046zm-7.048.175c.315.583.583 1.027 1.283 1.027s1.066-.256 1.066-1.255v-6.774h1.998v6.804c0 2.064-1.214 3.01-2.982 3.01a3.104 3.104 0 0 1-2.993-1.826z" fill-rule="nonzero" fill="#ffecb3"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4c-1.111 0-2-.9-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.011 1.5-1.93 1.5z" fill="#e0e0e0"/><g fill="#424242"><path d="M9.875 11.625q3.828.472 6.563.469 2.69-.003 6.437-.469v1.719q-3.747.466-6.437.469-2.735.002-6.563-.469v-1.719z"/><path d="m12.844 13.008-.875 8.508 1.906-.008.281-8-1.312-.5zM19.688 13l.851 8.5h-1.883l-.281-8 1.313-.5z"/><path d="M9.797 15.172h13v1h-13z"/><path d="M15.797 13h1v2.375h-1z"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4c-1.111 0-2-.9-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.011 1.5-1.93 1.5z" fill="#616161"/><g fill="#f5f5f5"><path d="M9.875 11.625q3.828.472 6.563.469 2.69-.003 6.437-.469v1.719q-3.747.466-6.437.469-2.735.002-6.563-.469v-1.719z"/><path d="m12.844 13.008-.875 8.508 1.906-.008.281-8-1.312-.5zM19.688 13l.851 8.5h-1.883l-.281-8 1.313-.5z"/><path d="M9.797 15.172h13v1h-13z"/><path d="M15.797 13h1v2.375h-1z"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#E0E0E0" fill-rule="nonzero"/><g fill="#424242"><path d="M9.875 11.625q3.828.472 6.563.469 2.69-.003 6.437-.469v1.719q-3.747.466-6.437.469-2.735.002-6.563-.469v-1.719z"/><path d="m12.844 13.008-.875 8.508 1.906-.008.281-8-1.312-.5zM19.688 13l.851 8.5h-1.883l-.281-8 1.313-.5z"/><path d="M9.797 15.172h13v1h-13z"/><path d="M15.797 13h1v2.375h-1z"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#616161" fill-rule="nonzero"/><g fill="#f5f5f5"><path d="M9.875 11.625q3.828.472 6.563.469 2.69-.003 6.437-.469v1.719q-3.747.466-6.437.469-2.735.002-6.563-.469v-1.719z"/><path d="m12.844 13.008-.875 8.508 1.906-.008.281-8-1.312-.5zM19.688 13l.851 8.5h-1.883l-.281-8 1.313-.5z"/><path d="M9.797 15.172h13v1h-13z"/><path d="M15.797 13h1v2.375h-1z"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#7B1FA2" style="fill:#ffa000"/><path d="M22.408 11.145h-2.543V9.873c0-.35-.14-.667-.376-.896a1.243 1.243 0 0 0-.895-.376H16.05c-.7 0-1.272.573-1.272 1.271v1.272h-2.543c-.7 0-1.271.573-1.271 1.271v6.995c0 .698.571 1.271 1.271 1.271h10.172c.699 0 1.272-.573 1.272-1.271v-6.994c0-.7-.573-1.271-1.272-1.271zm-6.357-1.272h2.543v1.272H16.05zm.634 8.583-.635-.636 1.907-1.908-1.907-1.907.635-.636 2.543 2.543z" style="fill:#ffecb3;stroke-width:1.1056"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#7B1FA2" fill-rule="nonzero" style="fill:#ffa000"/><path d="M22.409 11.145h-2.543V9.873c0-.35-.14-.667-.376-.896a1.243 1.243 0 0 0-.895-.376h-2.543c-.7 0-1.272.573-1.272 1.271v1.272h-2.543c-.7 0-1.271.573-1.271 1.271v6.995c0 .698.571 1.271 1.271 1.271h10.172c.699 0 1.272-.573 1.272-1.271v-6.994c0-.7-.573-1.271-1.272-1.271zm-6.357-1.272h2.543v1.272h-2.543zm.634 8.583-.635-.636 1.907-1.908-1.907-1.907.635-.636 2.543 2.543z" style="fill:#ffecb3;stroke-width:1.1056"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#f9a825"/><path d="M11.81 9.306h1.274v1.274H11.81v3.185a1.274 1.274 0 0 1-1.274 1.273 1.274 1.274 0 0 1 1.274 1.274v3.185h1.274v1.274H11.81c-.682-.172-1.274-.573-1.274-1.274V16.95a1.274 1.274 0 0 0-1.274-1.274h-.637v-1.274h.637a1.274 1.274 0 0 0 1.274-1.273V10.58a1.274 1.274 0 0 1 1.274-1.274m8.917 0a1.274 1.274 0 0 1 1.274 1.274v2.548a1.274 1.274 0 0 0 1.274 1.273h.637v1.274h-.637a1.274 1.274 0 0 0-1.274 1.274v2.548a1.274 1.274 0 0 1-1.274 1.274h-1.274v-1.274h1.274v-3.185a1.274 1.274 0 0 1 1.274-1.274 1.274 1.274 0 0 1-1.274-1.273V10.58h-1.274V9.306h1.274m-4.458 7.643a.637.637 0 0 1 .637.637.637.637 0 0 1-.637.637.637.637 0 0 1-.637-.637.637.637 0 0 1 .637-.637m-2.548 0a.637.637 0 0 1 .637.637.637.637 0 0 1-.637.637.637.637 0 0 1-.637-.637.637.637 0 0 1 .637-.637m5.095 0a.637.637 0 0 1 .637.637.637.637 0 0 1-.637.637.637.637 0 0 1-.637-.637.637.637 0 0 1 .637-.637z" fill="#fff8e1"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#f9a825" fill-rule="nonzero"/><path d="M11.81 9.306h1.274v1.274H11.81v3.184a1.274 1.274 0 0 1-1.274 1.274 1.274 1.274 0 0 1 1.274 1.274v3.185h1.274v1.274H11.81c-.682-.172-1.274-.573-1.274-1.274v-2.548a1.274 1.274 0 0 0-1.274-1.274h-.637v-1.274h.637a1.274 1.274 0 0 0 1.274-1.274V10.58a1.274 1.274 0 0 1 1.274-1.274m8.917 0a1.274 1.274 0 0 1 1.274 1.274v2.547a1.274 1.274 0 0 0 1.274 1.274h.637v1.274h-.637a1.274 1.274 0 0 0-1.274 1.274v2.548a1.274 1.274 0 0 1-1.274 1.274h-1.274v-1.274h1.274v-3.185a1.274 1.274 0 0 1 1.274-1.274 1.274 1.274 0 0 1-1.274-1.274V10.58h-1.274V9.306h1.274m-4.458 7.643a.637.637 0 0 1 .637.637.637.637 0 0 1-.637.637.637.637 0 0 1-.637-.637.637.637 0 0 1 .637-.637m-2.548 0a.637.637 0 0 1 .637.637.637.637 0 0 1-.637.637.637.637 0 0 1-.637-.637.637.637 0 0 1 .637-.637m5.095 0a.637.637 0 0 1 .637.637.637.637 0 0 1-.637.637.637.637 0 0 1-.637-.637.637.637 0 0 1 .637-.637z" fill="#fff8e1"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#BDBDBD" style="fill:#26a69a"/><path d="M16.935 16.425a3.54 3.54 0 0 0-3.339-2.363 3.548 3.548 0 0 0-3.545 3.545 3.548 3.548 0 0 0 3.545 3.546 3.54 3.54 0 0 0 3.339-2.364h2.57v2.364h2.364v-2.364h1.182v-2.364zm-3.339 2.364c-.65 0-1.182-.532-1.182-1.182s.532-1.182 1.182-1.182 1.182.532 1.182 1.182-.532 1.182-1.182 1.182z" fill="#757575" style="fill:#b2dfdb"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#BDBDBD" fill-rule="nonzero" style="fill:#26a69a"/><path d="M16.935 16.425a3.54 3.54 0 0 0-3.339-2.363 3.548 3.548 0 0 0-3.545 3.545 3.548 3.548 0 0 0 3.545 3.546 3.54 3.54 0 0 0 3.339-2.364h2.57v2.364h2.364v-2.364h1.182v-2.364zm-3.339 2.364c-.65 0-1.182-.532-1.182-1.182s.532-1.182 1.182-1.182 1.182.532 1.182 1.182-.532 1.182-1.182 1.182z" fill="#757575" style="fill:#b2dfdb"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#64b5f6"/><g stroke-width=".174"><path class="st0" d="M22.844 11.356a.97.97 0 0 0-.48-.554l-4.57-2.188a.838.838 0 0 0-.374-.075c-.12 0-.255 0-.375.03l-4.57 2.203a.805.805 0 0 0-.45.554l-1.138 4.93a.945.945 0 0 0 .165.719l3.161 3.91c.18.18.435.3.69.315h5.049a.75.75 0 0 0 .69-.314l3.16-3.911c.15-.21.21-.464.18-.72z" fill="#1976d2"/><path class="st1" d="M22.12 16.06c-.014 0-.014 0-.014-.014 0-.015-.045-.015-.06-.015-.06-.015-.12-.015-.18-.015-.03 0-.06 0-.09-.015h-.015a3.028 3.028 0 0 1-.51-.09.181.181 0 0 1-.104-.105c0-.015-.015-.015-.015-.015l-.12-.03a3.91 3.91 0 0 0-.06-1.319 4.058 4.058 0 0 0-.524-1.228l.09-.09v-.015c0-.045.015-.105.045-.135.134-.105.27-.21.42-.285l.089-.045c.06-.03.105-.06.165-.09.015-.015.03-.015.045-.03l.015-.015a.293.293 0 0 0 .06-.42.286.286 0 0 0-.21-.104c-.075 0-.15.03-.21.075l-.015.015c-.015.015-.03.03-.045.03a.97.97 0 0 0-.12.135c-.015.03-.045.045-.06.06-.12.12-.24.24-.374.33-.03.014-.06.03-.09.03-.015 0-.045 0-.06-.016l-.12.09c-.12-.12-.255-.24-.374-.36a3.84 3.84 0 0 0-1.948-.779l-.015-.12-.015-.014c-.045-.03-.06-.075-.075-.12 0-.165 0-.33.03-.51v-.015c0-.03.015-.06.015-.09.015-.06.015-.12.03-.18v-.09c.015-.15-.105-.299-.255-.299a.34.34 0 0 0-.24.09.296.296 0 0 0-.09.21v.075c0 .06.015.12.03.18.015.03.015.06.015.09v.014c.03.165.03.33.03.51-.015.045-.03.09-.075.12l-.015.015-.014.12c-.165.014-.33.044-.51.074a3.572 3.572 0 0 0-1.843 1.05l-.09-.06h-.015c-.015 0-.03.014-.06.014s-.075-.015-.09-.03a4.199 4.199 0 0 1-.374-.344c-.015-.03-.045-.045-.06-.06-.045-.045-.075-.09-.12-.135-.015-.015-.03-.015-.045-.03l-.015-.015a.358.358 0 0 0-.21-.075.27.27 0 0 0-.224.105.322.322 0 0 0 .06.42c.014 0 .014.014.014.014s.03.03.045.03c.045.03.105.06.165.09l.09.045c.15.09.285.18.42.285.03.03.06.09.045.135v.015l.09.09c-.015.03-.03.045-.045.075a3.55 3.55 0 0 0-.51 2.457l-.12.03c0 .015-.015.015-.015.015-.015.045-.06.075-.105.105-.164.045-.33.075-.509.09h-.015c-.03 0-.06 0-.09.015-.06 0-.12.015-.18.015-.015 0-.03.015-.06.015-.015 0-.015 0-.03.015a.292.292 0 0 0-.24.344c.03.135.165.225.3.21.03 0 .045 0 .075-.015.015 0 .015 0 .015-.015s.03-.015.06-.015c.06-.015.12-.045.165-.06.03-.015.06-.03.09-.03h.015c.15-.06.314-.105.48-.135h.014a.17.17 0 0 1 .12.045c.015 0 .015.015.015.015l.135-.015c.225.69.644 1.304 1.229 1.753.134.105.254.195.404.27l-.06.12c0 .015.015.015.015.015.03.045.03.105.015.15-.06.15-.15.3-.24.434v.015c-.015.03-.03.045-.06.075s-.06.09-.104.15c-.015.015-.015.03-.03.045 0 0 0 .015-.015.015a.308.308 0 0 0 .12.404c.03.015.074.03.12.03.12 0 .224-.075.284-.18 0 0 0-.014.015-.014 0-.015.015-.03.03-.045.015-.06.045-.105.06-.165l.03-.09c.045-.165.12-.315.195-.465a.233.233 0 0 1 .12-.09c.015 0 .015 0 .015-.014l.06-.12c.419.164.854.24 1.303.24.27 0 .54-.03.81-.09.164-.03.329-.09.479-.135l.06.105c.015 0 .015 0 .015.014.044.015.09.045.12.09.074.15.134.3.194.45v.015l.03.09c.015.06.03.12.06.165.015.015.015.03.03.045 0 0 0 .015.015.015.06.104.165.18.285.18.045 0 .075-.016.12-.03a.25.25 0 0 0 .134-.165.437.437 0 0 0-.015-.24c0-.015-.015-.015-.015-.015 0-.015-.015-.03-.03-.045a.537.537 0 0 0-.104-.15.263.263 0 0 0-.06-.075v-.015a1.77 1.77 0 0 1-.24-.434.177.177 0 0 1 .015-.15c0-.015.015-.015.015-.015l-.045-.12a3.73 3.73 0 0 0 1.633-2.038l.12.015c.015 0 .015-.015.015-.015a.17.17 0 0 1 .12-.045h.015c.165.03.33.075.48.135h.014c.03.015.06.03.09.03a.73.73 0 0 0 .165.06c.015 0 .03.015.06.015.015 0 .015 0 .03.015.03.015.045.015.075.015.135 0 .255-.09.3-.21-.045-.15-.15-.27-.3-.3zm-4.314-.464-.405.195-.404-.195-.12-.434.284-.36h.465l.285.36zm2.442-.974c.075.315.09.63.06.944l-1.424-.404a.246.246 0 0 1-.18-.3.241.241 0 0 1 .06-.105l1.124-1.019c.165.27.285.57.36.884zm-.81-1.438-1.213.869c-.105.06-.255.045-.33-.06a.136.136 0 0 1-.044-.105l-.09-1.513c.629.075 1.228.36 1.678.809zm-2.711-.764.3-.06-.09 1.498c0 .135-.12.24-.255.24-.045 0-.075-.015-.12-.03l-1.214-.884a2.858 2.858 0 0 1 1.379-.764zm-1.828 1.318 1.109.989c.104.09.12.24.03.345-.03.045-.06.06-.12.075l-1.439.42c-.06-.63.09-1.274.42-1.829zm-.255 2.532 1.483-.254c.12 0 .24.075.255.194a.177.177 0 0 1-.015.15l-.57 1.379a2.948 2.948 0 0 1-1.153-1.469zm3.401 1.858c-.21.045-.434.075-.659.075-.315 0-.644-.06-.944-.15l.734-1.333a.232.232 0 0 1 .3-.06c.045.03.075.06.12.105l.719 1.303c-.075.015-.165.03-.27.06zm1.828-1.303c-.225.36-.54.674-.899.899l-.584-1.394a.253.253 0 0 1 .135-.3.437.437 0 0 1 .135-.03l1.498.255c-.075.21-.165.405-.285.57z" fill="#fff"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#64b5f6" fill-rule="nonzero"/><g stroke-width=".174"><path d="M261.61 46.83a1.127 1.127 0 0 0-.557-.644l-5.309-2.541a.974.974 0 0 0-.435-.087c-.14 0-.296 0-.435.034l-5.31 2.56a.935.935 0 0 0-.522.643l-1.322 5.727c-.053.296.017.592.191.835l3.673 4.543c.209.21.505.349.8.366h5.866a.867.867 0 0 0 .801-.366l3.673-4.543c.174-.243.244-.54.209-.835z" fill="#1976d2" style="fill:#326de6" transform="translate(-202.35 -28.956) scale(.8608)"/><path d="M260.77 52.295c-.017 0-.017 0-.017-.017 0-.018-.053-.018-.07-.018-.07-.017-.14-.017-.209-.017-.035 0-.07 0-.104-.018h-.018a3.517 3.517 0 0 1-.592-.104.21.21 0 0 1-.121-.122c0-.017-.018-.017-.018-.017l-.139-.035a4.542 4.542 0 0 0-.07-1.532 4.715 4.715 0 0 0-.609-1.427l.105-.105v-.017c0-.052.017-.122.052-.157a2.96 2.96 0 0 1 .487-.33l.105-.053c.07-.034.121-.07.191-.104.017-.018.035-.018.052-.035l.018-.017a.343.343 0 0 0 .07-.488.332.332 0 0 0-.244-.122.416.416 0 0 0-.244.087l-.018.018c-.017.017-.034.035-.052.035-.052.052-.104.104-.139.156-.017.035-.052.053-.07.07a2.94 2.94 0 0 1-.435.383c-.035.017-.07.035-.104.035-.018 0-.052 0-.07-.018l-.139.105c-.14-.14-.296-.279-.435-.418a4.46 4.46 0 0 0-2.263-.905l-.017-.14-.018-.017c-.052-.035-.07-.087-.087-.139 0-.191 0-.383.035-.592v-.017c0-.035.017-.07.017-.105.018-.07.018-.139.035-.209v-.104c.018-.174-.122-.348-.296-.348a.395.395 0 0 0-.278.104.344.344 0 0 0-.105.244v.087c0 .07.018.14.035.209.018.035.018.07.018.104v.018c.034.191.034.383.034.592-.017.052-.034.104-.087.139l-.017.017-.017.14c-.192.017-.383.052-.592.087a4.15 4.15 0 0 0-2.141 1.218l-.105-.07h-.017c-.017 0-.035.018-.07.018s-.087-.018-.104-.035c-.157-.122-.296-.261-.435-.4-.018-.035-.052-.053-.07-.07-.052-.052-.087-.105-.14-.157-.017-.017-.034-.017-.051-.035l-.018-.017a.416.416 0 0 0-.243-.087.313.313 0 0 0-.262.122.374.374 0 0 0 .07.487c.017 0 .017.018.017.018s.035.034.053.034c.052.035.122.07.191.105l.105.052c.174.105.33.209.487.33.035.036.07.105.052.157v.018l.105.104c-.018.035-.035.053-.053.087a4.123 4.123 0 0 0-.591 2.855l-.14.035c0 .017-.017.017-.017.017-.017.052-.07.087-.122.122a3.233 3.233 0 0 1-.592.105h-.017c-.035 0-.07 0-.105.017-.07 0-.139.017-.208.017-.018 0-.035.018-.07.018-.017 0-.017 0-.035.017a.34.34 0 0 0-.278.4.323.323 0 0 0 .348.244c.035 0 .052 0 .087-.017.017 0 .017 0 .017-.018 0-.017.035-.017.07-.017.07-.017.139-.052.191-.07a.247.247 0 0 1 .105-.034h.017c.174-.07.366-.122.557-.157h.017c.053 0 .105.017.14.052.017 0 .017.017.017.017l.157-.017a4.2 4.2 0 0 0 1.427 2.037c.157.122.296.226.47.313l-.07.14c0 .017.018.017.018.017a.206.206 0 0 1 .017.174c-.07.174-.174.348-.278.505v.017c-.018.035-.035.052-.07.087s-.07.104-.122.174c-.017.017-.017.035-.034.052 0 0 0 .018-.018.018a.358.358 0 0 0 .14.47.328.328 0 0 0 .139.034.39.39 0 0 0 .33-.208s0-.018.018-.018c0-.017.017-.035.035-.052.017-.07.052-.122.07-.192l.034-.104c.052-.191.14-.366.226-.54a.27.27 0 0 1 .14-.104c.017 0 .017 0 .017-.017l.07-.14c.487.192.992.279 1.514.279a4.3 4.3 0 0 0 .94-.105c.191-.034.383-.104.557-.156l.07.122c.017 0 .017 0 .017.017a.27.27 0 0 1 .14.104c.086.174.156.349.225.523v.017l.035.104c.018.07.035.14.07.192.017.017.017.035.035.052 0 0 0 .018.017.018a.39.39 0 0 0 .33.208c.053 0 .088-.017.14-.034a.291.291 0 0 0 .157-.192.508.508 0 0 0-.018-.278c0-.018-.017-.018-.017-.018 0-.017-.018-.035-.035-.052a.624.624 0 0 0-.122-.174.306.306 0 0 0-.07-.087v-.017a2.057 2.057 0 0 1-.278-.505.206.206 0 0 1 .017-.174c0-.018.018-.018.018-.018l-.052-.139a4.332 4.332 0 0 0 1.897-2.367l.14.017c.017 0 .017-.017.017-.017a.198.198 0 0 1 .139-.053h.017c.192.035.383.088.557.157h.018c.034.018.07.035.104.035.07.035.122.052.192.07.017 0 .034.017.07.017.017 0 .017 0 .034.017a.157.157 0 0 0 .087.018.379.379 0 0 0 .348-.244c-.052-.174-.174-.313-.348-.348zm-5.013-.54-.47.227-.47-.227-.14-.504.332-.418h.54l.33.418zm2.837-1.131c.087.366.105.731.07 1.097l-1.654-.47c-.156-.035-.243-.192-.209-.348a.28.28 0 0 1 .07-.122l1.305-1.184c.192.313.331.662.418 1.027zm-.94-1.671-1.41 1.01c-.121.07-.296.052-.383-.07a.158.158 0 0 1-.052-.122l-.104-1.758a3.325 3.325 0 0 1 1.95.94zm-3.15-.888.348-.07-.105 1.741c0 .157-.139.279-.296.279-.052 0-.087-.018-.139-.035l-1.41-1.027a3.32 3.32 0 0 1 1.602-.888zm-2.124 1.532 1.288 1.149a.28.28 0 0 1 .035.4c-.035.052-.07.07-.14.087l-1.67.488a3.52 3.52 0 0 1 .487-2.124zm-.296 2.942 1.723-.296c.14 0 .279.087.296.226a.206.206 0 0 1-.017.174l-.662 1.602a3.424 3.424 0 0 1-1.34-1.706zm3.951 2.158a3.687 3.687 0 0 1-.766.087c-.365 0-.748-.07-1.096-.174l.853-1.55a.27.27 0 0 1 .348-.069c.052.035.087.07.14.122l.835 1.515c-.087.017-.192.034-.314.07zm2.124-1.514a3.324 3.324 0 0 1-1.044 1.044l-.68-1.619a.294.294 0 0 1 .157-.348.508.508 0 0 1 .157-.035l1.74.296c-.086.244-.19.47-.33.662z" fill="#fff" style="fill:#fff" transform="translate(-202.35 -28.956) scale(.8608)"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#303F9F" style="fill:#039be5"/><path d="M15.505 20.695h3.699v-4.439h-3.698zm-4.437 0h3.698v-9.617h-3.698zm8.875 0h3.7v-4.439h-3.7zm-4.437-9.617v4.439h8.136v-4.439z" style="fill:#b3e5fc;stroke-width:1.1328"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#303F9F" fill-rule="nonzero" style="fill:#039be5"/><path d="M15.506 20.695h3.699v-4.439h-3.698zm-4.438 0h3.7v-9.617h-3.7zm8.877 0h3.699v-4.439h-3.7zm-4.438-9.617v4.439h8.137v-4.439z" style="fill:#b3e5fc;stroke-width:1.1329"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#e57373" style="fill:#0277bd"/><path transform="matrix(.052 0 0 .052 11.856 -16.073)" d="M72.489 479.59v.026a837.12 837.12 0 0 0-6.327-.018c-7.537-.066-13.846 4.053-19.333 8.347-5.988 4.703-11.114 10.842-12.72 19.065-.915 4.822-.721 9.037-.721 13.248v33.184c0 11.717-4.36 20.424-10.274 26.123-3.332 3.3-10.442 6.313-18.53 9.037v14.99c7.168 1.976 14.068 4.65 17.895 8.047 6.335 5.535 10.902 13.5 10.902 23.904v38.754c0 12.875 3.071 22.682 12.007 29.41 8.936 6.722 19.35 10.066 31.244 10.391l7.959-.053v-19.324c-6.209-1.817-9.658-3.925-12.144-6.31-4.475-4.052-7.01-10.634-7.01-19.776v-31.292c-.17-10.643-1.887-18.968-5.763-24.992-3.876-6.01-11.44-11.281-22.695-15.822 12.421-5.69 20.755-13.108 25.005-22.26 2.504-5.442 3.454-12.781 3.454-22.011v-28.692c0-9.478 2.2-16.117 6.01-19.91 2.068-2.058 5.746-3.753 10.855-5.125l8.079.056V479.59H72.488v.001zm87.611 0v.026a837.12 837.12 0 0 1 6.327-.018c7.537-.066 13.846 4.053 19.333 8.347 5.988 4.703 11.114 10.842 12.72 19.065.915 4.822.721 9.037.721 13.248v33.184c0 11.717 4.36 20.424 10.274 26.123 3.332 3.3 10.442 6.313 18.53 9.037v14.99c-7.168 1.976-14.068 4.65-17.895 8.047-6.335 5.535-10.902 13.5-10.902 23.904v38.754c0 12.875-3.071 22.682-12.008 29.41-8.936 6.722-19.35 10.066-31.244 10.391l-7.959-.053v-19.324c6.209-1.817 9.658-3.925 12.144-6.31 4.475-4.052 7.01-10.634 7.01-19.776v-31.292c.171-10.643 1.887-18.968 5.763-24.992 3.876-6.01 11.44-11.282 22.695-15.822-12.42-5.69-20.755-13.108-25.005-22.26-2.504-5.442-3.454-12.781-3.454-22.011v-28.692c0-9.478-2.2-16.117-6.01-19.91-2.068-2.058-5.746-3.753-10.855-5.125l-8.078.056V479.59H160.1v.001z" style="fill:#b3e5fc"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#e57373" fill-rule="nonzero" style="fill:#0277bd"/><path transform="matrix(.052 0 0 .052 11.856 -16.072)" d="M72.489 479.59v.026a837.12 837.12 0 0 0-6.327-.018c-7.537-.066-13.846 4.053-19.333 8.347-5.988 4.703-11.114 10.842-12.72 19.065-.915 4.822-.721 9.037-.721 13.248v33.184c0 11.717-4.36 20.424-10.274 26.123-3.332 3.3-10.442 6.313-18.53 9.037v14.99c7.168 1.976 14.068 4.65 17.895 8.047 6.335 5.535 10.902 13.5 10.902 23.904v38.754c0 12.875 3.071 22.682 12.007 29.41 8.936 6.722 19.35 10.066 31.244 10.391l7.959-.053v-19.324c-6.209-1.817-9.658-3.925-12.144-6.31-4.475-4.052-7.01-10.634-7.01-19.776v-31.292c-.17-10.643-1.887-18.968-5.763-24.992-3.876-6.01-11.44-11.281-22.695-15.822 12.421-5.69 20.755-13.108 25.005-22.26 2.504-5.442 3.454-12.781 3.454-22.011v-28.692c0-9.478 2.2-16.117 6.01-19.91 2.068-2.058 5.746-3.753 10.855-5.125l8.079.056V479.59H72.488v.001zm87.611 0v.026a837.12 837.12 0 0 1 6.327-.018c7.537-.066 13.846 4.053 19.333 8.347 5.988 4.703 11.114 10.842 12.72 19.065.915 4.822.721 9.037.721 13.248v33.184c0 11.717 4.36 20.424 10.274 26.123 3.332 3.3 10.442 6.313 18.53 9.037v14.99c-7.168 1.976-14.068 4.65-17.895 8.047-6.335 5.535-10.902 13.5-10.902 23.904v38.754c0 12.875-3.071 22.682-12.008 29.41-8.936 6.722-19.35 10.066-31.244 10.391l-7.959-.053v-19.324c6.209-1.817 9.658-3.925 12.144-6.31 4.475-4.052 7.01-10.634 7.01-19.776v-31.292c.171-10.643 1.887-18.968 5.763-24.992 3.876-6.01 11.44-11.282 22.695-15.822-12.42-5.69-20.755-13.108-25.005-22.26-2.504-5.442-3.454-12.781-3.454-22.011v-28.692c0-9.478-2.2-16.117-6.01-19.91-2.068-2.058-5.746-3.753-10.855-5.125l-8.078.056V479.59H160.1v.001z" style="fill:#b3e5fc"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#c0ca33"/><path d="M17.391 12.543a2.05 2.05 0 0 0 2.05-2.05 2.05 2.05 0 0 0-2.05-2.052 2.05 2.05 0 0 0-2.05 2.051 2.05 2.05 0 0 0 2.05 2.051m0 2.42a8.992 8.992 0 0 0-6.152-2.42v7.52c2.392 0 4.539.923 6.152 2.42a8.992 8.992 0 0 1 6.152-2.42v-7.52a8.992 8.992 0 0 0-6.152 2.42z" fill="#f0f4c3"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#c0ca33" fill-rule="nonzero"/><path d="M17.39 12.544a2.05 2.05 0 0 0 2.05-2.05 2.05 2.05 0 0 0-2.05-2.052 2.05 2.05 0 0 0-2.05 2.051 2.05 2.05 0 0 0 2.05 2.051m0 2.42a8.992 8.992 0 0 0-6.152-2.42v7.52c2.392 0 4.539.923 6.152 2.42a8.992 8.992 0 0 1 6.152-2.42v-7.52a8.992 8.992 0 0 0-6.152 2.42z" fill="#f0f4c3"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#afb42b"/><path d="M19.039 18.616h-4.706v-1.345h4.706m2.017-1.344h-6.723v-1.345h6.723m0-1.344h-6.723v-1.345h6.723m1.345-2.69h-9.413a1.34 1.34 0 0 0-1.344 1.345v9.413a1.345 1.345 0 0 0 1.344 1.344h9.413a1.345 1.345 0 0 0 1.344-1.344v-9.413c0-.746-.605-1.344-1.345-1.344z" fill="#f0f4c3"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#afb42b" fill-rule="nonzero"/><path d="M19.04 18.616h-4.706v-1.345h4.706m2.017-1.344h-6.723v-1.345h6.723m0-1.344h-6.723v-1.345h6.723m1.345-2.69h-9.413a1.34 1.34 0 0 0-1.345 1.345v9.413a1.345 1.345 0 0 0 1.345 1.344h9.412a1.345 1.345 0 0 0 1.345-1.344v-9.413c0-.746-.605-1.344-1.345-1.344z" fill="#f0f4c3"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" xml:space="preserve"><path d="M19 20H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h6l2 2h7c1.1 0 2 .9 2 2H4v10l2.1-8h17.1l-2.3 8.5c-.2.9-1 1.5-1.9 1.5z" fill="#42a5f5"/><g transform="translate(-.203 -.102)"><circle cx="17.5" cy="15.6" r="5.7" fill="none" stroke="#B3E5FC"/><path d="M17.6 12.1c-2 0-3.6 1.6-3.6 3.5 0 2 1.6 3.5 3.6 3.5s3.6-1.6 3.6-3.5-1.6-3.5-3.6-3.5zm1 1c.7 0 1.3.6 1.3 1.3 0 .7-.6 1.3-1.3 1.3-.7 0-1.3-.6-1.3-1.3.1-.7.6-1.3 1.3-1.3z" fill-rule="evenodd" clip-rule="evenodd" fill="#B3E5FC"/><circle cx="21.7" cy="11.5" fill-rule="evenodd" clip-rule="evenodd" fill="#B3E5FC" r="1.3"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" xml:space="preserve"><path d="M10 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z" fill="#42a5f5"/><g transform="translate(-.203 -.102)"><circle cx="17.5" cy="15.6" r="5.7" fill="none" stroke="#B3E5FC"/><path class="st2" d="M17.6 12.1c-2 0-3.6 1.6-3.6 3.5 0 2 1.6 3.5 3.6 3.5s3.6-1.6 3.6-3.5-1.6-3.5-3.6-3.5zm1 1.1c.7 0 1.3.6 1.3 1.3 0 .7-.6 1.3-1.3 1.3-.7 0-1.3-.6-1.3-1.3 0-.8.6-1.3 1.3-1.3z" fill-rule="evenodd" clip-rule="evenodd" fill="#B3E5FC"/><circle class="st2" cx="21.7" cy="11.5" fill-rule="evenodd" clip-rule="evenodd" fill="#B3E5FC" r="1.3"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#B71C1C" style="fill:#ff5252"/><path d="M21.995 11.083h-9.688a1.21 1.21 0 0 0-1.205 1.211l-.006 7.266c0 .666.545 1.211 1.21 1.211h9.689c.667 0 1.211-.545 1.211-1.21v-7.267c0-.667-.544-1.211-1.211-1.211zm0 2.422-4.844 3.027-4.844-3.027v-1.211l4.844 3.027 4.844-3.027z" style="fill:#ffcdd2;stroke-width:1.0531"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#B71C1C" fill-rule="nonzero" style="fill:#ff5252"/><path d="M21.995 11.082h-9.688a1.21 1.21 0 0 0-1.205 1.211l-.006 7.266c0 .666.545 1.211 1.21 1.211h9.689c.667 0 1.211-.545 1.211-1.21v-7.267c0-.667-.544-1.211-1.211-1.211zm0 2.422-4.844 3.028-4.844-3.028v-1.211l4.844 3.028 4.844-3.028z" style="fill:#ffcdd2;stroke-width:1.0531"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#DCE775" style="fill:#afb42b"/><path d="M21.589 10.926v8.28h-8.28v-8.28h8.28m.65-1.183h-9.58a.53.53 0 0 0-.532.532v9.58c0 .237.236.533.532.533h9.58c.237 0 .533-.296.533-.532v-9.58c0-.297-.296-.533-.532-.533zm-5.382 2.365h3.549v1.183h-3.549zm0 2.366h3.549v1.183h-3.549zm0 2.366h3.549v1.183h-3.549zm-2.365-4.732h1.183v1.183h-1.183zm0 2.366h1.183v1.183h-1.183zm0 2.366h1.183v1.183h-1.183z" style="fill:#f0f4c3;stroke-width:1.0138"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#DCE775" fill-rule="nonzero" style="fill:#afb42b"/><path d="M21.589 10.926v8.28h-8.28v-8.28h8.28m.65-1.183h-9.58a.53.53 0 0 0-.532.532v9.58c0 .237.236.533.532.533h9.58c.237 0 .533-.296.533-.532v-9.58c0-.297-.296-.533-.532-.533zm-5.382 2.365h3.549v1.183h-3.549zm0 2.366h3.549v1.183h-3.549zm0 2.366h3.549v1.183h-3.549zm-2.365-4.732h1.183v1.183h-1.183zm0 2.366h1.183v1.183h-1.183zm0 2.366h1.183v1.183h-1.183z" style="fill:#f0f4c3;stroke-width:1.0138"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#0277bd"/><path d="m16.275 21.115-2.538.002V17.31l-1.903 2.441-1.903-2.441v3.807H7.393v-7.613h2.538l1.903 2.538 1.903-2.538 2.538-.003zm3.789.634L16.91 17.31h1.903v-3.806h2.538v3.806h1.903z" fill="#b3e5fc"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#0277bd" fill-rule="nonzero"/><path d="m16.275 21.115-2.538.002V17.31l-1.903 2.441-1.903-2.441v3.807H7.393v-7.613h2.538l1.903 2.538 1.903-2.538 2.538-.003zm3.789.634L16.91 17.31h1.903v-3.806h2.538v3.806h1.903z" fill="#b3e5fc"/></svg>
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg enable-background="new 0 0 24 24" version="1.1" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
-
<path d="M19,20H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h6l2,2h7c1.1,0,2,0.9,2,2H4v10l2.1-8h17.1l-2.3,8.5 C20.7,19.4,19.9,20,19,20z" fill="#78909c"/>
|
|
4
|
-
|
|
5
|
-
<g transform="matrix(.64627 0 0 .64627 9.6946 6.9578)" fill="#cfd8dc"><path d="m21.7 12.6c0.3-5.2-3.6-10.8-9.6-10.1-2.7 0.3-4.3 1.7-5 3.2-1.2 2.5 0.1 5.8 4 6.9 2.4 0.7 2.9 1.7 2.6 2.9-0.3 1.1-1.1 2.3-1.3 3.3-0.1 0.3-0.1 0.6-0.1 0.9 0.1 2.2 4.6 3.1 8.1-2.8 0.8-1.2 1.2-2.7 1.3-4.3z"/><path d="m6.2 11.4v-0.4c0-0.1 0-0.2-0.1-0.3-0.2-1-1-1.6-2-1.5s-1.7 0.9-1.8 1.9v0.5c0.1 1.1 1.1 1.9 2.1 1.8 1.1-0.2 1.8-1 1.8-2z"/><path d="m10.6 16.7c-0.4-1.6-2-2.6-3.6-2.1-1.3 0.3-2.1 1.4-2.2 2.7-0.1 0.4 0 0.8 0.1 1.2 0.4 1.6 2.1 2.6 3.7 2.1 1.4-0.4 2.3-1.7 2.2-3.2-0.1-0.2-0.1-0.4-0.2-0.7z"/></g></svg>
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" version="1.1" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#78909c" fill-rule="nonzero"/><g transform="matrix(.64627 0 0 .64627 9.6944 6.9581)" fill="#cfd8dc"><path d="m21.7 12.6c0.3-5.2-3.6-10.8-9.6-10.1-2.7 0.3-4.3 1.7-5 3.2-1.2 2.5 0.1 5.8 4 6.9 2.4 0.7 2.9 1.7 2.6 2.9-0.3 1.1-1.1 2.3-1.3 3.3-0.1 0.3-0.1 0.6-0.1 0.9 0.1 2.2 4.6 3.1 8.1-2.8 0.8-1.2 1.2-2.7 1.3-4.3z"/><path d="m6.2 11.4v-0.4c0-0.1 0-0.2-0.1-0.3-0.2-1-1-1.6-2-1.5s-1.7 0.9-1.8 1.9v0.5c0.1 1.1 1.1 1.9 2.1 1.8 1.1-0.2 1.8-1 1.8-2z"/><path d="m10.6 16.7c-0.4-1.6-2-2.6-3.6-2.1-1.3 0.3-2.1 1.4-2.2 2.7-0.1 0.4 0 0.8 0.1 1.2 0.4 1.6 2.1 2.6 3.7 2.1 1.4-0.4 2.3-1.7 2.2-3.2-0.1-0.2-0.1-0.4-0.2-0.7z"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#e57373" style="fill:#ff9800"/><path d="M15.12 23.509a.63.63 0 0 1-.63-.63V20.99h-2.519a1.26 1.26 0 0 1-1.259-1.26v-7.555c0-.7.567-1.26 1.26-1.26h10.074a1.26 1.26 0 0 1 1.26 1.26v7.556a1.26 1.26 0 0 1-1.26 1.26h-3.84l-2.33 2.335a.642.642 0 0 1-.441.183h-.315M12.6 12.805v1.26h8.816v-1.26H12.6m0 2.519v1.26h5.038v-1.26H12.6m0 2.518v1.26h6.297v-1.26z" style="fill:#fff9c4;stroke-width:.62969"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#e57373" fill-rule="nonzero" style="fill:#ff9800"/><path d="M15.119 23.509a.63.63 0 0 1-.63-.63V20.99h-2.518a1.26 1.26 0 0 1-1.26-1.26v-7.555c0-.7.567-1.26 1.26-1.26h10.075a1.26 1.26 0 0 1 1.259 1.26v7.556a1.26 1.26 0 0 1-1.26 1.26h-3.84l-2.33 2.335a.642.642 0 0 1-.441.183h-.315m-2.518-10.704v1.26h8.815v-1.26h-8.815m0 2.519v1.26h5.037v-1.26H12.6m0 2.518v1.26h6.296v-1.26z" style="fill:#fff9c4;stroke-width:.62968"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#7CB342"/><path d="M13.313 11.766h-1.122v7.855c0 .618.505 1.123 1.122 1.123h7.855V19.62h-7.855zm8.978-2.244h-6.734c-.617 0-1.122.505-1.122 1.122v6.733c0 .617.505 1.122 1.122 1.122h6.734c.617 0 1.122-.505 1.122-1.122v-6.733c0-.617-.505-1.122-1.122-1.122zm-.561 5.05h-5.611v-1.123h5.61zm-2.245 2.244H16.12v-1.122h3.366zm2.245-4.489h-5.611v-1.122h5.61z" style="fill:#dcedc8;stroke-width:1.0202"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#7CB342" fill-rule="nonzero"/><path d="M13.313 11.766h-1.122v7.855c0 .618.505 1.123 1.122 1.123h7.855V19.62h-7.855zm8.978-2.244h-6.734c-.617 0-1.122.505-1.122 1.122v6.733c0 .617.505 1.122 1.122 1.122h6.734c.617 0 1.122-.505 1.122-1.122v-6.733c0-.617-.505-1.122-1.122-1.122zm-.561 5.05h-5.611v-1.123h5.61zm-2.245 2.244H16.12v-1.122h3.366zm2.245-4.489h-5.611v-1.122h5.61z" style="fill:#dcedc8;stroke-width:1.0202"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#e57373" style="fill:#5c6bc0"/><path d="M12.276 14.245h.922v-2.46c0-.682.553-1.229 1.23-1.229h2.459v-.922a1.537 1.537 0 0 1 1.537-1.537 1.537 1.537 0 0 1 1.537 1.537v.922h2.459a1.23 1.23 0 0 1 1.23 1.23v2.336h-.923c-.922 0-1.66.738-1.66 1.66 0 .922.738 1.66 1.66 1.66h.922v2.336a1.23 1.23 0 0 1-1.23 1.23h-2.335v-.923c0-.922-.738-1.66-1.66-1.66-.923 0-1.66.738-1.66 1.66v.922h-2.336a1.23 1.23 0 0 1-1.23-1.23V17.32h-.922a1.537 1.537 0 0 1-1.537-1.537 1.537 1.537 0 0 1 1.537-1.537z" style="fill:#c5cae9;stroke-width:.61477"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#e57373" fill-rule="nonzero" style="fill:#5c6bc0"/><path d="M12.276 14.245h.922v-2.46c0-.682.553-1.229 1.23-1.229h2.459v-.922a1.537 1.537 0 0 1 1.537-1.537 1.537 1.537 0 0 1 1.537 1.537v.922h2.459a1.23 1.23 0 0 1 1.23 1.23v2.336h-.923c-.922 0-1.66.738-1.66 1.66 0 .922.738 1.66 1.66 1.66h.922v2.336a1.23 1.23 0 0 1-1.23 1.23h-2.335v-.923c0-.922-.738-1.66-1.66-1.66-.923 0-1.66.738-1.66 1.66v.922h-2.336a1.23 1.23 0 0 1-1.23-1.23V17.32h-.922a1.537 1.537 0 0 1-1.537-1.537 1.537 1.537 0 0 1 1.537-1.537z" style="fill:#c5cae9;stroke-width:.61477"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#ff5722"/><path d="M12.351 8.996a1.496 1.496 0 1 0 0 2.99h5.91a1.496 1.496 0 0 0 0-2.99zm9.768 0a1.527 1.496 0 0 0-1.528 1.494 1.527 1.496 0 0 0 1.528 1.496 1.527 1.496 0 0 0 1.525-1.496 1.527 1.496 0 0 0-1.525-1.494zM12.38 13.43c-.846 0-1.525.681-1.525 1.527 0 .835.68 1.517 1.525 1.527.846 0 1.528-.681 1.528-1.527 0-.846-.682-1.527-1.528-1.527zm3.694.03a1.5 1.5 0 0 0 .207 2.993h6.043a1.5 1.5 0 0 0-.205-2.992h-5.9zm-3.723 4.304a1.496 1.496 0 1 0 0 2.99h5.91a1.496 1.496 0 0 0 0-2.99zm9.768 0a1.527 1.496 0 0 0-1.528 1.494 1.527 1.496 0 0 0 1.528 1.496 1.527 1.496 0 0 0 1.525-1.496 1.527 1.496 0 0 0-1.525-1.494z" fill="#ffccbc"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#ff5722" fill-rule="nonzero"/><path d="M12.352 8.996a1.496 1.496 0 1 0 0 2.99h5.91a1.496 1.496 0 0 0 0-2.99h-5.91zm9.768 0a1.527 1.496 0 0 0-1.528 1.494 1.527 1.496 0 0 0 1.528 1.496 1.527 1.496 0 0 0 1.525-1.496 1.527 1.496 0 0 0-1.525-1.494zm-9.74 4.434c-.846 0-1.525.681-1.525 1.527 0 .835.68 1.517 1.525 1.527.846 0 1.528-.681 1.528-1.527 0-.846-.682-1.527-1.528-1.527zm3.694.031a1.5 1.5 0 0 0 .207 2.992h6.044a1.5 1.5 0 0 0-.205-2.992h-6.045zm-3.723 4.303a1.496 1.496 0 1 0 0 2.99h5.91a1.496 1.496 0 0 0 0-2.99h-5.91zm9.768 0a1.527 1.496 0 0 0-1.528 1.494 1.527 1.496 0 0 0 1.528 1.496 1.527 1.496 0 0 0 1.525-1.496 1.527 1.496 0 0 0-1.525-1.494z" fill="#ffccbc"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#e57373" style="fill:#ff5252"/><path d="M10.337 9.758h10.435A1.228 1.228 0 0 1 22 10.986v1.228h-2.456v-1.228h-7.98v7.366h5.525v1.228h-6.753a1.228 1.228 0 0 1-1.227-1.228v-7.366a1.228 1.228 0 0 1 1.227-1.228m8.594 3.684h3.684a.614.614 0 0 1 .613.613v6.14a.614.614 0 0 1-.613.613H18.93a.614.614 0 0 1-.613-.614v-6.139a.614.614 0 0 1 .613-.613m.614 1.227v4.297H22V14.67z" style="fill:#ffcdd2;stroke-width:.61386"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#e57373" fill-rule="nonzero" style="fill:#ff5252"/><path d="M10.337 9.759h10.435A1.228 1.228 0 0 1 22 10.987v1.227h-2.456v-1.227h-7.98v7.366h5.525v1.228h-6.753a1.228 1.228 0 0 1-1.227-1.228v-7.366a1.228 1.228 0 0 1 1.227-1.228m8.594 3.683h3.684a.614.614 0 0 1 .613.614v6.138a.614.614 0 0 1-.613.614H18.93a.614.614 0 0 1-.613-.614v-6.138a.614.614 0 0 1 .613-.614m.614 1.228v4.297H22V14.67z" style="fill:#ffcdd2;stroke-width:.61386"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#4DD0E1" fill-rule="nonzero" style="fill:#8d6e63"/><path d="M12.213 18.337v2.402h2.402l7.083-7.084-2.401-2.401zm11.343-6.539a.638.638 0 0 0 0-.903l-1.499-1.499a.638.638 0 0 0-.903 0l-1.172 1.172 2.402 2.402z" style="fill:#d7ccc8;stroke-width:.64046"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#4DD0E1" fill-rule="nonzero" style="fill:#8d6e63"/><path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75zM20.71 7.04a.996.996 0 0 0 0-1.41l-2.34-2.34a.996.996 0 0 0-1.41 0l-1.83 1.83 3.75 3.75z" style="fill:#d7ccc8" transform="translate(10.292 7.29) scale(.64045)"/></svg>
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
-
<path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#26a69a"/>
|
|
4
|
-
<path transform="matrix(.11551 0 0 .11551 8.943 7.752)" d="m59.673-4.058e-4 -0.72707 0.72707v26.327l0.72707 0.74397h8.7924l0.74397-0.74397v-26.327l-0.74397-0.72707h-8.7924zm-26.293 18.582-6.0194 6.0194v1.2174l9.2151 9.232h6.3914l0.84542-0.86233v-6.3914l-9.2151-9.2151h-1.2174zm14.152 19.445-0.72707 0.74397v35.085l0.72707 0.74398h8.7924l0.72707-0.74398v-26.58l0.4058-0.42271c2.7737-0.1089 5.374-0.17786 7.6426-0.11836 4.4083 0.099 5.8503 2.9389 5.8503 6.5943v20.544l0.72707 0.72707h8.7755l0.74397-0.72707v-21.947c0-7.6778-6.2214-13.899-13.899-13.899h-19.766zm-46.803 13.155-0.72707 0.72707v8.8093l0.72707 0.72706h35.119l0.72707-0.72706v-8.8093l-0.72707-0.72707h-35.119zm91.441 0-0.74397 0.72707v8.8093l0.74397 0.72706h35.102l0.74398-0.72706v-8.8093l-0.74398-0.72707h-35.102zm-55.595 26.411-9.2151 9.2151v1.2174l6.0194 6.0363h1.2174l9.2151-9.232v-6.3914l-0.84542-0.84542h-6.3914zm23.097 7.2368-0.72707 0.74397v26.327l0.72707 0.74397h8.7924l0.74397-0.74397v-26.327l-0.74397-0.74397h-8.7924z" fill="#a7ffeb"/>
|
|
5
|
-
</svg>
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" version="1.1" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><defs><clipPath id="clipPath23253"><rect x="1.461e-6" y="-2.6811e-7" width="128" height="112.64" fill="#fff"/></clipPath></defs><path d="M10 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z" fill="#26a69a"/><path transform="matrix(.11551 0 0 .11551 8.9425 7.7517)" d="m59.677 0.0024848-0.72707 0.72707v26.327l0.72707 0.74397h8.7924l0.72707-0.74397v-26.327l-0.72707-0.72707h-8.7924zm-26.293 18.582-6.0363 6.0194v1.2174l9.232 9.2151h6.3745l0.86233-0.84543v-6.3914l-9.2151-9.2151h-1.2174zm14.152 19.445-0.72707 0.72706v35.102l0.72707 0.74397h8.7755l0.74397-0.74397v-26.58l0.4058-0.43962c2.7737-0.1089 5.374-0.16095 7.6426-0.10145 4.4083 0.098999 5.8503 2.9389 5.8503 6.5943v20.544l0.72707 0.72706h8.7755l0.72706-0.72706v-21.947c0-7.6778-6.2214-13.899-13.899-13.899h-19.749zm-46.803 13.155-0.74397 0.72706v8.8093l0.74397 0.72707h35.119l0.72707-0.72707v-8.8093l-0.72707-0.72706h-35.119zm91.424 0-0.72707 0.72706v8.8093l0.72707 0.72707h35.119l0.74398-0.72707v-8.8093l-0.74398-0.72706h-35.119zm-55.578 26.411-9.232 9.2151v1.2005l6.0363 6.0363h1.2174l9.2151-9.2151v-6.3914l-0.86233-0.84542h-6.3745zm23.097 7.2368-0.72707 0.74398v26.327l0.72707 0.72706h8.7924l0.72707-0.72706v-26.327l-0.72707-0.74398h-8.7924z" clip-path="url(#clipPath23253)" fill="#a7ffeb"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#546e7a"/><path d="M20.728 9.381c-4.049-2.38-9.193.527-9.238 5.22-.043 4.585 4.807 7.545 8.846 5.527l-4.712-6.68-.03 4.907c0 .445-1.054.445-1.054 0l.01-6.772c0-.354.888-.383 1.074-.076l5.32 8.275c3.776-2.432 3.725-8.084-.216-10.401zm-.048 8.04-1.023-1.474v-4.364c0-.334 1.023-.334 1.023 0v5.838z" fill="#cfd8dc"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#546e7a" fill-rule="nonzero"/><path d="M20.728 9.381c-4.049-2.38-9.193.527-9.238 5.221-.043 4.584 4.807 7.544 8.846 5.527l-4.712-6.68-.03 4.906c0 .445-1.054.445-1.054 0l.01-6.772c0-.354.888-.383 1.074-.075l5.32 8.274c3.776-2.431 3.725-8.083-.216-10.4zm-.048 8.041-1.023-1.475v-4.364c0-.334 1.023-.334 1.023 0v5.839z" fill="#cfd8dc"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#ab47bc"/><path d="m17.655 8.39-6.152 2.192.933 8.143 5.219 2.888 5.219-2.888.932-8.143zm-1.278 2.067c.234-.004.487.07.768.222.124.067.498.162.83.21 1.183.171 2.586 1.074 3.03 1.95.306.603.243.928-.225 1.17-.404.208-1.23.107-2.43-.298l-1.012-.341-.36.137c-.522.2-1.044.694-1.258 1.19-.154.359-.177.527-.149 1.116.028.59.071.761.28 1.132.239.422.786.96.88.866.026-.026-.03-.197-.124-.38-.093-.183-.148-.368-.122-.41.026-.042.273.114.548.347.611.517 1.326.848 1.981.917.538.056.661-.044.258-.211a1.238 1.238 0 0 1-.374-.25c-.157-.173-.166-.168.504-.318.417-.094 1.24-.531 1.29-.685.016-.05-.118-.07-.338-.053-.2.016-.363-.005-.363-.046 0-.04.164-.243.363-.452.748-.78 1.004-1.364 1.083-2.474l.055-.766.176.364c.194.402.23.981.091 1.479-.115.416-.038.462.173.103.261-.442.345-.372.299.252-.05.678-.283 1.186-.808 1.761-.429.47-.377.553.141.234.5-.308.567-.26.31.224-.487.914-1.516 1.689-2.585 1.948-.647.158-1.106.187-1.7.109-1.55-.203-3.018-1.248-3.718-2.647a8.736 8.736 0 0 0-.572-.989c-.275-.373-.298-.54-.113-.823.093-.142.114-.286.076-.502-.176-.999-.17-1.03.23-1.437.35-.353.371-.4.371-.813 0-.358.036-.475.198-.637.109-.109.282-.2.384-.2.296-.003.807-.277 1.11-.595.252-.265.52-.4.822-.404z" fill="#e1bee7"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#ab47bc" fill-rule="nonzero"/><path d="m17.655 8.39-6.152 2.193.933 8.142 5.219 2.888 5.219-2.888.932-8.142zm-1.278 2.067c.234-.004.487.07.768.223.124.066.498.16.83.21 1.183.17 2.586 1.073 3.03 1.95.306.602.243.927-.225 1.169-.404.209-1.23.108-2.43-.297l-1.012-.342-.36.137c-.522.2-1.044.694-1.258 1.19-.154.359-.177.527-.149 1.116.028.59.071.761.28 1.132.239.422.786.96.88.866.026-.026-.03-.197-.124-.38-.093-.183-.148-.368-.122-.41.026-.042.273.114.548.347.611.518 1.326.848 1.981.917.538.056.661-.044.258-.211a1.238 1.238 0 0 1-.374-.25c-.157-.173-.166-.168.504-.318.417-.094 1.24-.531 1.29-.685.016-.05-.118-.07-.338-.053-.2.016-.363-.004-.363-.046 0-.04.164-.243.363-.451.748-.781 1.004-1.365 1.083-2.474l.055-.767.176.365c.194.401.23.98.091 1.478-.115.416-.038.462.173.104.261-.443.345-.373.299.251-.05.678-.283 1.187-.808 1.762-.429.468-.377.552.141.233.5-.308.567-.26.31.224-.487.914-1.516 1.69-2.585 1.948-.647.158-1.106.187-1.7.11-1.55-.204-3.018-1.249-3.718-2.648a8.736 8.736 0 0 0-.572-.989c-.275-.373-.298-.54-.113-.823.093-.141.114-.286.076-.502-.176-.999-.17-1.03.23-1.437.35-.353.371-.4.371-.813 0-.358.036-.475.198-.637.109-.108.282-.199.384-.2.296-.003.807-.277 1.11-.595.252-.265.52-.4.822-.404z" fill="#e1bee7"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#00bcd4"/><path d="m17.655 8.39-6.152 2.192.933 8.143 5.219 2.888 5.219-2.888.932-8.143zm-1.278 2.067c.234-.004.487.07.768.222.124.067.498.162.83.21 1.183.171 2.586 1.074 3.03 1.95.306.603.243.928-.225 1.17-.404.208-1.23.107-2.43-.298l-1.012-.341-.36.137c-.522.2-1.044.694-1.258 1.19-.154.359-.177.527-.149 1.116.028.59.071.761.28 1.132.239.422.786.96.88.866.026-.026-.03-.197-.124-.38-.093-.183-.148-.368-.122-.41.026-.042.273.114.548.347.611.517 1.326.848 1.981.917.538.056.661-.044.258-.211a1.238 1.238 0 0 1-.374-.25c-.157-.173-.166-.168.504-.318.417-.094 1.24-.531 1.29-.685.016-.05-.118-.07-.338-.053-.2.016-.363-.005-.363-.046 0-.04.164-.243.363-.452.748-.78 1.004-1.364 1.083-2.474l.055-.766.176.364c.194.402.23.981.091 1.479-.115.416-.038.462.173.103.261-.442.345-.372.299.252-.05.678-.283 1.186-.808 1.761-.429.47-.377.553.141.234.5-.308.567-.26.31.224-.487.914-1.516 1.689-2.585 1.948-.647.158-1.106.187-1.7.109-1.55-.203-3.018-1.248-3.718-2.647a8.736 8.736 0 0 0-.572-.989c-.275-.373-.298-.54-.113-.823.093-.142.114-.286.076-.502-.176-.999-.17-1.03.23-1.437.35-.353.371-.4.371-.813 0-.358.036-.475.198-.637.109-.109.282-.2.384-.2.296-.003.807-.277 1.11-.595.252-.265.52-.4.822-.404z" fill="#b2ebf2"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#00bcd4" fill-rule="nonzero"/><path d="m17.655 8.39-6.152 2.193.933 8.142 5.219 2.888 5.219-2.888.932-8.142zm-1.278 2.067c.234-.004.487.07.768.223.124.066.498.16.83.21 1.183.17 2.586 1.073 3.03 1.95.306.602.243.927-.225 1.169-.404.209-1.23.108-2.43-.297l-1.012-.342-.36.137c-.522.2-1.044.694-1.258 1.19-.154.359-.177.527-.149 1.116.028.59.071.761.28 1.132.239.422.786.96.88.866.026-.026-.03-.197-.124-.38-.093-.183-.148-.368-.122-.41.026-.042.273.114.548.347.611.518 1.326.848 1.981.917.538.056.661-.044.258-.211a1.238 1.238 0 0 1-.374-.25c-.157-.173-.166-.168.504-.318.417-.094 1.24-.531 1.29-.685.016-.05-.118-.07-.338-.053-.2.016-.363-.004-.363-.046 0-.04.164-.243.363-.451.748-.781 1.004-1.365 1.083-2.474l.055-.767.176.365c.194.401.23.98.091 1.478-.115.416-.038.462.173.104.261-.443.345-.373.299.251-.05.678-.283 1.187-.808 1.762-.429.468-.377.552.141.233.5-.308.567-.26.31.224-.487.914-1.516 1.69-2.585 1.948-.647.158-1.106.187-1.7.11-1.55-.204-3.018-1.249-3.718-2.648a8.736 8.736 0 0 0-.572-.989c-.275-.373-.298-.54-.113-.823.093-.141.114-.286.076-.502-.176-.999-.17-1.03.23-1.437.35-.353.371-.4.371-.813 0-.358.036-.475.198-.637.109-.108.282-.199.384-.2.296-.003.807-.277 1.11-.595.252-.265.52-.4.822-.404z" fill="#b2ebf2"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#fbc02d"/><path d="m17.655 8.39-6.152 2.192.933 8.143 5.219 2.888 5.219-2.888.932-8.143zm-1.278 2.067c.234-.004.487.07.768.222.124.067.498.162.83.21 1.183.171 2.586 1.074 3.03 1.95.306.603.243.928-.225 1.17-.404.208-1.23.107-2.43-.298l-1.012-.341-.36.137c-.522.2-1.044.694-1.258 1.19-.154.359-.177.527-.149 1.116.028.59.071.761.28 1.132.239.422.786.96.88.866.026-.026-.03-.197-.124-.38-.093-.183-.148-.368-.122-.41.026-.042.273.114.548.347.611.517 1.326.848 1.981.917.538.056.661-.044.258-.211a1.238 1.238 0 0 1-.374-.25c-.157-.173-.166-.168.504-.318.417-.094 1.24-.531 1.29-.685.016-.05-.118-.07-.338-.053-.2.016-.363-.005-.363-.046 0-.04.164-.243.363-.452.748-.78 1.004-1.364 1.083-2.474l.055-.766.176.364c.194.402.23.981.091 1.479-.115.416-.038.462.173.103.261-.442.345-.372.299.252-.05.678-.283 1.186-.808 1.761-.429.47-.377.553.141.234.5-.308.567-.26.31.224-.487.914-1.516 1.689-2.585 1.948-.647.158-1.106.187-1.7.109-1.55-.203-3.018-1.248-3.718-2.647a8.736 8.736 0 0 0-.572-.989c-.275-.373-.298-.54-.113-.823.093-.142.114-.286.076-.502-.176-.999-.17-1.03.23-1.437.35-.353.371-.4.371-.813 0-.358.036-.475.198-.637.109-.109.282-.2.384-.2.296-.003.807-.277 1.11-.595.252-.265.52-.4.822-.404z" fill="#fff9c4"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#fbc02d" fill-rule="nonzero"/><path d="m17.655 8.39-6.152 2.193.933 8.142 5.219 2.888 5.219-2.888.932-8.142zm-1.278 2.067c.234-.004.487.07.768.223.124.066.498.16.83.21 1.183.17 2.586 1.073 3.03 1.95.306.602.243.927-.225 1.169-.404.209-1.23.108-2.43-.297l-1.012-.342-.36.137c-.522.2-1.044.694-1.258 1.19-.154.359-.177.527-.149 1.116.028.59.071.761.28 1.132.239.422.786.96.88.866.026-.026-.03-.197-.124-.38-.093-.183-.148-.368-.122-.41.026-.042.273.114.548.347.611.518 1.326.848 1.981.917.538.056.661-.044.258-.211a1.238 1.238 0 0 1-.374-.25c-.157-.173-.166-.168.504-.318.417-.094 1.24-.531 1.29-.685.016-.05-.118-.07-.338-.053-.2.016-.363-.004-.363-.046 0-.04.164-.243.363-.451.748-.781 1.004-1.365 1.083-2.474l.055-.767.176.365c.194.401.23.98.091 1.478-.115.416-.038.462.173.104.261-.443.345-.373.299.251-.05.678-.283 1.187-.808 1.762-.429.468-.377.552.141.233.5-.308.567-.26.31.224-.487.914-1.516 1.69-2.585 1.948-.647.158-1.106.187-1.7.11-1.55-.204-3.018-1.249-3.718-2.648a8.736 8.736 0 0 0-.572-.989c-.275-.373-.298-.54-.113-.823.093-.141.114-.286.076-.502-.176-.999-.17-1.03.23-1.437.35-.353.371-.4.371-.813 0-.358.036-.475.198-.637.109-.108.282-.199.384-.2.296-.003.807-.277 1.11-.595.252-.265.52-.4.822-.404z" fill="#fff9c4"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#ef5350"/><path d="m17.655 8.39-6.152 2.192.933 8.143 5.219 2.888 5.219-2.888.932-8.143zm-1.278 2.067c.234-.004.487.07.768.222.124.067.498.162.83.21 1.183.171 2.586 1.074 3.03 1.95.306.603.243.928-.225 1.17-.404.208-1.23.107-2.43-.298l-1.012-.341-.36.137c-.522.2-1.044.694-1.258 1.19-.154.359-.177.527-.149 1.116.028.59.071.761.28 1.132.239.422.786.96.88.866.026-.026-.03-.197-.124-.38-.093-.183-.148-.368-.122-.41.026-.042.273.114.548.347.611.517 1.326.848 1.981.917.538.056.661-.044.258-.211a1.238 1.238 0 0 1-.374-.25c-.157-.173-.166-.168.504-.318.417-.094 1.24-.531 1.29-.685.016-.05-.118-.07-.338-.053-.2.016-.363-.005-.363-.046 0-.04.164-.243.363-.452.748-.78 1.004-1.364 1.083-2.474l.055-.766.176.364c.194.402.23.981.091 1.479-.115.416-.038.462.173.103.261-.442.345-.372.299.252-.05.678-.283 1.186-.808 1.761-.429.47-.377.553.141.234.5-.308.567-.26.31.224-.487.914-1.516 1.689-2.585 1.948-.647.158-1.106.187-1.7.109-1.55-.203-3.018-1.248-3.718-2.647a8.736 8.736 0 0 0-.572-.989c-.275-.373-.298-.54-.113-.823.093-.142.114-.286.076-.502-.176-.999-.17-1.03.23-1.437.35-.353.371-.4.371-.813 0-.358.036-.475.198-.637.109-.109.282-.2.384-.2.296-.003.807-.277 1.11-.595.252-.265.52-.4.822-.404z" fill="#ffcdd2"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#ef5350" fill-rule="nonzero"/><path d="m17.655 8.39-6.152 2.193.933 8.142 5.219 2.888 5.219-2.888.932-8.142zm-1.278 2.067c.234-.004.487.07.768.223.124.066.498.16.83.21 1.183.17 2.586 1.073 3.03 1.95.306.602.243.927-.225 1.169-.404.209-1.23.108-2.43-.297l-1.012-.342-.36.137c-.522.2-1.044.694-1.258 1.19-.154.359-.177.527-.149 1.116.028.59.071.761.28 1.132.239.422.786.96.88.866.026-.026-.03-.197-.124-.38-.093-.183-.148-.368-.122-.41.026-.042.273.114.548.347.611.518 1.326.848 1.981.917.538.056.661-.044.258-.211a1.238 1.238 0 0 1-.374-.25c-.157-.173-.166-.168.504-.318.417-.094 1.24-.531 1.29-.685.016-.05-.118-.07-.338-.053-.2.016-.363-.004-.363-.046 0-.04.164-.243.363-.451.748-.781 1.004-1.365 1.083-2.474l.055-.767.176.365c.194.401.23.98.091 1.478-.115.416-.038.462.173.104.261-.443.345-.373.299.251-.05.678-.283 1.187-.808 1.762-.429.468-.377.552.141.233.5-.308.567-.26.31.224-.487.914-1.516 1.69-2.585 1.948-.647.158-1.106.187-1.7.11-1.55-.204-3.018-1.249-3.718-2.648a8.736 8.736 0 0 0-.572-.989c-.275-.373-.298-.54-.113-.823.093-.141.114-.286.076-.502-.176-.999-.17-1.03.23-1.437.35-.353.371-.4.371-.813 0-.358.036-.475.198-.637.109-.108.282-.199.384-.2.296-.003.807-.277 1.11-.595.252-.265.52-.4.822-.404z" fill="#ffcdd2"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#8bc34a" style="fill:#ff6e40"/><path d="m17.655 8.39-6.152 2.192.933 8.143 5.219 2.888 5.219-2.888.932-8.143zm-1.278 2.067c.234-.004.487.07.768.222.124.067.498.162.83.21 1.183.171 2.586 1.074 3.03 1.95.306.603.243.928-.225 1.17-.404.208-1.23.107-2.43-.298l-1.012-.341-.36.137c-.522.2-1.044.694-1.258 1.19-.154.359-.177.527-.149 1.116.028.59.071.761.28 1.132.239.422.786.96.88.866.026-.026-.03-.197-.124-.38-.093-.183-.148-.368-.122-.41.026-.042.273.114.548.347.611.517 1.326.848 1.981.917.538.056.661-.044.258-.211a1.238 1.238 0 0 1-.374-.25c-.157-.173-.166-.168.504-.318.417-.094 1.24-.531 1.29-.685.016-.05-.118-.07-.338-.053-.2.016-.363-.005-.363-.046 0-.04.164-.243.363-.452.748-.78 1.004-1.364 1.083-2.474l.055-.766.176.364c.194.402.23.981.091 1.479-.115.416-.038.462.173.103.261-.442.345-.372.299.252-.05.678-.283 1.186-.808 1.761-.429.47-.377.553.141.234.5-.308.567-.26.31.224-.487.914-1.516 1.689-2.585 1.948-.647.158-1.106.187-1.7.109-1.55-.203-3.018-1.248-3.718-2.647a8.736 8.736 0 0 0-.572-.989c-.275-.373-.298-.54-.113-.823.093-.142.114-.286.076-.502-.176-.999-.17-1.03.23-1.437.35-.353.371-.4.371-.813 0-.358.036-.475.198-.637.109-.109.282-.2.384-.2.296-.003.807-.277 1.11-.595.252-.265.52-.4.822-.404z" fill="#dcedc8" style="fill:#ffccbc"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#8bc34a" fill-rule="nonzero" style="fill:#ff6e40"/><path d="m17.655 8.39-6.152 2.193.933 8.142 5.219 2.888 5.219-2.888.932-8.142zm-1.278 2.067c.234-.004.487.07.768.223.124.066.498.16.83.21 1.183.17 2.586 1.073 3.03 1.95.306.602.243.927-.225 1.169-.404.209-1.23.108-2.43-.297l-1.012-.342-.36.137c-.522.2-1.044.694-1.258 1.19-.154.359-.177.527-.149 1.116.028.59.071.761.28 1.132.239.422.786.96.88.866.026-.026-.03-.197-.124-.38-.093-.183-.148-.368-.122-.41.026-.042.273.114.548.347.611.518 1.326.848 1.981.917.538.056.661-.044.258-.211a1.238 1.238 0 0 1-.374-.25c-.157-.173-.166-.168.504-.318.417-.094 1.24-.531 1.29-.685.016-.05-.118-.07-.338-.053-.2.016-.363-.004-.363-.046 0-.04.164-.243.363-.451.748-.781 1.004-1.365 1.083-2.474l.055-.767.176.365c.194.401.23.98.091 1.478-.115.416-.038.462.173.104.261-.443.345-.373.299.251-.05.678-.283 1.187-.808 1.762-.429.468-.377.552.141.233.5-.308.567-.26.31.224-.487.914-1.516 1.69-2.585 1.948-.647.158-1.106.187-1.7.11-1.55-.204-3.018-1.249-3.718-2.648a8.736 8.736 0 0 0-.572-.989c-.275-.373-.298-.54-.113-.823.093-.141.114-.286.076-.502-.176-.999-.17-1.03.23-1.437.35-.353.371-.4.371-.813 0-.358.036-.475.198-.637.109-.108.282-.199.384-.2.296-.003.807-.277 1.11-.595.252-.265.52-.4.822-.404z" fill="#dcedc8" style="fill:#ffccbc"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#8bc34a" style="fill:#9e9d24"/><path d="m17.655 8.39-6.152 2.192.933 8.143 5.219 2.888 5.219-2.888.932-8.143zm-1.278 2.067c.234-.004.487.07.768.222.124.067.498.162.83.21 1.183.171 2.586 1.074 3.03 1.95.306.603.243.928-.225 1.17-.404.208-1.23.107-2.43-.298l-1.012-.341-.36.137c-.522.2-1.044.694-1.258 1.19-.154.359-.177.527-.149 1.116.028.59.071.761.28 1.132.239.422.786.96.88.866.026-.026-.03-.197-.124-.38-.093-.183-.148-.368-.122-.41.026-.042.273.114.548.347.611.517 1.326.848 1.981.917.538.056.661-.044.258-.211a1.238 1.238 0 0 1-.374-.25c-.157-.173-.166-.168.504-.318.417-.094 1.24-.531 1.29-.685.016-.05-.118-.07-.338-.053-.2.016-.363-.005-.363-.046 0-.04.164-.243.363-.452.748-.78 1.004-1.364 1.083-2.474l.055-.766.176.364c.194.402.23.981.091 1.479-.115.416-.038.462.173.103.261-.442.345-.372.299.252-.05.678-.283 1.186-.808 1.761-.429.47-.377.553.141.234.5-.308.567-.26.31.224-.487.914-1.516 1.689-2.585 1.948-.647.158-1.106.187-1.7.109-1.55-.203-3.018-1.248-3.718-2.647a8.736 8.736 0 0 0-.572-.989c-.275-.373-.298-.54-.113-.823.093-.142.114-.286.076-.502-.176-.999-.17-1.03.23-1.437.35-.353.371-.4.371-.813 0-.358.036-.475.198-.637.109-.109.282-.2.384-.2.296-.003.807-.277 1.11-.595.252-.265.52-.4.822-.404z" fill="#dcedc8" style="fill:#f0f4c3"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#8bc34a" fill-rule="nonzero" style="fill:#9e9d24"/><path d="m17.655 8.39-6.152 2.193.933 8.142 5.219 2.888 5.219-2.888.932-8.142zm-1.278 2.067c.234-.004.487.07.768.223.124.066.498.16.83.21 1.183.17 2.586 1.073 3.03 1.95.306.602.243.927-.225 1.169-.404.209-1.23.108-2.43-.297l-1.012-.342-.36.137c-.522.2-1.044.694-1.258 1.19-.154.359-.177.527-.149 1.116.028.59.071.761.28 1.132.239.422.786.96.88.866.026-.026-.03-.197-.124-.38-.093-.183-.148-.368-.122-.41.026-.042.273.114.548.347.611.518 1.326.848 1.981.917.538.056.661-.044.258-.211a1.238 1.238 0 0 1-.374-.25c-.157-.173-.166-.168.504-.318.417-.094 1.24-.531 1.29-.685.016-.05-.118-.07-.338-.053-.2.016-.363-.004-.363-.046 0-.04.164-.243.363-.451.748-.781 1.004-1.365 1.083-2.474l.055-.767.176.365c.194.401.23.98.091 1.478-.115.416-.038.462.173.104.261-.443.345-.373.299.251-.05.678-.283 1.187-.808 1.762-.429.468-.377.552.141.233.5-.308.567-.26.31.224-.487.914-1.516 1.69-2.585 1.948-.647.158-1.106.187-1.7.11-1.55-.204-3.018-1.249-3.718-2.648a8.736 8.736 0 0 0-.572-.989c-.275-.373-.298-.54-.113-.823.093-.141.114-.286.076-.502-.176-.999-.17-1.03.23-1.437.35-.353.371-.4.371-.813 0-.358.036-.475.198-.637.109-.108.282-.199.384-.2.296-.003.807-.277 1.11-.595.252-.265.52-.4.822-.404z" fill="#dcedc8" style="fill:#f0f4c3"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#8bc34a"/><path d="m17.655 8.39-6.152 2.192.933 8.143 5.219 2.888 5.219-2.888.932-8.143zm-1.278 2.067c.234-.004.487.07.768.222.124.067.498.162.83.21 1.183.171 2.586 1.074 3.03 1.95.306.603.243.928-.225 1.17-.404.208-1.23.107-2.43-.298l-1.012-.341-.36.137c-.522.2-1.044.694-1.258 1.19-.154.359-.177.527-.149 1.116.028.59.071.761.28 1.132.239.422.786.96.88.866.026-.026-.03-.197-.124-.38-.093-.183-.148-.368-.122-.41.026-.042.273.114.548.347.611.517 1.326.848 1.981.917.538.056.661-.044.258-.211a1.238 1.238 0 0 1-.374-.25c-.157-.173-.166-.168.504-.318.417-.094 1.24-.531 1.29-.685.016-.05-.118-.07-.338-.053-.2.016-.363-.005-.363-.046 0-.04.164-.243.363-.452.748-.78 1.004-1.364 1.083-2.474l.055-.766.176.364c.194.402.23.981.091 1.479-.115.416-.038.462.173.103.261-.442.345-.372.299.252-.05.678-.283 1.186-.808 1.761-.429.47-.377.553.141.234.5-.308.567-.26.31.224-.487.914-1.516 1.689-2.585 1.948-.647.158-1.106.187-1.7.109-1.55-.203-3.018-1.248-3.718-2.647a8.736 8.736 0 0 0-.572-.989c-.275-.373-.298-.54-.113-.823.093-.142.114-.286.076-.502-.176-.999-.17-1.03.23-1.437.35-.353.371-.4.371-.813 0-.358.036-.475.198-.637.109-.109.282-.2.384-.2.296-.003.807-.277 1.11-.595.252-.265.52-.4.822-.404z" fill="#dcedc8"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#8bc34a" fill-rule="nonzero"/><path d="m17.655 8.39-6.152 2.193.933 8.142 5.219 2.888 5.219-2.888.932-8.142zm-1.278 2.067c.234-.004.487.07.768.223.124.066.498.16.83.21 1.183.17 2.586 1.073 3.03 1.95.306.602.243.927-.225 1.169-.404.209-1.23.108-2.43-.297l-1.012-.342-.36.137c-.522.2-1.044.694-1.258 1.19-.154.359-.177.527-.149 1.116.028.59.071.761.28 1.132.239.422.786.96.88.866.026-.026-.03-.197-.124-.38-.093-.183-.148-.368-.122-.41.026-.042.273.114.548.347.611.518 1.326.848 1.981.917.538.056.661-.044.258-.211a1.238 1.238 0 0 1-.374-.25c-.157-.173-.166-.168.504-.318.417-.094 1.24-.531 1.29-.685.016-.05-.118-.07-.338-.053-.2.016-.363-.004-.363-.046 0-.04.164-.243.363-.451.748-.781 1.004-1.365 1.083-2.474l.055-.767.176.365c.194.401.23.98.091 1.478-.115.416-.038.462.173.104.261-.443.345-.373.299.251-.05.678-.283 1.187-.808 1.762-.429.468-.377.552.141.233.5-.308.567-.26.31.224-.487.914-1.516 1.69-2.585 1.948-.647.158-1.106.187-1.7.11-1.55-.204-3.018-1.249-3.718-2.648a8.736 8.736 0 0 0-.572-.989c-.275-.373-.298-.54-.113-.823.093-.141.114-.286.076-.502-.176-.999-.17-1.03.23-1.437.35-.353.371-.4.371-.813 0-.358.036-.475.198-.637.109-.108.282-.199.384-.2.296-.003.807-.277 1.11-.595.252-.265.52-.4.822-.404z" fill="#dcedc8"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#8bc34a"/><path d="m17.15 8.53-5.49 3.17c-.21.12-.33.34-.33.57v6.34c0 .24.13.46.33.57l5.49 3.18c.21.12.46.12.66 0l5.49-3.17c.2-.12.33-.34.33-.57v-6.34c0-.24-.13-.46-.33-.57l-5.49-3.18a.656.656 0 0 0-.66 0" fill="#dcedc8"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#8bc34a"/><path d="m17.15 8.53-5.49 3.17c-.21.12-.33.34-.33.57v6.34c0 .24.13.46.33.57l5.49 3.18c.21.12.46.12.66 0l5.49-3.17c.2-.12.33-.34.33-.57v-6.34c0-.24-.13-.46-.33-.57l-5.49-3.18a.656.656 0 0 0-.66 0" fill="#dcedc8"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5Z" fill="#546e7a"/><g stroke-width=".879" fill-rule="evenodd"><path d="M15.137 12.002a1.016 1.016 0 0 0-1.753 0l-4.247 7.302c-.39.67.098 1.508.877 1.508h3.315a.97.97 0 0 1-.204-1.227l3.216-5.513z" fill="#69f0ae"/><path d="M17.828 13.604a.846.846 0 0 1 1.451 0l3.515 5.975c.322.548-.08 1.233-.726 1.233H15.04c-.645 0-1.048-.685-.725-1.233z" fill="#00e676" fill-rule="nonzero"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2Z" fill="#546e7a"/><g stroke-width=".879" fill-rule="evenodd"><path d="M15.137 12.002a1.016 1.016 0 0 0-1.753 0l-4.247 7.302c-.39.67.098 1.508.877 1.508h3.315a.97.97 0 0 1-.204-1.227l3.216-5.513z" fill="#69f0ae"/><path d="M17.828 13.604a.846.846 0 0 1 1.451 0l3.515 5.975c.322.548-.08 1.233-.726 1.233H15.04c-.645 0-1.048-.685-.725-1.233z" fill="#00e676" fill-rule="nonzero"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4c-1.11 0-2-.9-2-2V6c0-1.11.89-2 2-2h6l2 2h7a2 2 0 0 1 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#90a4ae" /></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#039be5" style="fill:#ff7043"/><path d="M17.338 9.322a6.186 6.186 0 0 1 6.186 6.186 6.186 6.186 0 0 1-6.186 6.187 6.186 6.186 0 0 1-6.186-6.187 6.186 6.186 0 0 1 6.186-6.186m0 5.258a.928.928 0 0 0-.928.928.928.928 0 0 0 .928.928.928.928 0 0 0 .928-.928.928.928 0 0 0-.928-.927m-3.403 0a.928.928 0 0 0-.928.927.928.928 0 0 0 .928.928.928.928 0 0 0 .928-.928.928.928 0 0 0-.928-.927m6.806 0a.928.928 0 0 0-.928.927.928.928 0 0 0 .928.928.928.928 0 0 0 .928-.928.928.928 0 0 0-.928-.927z" style="fill:#ffccbc;stroke-width:.61865"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#039be5" fill-rule="nonzero" style="fill:#ff7043"/><path d="M17.338 9.322a6.186 6.186 0 0 1 6.186 6.186 6.186 6.186 0 0 1-6.186 6.187 6.186 6.186 0 0 1-6.186-6.187 6.186 6.186 0 0 1 6.186-6.186m0 5.258a.928.928 0 0 0-.928.928.928.928 0 0 0 .928.928.928.928 0 0 0 .928-.928.928.928 0 0 0-.928-.927m-3.403 0a.928.928 0 0 0-.928.927.928.928 0 0 0 .928.928.928.928 0 0 0 .928-.928.928.928 0 0 0-.928-.927m6.806 0a.928.928 0 0 0-.928.927.928.928 0 0 0 .928.928.928.928 0 0 0 .928-.928.928.928 0 0 0-.928-.927z" style="fill:#ffccbc;stroke-width:.61865"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#303F9F" style="fill:#1e88e5"/><path d="m23.014 10.784-.877-1.06a.953.952 0 0 0-.734-.341H13.83a.918.918 0 0 0-.726.347l-.878 1.054a1.253 1.253 0 0 0-.29.808v7.89c0 .695.562 1.263 1.262 1.263h8.838c.694 0 1.262-.568 1.262-1.262v-7.89c0-.31-.107-.588-.283-.81zm-5.398 2.701 3.472 3.472H18.88v1.263h-2.526v-1.263h-2.209zm-4.341-2.84.516-.63h7.576l.587.63z" style="fill:#bbdefb;stroke-width:.98808"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#303F9F" fill-rule="nonzero" style="fill:#1e88e5"/><path d="m23.013 10.784-.877-1.06a.953.952 0 0 0-.734-.341h-7.574a.918.918 0 0 0-.727.347l-.877 1.054a1.253 1.253 0 0 0-.29.808v7.89c0 .695.562 1.263 1.262 1.263h8.838c.694 0 1.263-.568 1.263-1.262v-7.89c0-.31-.108-.588-.284-.81zm-5.398 2.701 3.472 3.472h-2.209v1.263h-2.526v-1.263h-2.209zm-4.342-2.84.517-.63h7.576l.587.63z" style="fill:#bbdefb;stroke-width:.98809"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#ef5350"/><path d="M17.251 13.933a10.013 10.013 0 0 1-.69 1.637c-.135.258-.265.5-.336.704l.074-.028a12.451 12.451 0 0 1 2.272-.628 3.655 3.655 0 0 1-.285-.22c-.401-.347-.756-.85-1.035-1.465zm4.401 2.592c-.11.132-.319.203-.611.203-.52 0-1.345-.155-2.03-.502-1.186.123-2.06.285-2.751.51l-.125.048c-.845 1.443-1.47 2.087-2.022 2.087a.662.662 0 0 1-.299-.071l-.326-.214-.016-.036a.567.567 0 0 1-.036-.366c.072-.36.445-.928 1.28-1.44.129-.094.33-.206.605-.333.201-.355.419-.767.647-1.227.348-.697.564-1.39.739-1.988l-.003-.008c-.25-.824-.4-1.318-.149-2.22.075-.262.285-.527.54-.527h.161c.16 0 .303.058.413.167.448.448.243 1.541.015 2.444l-.024.096c.268.767.652 1.383 1.085 1.738.174.137.37.271.586.398.31-.034.607-.05.883-.05.843 0 1.35.152 1.548.466a.55.55 0 0 1 .084.375.652.652 0 0 1-.194.45zm.743-7.988h-9.517a1.36 1.36 0 0 0-1.36 1.36v9.518c0 .75.608 1.36 1.36 1.36h9.517c.75 0 1.36-.61 1.36-1.36V9.897c0-.751-.61-1.36-1.36-1.36zm-1.01 7.508c-.076-.072-.355-.242-1.304-.242-.047 0-.094 0-.156.068.502.218.984.348 1.293.348a.896.896 0 0 0 .133-.01l.023-.004c.033-.01.055-.021.061-.088-.01-.017-.025-.043-.05-.072zm-6.244.989a2.615 2.615 0 0 0-.323.214c-.487.441-.789.887-.826 1.15.309-.106.709-.552 1.15-1.364zm2.05-4.695.038-.025c.05-.22.082-.409.109-.56l.02-.11c.066-.368.058-.58-.066-.745l-.1-.034c-.013.02-.033.049-.046.08-.113.282-.11.781.046 1.394z" fill="#ffcdd2"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#ef5350" fill-rule="nonzero"/><path d="M17.251 13.933a10.013 10.013 0 0 1-.69 1.637c-.135.258-.265.5-.336.704l.074-.028a12.451 12.451 0 0 1 2.272-.628 3.655 3.655 0 0 1-.285-.22c-.401-.347-.756-.85-1.035-1.465zm4.401 2.592c-.11.132-.319.203-.611.203-.52 0-1.345-.155-2.03-.502-1.186.123-2.06.285-2.751.51l-.125.048c-.845 1.443-1.47 2.087-2.022 2.087a.662.662 0 0 1-.299-.071l-.326-.214-.016-.036a.567.567 0 0 1-.036-.366c.072-.36.445-.928 1.28-1.44.129-.094.33-.206.605-.333.201-.355.419-.767.647-1.227.348-.697.564-1.39.739-1.988l-.003-.008c-.25-.824-.4-1.318-.149-2.22.075-.262.285-.527.54-.527h.161c.16 0 .303.058.413.167.448.448.243 1.541.015 2.444l-.024.096c.268.767.652 1.383 1.085 1.738.174.137.37.271.586.398.31-.034.607-.05.883-.05.843 0 1.35.152 1.548.466a.55.55 0 0 1 .084.375.652.652 0 0 1-.194.45zm.743-7.988h-9.517a1.36 1.36 0 0 0-1.36 1.36v9.518c0 .75.608 1.36 1.36 1.36h9.517c.75 0 1.36-.61 1.36-1.36V9.897c0-.751-.61-1.36-1.36-1.36zm-1.01 7.508c-.076-.072-.355-.242-1.304-.242-.047 0-.094 0-.156.068.502.218.984.348 1.293.348a.896.896 0 0 0 .133-.01l.023-.004c.033-.01.055-.021.061-.088-.01-.017-.025-.043-.05-.072zm-6.244.989a2.615 2.615 0 0 0-.323.214c-.487.441-.789.887-.826 1.15.309-.106.709-.552 1.15-1.364zm2.05-4.695.038-.025c.05-.22.082-.409.109-.56l.02-.11c.066-.368.058-.58-.066-.745l-.1-.034c-.013.02-.033.049-.046.08-.113.282-.11.781.046 1.394z" fill="#ffcdd2"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z" fill="#1e88e5"/><path d="M15.508 21.639c-4.692 0-8.492-1.925-8.492-4.302s3.8-4.303 8.492-4.303S24 14.96 24 17.337s-3.8 4.302-8.492 4.302m-3.673-5.626c.383 0 .644.071.772.22.127.141.155.396.092.729-.071.375-.206.615-.41.77-.199.157-.503.234-.914.234h-.615l.375-1.953h.7M9.36 19.941h1.019l.24-1.239h.87c.383 0 .694-.042.942-.12.247-.085.474-.22.68-.41.169-.156.303-.326.41-.517.106-.184.184-.396.219-.623.113-.552.035-.983-.234-1.287-.276-.312-.7-.46-1.288-.46h-1.953L9.36 19.94m5.13-5.895-.906 4.656h1.005l.524-2.667h.806c.255 0 .425.042.503.127.078.085.092.24.05.467l-.404 2.073h1.026l.417-2.172c.092-.439.022-.757-.19-.962-.213-.191-.602-.283-1.168-.283h-.899l.255-1.239h-1.02m5.266 1.967c.389 0 .644.071.77.22.128.141.157.396.093.729-.07.375-.205.615-.403.771-.206.156-.51.234-.92.234h-.602l.354-1.953h.708m-2.477 3.927h1.019l.24-1.238h.864c.389 0 .707-.043.955-.12.248-.086.46-.22.672-.411a1.87 1.87 0 0 0 .41-.517 1.95 1.95 0 0 0 .227-.622c.106-.552.028-.984-.24-1.288-.255-.312-.701-.46-1.288-.46H18.19z" fill="#bbdefb"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8l-2-2z" fill="#1e88e5" fill-rule="nonzero"/><path d="M15.508 21.639c-4.692 0-8.492-1.925-8.492-4.302s3.8-4.303 8.492-4.303S24 14.96 24 17.337s-3.8 4.302-8.492 4.302m-3.673-5.626c.383 0 .644.071.772.22.127.141.155.396.092.729-.071.375-.206.615-.41.77-.199.157-.503.234-.914.234h-.615l.375-1.953h.7M9.36 19.941h1.019l.24-1.239h.87c.383 0 .694-.042.942-.12.247-.085.474-.22.68-.41.169-.156.303-.326.41-.517.106-.184.184-.396.219-.623.113-.552.035-.983-.234-1.287-.276-.312-.7-.46-1.288-.46h-1.953L9.36 19.94m5.13-5.895-.906 4.656h1.005l.524-2.667h.806c.255 0 .425.042.503.127.078.085.092.24.05.467l-.404 2.073h1.026l.417-2.172c.092-.439.022-.757-.19-.962-.213-.191-.602-.283-1.168-.283h-.899l.255-1.239h-1.02m5.266 1.967c.389 0 .644.071.77.22.128.141.157.396.093.729-.07.375-.205.615-.403.771-.206.156-.51.234-.92.234h-.602l.354-1.953h.708m-2.477 3.927h1.019l.24-1.238h.864c.389 0 .707-.043.955-.12.248-.086.46-.22.672-.411a1.87 1.87 0 0 0 .41-.517 1.95 1.95 0 0 0 .227-.622c.106-.552.028-.984-.24-1.288-.255-.312-.701-.46-1.288-.46H18.19z" fill="#bbdefb"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M19 20H4c-1.111 0-2-.9-2-2V6c0-1.11.89-2 2-2h6l2 2h7c1.097 0 2 .903 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.011 1.5-1.93 1.5z" fill="#616161"/><path d="M9.031 21.532v-9.919l1.719-.01c2.814 0 4.151.603 4.2 3.024-.09 2.483-1.346 3.187-4.21 3.026v3.879H9.031zm1.699-5.246-.01-3.377q2.814-.181 2.794 1.709-.02 1.889-2.784 1.668z" fill="#e8e8e8"/><path d="m15.815 21.542.02-7.929 3.93 3.612 3.829-3.753.04 8.09-7.819-.02z" fill="#FFD180"/><path d="m15.815 11.603 3.94 3.748 3.819-3.789-7.759.041z" fill="#FFD180"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.097.903 2 2 2h16c1.097 0 2-.903 2-2V8a2 2 0 0 0-2-2h-8z" fill="#616161" fill-rule="nonzero"/><path d="M9.031 21.532v-9.919l1.719-.01c2.814 0 4.151.603 4.2 3.024-.09 2.483-1.346 3.187-4.21 3.026v3.879H9.031zm1.699-5.246-.01-3.377q2.814-.181 2.794 1.709-.02 1.889-2.784 1.668z" fill="#e8e8e8"/><path d="m15.815 21.542.02-7.929 3.93 3.612 3.829-3.753.04 8.09-7.819-.02z" fill="#FFD180"/><path d="m15.815 11.603 3.94 3.748 3.819-3.789-7.759.041z" fill="#FFD180"/></svg>
|