Initial commit

This commit is contained in:
2026-06-21 12:18:19 +08:00
commit 7ec67ef918
564 changed files with 1985 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
/.git
/.gitea
/.gitignore
/.cache
Makefile
.DS_Store
+18
View File
@@ -0,0 +1,18 @@
root = true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
[*.md]
trim_trailing_whitespace = false
[*.{yaml,yml}]
indent_size = 2
[Makefile]
indent_style = tab
+3
View File
@@ -0,0 +1,3 @@
/.cache
/site
.DS_Store
+71
View File
@@ -0,0 +1,71 @@
# Вклад в документацию
Этот файл содержит руководство по внесению изменений в документацию.
## Принципы написания документации
### Язык и стиль
- Пишите простым и понятным языком
- Избегайте жаргона и сложных технических терминов без объяснения
- Используйте активный залог
- Обращайтесь к пользователю на "вы"
- Поддерживайте единый стиль во всех документах
### Форматирование
- Используйте Markdown для форматирования
- Заголовки должны быть иерархичными (H1 → H2 → H3)
- Списки используйте для перечислений
- Код и команды оформляйте в блоки кода
- Ссылки делайте относительными внутри документации
### Примеры
- Приводите примеры конфигурации
- Показывайте скриншоты для важных шагов
- Добавляйте таблицы для сравнения опций
## Внесение изменений
### Исправление ошибок
Если вы нашли ошибку в документации:
1. Создайте ветку от `main`
2. Внесите исправления
3. Отправьте изменения на ревью
### Добавление нового раздела
Для добавления нового раздела:
1. Обсудите необходимость раздела в чате поддержки
2. Создайте план раздела
3. Напишите черновик
4. Отправьте на ревью
### Обновление существующих разделов
При обновлении информации:
1. Проверьте актуальность информации
2. Внесите изменения
3. Обновите дату последнего изменения (если применимо)
4. Отправьте на ревью
## Проверка документации
Перед отправкой изменений:
1. Проверьте орфографию и пунктуацию
2. Убедитесь, что все ссылки работают
3. Проверьте форматирование Markdown
4. Убедитесь, что примеры кода корректны
5. Проверьте согласованность с другими разделами
## Обратная связь
Если у вас есть предложения по улучшению документации:
...
+10
View File
@@ -0,0 +1,10 @@
FROM squidfunk/mkdocs-material AS builder
COPY . /docs
RUN mkdocs build
FROM nginx:alpine AS iptv-docs
COPY --from=builder /docs/site /usr/share/nginx/html
WORKDIR /usr/share/nginx/html
USER root
EXPOSE 80
CMD [ "nginx", "-g", "daemon off;" ]
+47
View File
@@ -0,0 +1,47 @@
.DEFAULT_GOAL := help
.PHONY: live site image run help
## live: Run mkdocs with live-reloading (localhost:3000)
live:
@echo "Wait until container starts and open http://localhost:3000 to see live preview"
@docker run \
--pull always \
--rm \
--interactive \
--tty \
--publish 3000:8000 \
--volume ${PWD}:/docs \
--name my-project-docs-dev \
squidfunk/mkdocs-material:9.6.20
## site: Build local static site
site:
@echo "Wait until mkdocs finish"
@docker run \
--pull always \
--rm \
--interactive \
--tty \
--volume ${PWD}:/docs \
--name my-project-docs-dev \
squidfunk/mkdocs-material:9.6.20 build
## image: Build docker image
image:
@docker build \
--tag my-project-docs-dev:latest \
.
## run: Run docker image (localhost:3001)
run:
@echo "Wait until container starts and open http://localhost:3001 to see ready static website"
@docker run \
--rm \
--publish 3001:80 \
--name my-project-docs-dev \
my-project-docs-dev:latest
## help: Show this message and exit
help: Makefile
@echo "Available recipes:"
@sed -n 's/^##/ /p' $< | column -t -s ':'
+7
View File
@@ -0,0 +1,7 @@
# Пример документации к проекту
* `make live` -- запуск в режиме живой перезагрузки для отладки
* `make site` -- генерация статического сайта
* `make image` -- генерация docker-образа
* `make run` -- запуск контейнера из docker-образа
* `make help` -- справка по командам
+130
View File
@@ -0,0 +1,130 @@
---
title: Глоссарий терминов
icon: material/format-text
---
# Глоссарий терминов
Справочник терминов, используемых в документации Koda.
## A
**Agent (Агент)** — режим работы Koda, в котором AI самостоятельно выполняет многошаговые задачи, используя различные инструменты.
**API Key (API-ключ)** — уникальный ключ для доступа к API провайдера моделей (OpenAI, Anthropic и др.).
**Autocomplete (Автодополнение)** — режим автоматического предложения продолжения кода при наборе.
## C
**Chat (Чат)** — режим диалога с AI-моделью для решения задач, объяснения кода и получения рекомендаций.
**Completion** — см. Autocomplete.
**Config (Конфигурация)** — файл настроек Koda (`config.yaml`), определяющий модели, провайдеров и параметры.
**Context (Контекст)** — информация, которую Koda использует для генерации ответов (файлы, код, документация).
**Context Provider (Контекстный провайдер)** — компонент, автоматически добавляющий релевантную информацию в запросы через символ <kbd>@</kbd> (file, code, docs, codebase, diff, terminal и др.). Подробнее в [Контекст-провайдеры](context-providers.md).
## D
**Diff (Дифф)** — разница между двумя версиями файла, показывающая изменения.
## E
**Edit (Редактирование)** — режим изменения выделенного кода по инструкции пользователя.
**Embeddings (Эмбеддинги)** — векторные представления текста для поиска по семантическому сходству.
## F
**FIM (Fill-In-Middle)** — техника автодополнения, когда модель заполняет текст между префиксом и суффиксом.
## I
**Indexing (Индексация)** — процесс анализа и векторизации кодовой базы или документации для быстрого поиска.
## L
**LLM (Large Language Model)** — большая языковая модель, используемая для генерации текста и кода.
## M
**Model (Модель)** — AI-модель, используемая для генерации ответов (GPT-4, Claude, Llama и др.).
**Model Role (Роль модели)** — назначение модели в Koda (chat, edit, agent, autocomplete, embed, rerank).
## P
**Provider (Провайдер)** — сервис, предоставляющий доступ к AI-моделям (OpenAI, Anthropic, Ollama и др.).
**Prompt (Промпт)** — текстовый запрос к AI-модели.
## R
**RAG (Retrieval-Augmented Generation)** — техника генерации ответов с использованием поиска по внешней базе знаний.
**Retrieval (Поиск)** — режим поиска по документации и другим источникам информации.
**Roles (Роли)** — см. Model Role.
## S
**Session (Сессия)** — отдельный диалог в чате Koda со своей историей и контекстом.
**Session History (История сессий)** — список всех предыдущих сессий с возможностью поиска, переключения и удаления.
**Session Metadata (Метаданные сессии)** — информация о сессии: ID, заголовок, дата создания, режим работы, рабочая директория.
**Session Storage (Хранилище сессий)** — место сохранения данных сессий (локальные файлы `~/.koda/sessions/` или серверное хранилище).
**Summarization (Суммаризация)** — процесс сжатия длинной истории диалога в краткое содержание для экономии токенов.
**SummaryMarker (Маркер суммаризации)** — визуальный индикатор в истории чата, показывающий где была применена суммаризация.
**Auto-Summarize (Автосуммаризация)** — автоматическая суммаризация при достижении 75% использования контекста (только Agent режим).
**Skill (Навык)** — переиспользуемый набор инструкций для AI-модели, хранящийся в отдельном файле.
**Slash Command (Slash-команда)** — специальная команда, начинающаяся с <kbd>@</kbd> (например, /share, /commit, /summarize).
## T
**Token (Токен)** — единица измерения длины текста для AI-моделей (примерно ¾ слова).
**Tool (Инструмент)** — действие, которое агент может выполнить (читать файл, редактировать код, запускать команду).
## V
:material-microsoft-visual-studio-code: **VS Code** — Visual Studio Code, среда разработки от Microsoft.
## W
**Workspace (Рабочая область)** — проект или директория, открытая в IDE.
## Ё
**Ёфикация** — использование буквы "ё" вместо "е" в русских текстах документации.
---
## Сокращения
| Сокращение | Расшифровка |
|------------|-------------|
| AI | Artificial Intelligence (Искусственный интеллект) |
| API | Application Programming Interface |
| IDE | Integrated Development Environment |
| LLM | Large Language Model |
| [RAG] | Retrieval-Augmented Generation |
| :material-microsoft-visual-studio-code: VS Code | Visual Studio Code |
| FIM | Fill-In-Middle |
---
## Дополнительные ресурсы
- [Основная документация](README.md)
- [Режимы работы](modes.md)
- [Инструменты агента](agent-tools.md)
+10
View File
@@ -0,0 +1,10 @@
---
title: Главная страница
description: Описание главной страницы
# keywords: []
# hide: []
---
# Введение
:vscode-logo: asdfaskdfnj
+10
View File
@@ -0,0 +1,10 @@
---
title: Страница 1
description: Описание страницы 1
keywords: ["foo", "bar"]
hide: ["toc"]
---
# Заголовок страницы 1
Lorem ipsum dolor sit amet
+10
View File
@@ -0,0 +1,10 @@
---
title: Страница 2
description: Описание страницы 1
keywords: ["bar", "baz"]
# hide: ["toc"]
---
# Заголовок страницы 2
Lorem ipsum dolor sit amet
+14
View File
@@ -0,0 +1,14 @@
---
title: Теги
icon: material/tag-text
---
# Теги документации
Здесь перечислены все теги, которые встречаются на страницах документации.
Нажмите на ссылку для перехода к странице, которая содержит тег.
---
<!-- material/tags -->
+549
View File
@@ -0,0 +1,549 @@
| asdf | asdf |
|---|---|
| :vscode-account: | `:vscode-account:` |
| :vscode-activate-breakpoints: | `:vscode-activate-breakpoints:` |
| :vscode-add: | `:vscode-add:` |
| :vscode-add-small: | `:vscode-add-small:` |
| :vscode-agent: | `:vscode-agent:` |
| :vscode-archive: | `:vscode-archive:` |
| :vscode-arrow-both: | `:vscode-arrow-both:` |
| :vscode-arrow-circle-down: | `:vscode-arrow-circle-down:` |
| :vscode-arrow-circle-left: | `:vscode-arrow-circle-left:` |
| :vscode-arrow-circle-right: | `:vscode-arrow-circle-right:` |
| :vscode-arrow-circle-up: | `:vscode-arrow-circle-up:` |
| :vscode-arrow-down: | `:vscode-arrow-down:` |
| :vscode-arrow-left: | `:vscode-arrow-left:` |
| :vscode-arrow-right: | `:vscode-arrow-right:` |
| :vscode-arrow-small-down: | `:vscode-arrow-small-down:` |
| :vscode-arrow-small-left: | `:vscode-arrow-small-left:` |
| :vscode-arrow-small-right: | `:vscode-arrow-small-right:` |
| :vscode-arrow-small-up: | `:vscode-arrow-small-up:` |
| :vscode-arrow-swap: | `:vscode-arrow-swap:` |
| :vscode-arrow-up: | `:vscode-arrow-up:` |
| :vscode-ask: | `:vscode-ask:` |
| :vscode-attach: | `:vscode-attach:` |
| :vscode-azure: | `:vscode-azure:` |
| :vscode-azure-devops: | `:vscode-azure-devops:` |
| :vscode-beaker: | `:vscode-beaker:` |
| :vscode-beaker-stop: | `:vscode-beaker-stop:` |
| :vscode-bell: | `:vscode-bell:` |
| :vscode-bell-dot: | `:vscode-bell-dot:` |
| :vscode-bell-slash: | `:vscode-bell-slash:` |
| :vscode-bell-slash-dot: | `:vscode-bell-slash-dot:` |
| :vscode-blank: | `:vscode-blank:` |
| :vscode-bold: | `:vscode-bold:` |
| :vscode-book: | `:vscode-book:` |
| :vscode-bookmark: | `:vscode-bookmark:` |
| :vscode-bracket-dot: | `:vscode-bracket-dot:` |
| :vscode-bracket-error: | `:vscode-bracket-error:` |
| :vscode-briefcase: | `:vscode-briefcase:` |
| :vscode-broadcast: | `:vscode-broadcast:` |
| :vscode-browser: | `:vscode-browser:` |
| :vscode-bug: | `:vscode-bug:` |
| :vscode-build: | `:vscode-build:` |
| :vscode-calendar: | `:vscode-calendar:` |
| :vscode-call-incoming: | `:vscode-call-incoming:` |
| :vscode-call-outgoing: | `:vscode-call-outgoing:` |
| :vscode-case-sensitive: | `:vscode-case-sensitive:` |
| :vscode-chat-export: | `:vscode-chat-export:` |
| :vscode-chat-import: | `:vscode-chat-import:` |
| :vscode-chat-sparkle: | `:vscode-chat-sparkle:` |
| :vscode-chat-sparkle-error: | `:vscode-chat-sparkle-error:` |
| :vscode-chat-sparkle-warning: | `:vscode-chat-sparkle-warning:` |
| :vscode-check: | `:vscode-check:` |
| :vscode-check-all: | `:vscode-check-all:` |
| :vscode-checklist: | `:vscode-checklist:` |
| :vscode-chevron-down: | `:vscode-chevron-down:` |
| :vscode-chevron-left: | `:vscode-chevron-left:` |
| :vscode-chevron-right: | `:vscode-chevron-right:` |
| :vscode-chevron-up: | `:vscode-chevron-up:` |
| :vscode-chip: | `:vscode-chip:` |
| :vscode-chrome-close: | `:vscode-chrome-close:` |
| :vscode-chrome-maximize: | `:vscode-chrome-maximize:` |
| :vscode-chrome-minimize: | `:vscode-chrome-minimize:` |
| :vscode-chrome-restore: | `:vscode-chrome-restore:` |
| :vscode-circle: | `:vscode-circle:` |
| :vscode-circle-filled: | `:vscode-circle-filled:` |
| :vscode-circle-large: | `:vscode-circle-large:` |
| :vscode-circle-large-filled: | `:vscode-circle-large-filled:` |
| :vscode-circle-slash: | `:vscode-circle-slash:` |
| :vscode-circle-small: | `:vscode-circle-small:` |
| :vscode-circle-small-filled: | `:vscode-circle-small-filled:` |
| :vscode-circuit-board: | `:vscode-circuit-board:` |
| :vscode-claude: | `:vscode-claude:` |
| :vscode-clear-all: | `:vscode-clear-all:` |
| :vscode-clippy: | `:vscode-clippy:` |
| :vscode-clockface: | `:vscode-clockface:` |
| :vscode-close: | `:vscode-close:` |
| :vscode-close-all: | `:vscode-close-all:` |
| :vscode-cloud: | `:vscode-cloud:` |
| :vscode-cloud-download: | `:vscode-cloud-download:` |
| :vscode-cloud-small: | `:vscode-cloud-small:` |
| :vscode-cloud-upload: | `:vscode-cloud-upload:` |
| :vscode-code: | `:vscode-code:` |
| :vscode-code-oss: | `:vscode-code-oss:` |
| :vscode-code-review: | `:vscode-code-review:` |
| :vscode-coffee: | `:vscode-coffee:` |
| :vscode-collapse-all: | `:vscode-collapse-all:` |
| :vscode-collection: | `:vscode-collection:` |
| :vscode-collection-small: | `:vscode-collection-small:` |
| :vscode-color-mode: | `:vscode-color-mode:` |
| :vscode-combine: | `:vscode-combine:` |
| :vscode-comment: | `:vscode-comment:` |
| :vscode-comment-discussion: | `:vscode-comment-discussion:` |
| :vscode-comment-discussion-quote: | `:vscode-comment-discussion-quote:` |
| :vscode-comment-discussion-sparkle: | `:vscode-comment-discussion-sparkle:` |
| :vscode-comment-draft: | `:vscode-comment-draft:` |
| :vscode-comment-unresolved: | `:vscode-comment-unresolved:` |
| :vscode-compass: | `:vscode-compass:` |
| :vscode-compass-active: | `:vscode-compass-active:` |
| :vscode-compass-dot: | `:vscode-compass-dot:` |
| :vscode-copilot: | `:vscode-copilot:` |
| :vscode-copilot-blocked: | `:vscode-copilot-blocked:` |
| :vscode-copilot-error: | `:vscode-copilot-error:` |
| :vscode-copilot-in-progress: | `:vscode-copilot-in-progress:` |
| :vscode-copilot-large: | `:vscode-copilot-large:` |
| :vscode-copilot-not-connected: | `:vscode-copilot-not-connected:` |
| :vscode-copilot-snooze: | `:vscode-copilot-snooze:` |
| :vscode-copilot-success: | `:vscode-copilot-success:` |
| :vscode-copilot-unavailable: | `:vscode-copilot-unavailable:` |
| :vscode-copilot-warning: | `:vscode-copilot-warning:` |
| :vscode-copilot-warning-large: | `:vscode-copilot-warning-large:` |
| :vscode-copy: | `:vscode-copy:` |
| :vscode-coverage: | `:vscode-coverage:` |
| :vscode-credit-card: | `:vscode-credit-card:` |
| :vscode-cursor: | `:vscode-cursor:` |
| :vscode-dash: | `:vscode-dash:` |
| :vscode-dashboard: | `:vscode-dashboard:` |
| :vscode-database: | `:vscode-database:` |
| :vscode-debug: | `:vscode-debug:` |
| :vscode-debug-all: | `:vscode-debug-all:` |
| :vscode-debug-alt: | `:vscode-debug-alt:` |
| :vscode-debug-alt-small: | `:vscode-debug-alt-small:` |
| :vscode-debug-breakpoint-conditional: | `:vscode-debug-breakpoint-conditional:` |
| :vscode-debug-breakpoint-conditional-unverified: | `:vscode-debug-breakpoint-conditional-unverified:` |
| :vscode-debug-breakpoint-data: | `:vscode-debug-breakpoint-data:` |
| :vscode-debug-breakpoint-data-unverified: | `:vscode-debug-breakpoint-data-unverified:` |
| :vscode-debug-breakpoint-function: | `:vscode-debug-breakpoint-function:` |
| :vscode-debug-breakpoint-function-unverified: | `:vscode-debug-breakpoint-function-unverified:` |
| :vscode-debug-breakpoint-log: | `:vscode-debug-breakpoint-log:` |
| :vscode-debug-breakpoint-log-unverified: | `:vscode-debug-breakpoint-log-unverified:` |
| :vscode-debug-breakpoint-unsupported: | `:vscode-debug-breakpoint-unsupported:` |
| :vscode-debug-connected: | `:vscode-debug-connected:` |
| :vscode-debug-console: | `:vscode-debug-console:` |
| :vscode-debug-continue: | `:vscode-debug-continue:` |
| :vscode-debug-continue-small: | `:vscode-debug-continue-small:` |
| :vscode-debug-coverage: | `:vscode-debug-coverage:` |
| :vscode-debug-disconnect: | `:vscode-debug-disconnect:` |
| :vscode-debug-line-by-line: | `:vscode-debug-line-by-line:` |
| :vscode-debug-pause: | `:vscode-debug-pause:` |
| :vscode-debug-rerun: | `:vscode-debug-rerun:` |
| :vscode-debug-restart: | `:vscode-debug-restart:` |
| :vscode-debug-restart-frame: | `:vscode-debug-restart-frame:` |
| :vscode-debug-reverse-continue: | `:vscode-debug-reverse-continue:` |
| :vscode-debug-stackframe: | `:vscode-debug-stackframe:` |
| :vscode-debug-stackframe-active: | `:vscode-debug-stackframe-active:` |
| :vscode-debug-start: | `:vscode-debug-start:` |
| :vscode-debug-step-back: | `:vscode-debug-step-back:` |
| :vscode-debug-step-into: | `:vscode-debug-step-into:` |
| :vscode-debug-step-out: | `:vscode-debug-step-out:` |
| :vscode-debug-step-over: | `:vscode-debug-step-over:` |
| :vscode-debug-stop: | `:vscode-debug-stop:` |
| :vscode-desktop-download: | `:vscode-desktop-download:` |
| :vscode-device-camera: | `:vscode-device-camera:` |
| :vscode-device-camera-video: | `:vscode-device-camera-video:` |
| :vscode-device-mobile: | `:vscode-device-mobile:` |
| :vscode-diff: | `:vscode-diff:` |
| :vscode-diff-added: | `:vscode-diff-added:` |
| :vscode-diff-ignored: | `:vscode-diff-ignored:` |
| :vscode-diff-modified: | `:vscode-diff-modified:` |
| :vscode-diff-multiple: | `:vscode-diff-multiple:` |
| :vscode-diff-removed: | `:vscode-diff-removed:` |
| :vscode-diff-renamed: | `:vscode-diff-renamed:` |
| :vscode-diff-single: | `:vscode-diff-single:` |
| :vscode-discard: | `:vscode-discard:` |
| :vscode-download: | `:vscode-download:` |
| :vscode-edit: | `:vscode-edit:` |
| :vscode-edit-code: | `:vscode-edit-code:` |
| :vscode-edit-session: | `:vscode-edit-session:` |
| :vscode-edit-sparkle: | `:vscode-edit-sparkle:` |
| :vscode-editor-layout: | `:vscode-editor-layout:` |
| :vscode-ellipsis: | `:vscode-ellipsis:` |
| :vscode-empty-window: | `:vscode-empty-window:` |
| :vscode-eraser: | `:vscode-eraser:` |
| :vscode-error: | `:vscode-error:` |
| :vscode-error-small: | `:vscode-error-small:` |
| :vscode-exclude: | `:vscode-exclude:` |
| :vscode-expand-all: | `:vscode-expand-all:` |
| :vscode-export: | `:vscode-export:` |
| :vscode-extensions: | `:vscode-extensions:` |
| :vscode-extensions-large: | `:vscode-extensions-large:` |
| :vscode-eye: | `:vscode-eye:` |
| :vscode-eye-closed: | `:vscode-eye-closed:` |
| :vscode-feedback: | `:vscode-feedback:` |
| :vscode-file: | `:vscode-file:` |
| :vscode-file-binary: | `:vscode-file-binary:` |
| :vscode-file-code: | `:vscode-file-code:` |
| :vscode-file-media: | `:vscode-file-media:` |
| :vscode-file-pdf: | `:vscode-file-pdf:` |
| :vscode-file-submodule: | `:vscode-file-submodule:` |
| :vscode-file-symlink-directory: | `:vscode-file-symlink-directory:` |
| :vscode-file-symlink-file: | `:vscode-file-symlink-file:` |
| :vscode-file-text: | `:vscode-file-text:` |
| :vscode-file-zip: | `:vscode-file-zip:` |
| :vscode-files: | `:vscode-files:` |
| :vscode-filter: | `:vscode-filter:` |
| :vscode-filter-filled: | `:vscode-filter-filled:` |
| :vscode-flag: | `:vscode-flag:` |
| :vscode-flame: | `:vscode-flame:` |
| :vscode-fold: | `:vscode-fold:` |
| :vscode-fold-down: | `:vscode-fold-down:` |
| :vscode-fold-up: | `:vscode-fold-up:` |
| :vscode-folder: | `:vscode-folder:` |
| :vscode-folder-active: | `:vscode-folder-active:` |
| :vscode-folder-library: | `:vscode-folder-library:` |
| :vscode-folder-opened: | `:vscode-folder-opened:` |
| :vscode-forward: | `:vscode-forward:` |
| :vscode-game: | `:vscode-game:` |
| :vscode-gear: | `:vscode-gear:` |
| :vscode-gift: | `:vscode-gift:` |
| :vscode-gist: | `:vscode-gist:` |
| :vscode-gist-secret: | `:vscode-gist-secret:` |
| :vscode-git-branch: | `:vscode-git-branch:` |
| :vscode-git-branch-changes: | `:vscode-git-branch-changes:` |
| :vscode-git-branch-conflicts: | `:vscode-git-branch-conflicts:` |
| :vscode-git-branch-staged-changes: | `:vscode-git-branch-staged-changes:` |
| :vscode-git-commit: | `:vscode-git-commit:` |
| :vscode-git-compare: | `:vscode-git-compare:` |
| :vscode-git-fetch: | `:vscode-git-fetch:` |
| :vscode-git-merge: | `:vscode-git-merge:` |
| :vscode-git-pull-request: | `:vscode-git-pull-request:` |
| :vscode-git-pull-request-closed: | `:vscode-git-pull-request-closed:` |
| :vscode-git-pull-request-create: | `:vscode-git-pull-request-create:` |
| :vscode-git-pull-request-done: | `:vscode-git-pull-request-done:` |
| :vscode-git-pull-request-draft: | `:vscode-git-pull-request-draft:` |
| :vscode-git-pull-request-go-to-changes: | `:vscode-git-pull-request-go-to-changes:` |
| :vscode-git-pull-request-new-changes: | `:vscode-git-pull-request-new-changes:` |
| :vscode-git-stash: | `:vscode-git-stash:` |
| :vscode-git-stash-apply: | `:vscode-git-stash-apply:` |
| :vscode-git-stash-pop: | `:vscode-git-stash-pop:` |
| :vscode-github: | `:vscode-github:` |
| :vscode-github-action: | `:vscode-github-action:` |
| :vscode-github-alt: | `:vscode-github-alt:` |
| :vscode-github-inverted: | `:vscode-github-inverted:` |
| :vscode-github-project: | `:vscode-github-project:` |
| :vscode-globe: | `:vscode-globe:` |
| :vscode-go-to-editing-session: | `:vscode-go-to-editing-session:` |
| :vscode-go-to-file: | `:vscode-go-to-file:` |
| :vscode-go-to-search: | `:vscode-go-to-search:` |
| :vscode-grabber: | `:vscode-grabber:` |
| :vscode-graph: | `:vscode-graph:` |
| :vscode-graph-left: | `:vscode-graph-left:` |
| :vscode-graph-line: | `:vscode-graph-line:` |
| :vscode-graph-scatter: | `:vscode-graph-scatter:` |
| :vscode-gripper: | `:vscode-gripper:` |
| :vscode-group-by-ref-type: | `:vscode-group-by-ref-type:` |
| :vscode-heart: | `:vscode-heart:` |
| :vscode-heart-filled: | `:vscode-heart-filled:` |
| :vscode-history: | `:vscode-history:` |
| :vscode-home: | `:vscode-home:` |
| :vscode-horizontal-rule: | `:vscode-horizontal-rule:` |
| :vscode-hubot: | `:vscode-hubot:` |
| :vscode-inbox: | `:vscode-inbox:` |
| :vscode-indent: | `:vscode-indent:` |
| :vscode-index-zero: | `:vscode-index-zero:` |
| :vscode-info: | `:vscode-info:` |
| :vscode-insert: | `:vscode-insert:` |
| :vscode-inspect: | `:vscode-inspect:` |
| :vscode-issue-draft: | `:vscode-issue-draft:` |
| :vscode-issue-reopened: | `:vscode-issue-reopened:` |
| :vscode-issues: | `:vscode-issues:` |
| :vscode-italic: | `:vscode-italic:` |
| :vscode-jersey: | `:vscode-jersey:` |
| :vscode-json: | `:vscode-json:` |
| :vscode-kebab-vertical: | `:vscode-kebab-vertical:` |
| :vscode-key: | `:vscode-key:` |
| :vscode-keyboard-tab: | `:vscode-keyboard-tab:` |
| :vscode-keyboard-tab-above: | `:vscode-keyboard-tab-above:` |
| :vscode-keyboard-tab-below: | `:vscode-keyboard-tab-below:` |
| :vscode-law: | `:vscode-law:` |
| :vscode-layers: | `:vscode-layers:` |
| :vscode-layers-active: | `:vscode-layers-active:` |
| :vscode-layers-dot: | `:vscode-layers-dot:` |
| :vscode-layout: | `:vscode-layout:` |
| :vscode-layout-activitybar-left: | `:vscode-layout-activitybar-left:` |
| :vscode-layout-activitybar-right: | `:vscode-layout-activitybar-right:` |
| :vscode-layout-centered: | `:vscode-layout-centered:` |
| :vscode-layout-menubar: | `:vscode-layout-menubar:` |
| :vscode-layout-panel: | `:vscode-layout-panel:` |
| :vscode-layout-panel-center: | `:vscode-layout-panel-center:` |
| :vscode-layout-panel-dock: | `:vscode-layout-panel-dock:` |
| :vscode-layout-panel-justify: | `:vscode-layout-panel-justify:` |
| :vscode-layout-panel-left: | `:vscode-layout-panel-left:` |
| :vscode-layout-panel-off: | `:vscode-layout-panel-off:` |
| :vscode-layout-panel-right: | `:vscode-layout-panel-right:` |
| :vscode-layout-sidebar-left: | `:vscode-layout-sidebar-left:` |
| :vscode-layout-sidebar-left-dock: | `:vscode-layout-sidebar-left-dock:` |
| :vscode-layout-sidebar-left-off: | `:vscode-layout-sidebar-left-off:` |
| :vscode-layout-sidebar-right: | `:vscode-layout-sidebar-right:` |
| :vscode-layout-sidebar-right-dock: | `:vscode-layout-sidebar-right-dock:` |
| :vscode-layout-sidebar-right-off: | `:vscode-layout-sidebar-right-off:` |
| :vscode-layout-statusbar: | `:vscode-layout-statusbar:` |
| :vscode-library: | `:vscode-library:` |
| :vscode-lightbulb: | `:vscode-lightbulb:` |
| :vscode-lightbulb-autofix: | `:vscode-lightbulb-autofix:` |
| :vscode-lightbulb-empty: | `:vscode-lightbulb-empty:` |
| :vscode-lightbulb-sparkle: | `:vscode-lightbulb-sparkle:` |
| :vscode-link: | `:vscode-link:` |
| :vscode-link-external: | `:vscode-link-external:` |
| :vscode-list-filter: | `:vscode-list-filter:` |
| :vscode-list-flat: | `:vscode-list-flat:` |
| :vscode-list-ordered: | `:vscode-list-ordered:` |
| :vscode-list-selection: | `:vscode-list-selection:` |
| :vscode-list-tree: | `:vscode-list-tree:` |
| :vscode-list-unordered: | `:vscode-list-unordered:` |
| :vscode-live-share: | `:vscode-live-share:` |
| :vscode-loading: | `:vscode-loading:` |
| :vscode-location: | `:vscode-location:` |
| :vscode-lock: | `:vscode-lock:` |
| :vscode-lock-small: | `:vscode-lock-small:` |
| :vscode-magnet: | `:vscode-magnet:` |
| :vscode-mail: | `:vscode-mail:` |
| :vscode-mail-read: | `:vscode-mail-read:` |
| :vscode-map: | `:vscode-map:` |
| :vscode-map-filled: | `:vscode-map-filled:` |
| :vscode-map-vertical: | `:vscode-map-vertical:` |
| :vscode-map-vertical-filled: | `:vscode-map-vertical-filled:` |
| :vscode-markdown: | `:vscode-markdown:` |
| :vscode-mcp: | `:vscode-mcp:` |
| :vscode-megaphone: | `:vscode-megaphone:` |
| :vscode-mention: | `:vscode-mention:` |
| :vscode-menu: | `:vscode-menu:` |
| :vscode-merge: | `:vscode-merge:` |
| :vscode-merge-into: | `:vscode-merge-into:` |
| :vscode-mic: | `:vscode-mic:` |
| :vscode-mic-filled: | `:vscode-mic-filled:` |
| :vscode-milestone: | `:vscode-milestone:` |
| :vscode-mirror: | `:vscode-mirror:` |
| :vscode-mortar-board: | `:vscode-mortar-board:` |
| :vscode-move: | `:vscode-move:` |
| :vscode-multiple-windows: | `:vscode-multiple-windows:` |
| :vscode-music: | `:vscode-music:` |
| :vscode-mute: | `:vscode-mute:` |
| :vscode-new-collection: | `:vscode-new-collection:` |
| :vscode-new-file: | `:vscode-new-file:` |
| :vscode-new-folder: | `:vscode-new-folder:` |
| :vscode-new-session: | `:vscode-new-session:` |
| :vscode-newline: | `:vscode-newline:` |
| :vscode-no-newline: | `:vscode-no-newline:` |
| :vscode-note: | `:vscode-note:` |
| :vscode-notebook: | `:vscode-notebook:` |
| :vscode-notebook-template: | `:vscode-notebook-template:` |
| :vscode-octoface: | `:vscode-octoface:` |
| :vscode-open-in-product: | `:vscode-open-in-product:` |
| :vscode-open-in-window: | `:vscode-open-in-window:` |
| :vscode-open-preview: | `:vscode-open-preview:` |
| :vscode-openai: | `:vscode-openai:` |
| :vscode-organization: | `:vscode-organization:` |
| :vscode-output: | `:vscode-output:` |
| :vscode-package: | `:vscode-package:` |
| :vscode-paintcan: | `:vscode-paintcan:` |
| :vscode-pass: | `:vscode-pass:` |
| :vscode-pass-filled: | `:vscode-pass-filled:` |
| :vscode-percentage: | `:vscode-percentage:` |
| :vscode-person: | `:vscode-person:` |
| :vscode-person-add: | `:vscode-person-add:` |
| :vscode-piano: | `:vscode-piano:` |
| :vscode-pie-chart: | `:vscode-pie-chart:` |
| :vscode-pin: | `:vscode-pin:` |
| :vscode-pinned: | `:vscode-pinned:` |
| :vscode-pinned-dirty: | `:vscode-pinned-dirty:` |
| :vscode-play: | `:vscode-play:` |
| :vscode-play-circle: | `:vscode-play-circle:` |
| :vscode-plug: | `:vscode-plug:` |
| :vscode-preserve-case: | `:vscode-preserve-case:` |
| :vscode-preview: | `:vscode-preview:` |
| :vscode-primitive-square: | `:vscode-primitive-square:` |
| :vscode-project: | `:vscode-project:` |
| :vscode-pulse: | `:vscode-pulse:` |
| :vscode-python: | `:vscode-python:` |
| :vscode-question: | `:vscode-question:` |
| :vscode-quote: | `:vscode-quote:` |
| :vscode-quotes: | `:vscode-quotes:` |
| :vscode-radio-tower: | `:vscode-radio-tower:` |
| :vscode-reactions: | `:vscode-reactions:` |
| :vscode-record: | `:vscode-record:` |
| :vscode-record-keys: | `:vscode-record-keys:` |
| :vscode-record-small: | `:vscode-record-small:` |
| :vscode-redo: | `:vscode-redo:` |
| :vscode-references: | `:vscode-references:` |
| :vscode-refresh: | `:vscode-refresh:` |
| :vscode-regex: | `:vscode-regex:` |
| :vscode-remote: | `:vscode-remote:` |
| :vscode-remote-explorer: | `:vscode-remote-explorer:` |
| :vscode-remove: | `:vscode-remove:` |
| :vscode-remove-small: | `:vscode-remove-small:` |
| :vscode-rename: | `:vscode-rename:` |
| :vscode-replace: | `:vscode-replace:` |
| :vscode-replace-all: | `:vscode-replace-all:` |
| :vscode-reply: | `:vscode-reply:` |
| :vscode-repo: | `:vscode-repo:` |
| :vscode-repo-clone: | `:vscode-repo-clone:` |
| :vscode-repo-fetch: | `:vscode-repo-fetch:` |
| :vscode-repo-force-push: | `:vscode-repo-force-push:` |
| :vscode-repo-forked: | `:vscode-repo-forked:` |
| :vscode-repo-pinned: | `:vscode-repo-pinned:` |
| :vscode-repo-pull: | `:vscode-repo-pull:` |
| :vscode-repo-push: | `:vscode-repo-push:` |
| :vscode-repo-selected: | `:vscode-repo-selected:` |
| :vscode-report: | `:vscode-report:` |
| :vscode-request-changes: | `:vscode-request-changes:` |
| :vscode-robot: | `:vscode-robot:` |
| :vscode-rocket: | `:vscode-rocket:` |
| :vscode-root-folder: | `:vscode-root-folder:` |
| :vscode-root-folder-opened: | `:vscode-root-folder-opened:` |
| :vscode-rss: | `:vscode-rss:` |
| :vscode-ruby: | `:vscode-ruby:` |
| :vscode-run-above: | `:vscode-run-above:` |
| :vscode-run-all: | `:vscode-run-all:` |
| :vscode-run-all-coverage: | `:vscode-run-all-coverage:` |
| :vscode-run-below: | `:vscode-run-below:` |
| :vscode-run-coverage: | `:vscode-run-coverage:` |
| :vscode-run-errors: | `:vscode-run-errors:` |
| :vscode-run-with-deps: | `:vscode-run-with-deps:` |
| :vscode-save: | `:vscode-save:` |
| :vscode-save-all: | `:vscode-save-all:` |
| :vscode-save-as: | `:vscode-save-as:` |
| :vscode-screen-cut: | `:vscode-screen-cut:` |
| :vscode-screen-full: | `:vscode-screen-full:` |
| :vscode-screen-normal: | `:vscode-screen-normal:` |
| :vscode-search: | `:vscode-search:` |
| :vscode-search-fuzzy: | `:vscode-search-fuzzy:` |
| :vscode-search-large: | `:vscode-search-large:` |
| :vscode-search-sparkle: | `:vscode-search-sparkle:` |
| :vscode-search-stop: | `:vscode-search-stop:` |
| :vscode-send: | `:vscode-send:` |
| :vscode-send-to-remote-agent: | `:vscode-send-to-remote-agent:` |
| :vscode-server: | `:vscode-server:` |
| :vscode-server-environment: | `:vscode-server-environment:` |
| :vscode-server-process: | `:vscode-server-process:` |
| :vscode-session-in-progress: | `:vscode-session-in-progress:` |
| :vscode-settings: | `:vscode-settings:` |
| :vscode-settings-gear: | `:vscode-settings-gear:` |
| :vscode-share: | `:vscode-share:` |
| :vscode-share-window: | `:vscode-share-window:` |
| :vscode-shield: | `:vscode-shield:` |
| :vscode-sign-in: | `:vscode-sign-in:` |
| :vscode-sign-out: | `:vscode-sign-out:` |
| :vscode-skip: | `:vscode-skip:` |
| :vscode-smiley: | `:vscode-smiley:` |
| :vscode-snake: | `:vscode-snake:` |
| :vscode-sort-precedence: | `:vscode-sort-precedence:` |
| :vscode-source-control: | `:vscode-source-control:` |
| :vscode-sparkle: | `:vscode-sparkle:` |
| :vscode-sparkle-filled: | `:vscode-sparkle-filled:` |
| :vscode-split-horizontal: | `:vscode-split-horizontal:` |
| :vscode-split-vertical: | `:vscode-split-vertical:` |
| :vscode-squirrel: | `:vscode-squirrel:` |
| :vscode-star-empty: | `:vscode-star-empty:` |
| :vscode-star-full: | `:vscode-star-full:` |
| :vscode-star-half: | `:vscode-star-half:` |
| :vscode-stop-circle: | `:vscode-stop-circle:` |
| :vscode-strikethrough: | `:vscode-strikethrough:` |
| :vscode-surround-with: | `:vscode-surround-with:` |
| :vscode-symbol-array: | `:vscode-symbol-array:` |
| :vscode-symbol-boolean: | `:vscode-symbol-boolean:` |
| :vscode-symbol-class: | `:vscode-symbol-class:` |
| :vscode-symbol-color: | `:vscode-symbol-color:` |
| :vscode-symbol-constant: | `:vscode-symbol-constant:` |
| :vscode-symbol-enum: | `:vscode-symbol-enum:` |
| :vscode-symbol-enum-member: | `:vscode-symbol-enum-member:` |
| :vscode-symbol-event: | `:vscode-symbol-event:` |
| :vscode-symbol-field: | `:vscode-symbol-field:` |
| :vscode-symbol-file: | `:vscode-symbol-file:` |
| :vscode-symbol-interface: | `:vscode-symbol-interface:` |
| :vscode-symbol-key: | `:vscode-symbol-key:` |
| :vscode-symbol-keyword: | `:vscode-symbol-keyword:` |
| :vscode-symbol-method: | `:vscode-symbol-method:` |
| :vscode-symbol-method-arrow: | `:vscode-symbol-method-arrow:` |
| :vscode-symbol-misc: | `:vscode-symbol-misc:` |
| :vscode-symbol-namespace: | `:vscode-symbol-namespace:` |
| :vscode-symbol-numeric: | `:vscode-symbol-numeric:` |
| :vscode-symbol-operator: | `:vscode-symbol-operator:` |
| :vscode-symbol-parameter: | `:vscode-symbol-parameter:` |
| :vscode-symbol-property: | `:vscode-symbol-property:` |
| :vscode-symbol-ruler: | `:vscode-symbol-ruler:` |
| :vscode-symbol-snippet: | `:vscode-symbol-snippet:` |
| :vscode-symbol-string: | `:vscode-symbol-string:` |
| :vscode-symbol-structure: | `:vscode-symbol-structure:` |
| :vscode-symbol-variable: | `:vscode-symbol-variable:` |
| :vscode-sync: | `:vscode-sync:` |
| :vscode-sync-ignored: | `:vscode-sync-ignored:` |
| :vscode-table: | `:vscode-table:` |
| :vscode-tag: | `:vscode-tag:` |
| :vscode-target: | `:vscode-target:` |
| :vscode-tasklist: | `:vscode-tasklist:` |
| :vscode-telescope: | `:vscode-telescope:` |
| :vscode-terminal: | `:vscode-terminal:` |
| :vscode-terminal-bash: | `:vscode-terminal-bash:` |
| :vscode-terminal-cmd: | `:vscode-terminal-cmd:` |
| :vscode-terminal-debian: | `:vscode-terminal-debian:` |
| :vscode-terminal-git-bash: | `:vscode-terminal-git-bash:` |
| :vscode-terminal-linux: | `:vscode-terminal-linux:` |
| :vscode-terminal-powershell: | `:vscode-terminal-powershell:` |
| :vscode-terminal-secure: | `:vscode-terminal-secure:` |
| :vscode-terminal-tmux: | `:vscode-terminal-tmux:` |
| :vscode-terminal-ubuntu: | `:vscode-terminal-ubuntu:` |
| :vscode-text-size: | `:vscode-text-size:` |
| :vscode-thinking: | `:vscode-thinking:` |
| :vscode-three-bars: | `:vscode-three-bars:` |
| :vscode-thumbsdown: | `:vscode-thumbsdown:` |
| :vscode-thumbsdown-filled: | `:vscode-thumbsdown-filled:` |
| :vscode-thumbsup: | `:vscode-thumbsup:` |
| :vscode-thumbsup-filled: | `:vscode-thumbsup-filled:` |
| :vscode-tools: | `:vscode-tools:` |
| :vscode-trash: | `:vscode-trash:` |
| :vscode-triangle-down: | `:vscode-triangle-down:` |
| :vscode-triangle-left: | `:vscode-triangle-left:` |
| :vscode-triangle-right: | `:vscode-triangle-right:` |
| :vscode-triangle-up: | `:vscode-triangle-up:` |
| :vscode-twitter: | `:vscode-twitter:` |
| :vscode-type-hierarchy: | `:vscode-type-hierarchy:` |
| :vscode-type-hierarchy-sub: | `:vscode-type-hierarchy-sub:` |
| :vscode-type-hierarchy-super: | `:vscode-type-hierarchy-super:` |
| :vscode-unarchive: | `:vscode-unarchive:` |
| :vscode-unfold: | `:vscode-unfold:` |
| :vscode-ungroup-by-ref-type: | `:vscode-ungroup-by-ref-type:` |
| :vscode-unlock: | `:vscode-unlock:` |
| :vscode-unmute: | `:vscode-unmute:` |
| :vscode-unverified: | `:vscode-unverified:` |
| :vscode-variable-group: | `:vscode-variable-group:` |
| :vscode-verified: | `:vscode-verified:` |
| :vscode-verified-filled: | `:vscode-verified-filled:` |
| :vscode-versions: | `:vscode-versions:` |
| :vscode-vm: | `:vscode-vm:` |
| :vscode-vm-active: | `:vscode-vm-active:` |
| :vscode-vm-connect: | `:vscode-vm-connect:` |
| :vscode-vm-outline: | `:vscode-vm-outline:` |
| :vscode-vm-pending: | `:vscode-vm-pending:` |
| :vscode-vm-running: | `:vscode-vm-running:` |
| :vscode-vm-small: | `:vscode-vm-small:` |
| :vscode-vr: | `:vscode-vr:` |
| :vscode-vscode: | `:vscode-vscode:` |
| :vscode-vscode-insiders: | `:vscode-vscode-insiders:` |
| :vscode-wand: | `:vscode-wand:` |
| :vscode-warning: | `:vscode-warning:` |
| :vscode-watch: | `:vscode-watch:` |
| :vscode-whitespace: | `:vscode-whitespace:` |
| :vscode-whole-word: | `:vscode-whole-word:` |
| :vscode-window: | `:vscode-window:` |
| :vscode-window-active: | `:vscode-window-active:` |
| :vscode-word-wrap: | `:vscode-word-wrap:` |
| :vscode-workspace-trusted: | `:vscode-workspace-trusted:` |
| :vscode-workspace-unknown: | `:vscode-workspace-unknown:` |
| :vscode-workspace-untrusted: | `:vscode-workspace-untrusted:` |
| :vscode-worktree: | `:vscode-worktree:` |
| :vscode-worktree-small: | `:vscode-worktree-small:` |
| :vscode-zoom-in: | `:vscode-zoom-in:` |
| :vscode-zoom-out: | `:vscode-zoom-out:` |
+142
View File
@@ -0,0 +1,142 @@
site_name: Документация
site_description: Описание проекта и его компонентов
site_author: Иван Иванов
copyright: Иван Иванов &copy; 2026, MIT License
repo_name: Репозиторий
repo_url: https://git.axenov.dev/anthony/mkdocs-boilerplate
edit_uri: src/branch/master/content/
remote_branch: master
docs_dir: ./content
use_directory_urls: false
watch:
- content
- snippets
extra_css:
- css/custom.css
# extra_javascript:
# - https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js
extra:
homepage: /docs
logo: assets/img/favicon/logo.png
favicon: assets/img/favicon/logo.png
social:
- name: Telegram
icon: simple/telegram
link: https://t.me/
- name: YouTube
icon: simple/youtube
link: https://www.youtube.com/
alternate:
- name: Русский
link: /
lang: ru
- name: English
link: /en/
lang: en
theme:
name: 'material'
language: ru
custom_dir: overrides
features:
- content.action.edit
- content.tabs.link
- navigation.footer
- navigation.indexes
- navigation.path
- navigation.sections
# - navigation.expand
- navigation.tabs
- navigation.top
- navigation.tracking
- search.suggest
- toc.follow
icon:
repo: simple/github
edit: material/pencil
view: material/eye
annotation: material/chevron-right-circle
palette:
# Автотема
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Включить тёмную тему
# Тёмная тема
- scheme: slate
media: "(prefers-color-scheme: light)"
accent: teal
primary: black
toggle:
name: Включить светлую тему
icon: material/weather-sunny
# Светлая тема
- scheme: default
media: "(prefers-color-scheme: dark)"
accent: teal
primary: teal
toggle:
name: Предпочесть системную тему
icon: material/weather-night
plugins:
- minify:
minify_html: true
- tags:
listings: true
tags_hierarchy: true
tags_hierarchy_separator: /
tags_name_property: keywords
# shadow: true
export: true
listings_toc: true
- social:
cards_layout_options:
background_color: teal
background_image: null
- search:
separator: '[\s\-\.]+'
# indexing: 'full'
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
anchors: warn
markdown_extensions:
- admonition
- attr_list
- md_in_html
- footnotes
- pymdownx.details
- pymdownx.superfences
- pymdownx.tasklist:
clickable_checkbox: false
- pymdownx.snippets:
base_path: snippets
# auto_append:
# - abbr.md
- toc:
permalink: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
options:
custom_icons:
- overrides/.icons
nav:
- index.md
- "Раздел 1":
- part1/page1.md
- part1/page2.md
- "Доп. сведения":
- vscode-icons.md # debug
- glossary.md
- tags.md
+399
View File
@@ -0,0 +1,399 @@
Attribution 4.0 International
=======================================================================
Creative Commons Corporation ("Creative Commons") is not a law firm and
does not provide legal services or legal advice. Distribution of
Creative Commons public licenses does not create a lawyer-client or
other relationship. Creative Commons makes its licenses and related
information available on an "as-is" basis. Creative Commons gives no
warranties regarding its licenses, any material licensed under their
terms and conditions, or any related information. Creative Commons
disclaims all liability for damages resulting from their use to the
fullest extent possible.
Using Creative Commons Public Licenses
Creative Commons public licenses provide a standard set of terms and
conditions that creators and other rights holders may use to share
original works of authorship and other material subject to copyright
and certain other rights specified in the public license below. The
following considerations are for informational purposes only, are not
exhaustive, and do not form part of our licenses.
Considerations for licensors: Our public licenses are
intended for use by those authorized to give the public
permission to use material in ways otherwise restricted by
copyright and certain other rights. Our licenses are
irrevocable. Licensors should read and understand the terms
and conditions of the license they choose before applying it.
Licensors should also secure all rights necessary before
applying our licenses so that the public can reuse the
material as expected. Licensors should clearly mark any
material not subject to the license. This includes other CC-
licensed material, or material used under an exception or
limitation to copyright. More considerations for licensors:
wiki.creativecommons.org/Considerations_for_licensors
Considerations for the public: By using one of our public
licenses, a licensor grants the public permission to use the
licensed material under specified terms and conditions. If
the licensor's permission is not necessary for any reason--for
example, because of any applicable exception or limitation to
copyright--then that use is not regulated by the license. Our
licenses grant only permissions under copyright and certain
other rights that a licensor has authority to grant. Use of
the licensed material may still be restricted for other
reasons, including because others have copyright or other
rights in the material. A licensor may make special requests,
such as asking that all changes be marked or described.
Although not required by our licenses, you are encouraged to
respect those requests where reasonable. More_considerations
for the public:
wiki.creativecommons.org/Considerations_for_licensees
=======================================================================
Creative Commons Attribution 4.0 International Public License
By exercising the Licensed Rights (defined below), You accept and agree
to be bound by the terms and conditions of this Creative Commons
Attribution 4.0 International Public License ("Public License"). To the
extent this Public License may be interpreted as a contract, You are
granted the Licensed Rights in consideration of Your acceptance of
these terms and conditions, and the Licensor grants You such rights in
consideration of benefits the Licensor receives from making the
Licensed Material available under these terms and conditions.
Section 1 -- Definitions.
a. Adapted Material means material subject to Copyright and Similar
Rights that is derived from or based upon the Licensed Material
and in which the Licensed Material is translated, altered,
arranged, transformed, or otherwise modified in a manner requiring
permission under the Copyright and Similar Rights held by the
Licensor. For purposes of this Public License, where the Licensed
Material is a musical work, performance, or sound recording,
Adapted Material is always produced where the Licensed Material is
synched in timed relation with a moving image.
b. Adapter's License means the license You apply to Your Copyright
and Similar Rights in Your contributions to Adapted Material in
accordance with the terms and conditions of this Public License.
c. Copyright and Similar Rights means copyright and/or similar rights
closely related to copyright including, without limitation,
performance, broadcast, sound recording, and Sui Generis Database
Rights, without regard to how the rights are labeled or
categorized. For purposes of this Public License, the rights
specified in Section 2(b)(1)-(2) are not Copyright and Similar
Rights.
d. Effective Technological Measures means those measures that, in the
absence of proper authority, may not be circumvented under laws
fulfilling obligations under Article 11 of the WIPO Copyright
Treaty adopted on December 20, 1996, and/or similar international
agreements.
e. Exceptions and Limitations means fair use, fair dealing, and/or
any other exception or limitation to Copyright and Similar Rights
that applies to Your use of the Licensed Material.
f. Licensed Material means the artistic or literary work, database,
or other material to which the Licensor applied this Public
License.
g. Licensed Rights means the rights granted to You subject to the
terms and conditions of this Public License, which are limited to
all Copyright and Similar Rights that apply to Your use of the
Licensed Material and that the Licensor has authority to license.
h. Licensor means the individual(s) or entity(ies) granting rights
under this Public License.
i. Share means to provide material to the public by any means or
process that requires permission under the Licensed Rights, such
as reproduction, public display, public performance, distribution,
dissemination, communication, or importation, and to make material
available to the public including in ways that members of the
public may access the material from a place and at a time
individually chosen by them.
j. Sui Generis Database Rights means rights other than copyright
resulting from Directive 96/9/EC of the European Parliament and of
the Council of 11 March 1996 on the legal protection of databases,
as amended and/or succeeded, as well as other essentially
equivalent rights anywhere in the world.
k. You means the individual or entity exercising the Licensed Rights
under this Public License. Your has a corresponding meaning.
Section 2 -- Scope.
a. License grant.
1. Subject to the terms and conditions of this Public License,
the Licensor hereby grants You a worldwide, royalty-free,
non-sublicensable, non-exclusive, irrevocable license to
exercise the Licensed Rights in the Licensed Material to:
a. reproduce and Share the Licensed Material, in whole or
in part; and
b. produce, reproduce, and Share Adapted Material.
2. Exceptions and Limitations. For the avoidance of doubt, where
Exceptions and Limitations apply to Your use, this Public
License does not apply, and You do not need to comply with
its terms and conditions.
3. Term. The term of this Public License is specified in Section
6(a).
4. Media and formats; technical modifications allowed. The
Licensor authorizes You to exercise the Licensed Rights in
all media and formats whether now known or hereafter created,
and to make technical modifications necessary to do so. The
Licensor waives and/or agrees not to assert any right or
authority to forbid You from making technical modifications
necessary to exercise the Licensed Rights, including
technical modifications necessary to circumvent Effective
Technological Measures. For purposes of this Public License,
simply making modifications authorized by this Section 2(a)
(4) never produces Adapted Material.
5. Downstream recipients.
a. Offer from the Licensor -- Licensed Material. Every
recipient of the Licensed Material automatically
receives an offer from the Licensor to exercise the
Licensed Rights under the terms and conditions of this
Public License.
b. No downstream restrictions. You may not offer or impose
any additional or different terms or conditions on, or
apply any Effective Technological Measures to, the
Licensed Material if doing so restricts exercise of the
Licensed Rights by any recipient of the Licensed
Material.
6. No endorsement. Nothing in this Public License constitutes or
may be construed as permission to assert or imply that You
are, or that Your use of the Licensed Material is, connected
with, or sponsored, endorsed, or granted official status by,
the Licensor or others designated to receive attribution as
provided in Section 3(a)(1)(A)(i).
b. Other rights.
1. Moral rights, such as the right of integrity, are not
licensed under this Public License, nor are publicity,
privacy, and/or other similar personality rights; however, to
the extent possible, the Licensor waives and/or agrees not to
assert any such rights held by the Licensor to the limited
extent necessary to allow You to exercise the Licensed
Rights, but not otherwise.
2. Patent and trademark rights are not licensed under this
Public License.
3. To the extent possible, the Licensor waives any right to
collect royalties from You for the exercise of the Licensed
Rights, whether directly or through a collecting society
under any voluntary or waivable statutory or compulsory
licensing scheme. In all other cases the Licensor expressly
reserves any right to collect such royalties.
Section 3 -- License Conditions.
Your exercise of the Licensed Rights is expressly made subject to the
following conditions.
a. Attribution.
1. If You Share the Licensed Material (including in modified
form), You must:
a. retain the following if it is supplied by the Licensor
with the Licensed Material:
i. identification of the creator(s) of the Licensed
Material and any others designated to receive
attribution, in any reasonable manner requested by
the Licensor (including by pseudonym if
designated);
ii. a copyright notice;
iii. a notice that refers to this Public License;
iv. a notice that refers to the disclaimer of
warranties;
v. a URI or hyperlink to the Licensed Material to the
extent reasonably practicable;
b. indicate if You modified the Licensed Material and
retain an indication of any previous modifications; and
c. indicate the Licensed Material is licensed under this
Public License, and include the text of, or the URI or
hyperlink to, this Public License.
2. You may satisfy the conditions in Section 3(a)(1) in any
reasonable manner based on the medium, means, and context in
which You Share the Licensed Material. For example, it may be
reasonable to satisfy the conditions by providing a URI or
hyperlink to a resource that includes the required
information.
3. If requested by the Licensor, You must remove any of the
information required by Section 3(a)(1)(A) to the extent
reasonably practicable.
4. If You Share Adapted Material You produce, the Adapter's
License You apply must not prevent recipients of the Adapted
Material from complying with this Public License.
Section 4 -- Sui Generis Database Rights.
Where the Licensed Rights include Sui Generis Database Rights that
apply to Your use of the Licensed Material:
a. for the avoidance of doubt, Section 2(a)(1) grants You the right
to extract, reuse, reproduce, and Share all or a substantial
portion of the contents of the database;
b. if You include all or a substantial portion of the database
contents in a database in which You have Sui Generis Database
Rights, then the database in which You have Sui Generis Database
Rights (but not its individual contents) is Adapted Material; and
c. You must comply with the conditions in Section 3(a) if You Share
all or a substantial portion of the contents of the database.
For the avoidance of doubt, this Section 4 supplements and does not
replace Your obligations under this Public License where the Licensed
Rights include other Copyright and Similar Rights.
Section 5 -- Disclaimer of Warranties and Limitation of Liability.
a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
c. The disclaimer of warranties and limitation of liability provided
above shall be interpreted in a manner that, to the extent
possible, most closely approximates an absolute disclaimer and
waiver of all liability.
Section 6 -- Term and Termination.
a. This Public License applies for the term of the Copyright and
Similar Rights licensed here. However, if You fail to comply with
this Public License, then Your rights under this Public License
terminate automatically.
b. Where Your right to use the Licensed Material has terminated under
Section 6(a), it reinstates:
1. automatically as of the date the violation is cured, provided
it is cured within 30 days of Your discovery of the
violation; or
2. upon express reinstatement by the Licensor.
For the avoidance of doubt, this Section 6(b) does not affect any
right the Licensor may have to seek remedies for Your violations
of this Public License.
c. For the avoidance of doubt, the Licensor may also offer the
Licensed Material under separate terms or conditions or stop
distributing the Licensed Material at any time; however, doing so
will not terminate this Public License.
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
License.
Section 7 -- Other Terms and Conditions.
a. The Licensor shall not be bound by any additional or different
terms or conditions communicated by You unless expressly agreed.
b. Any arrangements, understandings, or agreements regarding the
Licensed Material not stated herein are separate from and
independent of the terms and conditions of this Public License.
Section 8 -- Interpretation.
a. For the avoidance of doubt, this Public License does not, and
shall not be interpreted to, reduce, limit, restrict, or impose
conditions on any use of the Licensed Material that could lawfully
be made without permission under this Public License.
b. To the extent possible, if any provision of this Public License is
deemed unenforceable, it shall be automatically reformed to the
minimum extent necessary to make it enforceable. If the provision
cannot be reformed, it shall be severed from this Public License
without affecting the enforceability of the remaining terms and
conditions.
c. No term or condition of this Public License will be waived and no
failure to comply consented to unless expressly agreed to by the
Licensor.
d. Nothing in this Public License constitutes or may be interpreted
as a limitation upon, or waiver of, any privileges and immunities
that apply to the Licensor or You, including from the legal
processes of any jurisdiction or authority.
=======================================================================
Creative Commons is not a party to its public
licenses. Notwithstanding, Creative Commons may elect to apply one of
its public licenses to material it publishes and in those instances
will be considered the "Licensor." The text of the Creative Commons
public licenses is dedicated to the public domain under the CC0 Public
Domain Dedication. Except for the limited purpose of indicating that
material is shared under a Creative Commons public license or as
otherwise permitted by the Creative Commons policies published at
creativecommons.org/policies, Creative Commons does not authorize the
use of the trademark "Creative Commons" or any other trademark or logo
of Creative Commons without its prior written consent including,
without limitation, in connection with any unauthorized modifications
to any of its public licenses or any other arrangements,
understandings, or agreements concerning use of licensed material. For
the avoidance of doubt, this paragraph does not form part of the
public licenses.
Creative Commons may be contacted at creativecommons.org.
---
Git Logo by [Jason Long](https://bsky.app/profile/jasonlong.me) is licensed under the [Creative Commons Attribution 3.0 Unported License](https://creativecommons.org/licenses/by/3.0/).
+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M6 5C6 3.89543 6.89543 3 8 3C9.10457 3 10 3.89543 10 5C10 6.10457 9.10457 7 8 7C6.89543 7 6 6.10457 6 5ZM5.49998 8L10.5 8C11.3284 8 12 8.67157 12 9.5C12 10.6161 11.541 11.5103 10.7879 12.1148C10.0466 12.7098 9.05308 13 8 13C6.94692 13 5.95342 12.7098 5.21215 12.1148C4.45897 11.5103 4 10.6161 4 9.5C4 8.67161 4.67156 8 5.49998 8ZM8 0C3.58172 0 0 3.58172 0 8C0 12.4183 3.58172 16 8 16C12.4183 16 16 12.4183 16 8C16 3.58172 12.4183 0 8 0ZM1 8C1 4.13401 4.13401 1 8 1C11.866 1 15 4.13401 15 8C15 11.866 11.866 15 8 15C4.13401 15 1 11.866 1 8Z"/></svg>

After

Width:  |  Height:  |  Size: 660 B

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M10 10.5C10 12.985 7.985 15 5.5 15C3.015 15 1 12.985 1 10.5C1 8.015 3.015 6 5.5 6C7.985 6 10 8.015 10 10.5ZM10.5 1C8.19 1 6.306 2.756 6.053 5H7.067C7.313 3.31 8.743 2 10.5 2C12.43 2 14 3.57 14 5.5C14 7.257 12.69 8.687 11 8.933V9.947C13.244 9.694 15 7.81 15 5.5C15 3.019 12.981 1 10.5 1Z"/></svg>

After

Width:  |  Height:  |  Size: 407 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M11 5.5C11 5.776 10.776 6 10.5 6H6V10.5C6 10.776 5.776 11 5.5 11C5.224 11 5 10.776 5 10.5V6H0.5C0.224 6 0 5.776 0 5.5C0 5.224 0.224 5 0.5 5H5V0.5C5 0.224 5.224 0 5.5 0C5.776 0 6 0.224 6 0.5V5H10.5C10.776 5 11 5.224 11 5.5Z"/></svg>

After

Width:  |  Height:  |  Size: 344 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M8 1.5C8 1.22386 7.77614 1 7.5 1C7.22386 1 7 1.22386 7 1.5V7H1.5C1.22386 7 1 7.22386 1 7.5C1 7.77614 1.22386 8 1.5 8H7V13.5C7 13.7761 7.22386 14 7.5 14C7.77614 14 8 13.7761 8 13.5V8H13.5C13.7761 8 14 7.77614 14 7.5C14 7.22386 13.7761 7 13.5 7H8V1.5Z"/></svg>

After

Width:  |  Height:  |  Size: 371 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M10.887 15H8.49998C8.22398 15 7.99998 14.776 7.99998 14.5C7.99998 14.224 8.22398 14 8.49998 14H10.887C11.243 14 11.575 13.809 11.752 13.5L14.64 8.5C14.819 8.191 14.819 7.809 14.64 7.5L11.705 2.416C11.557 2.16 11.28 2 10.983 2C10.616 2 10.296 2.236 10.188 2.587L6.76598 13.707C6.52898 14.48 5.82498 15 5.01598 15C4.36398 15 3.75498 14.649 3.42898 14.084L0.494984 9C0.137984 8.383 0.137984 7.617 0.494984 7L3.38198 2C3.73698 1.383 4.40098 1 5.11298 1H7.49998C7.77598 1 7.99998 1.224 7.99998 1.5C7.99998 1.776 7.77598 2 7.49998 2H5.11298C4.75698 2 4.42498 2.191 4.24798 2.5L1.35998 7.5C1.18098 7.809 1.18098 8.191 1.35998 8.5L4.29498 13.584C4.44298 13.841 4.71998 14 5.01698 14C5.38398 14 5.70398 13.764 5.81198 13.412L9.23398 2.293C9.47098 1.52 10.174 1 10.984 1C11.636 1 12.245 1.351 12.571 1.916L15.506 7C15.863 7.617 15.863 8.383 15.506 9.001L12.619 14C12.264 14.617 11.599 15 10.887 15Z"/></svg>

After

Width:  |  Height:  |  Size: 1009 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M6.5 8C6.22386 8 6 8.22386 6 8.5C6 8.77614 6.22386 9 6.5 9H9.5C9.77614 9 10 8.77614 10 8.5C10 8.22386 9.77614 8 9.5 8H6.5ZM1 3.5C1 2.67157 1.67157 2 2.5 2H13.5C14.3284 2 15 2.67157 15 3.5V4.5C15 5.15311 14.5826 5.70873 14 5.91465V11.5C14 12.8807 12.8807 14 11.5 14H4.5C3.11929 14 2 12.8807 2 11.5V5.91465C1.4174 5.70873 1 5.15311 1 4.5V3.5ZM2.5 3C2.22386 3 2 3.22386 2 3.5V4.5C2 4.77614 2.22386 5 2.5 5H13.5C13.7761 5 14 4.77614 14 4.5V3.5C14 3.22386 13.7761 3 13.5 3H2.5ZM3 6V11.5C3 12.3284 3.67157 13 4.5 13H11.5C12.3284 13 13 12.3284 13 11.5V6H3Z"/></svg>

After

Width:  |  Height:  |  Size: 670 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M1.14645 8.85355C0.951184 8.65829 0.951184 8.34171 1.14645 8.14645L4.14645 5.14645C4.34171 4.95118 4.65829 4.95118 4.85355 5.14645C5.04882 5.34171 5.04882 5.65829 4.85355 5.85355L2.70711 8L13.2929 8L11.1464 5.85355C10.9512 5.65829 10.9512 5.34171 11.1464 5.14645C11.3417 4.95118 11.6583 4.95118 11.8536 5.14645L14.8536 8.14645C15.0488 8.34171 15.0488 8.65829 14.8536 8.85355L11.8536 11.8536C11.6583 12.0488 11.3417 12.0488 11.1464 11.8536C10.9512 11.6583 10.9512 11.3417 11.1464 11.1464L13.2929 9L2.70711 9L4.85355 11.1464C5.04882 11.3417 5.04882 11.6583 4.85355 11.8536C4.65829 12.0488 4.34171 12.0488 4.14645 11.8536L1.14645 8.85355Z"/></svg>

After

Width:  |  Height:  |  Size: 756 B

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M5.14645 8.85355L7.64645 11.3536C7.84171 11.5488 8.15829 11.5488 8.35355 11.3536L10.8536 8.85355C11.0488 8.65829 11.0488 8.34171 10.8536 8.14645C10.6583 7.95118 10.3417 7.95118 10.1464 8.14645L8.5 9.79289V5C8.5 4.72386 8.27614 4.5 8 4.5C7.72386 4.5 7.5 4.72386 7.5 5V9.79289L5.85355 8.14645C5.65829 7.95118 5.34171 7.95118 5.14645 8.14645C4.95118 8.34171 4.95118 8.65829 5.14645 8.85355ZM8 15C4.13401 15 1 11.866 1 8C1 4.13401 4.13401 1 8 1C11.866 1 15 4.13401 15 8C15 11.866 11.866 15 8 15ZM2 8C2 11.3137 4.68629 14 8 14C11.3137 14 14 11.3137 14 8C14 4.68629 11.3137 2 8 2C4.68629 2 2 4.68629 2 8Z"/></svg>

After

Width:  |  Height:  |  Size: 719 B

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M7.14645 10.8536L4.64645 8.35355C4.45118 8.15829 4.45118 7.84171 4.64645 7.64645L7.14645 5.14645C7.34171 4.95118 7.65829 4.95118 7.85355 5.14645C8.04882 5.34171 8.04882 5.65829 7.85355 5.85355L6.20711 7.5H11C11.2761 7.5 11.5 7.72386 11.5 8C11.5 8.27614 11.2761 8.5 11 8.5H6.20711L7.85355 10.1464C8.04882 10.3417 8.04882 10.6583 7.85355 10.8536C7.65829 11.0488 7.34171 11.0488 7.14645 10.8536ZM1 8C1 11.866 4.13401 15 8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8ZM8 14C4.68629 14 2 11.3137 2 8C2 4.68629 4.68629 2 8 2C11.3137 2 14 4.68629 14 8C14 11.3137 11.3137 14 8 14Z"/></svg>

After

Width:  |  Height:  |  Size: 724 B

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M8.85355 10.8536L11.3536 8.35355C11.5488 8.15829 11.5488 7.84171 11.3536 7.64645L8.85355 5.14645C8.65829 4.95118 8.34171 4.95118 8.14645 5.14645C7.95118 5.34171 7.95118 5.65829 8.14645 5.85355L9.79289 7.5H5C4.72386 7.5 4.5 7.72386 4.5 8C4.5 8.27614 4.72386 8.5 5 8.5H9.79289L8.14645 10.1464C7.95118 10.3417 7.95118 10.6583 8.14645 10.8536C8.34171 11.0488 8.65829 11.0488 8.85355 10.8536ZM15 8C15 11.866 11.866 15 8 15C4.13401 15 1 11.866 1 8C1 4.13401 4.13401 1 8 1C11.866 1 15 4.13401 15 8ZM8 14C11.3137 14 14 11.3137 14 8C14 4.68629 11.3137 2 8 2C4.68629 2 2 4.68629 2 8C2 11.3137 4.68629 14 8 14Z"/></svg>

After

Width:  |  Height:  |  Size: 720 B

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M5.14645 7.14645L7.64645 4.64645C7.84171 4.45118 8.15829 4.45118 8.35355 4.64645L10.8536 7.14645C11.0488 7.34171 11.0488 7.65829 10.8536 7.85355C10.6583 8.04882 10.3417 8.04882 10.1464 7.85355L8.5 6.20711V11C8.5 11.2761 8.27614 11.5 8 11.5C7.72386 11.5 7.5 11.2761 7.5 11V6.20711L5.85355 7.85355C5.65829 8.04882 5.34171 8.04882 5.14645 7.85355C4.95118 7.65829 4.95118 7.34171 5.14645 7.14645ZM8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1ZM2 8C2 4.68629 4.68629 2 8 2C11.3137 2 14 4.68629 14 8C14 11.3137 11.3137 14 8 14C4.68629 14 2 11.3137 2 8Z"/></svg>

After

Width:  |  Height:  |  Size: 723 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M13.854 8.146C13.659 7.951 13.342 7.951 13.147 8.146L9.00096 12.292V2.5C9.00096 2.224 8.77696 2 8.50096 2C8.22496 2 8.00096 2.224 8.00096 2.5V12.293L3.85496 8.147C3.65996 7.952 3.34296 7.952 3.14796 8.147C2.95296 8.342 2.95296 8.659 3.14796 8.854L8.14796 13.854C8.24596 13.952 8.37396 14 8.50196 14C8.62996 14 8.75796 13.951 8.85596 13.854L13.856 8.854C14.051 8.659 14.051 8.342 13.856 8.147L13.854 8.146Z"/></svg>

After

Width:  |  Height:  |  Size: 526 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M13.5 8.00023H3.70701L7.85301 3.85423C8.04801 3.65923 8.04801 3.34223 7.85301 3.14723C7.65801 2.95223 7.34101 2.95223 7.14601 3.14723L2.14601 8.14723C1.95101 8.34223 1.95101 8.65923 2.14601 8.85423L7.14601 13.8542C7.24401 13.9522 7.37201 14.0002 7.50001 14.0002C7.62801 14.0002 7.75601 13.9512 7.85401 13.8542C8.04901 13.6592 8.04901 13.3422 7.85401 13.1472L3.70801 9.00123H13.501C13.777 9.00123 14.001 8.77723 14.001 8.50123C14.001 8.22523 13.777 8.00123 13.501 8.00123L13.5 8.00023Z"/></svg>

After

Width:  |  Height:  |  Size: 605 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M13.854 8.14576L8.854 3.14576C8.659 2.95076 8.342 2.95076 8.147 3.14576C7.952 3.34076 7.952 3.65776 8.147 3.85276L12.293 7.99876H2.5C2.224 7.99876 2 8.22276 2 8.49876C2 8.77476 2.224 8.99876 2.5 8.99876H12.293L8.147 13.1448C7.952 13.3398 7.952 13.6568 8.147 13.8518C8.245 13.9498 8.373 13.9978 8.501 13.9978C8.629 13.9978 8.757 13.9488 8.855 13.8518L13.855 8.85176C14.05 8.65676 14.05 8.33976 13.855 8.14476L13.854 8.14576Z"/></svg>

After

Width:  |  Height:  |  Size: 544 B

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M9.85398 8.854L7.85398 10.854C7.65898 11.049 7.34198 11.049 7.14698 10.854L5.14698 8.854C4.95198 8.659 4.95198 8.342 5.14698 8.147C5.34198 7.952 5.65898 7.952 5.85398 8.147L6.99998 9.293V4.5C6.99998 4.224 7.22398 4 7.49998 4C7.77598 4 7.99998 4.224 7.99998 4.5V9.293L9.14598 8.147C9.24398 8.049 9.37198 8.001 9.49998 8.001C9.62798 8.001 9.75598 8.05 9.85398 8.147C10.049 8.342 10.049 8.659 9.85398 8.854Z"/></svg>

After

Width:  |  Height:  |  Size: 525 B

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M6.14601 9.85398L4.14601 7.85398C3.95101 7.65898 3.95101 7.34198 4.14601 7.14698L6.14601 5.14698C6.34101 4.95198 6.65801 4.95198 6.85301 5.14698C7.04801 5.34198 7.04801 5.65898 6.85301 5.85398L5.70701 6.99998H10.5C10.776 6.99998 11 7.22398 11 7.49998C11 7.77598 10.776 7.99998 10.5 7.99998H5.70701L6.85301 9.14598C6.95101 9.24398 6.99901 9.37198 6.99901 9.49998C6.99901 9.62798 6.95001 9.75598 6.85301 9.85398C6.65801 10.049 6.34101 10.049 6.14601 9.85398Z"/></svg>

After

Width:  |  Height:  |  Size: 577 B

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M8.854 9.85398L10.854 7.85398C11.049 7.65898 11.049 7.34198 10.854 7.14698L8.854 5.14698C8.659 4.95198 8.342 4.95198 8.147 5.14698C7.952 5.34198 7.952 5.65898 8.147 5.85398L9.293 6.99998H4.5C4.224 6.99998 4 7.22398 4 7.49998C4 7.77598 4.224 7.99998 4.5 7.99998H9.293L8.147 9.14598C8.049 9.24398 8.001 9.37198 8.001 9.49998C8.001 9.62798 8.05 9.75598 8.147 9.85398C8.342 10.049 8.659 10.049 8.854 9.85398Z"/></svg>

After

Width:  |  Height:  |  Size: 525 B

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M9.85398 6.14601L7.85398 4.14601C7.65898 3.95101 7.34198 3.95101 7.14698 4.14601L5.14698 6.14601C4.95198 6.34101 4.95198 6.65801 5.14698 6.85301C5.34198 7.04801 5.65898 7.04801 5.85398 6.85301L6.99998 5.70701V10.5C6.99998 10.776 7.22398 11 7.49998 11C7.77598 11 7.99998 10.776 7.99998 10.5V5.70701L9.14598 6.85301C9.24398 6.95101 9.37198 6.99901 9.49998 6.99901C9.62798 6.99901 9.75598 6.95001 9.85398 6.85301C10.049 6.65801 10.049 6.34101 9.85398 6.14601Z"/></svg>

After

Width:  |  Height:  |  Size: 577 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M11.3536 1.64645C11.1583 1.45118 10.8417 1.45118 10.6464 1.64645C10.4512 1.84171 10.4512 2.15829 10.6464 2.35355L12.2929 4H2.5C2.22386 4 2 4.22386 2 4.5C2 4.77614 2.22386 5 2.5 5H12.2929L10.6464 6.64645C10.4512 6.84171 10.4512 7.15829 10.6464 7.35355C10.8417 7.54882 11.1583 7.54882 11.3536 7.35355L13.8536 4.85355C14.0488 4.65829 14.0488 4.34171 13.8536 4.14645L11.3536 1.64645ZM5.35355 9.35355C5.54882 9.15829 5.54882 8.84171 5.35355 8.64645C5.15829 8.45118 4.84171 8.45118 4.64645 8.64645L2.14645 11.1464C1.95118 11.3417 1.95118 11.6583 2.14645 11.8536L4.64645 14.3536C4.84171 14.5488 5.15829 14.5488 5.35355 14.3536C5.54882 14.1583 5.54882 13.8417 5.35355 13.6464L3.70711 12H13.5C13.7761 12 14 11.7761 14 11.5C14 11.2239 13.7761 11 13.5 11H3.70711L5.35355 9.35355Z"/></svg>

After

Width:  |  Height:  |  Size: 889 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M13.854 7.14576L8.85401 2.14576C8.65901 1.95076 8.34201 1.95076 8.14701 2.14576L3.14601 7.14576C2.95101 7.34076 2.95101 7.65776 3.14601 7.85276C3.34101 8.04776 3.65801 8.04776 3.85301 7.85276L7.99901 3.70676V13.4998C7.99901 13.7758 8.22301 13.9998 8.49901 13.9998C8.77501 13.9998 8.99901 13.7758 8.99901 13.4998V3.70676L13.145 7.85276C13.243 7.95076 13.371 7.99876 13.499 7.99876C13.627 7.99876 13.755 7.94976 13.853 7.85276C14.048 7.65776 14.048 7.34076 13.853 7.14576H13.854Z"/></svg>

After

Width:  |  Height:  |  Size: 598 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M8 11C8.414 11 8.75 11.336 8.75 11.75C8.75 12.164 8.414 12.5 8 12.5C7.586 12.5 7.25 12.164 7.25 11.75C7.25 11.336 7.586 11 8 11Z"/><path d="M8 4C9.262 4 10.25 4.988 10.25 6.25C10.25 7.333 9.68352 7.89752 9.22852 8.35352C8.82052 8.76052 8.5 9.082 8.5 9.75C8.5 10.026 8.276 10.25 8 10.25C7.724 10.25 7.5 10.026 7.5 9.75C7.5 8.667 8.06648 8.10248 8.52148 7.64648C8.92948 7.23948 9.25 6.918 9.25 6.25C9.25 5.538 8.712 5 8 5C7.288 5 6.75 5.538 6.75 6.25C6.75 6.526 6.526 6.75 6.25 6.75C5.974 6.75 5.75 6.526 5.75 6.25C5.75 4.988 6.738 4 8 4Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M8 1C11.866 1 14.999 4.13499 14.999 8.00098C14.999 11.867 11.865 15.001 7.99902 15.001C6.72402 15.001 5.52612 14.6585 4.49512 14.0615L1.7666 14.9707C1.70669 14.9906 1.64491 15.001 1.58301 15.001C1.43501 15.001 1.28969 14.9449 1.17969 14.8389C1.02386 14.6889 0.964466 14.4647 1.02344 14.2568L1.85254 11.3506C1.30871 10.3547 1 9.21279 1 8C1 4.134 4.134 1 8 1ZM8.00098 2.00098C4.693 2.00099 2.00099 4.693 2.00098 8.00098C2.00098 9.00398 2.25345 9.99707 2.73145 10.8721L2.92676 11.2324L2.20117 13.7725L4.17871 13.1133L4.60742 12.9697L4.99707 13.1963C5.90503 13.7222 6.94407 14 8 14L8.00098 14.001C11.309 14.001 14.001 11.309 14.001 8.00098C14.001 4.69299 11.309 2.00098 8.00098 2.00098Z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M2.2832 7.97549C2.2832 8.25149 2.5072 8.47549 2.7832 8.47549C2.9112 8.47549 3.0392 8.42649 3.1372 8.32949L7.7322 3.73249C8.2202 3.24449 8.8602 3.00049 9.5002 3.00049C10.8812 3.00049 12.0002 4.11949 12.0002 5.50049C12.0002 6.14049 11.7562 6.78049 11.2682 7.26849L5.9652 12.5715C5.7702 12.7665 5.5142 12.8645 5.2582 12.8645C4.7062 12.8645 4.2582 12.4165 4.2582 11.8645C4.2582 11.6085 4.3562 11.3525 4.5512 11.1575L9.8542 5.85449C9.9522 5.75649 10.0002 5.62849 10.0002 5.50049C10.0002 5.22449 9.7762 5.00049 9.5002 5.00049C9.3722 5.00049 9.2442 5.04949 9.1462 5.14649L3.8432 10.4505C3.4522 10.8415 3.2572 11.3525 3.2572 11.8645C3.2572 12.9695 4.1522 13.8645 5.2572 13.8645C5.7692 13.8645 6.2812 13.6695 6.6712 13.2785L11.9742 7.97549C12.6572 7.29249 12.9992 6.39649 12.9992 5.50049C12.9992 3.56749 11.4322 2.00049 9.4992 2.00049C8.6032 2.00049 7.7082 2.34249 7.0242 3.02549L2.4292 7.62149C2.3312 7.71949 2.2832 7.84749 2.2832 7.97549Z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M15 3.62172V12.1336L11.5 15L6.075 13.025V14.9825L3.00375 10.9713L11.955 11.6704V4.00624L15 3.62172ZM12.0163 4.04994L6.99375 1V3.00125L2.3825 4.35581L1 6.12984V10.1586L2.9775 11.0325V5.86767L12.0163 4.04994Z"/></svg>

After

Width:  |  Height:  |  Size: 327 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path fill-rule="evenodd" clip-rule="evenodd" d="M15.3702 13.6799L11.3702 1.67989C11.3006 1.47291 11.1652 1.29438 10.9846 1.17159C10.804 1.0488 10.5882 0.988513 10.3702 0.999896H5.63017C5.42052 0.999354 5.21598 1.0647 5.04551 1.18672C4.87504 1.30875 4.74724 1.48127 4.68015 1.67989L0.630165 13.6799C0.577646 13.8346 0.56382 13.9998 0.589943 14.1611C0.616066 14.3225 0.681335 14.4749 0.780007 14.6052C0.878678 14.7354 1.00778 14.8395 1.15598 14.9083C1.30419 14.9771 1.46699 15.0086 1.63017 14.9999H4.56016C4.76809 14.9984 4.97035 14.932 5.13883 14.8101C5.30731 14.6883 5.43363 14.5169 5.50016 14.3199L6.11015 12.5399L9.11015 14.8099C9.28448 14.9362 9.49495 15.0028 9.71018 14.9999H14.3902C14.5517 15.0052 14.7121 14.9712 14.8576 14.901C15.0032 14.8307 15.1295 14.7263 15.2259 14.5965C15.3222 14.4668 15.3856 14.3156 15.4107 14.156C15.4359 13.9963 15.422 13.833 15.3702 13.6799ZM9.75016 14.3399C9.67748 14.3399 9.60693 14.3153 9.55015 14.2699L3.90018 10.0799L3.81016 10.0099H6.81016L6.89017 9.79988L7.89017 7.26988L10.1302 13.8999C10.1482 13.9555 10.1515 14.0148 10.1399 14.072C10.1283 14.1293 10.1022 14.1826 10.064 14.2269C10.0258 14.2711 9.97689 14.3047 9.92191 14.3245C9.86694 14.3443 9.80778 14.3496 9.75016 14.3399ZM14.4201 14.3399H10.7002C10.7749 14.1262 10.7749 13.8935 10.7002 13.6799L6.65018 1.67989H10.3702C10.4408 1.68024 10.5095 1.70258 10.5669 1.74379C10.6242 1.78501 10.6673 1.84308 10.6902 1.9099L14.7402 13.9099C14.7538 13.9597 14.756 14.012 14.7464 14.0628C14.7369 14.1136 14.7159 14.1615 14.6851 14.203C14.6542 14.2444 14.6144 14.2783 14.5685 14.302C14.5226 14.3257 14.4718 14.3387 14.4201 14.3399Z"/></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.5002 7C13.9851 7.00011 16.0002 9.01507 16.0002 11.5C16.0002 13.9849 13.9851 15.9999 11.5002 16C9.0152 16 7.0002 13.985 7.0002 11.5C7.0002 9.015 9.0152 7 11.5002 7ZM9.40352 14.3027C9.98752 14.7407 10.7142 15 11.5002 15C13.4331 14.9999 15.0002 13.4329 15.0002 11.5C15.0002 10.7141 14.7409 9.98827 14.3029 9.4043L9.40352 14.3027ZM11.5002 8C9.5672 8 8.0002 9.567 8.0002 11.5C8.0002 12.286 8.25947 13.0117 8.69747 13.5957L13.5959 8.69727C13.012 8.2593 12.2861 8.00005 11.5002 8Z"/><path d="M12.0002 0.999023C12.2761 0.999139 12.5002 1.22309 12.5002 1.49902C12.5002 1.77494 12.2761 1.99891 12.0002 1.99902H11.0041V6.02539C10.6602 6.05639 10.3271 6.12093 10.0041 6.21191V1.99902H5.99434V6.68652C5.99434 7.43152 5.80926 8.16529 5.45626 8.82129L4.82051 10H6.21407C6.12207 10.323 6.05659 10.656 6.02559 11H4.28243L3.06172 13.2637C2.88272 13.5967 3.12415 14.001 3.50215 14.001H6.60762C6.79062 14.358 7.00695 14.694 7.26094 15.001H3.50118C2.36521 15.001 1.64295 13.789 2.18087 12.79L4.5754 8.3457C4.85026 7.8358 4.99434 7.2644 4.99434 6.68555V1.99902H4.0002C3.72421 1.99902 3.50022 1.77501 3.5002 1.49902C3.5002 1.22302 3.7242 0.999023 4.0002 0.999023H12.0002Z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M12 0.998993C12.276 0.998993 12.5 1.22299 12.5 1.49899C12.5 1.77499 12.276 1.99899 12 1.99899H11.004V6.68299C11.004 7.26299 11.148 7.83299 11.423 8.34299L13.819 12.789C14.358 13.788 13.634 15.001 12.499 15.001H3.50101C2.36501 15.001 1.64301 13.788 2.18101 12.789L4.57501 8.34499C4.85001 7.83499 4.99401 7.26399 4.99401 6.68499V1.99899H4.00001C3.72401 1.99899 3.50001 1.77499 3.50001 1.49899C3.50001 1.22299 3.72401 0.998993 4.00001 0.998993H12ZM5.99401 1.99899V6.68599C5.99401 7.43099 5.80901 8.16399 5.45601 8.81999L4.82101 9.99899H11.18L10.543 8.81699C10.19 8.16099 10.005 7.42799 10.005 6.68199V1.99899H5.99401ZM11.718 10.999H4.28201L3.06201 13.263C2.88201 13.597 3.12401 14 3.50201 14H12.499C12.877 14 13.119 13.596 12.939 13.263L11.718 10.999Z"/></svg>

After

Width:  |  Height:  |  Size: 869 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M13 9.90099V7.87299C12.68 7.95599 12.345 7.99899 12 7.99899V9.99699C12 10.061 12.012 10.124 12.036 10.183L12.762 12H3.238L3.964 10.183C3.988 10.124 4 10.061 4 9.99699V5.99899C4 3.79299 5.794 1.99899 8 1.99899C8.175 1.99899 8.34799 2.00999 8.51799 2.03199C8.70299 1.70499 8.934 1.40599 9.2 1.14499C8.81499 1.04999 8.413 0.998993 8 0.998993C5.243 0.998993 3 3.24199 3 5.99899V9.89999L2.036 12.313C1.974 12.467 1.993 12.641 2.086 12.779C2.179 12.916 2.334 12.999 2.5 12.999H5.99999C5.99999 14.107 6.892 14.999 8 14.999C9.108 14.999 10 14.107 10 12.999H13.5C13.666 12.999 13.821 12.917 13.914 12.779C14.007 12.642 14.026 12.467 13.964 12.313L13 9.89999V9.90099ZM8 14C7.444 14 7 13.556 7 13H9C9 13.556 8.55599 14 8 14ZM15 3.99999C15 5.65699 13.657 6.99999 12 6.99999C10.343 6.99999 9 5.65699 9 3.99999C9 2.34299 10.343 0.999993 12 0.999993C13.657 0.999993 15 2.34299 15 3.99999Z"/></svg>

After

Width:  |  Height:  |  Size: 994 B

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M1.85398 1.14601C1.65898 0.951006 1.34198 0.951006 1.14698 1.14601C0.951982 1.34101 0.951982 1.65801 1.14698 1.85301L3.39598 4.10201C3.14698 4.68701 2.99998 5.32401 2.99998 5.99901V9.90001L2.03598 12.313C1.97398 12.467 1.99298 12.641 2.08598 12.779C2.17898 12.916 2.33398 12.999 2.49998 12.999H5.99998C5.99998 14.107 6.89198 14.999 7.99998 14.999C9.10798 14.999 9.99998 14.107 9.99998 12.999H12.293L14.147 14.853C14.245 14.951 14.373 14.999 14.501 14.999C14.629 14.999 14.757 14.95 14.855 14.853C15.05 14.658 15.05 14.341 14.855 14.146L1.85398 1.14601ZM7.99998 14C7.44398 14 6.99998 13.556 6.99998 13H8.99998C8.99998 13.556 8.55598 14 7.99998 14ZM3.23798 12L3.96398 10.183C3.98798 10.124 3.99998 10.061 3.99998 9.99701V5.99901C3.99998 5.60701 4.05698 5.22801 4.16298 4.86901L11.293 11.999H3.23798V12ZM13 7.85801V9.90101L13.651 11.529L12 9.87801V7.99901C12.347 7.99901 12.678 7.94201 13 7.85801ZM5.23898 3.11801L4.53198 2.41101C5.43198 1.54101 6.65198 1.00001 7.99898 1.00001C8.41098 1.00001 8.80498 1.06401 9.18898 1.15901C8.92398 1.42101 8.70998 1.72701 8.52698 2.05401C8.35298 2.03101 8.17998 2.00101 7.99998 2.00101C6.92798 2.00101 5.95798 2.42901 5.23898 3.11801ZM8.99998 4.00001C8.99998 2.34301 10.343 1.00001 12 1.00001C13.657 1.00001 15 2.34301 15 4.00001C15 5.65701 13.657 7.00001 12 7.00001C10.343 7.00001 8.99998 5.65701 8.99998 4.00001Z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M5.23901 3.118L4.53201 2.411C5.43201 1.541 6.65201 1 7.99901 1C10.756 1 12.999 3.243 12.999 6V9.901L13.65 11.529L11.999 9.878V5.999C11.999 3.793 10.205 1.999 7.99901 1.999C6.92701 1.999 5.95701 2.428 5.23801 3.117L5.23901 3.118ZM14.854 14.854C14.756 14.952 14.628 15 14.5 15C14.372 15 14.244 14.951 14.146 14.854L12.292 13H9.99901C9.99901 14.108 9.10701 15 7.99901 15C6.89101 15 5.99901 14.108 5.99901 13H2.49901C2.33301 13 2.17801 12.918 2.08501 12.78C1.99201 12.643 1.97301 12.468 2.03501 12.314L2.99901 9.901V6C2.99901 5.325 3.14601 4.688 3.39501 4.103L1.14601 1.854C0.951006 1.659 0.951006 1.342 1.14601 1.147C1.34101 0.952 1.65801 0.952 1.85301 1.147L14.853 14.147C15.048 14.342 15.048 14.659 14.853 14.854H14.854ZM9.00001 13H7.00001C7.00001 13.556 7.44401 14 8.00001 14C8.55601 14 9.00001 13.556 9.00001 13ZM11.293 12L4.16301 4.87C4.05701 5.228 4.00001 5.607 4.00001 6V9.998C4.00001 10.062 3.98801 10.125 3.96401 10.184L3.23801 12.001H11.293V12Z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M13.964 12.315L13 9.90201V6.00101C13 3.24401 10.757 1.00101 8 1.00101C5.243 1.00101 3 3.24301 3 6.00001V9.90101L2.036 12.314C1.974 12.468 1.993 12.642 2.086 12.78C2.179 12.917 2.334 13 2.5 13H5.99999C5.99999 14.108 6.892 15 8 15C9.108 15 10 14.108 10 13H13.5C13.666 13 13.821 12.918 13.914 12.78C14.007 12.643 14.026 12.469 13.964 12.315ZM8 14C7.444 14 7 13.556 7 13H9C9 13.556 8.55599 14 8 14ZM3.238 12L3.964 10.183C3.988 10.124 4 10.061 4 9.99701V5.99901C4 3.79301 5.794 1.99901 8 1.99901C10.206 1.99901 12 3.79301 12 5.99901V9.99701C12 10.061 12.012 10.124 12.036 10.183L12.762 12H3.238Z"/></svg>

After

Width:  |  Height:  |  Size: 711 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"/>

After

Width:  |  Height:  |  Size: 104 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M4 3.1C4 2.5 4.5 2 5.1 2H8.1C10.2 2 11.5 3.4 11.5 5.4C11.5 6.3 11.2 7.4 10.8 8C11.6 8.6 12.2 9.2 12.2 10.5C12.2 13.2 10.1 14 8.6 14H5.1C4.5 14 4 13.5 4 12.9V3.1ZM6 9V12H8.4C9.1 12 9.9 11.5 9.9 10.5C9.9 9.5 9.1 9 8.4 9H6ZM6 7H8.2C9.1 7 9.7 6.3 9.7 5.5C9.7 4.7 9.1 4 8.3 4H6V7Z"/></svg>

After

Width:  |  Height:  |  Size: 396 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M2.5 2C1.67157 2 1 2.67157 1 3.5V12.5C1 13.3284 1.67157 14 2.5 14H6C6.8178 14 7.54389 13.6073 8 13.0002C8.45612 13.6073 9.1822 14 10 14H13.5C14.3284 14 15 13.3284 15 12.5V3.5C15 2.67157 14.3284 2 13.5 2H10C9.1822 2 8.45612 2.39267 8 2.99976C7.54389 2.39267 6.8178 2 6 2H2.5ZM7.5 4.5V11.5C7.5 12.3284 6.82843 13 6 13H2.5C2.22386 13 2 12.7761 2 12.5V3.5C2 3.22386 2.22386 3 2.5 3H6C6.82843 3 7.5 3.67157 7.5 4.5ZM8.5 11.5V4.5C8.5 3.67157 9.17157 3 10 3H13.5C13.7761 3 14 3.22386 14 3.5V12.5C14 12.7761 13.7761 13 13.5 13H10C9.17157 13 8.5 12.3284 8.5 11.5Z"/></svg>

After

Width:  |  Height:  |  Size: 675 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M3.77942 13.9187C3.44716 14.1405 3.00177 13.9024 3.00177 13.5029V4.01167C3.00177 2.9085 3.89502 2.01365 4.99819 2.01168L10.9982 2.00092C12.1028 1.99895 12.9998 2.89277 13.0018 3.99734V13.5029C13.0018 13.9024 12.5564 14.1405 12.2241 13.9187L8.00177 11.0994L3.77942 13.9187ZM12.0018 4.00092L11.9948 3.88252C11.9362 3.38529 11.5128 3.00001 11 3.00092L4.99998 3.01168C4.44839 3.01266 4.00177 3.46009 4.00177 4.01167V12.5678L7.72412 10.0824C7.89221 9.97018 8.11133 9.97018 8.27942 10.0824L12.0018 12.5678V4.00092Z"/></svg>

After

Width:  |  Height:  |  Size: 629 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M10.5 2.5C10.5 2.224 10.724 2 11 2C12.105 2 13 2.895 13 4V6.005C13 6.535 13.008 6.799 13.089 7.002C13.152 7.158 13.284 7.333 13.723 7.553C13.892 7.638 13.999 7.811 13.999 8C13.999 8.189 13.892 8.363 13.723 8.447C13.284 8.667 13.151 8.841 13.089 8.998C13.072 9.041 13.058 9.088 13.046 9.139C12.729 9.053 12.397 9.005 12.055 9.001C12.079 8.872 12.112 8.747 12.16 8.627C12.257 8.384 12.403 8.18 12.598 8C12.402 7.821 12.257 7.616 12.16 7.374C11.998 6.971 11.999 6.51 11.999 6.063V4C11.999 3.448 11.551 3 10.999 3C10.723 3 10.499 2.776 10.499 2.5H10.5ZM3.83898 7.374C4.00098 6.971 3.99998 6.51 3.99998 6.063V4C3.99998 3.448 4.44798 3 4.99998 3C5.27598 3 5.49998 2.776 5.49998 2.5C5.49998 2.224 5.27598 2 4.99998 2C3.89498 2 2.99998 2.895 2.99998 4V6.005C2.99998 6.535 2.99198 6.799 2.91098 7.002C2.84798 7.158 2.71598 7.333 2.27698 7.553C2.10798 7.638 2.00098 7.811 2.00098 8C2.00098 8.189 2.10798 8.363 2.27698 8.447C2.71598 8.667 2.84898 8.841 2.91098 8.998C2.99298 9.202 2.99998 9.467 2.99998 10V12C2.99998 13.105 3.89498 14 4.99998 14C5.27598 14 5.49998 13.776 5.49998 13.5C5.49998 13.224 5.27598 13 4.99998 13C4.44798 13 3.99998 12.552 3.99998 12V9.941C3.99998 9.492 3.99998 9.03 3.83898 8.626C3.74198 8.383 3.59598 8.179 3.39998 7.999C3.59598 7.82 3.74098 7.615 3.83798 7.373L3.83898 7.374ZM12 10C10.343 10 8.99998 11.343 8.99998 13C8.99998 14.657 10.343 16 12 16C13.657 16 15 14.657 15 13C15 11.343 13.657 10 12 10Z"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M12 10C10.343 10 8.99995 11.343 8.99995 13C8.99995 14.657 10.343 16 12 16C13.657 16 15 14.657 15 13C15 11.343 13.657 10 12 10ZM13.479 13.771C13.674 13.966 13.674 14.283 13.479 14.478C13.381 14.576 13.253 14.624 13.125 14.624C12.997 14.624 12.869 14.575 12.771 14.478L12 13.707L11.229 14.478C11.131 14.576 11.003 14.624 10.875 14.624C10.747 14.624 10.619 14.575 10.521 14.478C10.326 14.283 10.326 13.966 10.521 13.771L11.292 13L10.521 12.229C10.326 12.034 10.326 11.717 10.521 11.522C10.716 11.327 11.033 11.327 11.228 11.522L11.999 12.293L12.77 11.522C12.965 11.327 13.282 11.327 13.477 11.522C13.672 11.717 13.672 12.034 13.477 12.229L12.706 13L13.477 13.771H13.479ZM10.5 2.5C10.5 2.224 10.724 2 11 2C12.105 2 13 2.895 13 4V6.005C13 6.535 13.008 6.799 13.089 7.002C13.152 7.158 13.284 7.333 13.723 7.553C13.892 7.638 13.999 7.811 13.999 8C13.999 8.189 13.892 8.363 13.723 8.447C13.284 8.667 13.151 8.841 13.089 8.998C13.072 9.041 13.058 9.088 13.046 9.139C12.729 9.053 12.397 9.005 12.055 9.001C12.079 8.872 12.112 8.747 12.16 8.627C12.257 8.384 12.403 8.18 12.598 8C12.402 7.821 12.257 7.616 12.16 7.374C11.998 6.971 11.999 6.51 11.999 6.063V4C11.999 3.448 11.551 3 10.999 3C10.723 3 10.5 2.776 10.5 2.5ZM3.40095 8C3.59695 8.18 3.74195 8.384 3.83995 8.627C4.00095 9.031 4.00095 9.493 4.00095 9.942V12.001C4.00095 12.553 4.44895 13.001 5.00095 13.001C5.27695 13.001 5.50095 13.225 5.50095 13.501C5.50095 13.777 5.27695 14.001 5.00095 14.001C3.89595 14.001 3.00095 13.106 3.00095 12.001V10.001C3.00095 9.468 2.99295 9.203 2.91195 8.999C2.84895 8.842 2.71695 8.668 2.27795 8.448C2.10895 8.363 2.00195 8.19 2.00195 8.001C2.00195 7.812 2.10895 7.639 2.27795 7.554C2.71695 7.334 2.84995 7.16 2.91195 7.003C2.99295 6.8 3.00095 6.536 3.00095 6.006V4.001C3.00095 2.896 3.89595 2.001 5.00095 2.001C5.27695 2.001 5.50095 2.225 5.50095 2.501C5.50095 2.777 5.27695 3.001 5.00095 3.001C4.44895 3.001 4.00095 3.449 4.00095 4.001V6.064C4.00095 6.511 4.00095 6.972 3.83995 7.375C3.74295 7.617 3.59695 7.821 3.40195 8.001L3.40095 8Z"/></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M5 4V2.5C5 1.67157 5.67157 1 6.5 1H9.5C10.3284 1 11 1.67157 11 2.5V4H13C14.1046 4 15 4.89543 15 6V13C15 14.1046 14.1046 15 13 15H3C1.89543 15 1 14.1046 1 13V6C1 4.89543 1.89543 4 3 4H5ZM6 2.5V4H10V2.5C10 2.22386 9.77614 2 9.5 2H6.5C6.22386 2 6 2.22386 6 2.5ZM2 9.50018V13C2 13.5523 2.44772 14 3 14H13C13.5523 14 14 13.5523 14 13V9.50018C13.5822 9.81403 13.0628 10 12.5 10H9V10.5C9 10.7761 8.77614 11 8.5 11H7.5C7.22386 11 7 10.7761 7 10.5V10H3.5C2.9372 10 2.41783 9.81403 2 9.50018ZM7 9V8.5C7 8.22386 7.22386 8 7.5 8H8.5C8.77614 8 9 8.22386 9 8.5V9H12.5C13.3284 9 14 8.32843 14 7.5V6C14 5.44772 13.5523 5 13 5H3C2.44772 5 2 5.44772 2 6V7.5C2 8.32843 2.67157 9 3.5 9H7Z"/></svg>

After

Width:  |  Height:  |  Size: 789 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M5.52501 5.52498C4.86401 6.18598 4.50001 7.06598 4.50001 7.99998C4.50001 8.93398 4.86401 9.81298 5.52501 10.475C5.72001 10.67 5.72001 10.987 5.52501 11.182C5.42701 11.28 5.29901 11.328 5.17101 11.328C5.04301 11.328 4.91501 11.279 4.81701 11.182C3.96701 10.332 3.49901 9.20298 3.49901 7.99998C3.49901 6.79698 3.96701 5.66798 4.81701 4.81798C5.01201 4.62298 5.32901 4.62298 5.52401 4.81798C5.71901 5.01298 5.72001 5.32998 5.52501 5.52498ZM11.182 4.81798C10.987 4.62298 10.67 4.62298 10.475 4.81798C10.28 5.01298 10.28 5.32998 10.475 5.52498C11.136 6.18598 11.5 7.06598 11.5 7.99998C11.5 8.93398 11.136 9.81298 10.475 10.475C10.28 10.67 10.28 10.987 10.475 11.182C10.573 11.28 10.701 11.328 10.829 11.328C10.957 11.328 11.085 11.279 11.183 11.182C12.033 10.332 12.501 9.20298 12.501 7.99998C12.501 6.79698 12.032 5.66798 11.182 4.81798ZM3.75501 3.75498C3.95001 3.55998 3.95001 3.24298 3.75501 3.04798C3.56001 2.85298 3.24301 2.85298 3.04801 3.04798C0.317006 5.77798 0.317006 10.222 3.04801 12.953C3.14601 13.051 3.27401 13.1 3.40201 13.1C3.53001 13.1 3.65801 13.051 3.75601 12.953C3.95101 12.758 3.95101 12.441 3.75601 12.246C1.41501 9.90498 1.41501 6.09598 3.75601 3.75598L3.75501 3.75498ZM12.952 3.04798C12.757 2.85298 12.44 2.85298 12.245 3.04798C12.05 3.24298 12.05 3.55998 12.245 3.75498C14.586 6.09598 14.586 9.90398 12.245 12.245C12.05 12.44 12.05 12.757 12.245 12.952C12.343 13.05 12.471 13.099 12.599 13.099C12.727 13.099 12.855 13.05 12.953 12.952C15.683 10.221 15.683 5.77698 12.953 3.04698L12.952 3.04798ZM8.00001 6.99998C7.44801 6.99998 7.00001 7.44798 7.00001 7.99998C7.00001 8.55198 7.44801 8.99998 8.00001 8.99998C8.55201 8.99998 9.00001 8.55198 9.00001 7.99998C9.00001 7.44798 8.55201 6.99998 8.00001 6.99998Z"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M4 1C2.34315 1 1 2.34315 1 4V12C1 13.6569 2.34315 15 4 15H12C13.6569 15 15 13.6569 15 12V4C15 2.34315 13.6569 1 12 1H4ZM2 4C2 2.89543 2.89543 2 4 2H12C13.1046 2 14 2.89543 14 4H2ZM2 5H14V12C14 13.1046 13.1046 14 12 14H4C2.89543 14 2 13.1046 2 12V5Z"/></svg>

After

Width:  |  Height:  |  Size: 369 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M14.5 8H13V6C13 5.63 12.898 5.283 12.722 4.985L13.853 3.854C14.048 3.659 14.048 3.342 13.853 3.147C13.658 2.952 13.341 2.952 13.146 3.147L12.015 4.278C11.717 4.102 11.37 4 11 4C11 2.346 9.654 1 8 1C6.346 1 5 2.346 5 4C4.63 4 4.283 4.102 3.985 4.278L2.854 3.147C2.659 2.952 2.342 2.952 2.147 3.147C1.952 3.342 1.952 3.659 2.147 3.854L3.278 4.985C3.102 5.283 3 5.63 3 6V8H1.5C1.224 8 1 8.224 1 8.5C1 8.776 1.224 9 1.5 9H3C3 10.199 3.424 11.3 4.13 12.163L2.396 13.897C2.201 14.092 2.201 14.409 2.396 14.604C2.494 14.702 2.622 14.75 2.75 14.75C2.878 14.75 3.006 14.701 3.104 14.604L4.838 12.87C5.7 13.576 6.802 14 8.001 14C9.2 14 10.301 13.576 11.164 12.87L12.898 14.604C12.996 14.702 13.124 14.75 13.252 14.75C13.38 14.75 13.508 14.701 13.606 14.604C13.801 14.409 13.801 14.092 13.606 13.897L11.872 12.163C12.578 11.301 13.002 10.199 13.002 9H14.502C14.778 9 15.002 8.776 15.002 8.5C15.002 8.224 14.778 8 14.502 8H14.5ZM8 2C9.103 2 10 2.897 10 4H6C6 2.897 6.897 2 8 2ZM12 9C12 11.206 10.206 13 8 13C5.794 13 4 11.206 4 9V6C4 5.449 4.448 5 5 5H11C11.552 5 12 5.449 12 6V9Z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M8.354 5.854L10.354 3.854C10.549 3.659 10.549 3.342 10.354 3.147C10.256 3.05 10.128 3.001 10 3.001C9.872 3.001 9.744 3.049 9.646 3.147L8.5 4.293V0.5C8.5 0.224 8.276 0 8 0C7.724 0 7.5 0.224 7.5 0.5V4.293L6.354 3.147C6.159 2.952 5.842 2.952 5.647 3.147C5.452 3.342 5.452 3.659 5.647 3.854L7.647 5.854C7.842 6.049 8.159 6.049 8.354 5.854Z"/><path d="M15 12.5C15 13.879 13.879 15 12.5 15H3.5C2.121 15 1 13.879 1 12.5V6.49999C1 6.22399 1.224 5.99999 1.5 5.99999C1.776 5.99999 2 6.22399 2 6.49999V12.5C2 13.327 2.673 14 3.5 14H12.5C13.327 14 14 13.327 14 12.5V6.49999C14 6.22399 14.224 5.99999 14.5 5.99999C14.776 5.99999 15 6.22399 15 6.49999V12.5Z"/><path d="M4 9.99999C4.55228 9.99999 5 9.55228 5 8.99999C5 8.44771 4.55228 7.99999 4 7.99999C3.44772 7.99999 3 8.44771 3 8.99999C3 9.55228 3.44772 9.99999 4 9.99999Z"/><path d="M8 9.99999C8.55228 9.99999 9 9.55228 9 8.99999C9 8.44771 8.55228 7.99999 8 7.99999C7.44772 7.99999 7 8.44771 7 8.99999C7 9.55228 7.44772 9.99999 8 9.99999Z"/><path d="M6 13C6.55228 13 7 12.5523 7 12C7 11.4477 6.55228 11 6 11C5.44772 11 5 11.4477 5 12C5 12.5523 5.44772 13 6 13Z"/><path d="M10 13C10.5523 13 11 12.5523 11 12C11 11.4477 10.5523 11 10 11C9.44771 11 9 11.4477 9 12C9 12.5523 9.44771 13 10 13Z"/><path d="M12 9.99999C12.5523 9.99999 13 9.55228 13 8.99999C13 8.44771 12.5523 7.99999 12 7.99999C11.4477 7.99999 11 8.44771 11 8.99999C11 9.55228 11.4477 9.99999 12 9.99999Z"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M12 1H4C2.343 1 1 2.343 1 4V12C1 13.657 2.343 15 4 15H12C13.657 15 15 13.657 15 12V4C15 2.343 13.657 1 12 1ZM14 12C14 13.105 13.105 14 12 14H4C2.895 14 2 13.105 2 12V5H14V12ZM2 4C2 2.895 2.895 2 4 2H12C13.105 2 14 2.895 14 4H2ZM4 11C4 10.448 4.448 10 5 10C5.552 10 6 10.448 6 11C6 11.552 5.552 12 5 12C4.448 12 4 11.552 4 11ZM7 11C7 10.448 7.448 10 8 10C8.552 10 9 10.448 9 11C9 11.552 8.552 12 8 12C7.448 12 7 11.552 7 11ZM4 8C4 7.448 4.448 7 5 7C5.552 7 6 7.448 6 8C6 8.552 5.552 9 5 9C4.448 9 4 8.552 4 8ZM7 8C7 7.448 7.448 7 8 7C8.552 7 9 7.448 9 8C9 8.552 8.552 9 8 9C7.448 9 7 8.552 7 8ZM10 8C10 7.448 10.448 7 11 7C11.552 7 12 7.448 12 8C12 8.552 11.552 9 11 9C10.448 9 10 8.552 10 8Z"/></svg>

After

Width:  |  Height:  |  Size: 812 B

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M13.8536 2.14646C14.0488 2.34172 14.0488 2.65831 13.8536 2.85357L10.7071 6.00002H12.5023C12.7785 6.00002 13.0023 6.22387 13.0023 6.50002C13.0023 6.77616 12.7785 7.00002 12.5023 7.00002H9.50001C9.22387 7.00002 9.00001 6.77616 9.00001 6.50002V3.50002C9.00001 3.22387 9.22387 3.00002 9.50001 3.00002C9.77615 3.00002 10 3.22387 10 3.50002V5.29291L13.1465 2.14646C13.3417 1.9512 13.6583 1.9512 13.8536 2.14646ZM4.37402 2.11973C5.22505 1.79979 6.17932 2.18483 6.57002 3.00579L7.15443 4.23378C7.40334 4.75682 7.32886 5.37643 6.96308 5.82558L6.01811 6.98592C6.03186 7.05633 6.05088 7.14298 6.0767 7.24156C6.15122 7.52611 6.27952 7.89904 6.49337 8.26517C6.7073 8.63144 6.96869 8.9262 7.17941 9.1306C7.25102 9.20007 7.31586 9.2582 7.36966 9.30427L8.87589 9.02762C9.37208 8.93648 9.88084 9.10087 10.2299 9.46513L11.0386 10.309C11.7108 11.0106 11.6829 12.1255 10.9763 12.7924L10.6803 13.0719C9.55432 14.1347 7.8006 14.3617 6.54567 13.3186C5.60587 12.5374 4.4774 11.439 3.62796 10.1058C2.68712 8.62912 2.24786 6.87525 2.03977 5.55517C1.80244 4.04964 2.76051 2.72633 4.11086 2.21867L4.37402 2.11973ZM7.23618 9.83715C6.94732 10.2453 6.94712 10.2451 6.94712 10.2451L6.9453 10.2438L6.94228 10.2417L6.93329 10.2351C6.92602 10.2298 6.91622 10.2226 6.90411 10.2134C6.87992 10.1951 6.84644 10.1692 6.80549 10.1359C6.72369 10.0693 6.61138 9.97277 6.48314 9.84839C6.22816 9.60105 5.90227 9.2359 5.62986 8.76951C5.35738 8.30298 5.19945 7.83905 5.10932 7.49491C5.06399 7.32182 5.0351 7.1763 5.01733 7.07215C5.00844 7.02001 5.00229 6.97803 4.99825 6.94791C4.99623 6.93284 4.99473 6.92073 4.99367 6.91177L4.99241 6.90073L4.99201 6.89703L4.99187 6.89564C4.99187 6.89564 4.99176 6.89457 5.48915 6.84363L4.99176 6.89457C4.97824 6.76263 5.0177 6.63073 5.10146 6.52789L6.18768 5.1941C6.30961 5.04439 6.33444 4.83785 6.25146 4.6635L5.66706 3.43551C5.49962 3.08367 5.09064 2.91865 4.72591 3.05577L4.46276 3.1547C3.47805 3.5249 2.87645 4.44077 3.02757 5.39945C3.22632 6.66024 3.63692 8.25884 4.47133 9.56848C5.24463 10.7822 6.28883 11.8047 7.1849 12.5496C7.98839 13.2174 9.17328 13.1192 9.99382 12.3447L10.2899 12.0652C10.5927 11.7794 10.6047 11.3016 10.3166 11.0009L9.50787 10.157C9.39152 10.0356 9.22193 9.98078 9.05654 10.0112L7.32651 10.3289C7.194 10.3533 7.05709 10.323 6.94712 10.2451L7.23618 9.83715Z"/></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M10 2.5C10 2.22386 10.2239 2 10.5 2H13.5C13.7762 2 14 2.22386 14 2.5V5.5C14 5.77614 13.7762 6 13.5 6C13.2239 6 13 5.77614 13 5.5V3.70713L9.85356 6.85365C9.6583 7.04891 9.34172 7.04892 9.14646 6.85366C8.95119 6.6584 8.95119 6.34181 9.14645 6.14655L12.2929 3H10.5C10.2239 3 10 2.77614 10 2.5ZM4.37402 2.11972C5.22505 1.79977 6.17932 2.18481 6.57002 3.00577L7.15443 4.23376C7.40334 4.7568 7.32886 5.37641 6.96308 5.82556L6.01811 6.9859C6.03186 7.05631 6.05088 7.14296 6.0767 7.24154C6.15122 7.52609 6.27952 7.89902 6.49337 8.26515C6.7073 8.63143 6.96869 8.92618 7.17941 9.13058C7.25102 9.20005 7.31586 9.25819 7.36966 9.30425L8.87589 9.0276C9.37208 8.93646 9.88084 9.10086 10.2299 9.46511L11.0386 10.309C11.7108 11.0106 11.6829 12.1254 10.9763 12.7924L10.6803 13.0718C9.55432 14.1347 7.8006 14.3617 6.54567 13.3186C5.60587 12.5374 4.4774 11.439 3.62796 10.1058C2.68712 8.6291 2.24786 6.87523 2.03977 5.55515C1.80244 4.04962 2.76051 2.72631 4.11086 2.21865L4.37402 2.11972ZM7.23618 9.83713C6.94732 10.2452 6.94712 10.2451 6.94712 10.2451L6.9453 10.2438L6.94228 10.2416L6.93329 10.2351C6.92602 10.2298 6.91622 10.2226 6.90411 10.2134C6.87992 10.1951 6.84644 10.1692 6.80549 10.1358C6.72369 10.0693 6.61138 9.97276 6.48314 9.84837C6.22816 9.60103 5.90227 9.23588 5.62986 8.76949C5.35738 8.30296 5.19945 7.83904 5.10932 7.49489C5.06399 7.32181 5.0351 7.17628 5.01733 7.07213C5.00844 7.01999 5.00229 6.97801 4.99825 6.94789C4.99623 6.93282 4.99473 6.92071 4.99367 6.91175L4.99241 6.90071L4.99201 6.89701L4.99187 6.89562C4.99187 6.89562 4.99176 6.89455 5.48915 6.84361L4.99176 6.89455C4.97824 6.76261 5.0177 6.63071 5.10146 6.52787L6.18768 5.19408C6.30961 5.04437 6.33444 4.83783 6.25146 4.66348L5.66706 3.43549C5.49962 3.08365 5.09064 2.91864 4.72591 3.05575L4.46276 3.15469C3.47805 3.52488 2.87645 4.44075 3.02757 5.39943C3.22632 6.66022 3.63692 8.25882 4.47133 9.56846C5.24463 10.7822 6.28883 11.8047 7.1849 12.5495C7.98839 13.2174 9.17328 13.1192 9.99382 12.3447L10.2899 12.0652C10.5927 11.7794 10.6047 11.3016 10.3166 11.0009L9.50787 10.157C9.39152 10.0356 9.22193 9.98077 9.05654 10.0111L7.32651 10.3289C7.194 10.3532 7.05709 10.3229 6.94712 10.2451L7.23618 9.83713Z"/></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.02602 3.34176C4.16218 2.93404 4.83818 2.93398 4.97426 3.34176L6.97426 9.34274C6.97526 9.34674 6.97817 9.35544 6.97817 9.35544L7.97426 12.3427C8.06126 12.6047 7.91984 12.8875 7.65786 12.9756C7.60486 12.9926 7.55165 13.0009 7.49965 13.0009C7.29082 13.0008 7.09602 12.868 7.02602 12.6591L6.14028 10.0009H2.86L1.97426 12.6591C1.88728 12.919 1.60634 13.0634 1.34243 12.9746C1.08043 12.8866 0.93902 12.6038 1.02602 12.3418L2.02211 9.35544C2.02311 9.35144 2.02602 9.34274 2.02602 9.34274L4.02602 3.34176ZM3.19399 8.99997H5.80629L4.49965 5.08102L3.19399 8.99997Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M11.8581 6.66794C13.165 6.73296 13.9427 7.48427 13.9967 8.69626L13.9997 8.83297V12.5078C13.9957 12.7568 13.809 12.9621 13.568 12.9951L13.4997 13C13.2469 12.9998 13.0376 12.8121 13.0045 12.5683L12.9997 12.5V12.4297C12.3407 12.8066 11.7316 13 11.1666 13C9.94081 12.9998 8.99965 12.1369 8.99965 10.833C8.99967 9.68299 9.79211 8.82889 11.1061 8.66989C11.7279 8.59493 12.3589 8.64164 12.9987 8.80954C12.9915 8.07194 12.6279 7.70704 11.8082 7.66598C11.1672 7.63398 10.7158 7.72415 10.4518 7.90915C10.2258 8.06799 9.91347 8.01301 9.75551 7.78708C9.59671 7.56115 9.65178 7.24878 9.87758 7.09079C10.3165 6.78283 10.9138 6.64715 11.6666 6.6611L11.8581 6.66794ZM12.7965 9.8154C12.2587 9.66749 11.7361 9.62551 11.2262 9.68747C10.4042 9.78747 9.99868 10.2244 9.99868 10.8574C9.99884 11.5881 10.474 12.0242 11.1657 12.0244C11.6196 12.0244 12.1777 11.8137 12.8336 11.3818L12.9987 11.2695V9.87594L12.7965 9.8154Z"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M6.037 12.117C6.08 12.501 6.164 12.873 6.283 13.23L4.625 14.681C3.992 15.236 3 14.786 3 13.944V12.002H2.5C1.119 12.002 0 10.883 0 9.50195V4.50195C0 3.12095 1.119 2.00195 2.5 2.00195H11.5C12.881 2.00195 14 3.11995 14 4.50095V6.60795C13.683 6.44495 13.349 6.31295 13 6.21395V4.50195C13 3.67395 12.328 3.00095 11.5 3.00095H2.5C1.672 3.00095 1 3.67395 1 4.50195V9.50195C1 10.33 1.672 11.002 2.5 11.002H4V13.9L6.037 12.118V12.117ZM16 11.5C16 13.985 13.985 16 11.5 16C9.015 16 7 13.985 7 11.5C7 9.01495 9.015 6.99995 11.5 6.99995C13.985 6.99995 16 9.01495 16 11.5ZM13.854 11.147C13.659 10.952 13.342 10.952 13.147 11.147L12.001 12.293V9.49995C12.001 9.22395 11.777 8.99995 11.501 8.99995C11.225 8.99995 11.001 9.22395 11.001 9.49995V12.293L9.855 11.147C9.66 10.952 9.343 10.952 9.148 11.147C8.953 11.342 8.953 11.659 9.148 11.854L11.148 13.854L11.151 13.857C11.198 13.904 11.253 13.939 11.311 13.963C11.369 13.987 11.433 14.001 11.499 14.001H11.505C11.572 14.001 11.635 13.987 11.693 13.963C11.752 13.939 11.807 13.902 11.855 13.855L13.855 11.855C14.05 11.66 14.05 11.343 13.855 11.148L13.854 11.147Z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M6.037 12.117C6.08 12.501 6.164 12.873 6.283 13.23L4.625 14.681C3.992 15.236 3 14.786 3 13.944V12.002H2.5C1.119 12.002 0 10.883 0 9.50195V4.50195C0 3.12095 1.119 2.00195 2.5 2.00195H11.5C12.881 2.00195 14 3.11995 14 4.50095V6.60795C13.683 6.44495 13.349 6.31295 13 6.21395V4.50195C13 3.67395 12.328 3.00095 11.5 3.00095H2.5C1.672 3.00095 1 3.67395 1 4.50195V9.50195C1 10.33 1.672 11.002 2.5 11.002H4V13.9L6.037 12.118V12.117ZM16 11.5C16 13.985 13.985 16 11.5 16C9.015 16 7 13.985 7 11.5C7 9.01495 9.015 6.99995 11.5 6.99995C13.985 6.99995 16 9.01495 16 11.5ZM13.854 11.147L11.854 9.14695L11.851 9.14395C11.804 9.09695 11.749 9.06195 11.691 9.03795C11.633 9.01395 11.569 8.99995 11.503 8.99995H11.497C11.43 8.99995 11.367 9.01395 11.309 9.03795C11.25 9.06195 11.195 9.09895 11.147 9.14595L9.147 11.146C8.952 11.341 8.952 11.658 9.147 11.853C9.342 12.048 9.659 12.048 9.854 11.853L11 10.707V13.5C11 13.776 11.224 14 11.5 14C11.776 14 12 13.776 12 13.5V10.707L13.146 11.853C13.341 12.048 13.658 12.048 13.853 11.853C14.048 11.658 14.048 11.341 13.853 11.146L13.854 11.147Z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M13.99 4.002C14.04 4.002 14.089 4.018 14.13 4.046C14.171 4.075 14.202 4.116 14.218 4.163L14.417 4.775C14.479 4.961 14.583 5.129 14.722 5.268C14.861 5.407 15.03 5.512 15.216 5.574V5.572L15.828 5.771L15.84 5.774C15.887 5.791 15.928 5.822 15.957 5.862C15.986 5.903 16.001 5.952 16.001 6.002C16.001 6.052 15.985 6.101 15.957 6.142C15.929 6.183 15.887 6.215 15.84 6.231L15.229 6.429C15.043 6.491 14.874 6.596 14.735 6.735C14.673 6.797 14.618 6.864 14.571 6.937C13.825 6.434 12.95 6.11 12.006 6.024C12.006 6.017 12.003 6.009 12.003 6.001C12.003 5.951 12.019 5.902 12.047 5.861C12.075 5.82 12.117 5.789 12.164 5.773L12.776 5.574C12.96 5.511 13.126 5.404 13.262 5.266C13.399 5.127 13.502 4.96 13.563 4.776L13.761 4.164C13.778 4.117 13.809 4.076 13.849 4.047C13.89 4.018 13.94 4.002 13.99 4.002ZM9.2 2.782L9.966 3.032L10.049 3.061C10.049 3.061 10.054 3.064 10.056 3.065C10.119 3.09 10.182 3.12 10.241 3.153C10.367 3.224 10.482 3.312 10.585 3.414C10.739 3.567 10.86 3.751 10.938 3.953C10.948 3.98 10.957 4.007 10.966 4.034L11.215 4.799C11.236 4.858 11.274 4.909 11.326 4.945C11.377 4.981 11.438 5.001 11.501 5.001H11.505C11.566 5.001 11.626 4.981 11.676 4.945C11.71 4.921 11.738 4.889 11.76 4.854C11.771 4.836 11.78 4.817 11.787 4.798L12.036 4.033C12.113 3.8 12.244 3.589 12.417 3.416C12.59 3.243 12.802 3.112 13.035 3.035L13.8 2.786C13.859 2.765 13.911 2.727 13.947 2.676C13.983 2.625 14.003 2.564 14.003 2.501C14.003 2.438 13.984 2.378 13.947 2.326C13.911 2.275 13.859 2.237 13.8 2.217L13.785 2.213L13.02 1.964C12.861 1.911 12.712 1.834 12.578 1.735C12.516 1.689 12.457 1.638 12.402 1.583C12.229 1.41 12.098 1.198 12.021 0.966L11.772 0.201C11.751 0.142 11.713 0.091 11.661 0.055C11.614 0.022 11.559 0.003 11.502 0H11.487C11.424 0 11.363 0.019 11.312 0.055C11.261 0.091 11.222 0.142 11.202 0.201L10.953 0.966C10.877 1.197 10.749 1.407 10.578 1.58C10.553 1.605 10.528 1.629 10.502 1.652C10.347 1.79 10.166 1.896 9.969 1.964L9.374 2.157H9.372L9.2 2.212C9.141 2.233 9.09 2.272 9.054 2.323C9.018 2.374 8.998 2.435 8.998 2.498C8.998 2.561 9.018 2.622 9.054 2.672C9.09 2.723 9.141 2.761 9.2 2.782ZM15.998 11.501C15.998 13.986 13.983 16.001 11.498 16.001C9.013 16.001 6.998 13.986 6.998 11.501C6.998 9.016 9.013 7.001 11.498 7.001C13.983 7.001 15.998 9.016 15.998 11.501ZM13.498 12.794L12.205 11.5L13.436 10.208C13.631 10.013 13.631 9.696 13.436 9.501C13.241 9.306 12.924 9.306 12.729 9.501L11.498 10.793L10.206 9.501C10.011 9.306 9.694 9.306 9.499 9.501C9.304 9.696 9.304 10.013 9.499 10.208L10.792 11.5L9.498 12.794C9.303 12.989 9.303 13.306 9.498 13.501C9.693 13.696 10.01 13.696 10.205 13.501L11.498 12.207L12.792 13.501C12.987 13.696 13.304 13.696 13.499 13.501C13.694 13.306 13.693 12.989 13.498 12.794ZM4 13.9V11.002H2.5C1.672 11.002 1 10.33 1 9.502V4.502C1 3.674 1.672 3.002 2.5 3.002H8V2.002H2.5C1.119 2.002 0 3.121 0 4.502V9.502C0 10.883 1.119 12.002 2.5 12.002H3V13.944C3 14.786 3.992 15.236 4.625 14.681L6.281 13.232C6.162 12.875 6.078 12.503 6.035 12.119L4 13.9Z"/></svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M13.993 4.002C14.043 4.002 14.092 4.018 14.133 4.046C14.174 4.075 14.205 4.116 14.221 4.163L14.42 4.775C14.482 4.961 14.586 5.129 14.725 5.268C14.864 5.407 15.033 5.512 15.219 5.574V5.572L15.831 5.771L15.843 5.774C15.89 5.791 15.931 5.822 15.96 5.862C15.989 5.903 16.004 5.952 16.004 6.002C16.004 6.052 15.988 6.101 15.96 6.142C15.932 6.183 15.89 6.215 15.843 6.231L15.232 6.429C15.046 6.491 14.877 6.596 14.738 6.735C14.599 6.874 14.494 7.042 14.432 7.228L14.234 7.84C14.217 7.887 14.186 7.928 14.145 7.957C14.104 7.986 14.055 8.001 14.005 8.001H13.998C13.949 8.001 13.902 7.985 13.862 7.957C13.821 7.928 13.79 7.887 13.774 7.84L13.574 7.228C13.512 7.042 13.406 6.873 13.268 6.734C13.129 6.595 12.961 6.49 12.774 6.428L12.749 6.42V6.417L12.708 6.403C12.66 6.367 12.609 6.331 12.557 6.299C12.388 6.195 12.206 6.117 12.016 6.067C12.01 6.046 12.005 6.024 12.005 6.001C12.005 5.951 12.021 5.902 12.049 5.861C12.077 5.82 12.119 5.789 12.166 5.773L12.778 5.574C12.962 5.511 13.128 5.404 13.264 5.266C13.401 5.127 13.504 4.96 13.565 4.776L13.763 4.164C13.78 4.117 13.811 4.076 13.851 4.047H13.852C13.893 4.017 13.943 4.002 13.993 4.002ZM9.20198 2.782L9.96898 3.032L10.052 3.061C10.052 3.061 10.057 3.064 10.059 3.065C10.122 3.09 10.185 3.12 10.244 3.153C10.37 3.224 10.485 3.312 10.588 3.414C10.742 3.567 10.863 3.751 10.941 3.953C10.951 3.98 10.96 4.007 10.969 4.034L11.218 4.799C11.239 4.858 11.277 4.909 11.329 4.945C11.38 4.981 11.441 5.001 11.504 5.001H11.508C11.569 5.001 11.629 4.981 11.679 4.945C11.713 4.921 11.741 4.889 11.763 4.854C11.774 4.836 11.783 4.817 11.79 4.798L12.039 4.033C12.116 3.8 12.247 3.589 12.42 3.416C12.593 3.243 12.805 3.112 13.038 3.035L13.803 2.786C13.862 2.765 13.913 2.727 13.949 2.676C13.985 2.625 14.005 2.564 14.005 2.501C14.005 2.438 13.986 2.378 13.949 2.326C13.913 2.275 13.861 2.237 13.803 2.217L13.788 2.213L13.023 1.964C12.864 1.911 12.715 1.834 12.581 1.735C12.519 1.689 12.46 1.638 12.405 1.583C12.232 1.41 12.101 1.198 12.024 0.966L11.775 0.201C11.754 0.142 11.716 0.091 11.664 0.055C11.617 0.022 11.562 0.003 11.505 0H11.49C11.427 0 11.366 0.019 11.315 0.055C11.264 0.091 11.225 0.142 11.205 0.201L10.956 0.966C10.88 1.197 10.752 1.407 10.581 1.58C10.556 1.605 10.531 1.629 10.505 1.652C10.35 1.79 10.169 1.896 9.97198 1.964L9.37698 2.157H9.37498L9.20298 2.212C9.14398 2.233 9.09298 2.272 9.05698 2.323C9.02098 2.374 9.00098 2.435 9.00098 2.498C9.00098 2.561 9.02098 2.622 9.05698 2.672C9.09298 2.723 9.14398 2.761 9.20198 2.782ZM15.893 14.553C15.969 14.705 16.005 14.875 15.998 15.045C15.99 15.215 15.94 15.381 15.85 15.526C15.761 15.671 15.636 15.791 15.487 15.874C15.338 15.957 15.171 16.001 15 16.001H7.99998C7.82898 16.001 7.66097 15.959 7.51097 15.876C7.36197 15.793 7.23598 15.674 7.14598 15.528C7.05598 15.383 7.00497 15.217 6.99697 15.046C6.98898 14.875 7.02498 14.705 7.10198 14.553L10.602 7.553C10.685 7.386 10.813 7.246 10.971 7.148C11.129 7.05 11.312 6.998 11.498 6.998C11.684 6.998 11.866 7.05 12.025 7.148C12.184 7.246 12.311 7.386 12.394 7.553L15.894 14.553H15.893ZM12 14.501C12 14.368 11.947 14.241 11.854 14.147C11.76 14.053 11.633 14.001 11.5 14.001C11.401 14.001 11.304 14.03 11.222 14.085C11.14 14.14 11.076 14.218 11.038 14.309C11 14.4 10.99 14.501 11.01 14.598C11.029 14.695 11.077 14.784 11.147 14.854C11.217 14.924 11.306 14.972 11.403 14.991C11.5 15.01 11.601 15 11.692 14.963C11.783 14.925 11.861 14.861 11.916 14.779C11.971 14.697 12 14.6 12 14.501ZM12 9.496C12 9.363 11.947 9.236 11.854 9.142C11.76 9.048 11.633 8.996 11.5 8.996C11.367 8.996 11.24 9.049 11.146 9.142C11.052 9.236 11 9.363 11 9.496V12.496C11 12.629 11.053 12.756 11.146 12.85C11.24 12.944 11.367 12.996 11.5 12.996C11.633 12.996 11.76 12.943 11.854 12.85C11.948 12.756 12 12.629 12 12.496V9.496ZM7.31298 11.002L4.00098 13.9V11.002H2.50098C1.67298 11.002 1.00098 10.33 1.00098 9.502V4.502C1.00098 3.674 1.67298 3.002 2.50098 3.002H8.00098V2.002H2.50098C1.11998 2.002 0.000976562 3.121 0.000976562 4.502V9.502C0.000976562 10.883 1.11998 12.002 2.50098 12.002H3.00098V13.944C3.00098 14.786 3.99298 15.236 4.62598 14.681L6.92398 12.67L7.75798 11.001H7.31198L7.31298 11.002Z"/></svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M9.055 2.672C9.019 2.622 8.999 2.561 8.999 2.498C8.999 2.435 9.019 2.374 9.055 2.323C9.091 2.272 9.142 2.233 9.201 2.212L9.373 2.157H9.375L9.97 1.964C10.167 1.896 10.348 1.79 10.503 1.652C10.529 1.629 10.554 1.605 10.579 1.58C10.75 1.407 10.878 1.197 10.954 0.966L11.203 0.201C11.223 0.142 11.262 0.091 11.313 0.055C11.364 0.019 11.425 0 11.488 0H11.503C11.56 0.003 11.615 0.022 11.662 0.055C11.714 0.091 11.752 0.142 11.773 0.201L12.022 0.966C12.099 1.198 12.23 1.41 12.403 1.583C12.458 1.638 12.517 1.689 12.579 1.735C12.713 1.834 12.862 1.911 13.021 1.964L13.786 2.213L13.801 2.217C13.86 2.237 13.911 2.275 13.947 2.326C13.984 2.378 14.003 2.438 14.003 2.501C14.003 2.564 13.983 2.625 13.947 2.676C13.911 2.727 13.86 2.765 13.801 2.786L13.036 3.035C12.803 3.112 12.591 3.243 12.418 3.416C12.245 3.589 12.114 3.8 12.037 4.033L11.788 4.798C11.781 4.817 11.772 4.836 11.761 4.854C11.739 4.889 11.711 4.92 11.677 4.944C11.627 4.98 11.567 5 11.506 5H11.502C11.439 5 11.378 4.98 11.327 4.944C11.275 4.908 11.237 4.857 11.216 4.798L10.967 4.033C10.958 4.006 10.948 3.979 10.938 3.952C10.86 3.75 10.74 3.566 10.586 3.413C10.483 3.311 10.368 3.223 10.242 3.152C10.183 3.119 10.121 3.089 10.058 3.064C10.056 3.064 10.051 3.061 10.051 3.061L9.968 3.031L9.201 2.782C9.142 2.761 9.091 2.723 9.055 2.672ZM15.958 5.862C15.929 5.822 15.888 5.791 15.841 5.774L15.829 5.771L15.217 5.572V5.574C15.031 5.512 14.862 5.408 14.723 5.269C14.584 5.13 14.48 4.961 14.418 4.775L14.219 4.163C14.203 4.116 14.172 4.075 14.131 4.046C14.09 4.018 14.041 4.002 13.991 4.002C13.941 4.002 13.892 4.017 13.851 4.046C13.811 4.075 13.78 4.116 13.763 4.163L13.564 4.775C13.503 4.959 13.401 5.127 13.264 5.266C13.128 5.404 12.961 5.51 12.777 5.573L12.165 5.772C12.118 5.788 12.076 5.819 12.048 5.86C12.02 5.901 12.004 5.95 12.004 6C12.004 6.05 12.019 6.099 12.048 6.14C12.077 6.18 12.118 6.211 12.165 6.228L12.748 6.417V6.42L12.772 6.428C12.959 6.49 13.128 6.594 13.267 6.733C13.405 6.872 13.51 7.042 13.572 7.228L13.772 7.84C13.788 7.887 13.819 7.928 13.86 7.957C13.9 7.985 13.947 8.001 13.996 8.001H14.003C14.053 8.001 14.102 7.986 14.143 7.957C14.184 7.928 14.214 7.887 14.231 7.84L14.43 7.228C14.492 7.042 14.596 6.873 14.735 6.734C14.874 6.595 15.043 6.491 15.229 6.429L15.841 6.23C15.888 6.214 15.93 6.183 15.958 6.142C15.986 6.101 16.002 6.052 16.002 6.002C16.002 5.952 15.987 5.903 15.958 5.862ZM13 9.5C13 10.328 12.328 11 11.5 11H7.312L4 13.898V11H2.5C1.672 11 1 10.328 1 9.5V4.5C1 3.672 1.672 3 2.5 3H8V2H2.5C1.119 2 0 3.119 0 4.5V9.5C0 10.881 1.119 12 2.5 12H3V13.942C3 14.784 3.992 15.234 4.625 14.679L7.688 11.999H11.5C12.881 11.999 14 10.88 14 9.499V8.999H13V9.5Z"/></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M12.354 3.646C12.159 3.451 11.842 3.451 11.647 3.646L6.70798 8.585L7.41498 9.292L12.354 4.353C12.549 4.158 12.549 3.841 12.354 3.646ZM1.85398 8.146C1.65898 7.951 1.34198 7.951 1.14698 8.146C0.951982 8.341 0.951982 8.658 1.14698 8.853L4.14698 11.853C4.24498 11.951 4.37298 11.999 4.50098 11.999C4.62898 11.999 4.75698 11.95 4.85498 11.853L5.20898 11.499L4.50198 10.792L1.85598 8.146H1.85398ZM7.49998 12C7.37198 12 7.24398 11.951 7.14598 11.854L4.14598 8.854C3.95098 8.659 3.95098 8.342 4.14598 8.147C4.34098 7.952 4.65798 7.952 4.85298 8.147L7.49898 10.793L14.645 3.647C14.84 3.452 15.157 3.452 15.352 3.647C15.547 3.842 15.547 4.159 15.352 4.354L7.85198 11.854C7.75398 11.952 7.62598 12 7.49798 12H7.49998Z"/></svg>

After

Width:  |  Height:  |  Size: 827 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M13.6572 3.13573C13.8583 2.9465 14.175 2.95614 14.3643 3.15722C14.5535 3.35831 14.5438 3.675 14.3428 3.86425L5.84277 11.8642C5.64597 12.0494 5.33756 12.0446 5.14648 11.8535L1.64648 8.35351C1.45121 8.15824 1.45121 7.84174 1.64648 7.64647C1.84174 7.45121 2.15825 7.45121 2.35351 7.64647L5.50976 10.8027L13.6572 3.13573Z"/></svg>

After

Width:  |  Height:  |  Size: 438 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M4.85401 2.146C5.04901 2.341 5.04901 2.658 4.85401 2.853L2.85401 4.853C2.65901 5.048 2.34201 5.048 2.14701 4.853L1.14701 3.853C0.952013 3.658 0.952013 3.341 1.14701 3.146C1.34201 2.951 1.65901 2.951 1.85401 3.146L2.50001 3.792L4.14601 2.146C4.34101 1.951 4.65901 1.951 4.85401 2.146ZM14.5 4H6.50001C6.22401 4 6.00001 3.776 6.00001 3.5C6.00001 3.224 6.22401 3 6.50001 3H14.5C14.776 3 15 3.224 15 3.5C15 3.776 14.776 4 14.5 4ZM4.85401 11.146C5.04901 11.341 5.04901 11.658 4.85401 11.853L2.85401 13.853C2.65901 14.048 2.34201 14.048 2.14701 13.853L1.14701 12.853C0.952013 12.658 0.952013 12.341 1.14701 12.146C1.34201 11.951 1.65901 11.951 1.85401 12.146L2.50001 12.792L4.14601 11.146C4.34101 10.951 4.65901 10.951 4.85401 11.146ZM14.5 13H6.50001C6.22401 13 6.00001 12.776 6.00001 12.5C6.00001 12.224 6.22401 12 6.50001 12H14.5C14.776 12 15 12.224 15 12.5C15 12.776 14.776 13 14.5 13ZM4.85401 6.646C5.04901 6.841 5.04901 7.158 4.85401 7.353L2.85401 9.353C2.65901 9.548 2.34201 9.548 2.14701 9.353L1.14701 8.353C0.952013 8.158 0.952013 7.841 1.14701 7.646C1.34201 7.451 1.65901 7.451 1.85401 7.646L2.50001 8.292L4.14601 6.646C4.34101 6.451 4.65901 6.451 4.85401 6.646ZM14.5 8.5H6.50001C6.22401 8.5 6.00001 8.276 6.00001 8C6.00001 7.724 6.22401 7.5 6.50001 7.5H14.5C14.776 7.5 15 7.724 15 8C15 8.276 14.776 8.5 14.5 8.5Z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M3.14598 5.85423L7.64598 10.3542C7.84098 10.5492 8.15798 10.5492 8.35298 10.3542L12.853 5.85423C13.048 5.65923 13.048 5.34223 12.853 5.14723C12.658 4.95223 12.341 4.95223 12.146 5.14723L7.99998 9.29323L3.85398 5.14723C3.65898 4.95223 3.34198 4.95223 3.14698 5.14723C2.95198 5.34223 2.95098 5.65923 3.14598 5.85423Z"/></svg>

After

Width:  |  Height:  |  Size: 435 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M9.14601 3.14623L4.64601 7.64623C4.45101 7.84123 4.45101 8.15823 4.64601 8.35323L9.14601 12.8532C9.34101 13.0482 9.65801 13.0482 9.85301 12.8532C10.048 12.6582 10.048 12.3412 9.85301 12.1462L5.70701 8.00023L9.85301 3.85423C10.048 3.65923 10.048 3.34223 9.85301 3.14723C9.65801 2.95223 9.34101 2.95223 9.14601 3.14723V3.14623Z"/></svg>

After

Width:  |  Height:  |  Size: 446 B

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M6.14601 3.14579C5.95101 3.34079 5.95101 3.65779 6.14601 3.85279L10.292 7.99879L6.14601 12.1448C5.95101 12.3398 5.95101 12.6568 6.14601 12.8518C6.34101 13.0468 6.65801 13.0468 6.85301 12.8518L11.353 8.35179C11.548 8.15679 11.548 7.83979 11.353 7.64478L6.85301 3.14479C6.65801 2.94979 6.34101 2.95079 6.14601 3.14579Z"/></svg>

After

Width:  |  Height:  |  Size: 437 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M3.14603 9.85423C3.34103 10.0492 3.65803 10.0492 3.85303 9.85423L7.99903 5.70823L12.145 9.85423C12.34 10.0492 12.657 10.0492 12.852 9.85423C13.047 9.65923 13.047 9.34223 12.852 9.14723L8.35203 4.64723C8.15703 4.45223 7.84003 4.45223 7.64503 4.64723L3.14503 9.14723C2.95003 9.34223 2.95103 9.65923 3.14603 9.85423Z"/></svg>

After

Width:  |  Height:  |  Size: 434 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M14.5 8.5C14.633 8.5 14.76 8.447 14.854 8.354C14.948 8.26 15 8.133 15 8C15 7.867 14.947 7.74 14.854 7.646C14.76 7.552 14.633 7.5 14.5 7.5H13V6H14.5C14.633 6 14.76 5.947 14.854 5.854C14.948 5.76 15 5.633 15 5.5C15 5.367 14.947 5.24 14.854 5.146C14.76 5.052 14.633 5 14.5 5H13C13 4.47 12.789 3.961 12.414 3.586C12.039 3.211 11.53 3 11 3V1.5C11 1.367 10.947 1.24 10.854 1.146C10.76 1.052 10.633 1 10.5 1C10.367 1 10.24 1.053 10.146 1.146C10.052 1.24 10 1.367 10 1.5V3H8.5V1.5C8.5 1.367 8.447 1.24 8.354 1.146C8.26 1.052 8.133 1 8 1C7.867 1 7.74 1.053 7.646 1.146C7.552 1.24 7.5 1.367 7.5 1.5V3H6V1.5C6 1.367 5.947 1.24 5.854 1.146C5.76 1.052 5.633 1 5.5 1C5.367 1 5.24 1.053 5.146 1.146C5.052 1.24 5 1.367 5 1.5V3C4.47 3 3.961 3.211 3.586 3.586C3.211 3.961 3 4.47 3 5H1.5C1.367 5 1.24 5.053 1.146 5.146C1.052 5.24 1 5.367 1 5.5C1 5.633 1.053 5.76 1.146 5.854C1.24 5.948 1.367 6 1.5 6H3V7.5H1.5C1.367 7.5 1.24 7.553 1.146 7.646C1.052 7.74 1 7.867 1 8C1 8.133 1.053 8.26 1.146 8.354C1.24 8.448 1.367 8.5 1.5 8.5H3V10H1.5C1.367 10 1.24 10.053 1.146 10.146C1.052 10.24 1 10.367 1 10.5C1 10.633 1.053 10.76 1.146 10.854C1.24 10.948 1.367 11 1.5 11H3C3 11.53 3.211 12.039 3.586 12.414C3.961 12.789 4.47 13 5 13V14.5C5 14.633 5.053 14.76 5.146 14.854C5.24 14.948 5.367 15 5.5 15C5.633 15 5.76 14.947 5.854 14.854C5.948 14.76 6 14.633 6 14.5V13H7.5V14.5C7.5 14.633 7.553 14.76 7.646 14.854C7.74 14.948 7.867 15 8 15C8.133 15 8.26 14.947 8.354 14.854C8.448 14.76 8.5 14.633 8.5 14.5V13H10V14.5C10 14.633 10.053 14.76 10.146 14.854C10.24 14.948 10.367 15 10.5 15C10.633 15 10.76 14.947 10.854 14.854C10.948 14.76 11 14.633 11 14.5V13C11.53 13 12.039 12.789 12.414 12.414C12.789 12.039 13 11.53 13 11H14.5C14.633 11 14.76 10.947 14.854 10.854C14.948 10.76 15 10.633 15 10.5C15 10.367 14.947 10.24 14.854 10.146C14.76 10.052 14.633 10 14.5 10H13V8.5H14.5ZM12 11C12 11.265 11.895 11.52 11.707 11.707C11.519 11.894 11.265 12 11 12H5C4.735 12 4.48 11.895 4.293 11.707C4.105 11.519 4 11.265 4 11V5C4 4.735 4.105 4.48 4.293 4.293C4.481 4.105 4.735 4 5 4H11C11.265 4 11.52 4.105 11.707 4.293C11.895 4.481 12 4.735 12 5V11ZM8 10.5C6.621 10.5 5.5 9.379 5.5 8C5.5 6.621 6.621 5.5 8 5.5C9.379 5.5 10.5 6.621 10.5 8C10.5 9.379 9.379 10.5 8 10.5ZM8 6.5C7.173 6.5 6.5 7.173 6.5 8C6.5 8.827 7.173 9.5 8 9.5C8.827 9.5 9.5 8.827 9.5 8C9.5 7.173 8.827 6.5 8 6.5Z"/></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M2.58859 2.71569L2.64645 2.64645C2.82001 2.47288 3.08944 2.4536 3.28431 2.58859L3.35355 2.64645L8 7.293L12.6464 2.64645C12.8417 2.45118 13.1583 2.45118 13.3536 2.64645C13.5488 2.84171 13.5488 3.15829 13.3536 3.35355L8.707 8L13.3536 12.6464C13.5271 12.82 13.5464 13.0894 13.4114 13.2843L13.3536 13.3536C13.18 13.5271 12.9106 13.5464 12.7157 13.4114L12.6464 13.3536L8 8.707L3.35355 13.3536C3.15829 13.5488 2.84171 13.5488 2.64645 13.3536C2.45118 13.1583 2.45118 12.8417 2.64645 12.6464L7.293 8L2.64645 3.35355C2.47288 3.17999 2.4536 2.91056 2.58859 2.71569L2.64645 2.64645L2.58859 2.71569Z"/></svg>

After

Width:  |  Height:  |  Size: 708 B

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M2 4.5C2 3.11929 3.11929 2 4.5 2H11.5C12.8807 2 14 3.11929 14 4.5V11.5C14 12.8807 12.8807 14 11.5 14H4.5C3.11929 14 2 12.8807 2 11.5V4.5ZM4.5 3C3.67157 3 3 3.67157 3 4.5V11.5C3 12.3284 3.67157 13 4.5 13H11.5C12.3284 13 13 12.3284 13 11.5V4.5C13 3.67157 12.3284 3 11.5 3H4.5Z"/></svg>

After

Width:  |  Height:  |  Size: 395 B

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M3 7.5C3 7.22386 3.22386 7 3.5 7H12.5C12.7761 7 13 7.22386 13 7.5C13 7.77614 12.7761 8 12.5 8H3.5C3.22386 8 3 7.77614 3 7.5Z"/></svg>

After

Width:  |  Height:  |  Size: 245 B

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M5.08496 4C5.29088 3.4174 5.8465 3 6.49961 3H9.99961C11.6565 3 12.9996 4.34315 12.9996 6V9.5C12.9996 10.1531 12.5822 10.7087 11.9996 10.9146V6C11.9996 4.89543 11.1042 4 9.99961 4H5.08496ZM4.5 5H9.5C10.3284 5 11 5.67157 11 6.5V11.5C11 12.3284 10.3284 13 9.5 13H4.5C3.67157 13 3 12.3284 3 11.5V6.5C3 5.67157 3.67157 5 4.5 5ZM4.5 6C4.22386 6 4 6.22386 4 6.5V11.5C4 11.7761 4.22386 12 4.5 12H9.5C9.77614 12 10 11.7761 10 11.5V6.5C10 6.22386 9.77614 6 9.5 6H4.5Z"/></svg>

After

Width:  |  Height:  |  Size: 578 B

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M8 4C8.36719 4 8.72135 4.04818 9.0625 4.14453C9.40365 4.23828 9.72135 4.3724 10.0156 4.54688C10.3125 4.72135 10.582 4.93099 10.8242 5.17578C11.069 5.41797 11.2786 5.6875 11.4531 5.98438C11.6276 6.27865 11.7617 6.59635 11.8555 6.9375C11.9518 7.27865 12 7.63281 12 8C12 8.36719 11.9518 8.72135 11.8555 9.0625C11.7617 9.40365 11.6276 9.72266 11.4531 10.0195C11.2786 10.3138 11.069 10.5833 10.8242 10.8281C10.582 11.0703 10.3125 11.2786 10.0156 11.4531C9.72135 11.6276 9.40365 11.763 9.0625 11.8594C8.72135 11.9531 8.36719 12 8 12C7.63281 12 7.27865 11.9531 6.9375 11.8594C6.59635 11.763 6.27734 11.6276 5.98047 11.4531C5.6862 11.2786 5.41667 11.0703 5.17188 10.8281C4.92969 10.5833 4.72135 10.3138 4.54688 10.0195C4.3724 9.72266 4.23698 9.40365 4.14062 9.0625C4.04688 8.72135 4 8.36719 4 8C4 7.63281 4.04688 7.27865 4.14062 6.9375C4.23698 6.59635 4.3724 6.27865 4.54688 5.98438C4.72135 5.6875 4.92969 5.41797 5.17188 5.17578C5.41667 4.93099 5.6862 4.72135 5.98047 4.54688C6.27734 4.3724 6.59635 4.23828 6.9375 4.14453C7.27865 4.04818 7.63281 4 8 4Z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M8 1C8.64258 1 9.26237 1.08431 9.85938 1.25293C10.4564 1.41699 11.0124 1.65169 11.5273 1.95703C12.0469 2.26237 12.5186 2.62923 12.9424 3.05762C13.3708 3.48145 13.7376 3.95312 14.043 4.47266C14.3483 4.98763 14.583 5.54362 14.7471 6.14062C14.9157 6.73763 15 7.35742 15 8C15 8.64258 14.9157 9.26237 14.7471 9.85938C14.583 10.4564 14.3483 11.0146 14.043 11.5342C13.7376 12.0492 13.3708 12.5208 12.9424 12.9492C12.5186 13.373 12.0469 13.7376 11.5273 14.043C11.0124 14.3483 10.4564 14.5853 9.85938 14.7539C9.26237 14.918 8.64258 15 8 15C7.35742 15 6.73763 14.918 6.14062 14.7539C5.54362 14.5853 4.98535 14.3483 4.46582 14.043C3.95085 13.7376 3.47917 13.373 3.05078 12.9492C2.62695 12.5208 2.26237 12.0492 1.95703 11.5342C1.65169 11.0146 1.41471 10.4564 1.24609 9.85938C1.08203 9.26237 1 8.64258 1 8C1 7.35742 1.08203 6.73763 1.24609 6.14062C1.41471 5.54362 1.65169 4.98763 1.95703 4.47266C2.26237 3.95312 2.62695 3.48145 3.05078 3.05762C3.47917 2.62923 3.95085 2.26237 4.46582 1.95703C4.98535 1.65169 5.54362 1.41699 6.14062 1.25293C6.73763 1.08431 7.35742 1 8 1Z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.58854 2.2153L9.58854 2.21528C9.08311 2.07252 8.55496 2 8.00098 2C7.44699 2 6.91884 2.07252 6.41341 2.21528L6.40659 2.21721L6.40659 2.21718C5.89259 2.35843 5.41641 2.55904 4.97513 2.81819C4.5335 3.08023 4.12844 3.39515 3.75886 3.76472C3.39532 4.12826 3.08274 4.53252 2.82014 4.97935L2.81818 4.98267L2.81818 4.98267C2.55924 5.41938 2.35622 5.89379 2.21039 6.409C2.07155 6.91543 2.00098 7.44479 2.00098 8C2.00098 8.5552 2.07155 9.08455 2.21038 9.59097C2.35622 10.1062 2.55946 10.5836 2.81921 11.0259C3.08148 11.4679 3.39423 11.8729 3.75887 12.2421C4.12806 12.6068 4.53308 12.9195 4.97513 13.1818C5.41737 13.4415 5.89472 13.6447 6.40994 13.7906C6.91638 13.9294 7.44575 14 8.00098 14C8.55619 14 9.08555 13.9294 9.59198 13.7906C10.1072 13.6448 10.5816 13.4417 11.0183 13.1828L11.0216 13.1808L11.0216 13.1808C11.4685 12.9182 11.8727 12.6057 12.2363 12.2421C12.6058 11.8726 12.9207 11.4675 13.1827 11.0259C13.4419 10.5846 13.6425 10.1084 13.7838 9.59439L13.7857 9.58756L13.7857 9.58757C13.9285 9.08213 14.001 8.55398 14.001 8C14.001 7.44602 13.9285 6.91787 13.7857 6.41243L13.7838 6.40562L13.7838 6.40561C13.6425 5.8916 13.4421 5.41838 13.1838 4.98267L13.1818 4.97935L13.1818 4.97935C12.9204 4.53447 12.6069 4.13142 12.24 3.7685L12.2324 3.76097L12.2325 3.76093C11.8696 3.3941 11.4665 3.08062 11.0216 2.81916L11.0183 2.81721L11.0183 2.8172C10.5826 2.55885 10.1094 2.35844 9.59537 2.21718L9.58854 2.2153ZM14.0439 11.5342C13.7386 12.0492 13.3717 12.5208 12.9434 12.9492C12.5195 13.373 12.0479 13.7376 11.5283 14.043C11.0133 14.3483 10.4574 14.5853 9.86035 14.7539C9.26335 14.918 8.64355 15 8.00098 15C7.3584 15 6.73861 14.918 6.1416 14.7539C5.5446 14.5853 4.98633 14.3483 4.4668 14.043C3.95182 13.7376 3.48014 13.373 3.05176 12.9492C2.62793 12.5208 2.26335 12.0492 1.95801 11.5342C1.65267 11.0146 1.41569 10.4564 1.24707 9.85938C1.08301 9.26237 1.00098 8.64258 1.00098 8C1.00098 7.35742 1.08301 6.73763 1.24707 6.14062C1.41569 5.54362 1.65267 4.98763 1.95801 4.47266C2.26335 3.95312 2.62793 3.48145 3.05176 3.05762C3.48014 2.62923 3.95182 2.26237 4.4668 1.95703C4.98633 1.65169 5.5446 1.41699 6.1416 1.25293C6.73861 1.08431 7.3584 1 8.00098 1C8.64355 1 9.26335 1.08431 9.86035 1.25293C10.4574 1.41699 11.0133 1.65169 11.5283 1.95703C12.0479 2.26237 12.5195 2.62923 12.9434 3.05762C13.3717 3.48145 13.7386 3.95312 14.0439 4.47266C14.3493 4.98763 14.584 5.54362 14.748 6.14062C14.9167 6.73763 15.001 7.35742 15.001 8C15.001 8.64258 14.9167 9.26237 14.748 9.85938C14.584 10.4564 14.3493 11.0146 14.0439 11.5342Z"/></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M11.8746 3.41833C9.51718 1.42026 5.98144 1.53327 3.75736 3.75736C1.53327 5.98144 1.42026 9.51719 3.41833 11.8746L11.8746 3.41833ZM12.5817 4.12543L4.12543 12.5817C6.48282 14.5797 10.0186 14.4667 12.2426 12.2426C14.4667 10.0186 14.5797 6.48282 12.5817 4.12543ZM3.05025 3.05025C5.78392 0.316582 10.2161 0.316582 12.9497 3.05025C15.6834 5.78392 15.6834 10.2161 12.9497 12.9497C10.2161 15.6834 5.78392 15.6834 3.05025 12.9497C0.316583 10.2161 0.316582 5.78392 3.05025 3.05025Z"/></svg>

After

Width:  |  Height:  |  Size: 592 B

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M9.99999 7.99988C9.99999 8.39544 9.88272 8.78206 9.66295 9.11096C9.44319 9.43986 9.13082 9.69628 8.76537 9.84766C8.39992 9.99903 7.99781 10.0386 7.60985 9.96143C7.22189 9.88426 6.86551 9.69377 6.5858 9.41406C6.3061 9.13436 6.11561 8.77798 6.03844 8.39001C5.96127 8.00205 6.00084 7.59995 6.15221 7.2345C6.30359 6.86904 6.56001 6.55668 6.88891 6.33691C7.2178 6.11715 7.60443 5.99988 7.99999 5.99988C8.53042 5.99988 9.0391 6.21062 9.41417 6.58569C9.78925 6.96077 9.99999 7.46944 9.99999 7.99988Z"/></svg>

After

Width:  |  Height:  |  Size: 613 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M8.83148 8.55539C8.72155 8.71992 8.56533 8.84812 8.38269 8.92378C8.20002 8.99944 7.99899 9.01924 7.80494 8.98064C7.61096 8.94205 7.43276 8.84681 7.29291 8.70696C7.15306 8.56711 7.05781 8.38891 7.01923 8.19492C6.98063 8.00088 7.00043 7.79984 7.07609 7.61718C7.15174 7.43454 7.27995 7.27832 7.44448 7.16838C7.60891 7.05851 7.80219 6.99988 7.99999 6.99988C8.26515 6.99988 8.51949 7.10523 8.70707 7.2928C8.89464 7.48037 8.99999 7.73471 8.99999 7.99988C8.99999 8.19767 8.94136 8.39095 8.83148 8.55539ZM9.66295 9.11096C9.88272 8.78206 9.99999 8.39544 9.99999 7.99988C9.99999 7.46944 9.78925 6.96077 9.41417 6.58569C9.0391 6.21062 8.53042 5.99988 7.99999 5.99988C7.60443 5.99988 7.2178 6.11715 6.88891 6.33691C6.56001 6.55668 6.30359 6.86904 6.15221 7.2345C6.00084 7.59995 5.96127 8.00205 6.03844 8.39001C6.11561 8.77798 6.3061 9.13436 6.5858 9.41406C6.86551 9.69377 7.22189 9.88426 7.60985 9.96143C7.99781 10.0386 8.39992 9.99903 8.76537 9.84766C9.13082 9.69628 9.44319 9.43986 9.66295 9.11096Z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 12C10.2091 12 12 10.2091 12 8C12 5.79086 10.2091 4 8 4C5.79086 4 4 5.79086 4 8C4 10.2091 5.79086 12 8 12ZM10.6093 8C10.6093 9.44108 9.44107 10.6093 8 10.6093C6.55893 10.6093 5.39071 9.44108 5.39071 8C5.39071 6.55893 6.55893 5.39071 8 5.39071C9.44107 5.39071 10.6093 6.55893 10.6093 8Z"/></svg>

After

Width:  |  Height:  |  Size: 448 B

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M12.5 1H3.5C2.121 1 1 2.121 1 3.5V12.5C1 13.879 2.121 15 3.5 15H12.5C13.879 15 15 13.879 15 12.5V3.5C15 2.121 13.879 1 12.5 1ZM6 6.5C6 6.775 5.775 7 5.5 7C5.225 7 5 6.775 5 6.5C5 6.225 5.225 6 5.5 6C5.775 6 6 6.225 6 6.5ZM12.5 14H6V11.5C6 11.225 6.225 11 6.5 11H9.092C9.299 11.581 9.849 12 10.5 12C11.327 12 12 11.327 12 10.5C12 9.673 11.327 9 10.5 9C9.849 9 9.299 9.419 9.092 10H6.5C5.673 10 5 10.673 5 11.5V14H3.5C2.673 14 2 13.327 2 12.5V3.5C2 2.673 2.673 2 3.5 2H5V5.092C4.419 5.299 4 5.849 4 6.5C4 7.327 4.673 8 5.5 8C6.327 8 7 7.327 7 6.5C7 5.849 6.581 5.299 6 5.092V2H12.5C13.327 2 14 2.673 14 3.5V6H10.908C10.701 5.419 10.151 5 9.5 5C8.673 5 8 5.673 8 6.5C8 7.327 8.673 8 9.5 8C10.151 8 10.701 7.581 10.908 7H14V12.5C14 13.327 13.327 14 12.5 14ZM10 10.5C10 10.225 10.225 10 10.5 10C10.775 10 11 10.225 11 10.5C11 10.775 10.775 11 10.5 11C10.225 11 10 10.775 10 10.5ZM10 6.5C10 6.775 9.775 7 9.5 7C9.225 7 9 6.775 9 6.5C9 6.225 9.225 6 9.5 6C9.775 6 10 6.225 10 6.5Z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M6.96 15.2L7.184 14.208L7.44 12.928L7.648 11.904L7.84 10.64L7.952 10.224L7.936 10.192L7.856 10.208L6.896 11.52L5.44 13.488L4.288 14.704L4.016 14.816L3.536 14.576L3.584 14.128L3.856 13.744L5.44 11.712L6.4 10.448L7.024 9.728L7.008 9.632H6.976L2.752 12.384L2 12.48L1.664 12.176L1.712 11.68L1.872 11.52L3.136 10.64L6.288 8.88L6.336 8.72L6.288 8.64H6.128L5.6 8.608L3.808 8.56L2.256 8.496L0.736 8.416L0.352 8.336L0 7.856L0.032 7.616L0.352 7.408L0.816 7.44L1.824 7.52L3.344 7.616L4.448 7.68L6.08 7.856H6.336L6.368 7.744L6.288 7.68L6.224 7.616L4.64 6.56L2.944 5.44L2.048 4.784L1.568 4.448L1.328 4.144L1.232 3.472L1.664 2.992L2.256 3.04L2.4 3.072L2.992 3.536L4.256 4.512L5.92 5.744L6.16 5.936L6.272 5.872V5.824L6.16 5.648L5.264 4.016L4.304 2.352L3.872 1.664L3.76 1.248C3.7176 1.104 3.696 0.944 3.696 0.768L4.192 0.096L4.464 0L5.136 0.096L5.408 0.336L5.824 1.28L6.48 2.768L7.52 4.784L7.824 5.392L7.984 5.936L8.048 6.112H8.16V6.016L8.24 4.864L8.4 3.472L8.56 1.68L8.608 1.168L8.864 0.56L9.36 0.24L9.744 0.416L10.064 0.88L10.016 1.168L9.84 2.4L9.456 4.336L9.216 5.648H9.36L9.52 5.472L10.176 4.608L11.28 3.232L11.76 2.688L12.336 2.08L12.704 1.792H13.392L13.888 2.544L13.664 3.328L12.96 4.224L12.368 4.976L11.52 6.112L11.008 7.024L11.056 7.088H11.168L13.072 6.672L14.112 6.496L15.328 6.288L15.888 6.544L15.952 6.8L15.728 7.344L14.416 7.664L12.88 7.968L10.592 8.512L10.56 8.528L10.592 8.576L11.616 8.672L12.064 8.704H13.152L15.168 8.848L15.696 9.2L16 9.616L15.952 9.952L15.136 10.352L14.048 10.096L11.488 9.488L10.624 9.28H10.496V9.344L11.232 10.064L12.56 11.264L14.24 12.816L14.32 13.2L14.112 13.52L13.888 13.488L12.416 12.368L11.84 11.872L10.56 10.8H10.48V10.912L10.768 11.344L12.336 13.696L12.416 14.416L12.304 14.64L11.888 14.784L11.456 14.704L10.528 13.424L9.584 11.968L8.816 10.672L8.736 10.736L8.272 15.568L8.064 15.808L7.584 16L7.184 15.696L6.96 15.2Z"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M13.5004 12.0004C13.7762 12.0006 14.0004 12.2245 14.0004 12.5004C14.0002 12.7761 13.7761 13.0002 13.5004 13.0004H2.50037C2.22449 13.0004 2.00056 12.7762 2.00037 12.5004C2.00037 12.2244 2.22437 12.0004 2.50037 12.0004H13.5004Z"/><path d="M13.5004 9.00037C13.7762 9.00056 14.0004 9.22449 14.0004 9.50037C14.0002 9.77608 13.7761 10.0002 13.5004 10.0004H2.50037C2.22449 10.0004 2.00056 9.7762 2.00037 9.50037C2.00037 9.22437 2.22437 9.00037 2.50037 9.00037H13.5004Z"/><path d="M13.5004 6.00037C13.7762 6.00056 14.0004 6.22449 14.0004 6.50037C14.0002 6.77608 13.7761 7.00017 13.5004 7.00037H7.50037C7.22449 7.00037 7.00056 6.7762 7.00037 6.50037C7.00037 6.22437 7.22437 6.00037 7.50037 6.00037H13.5004Z"/><path d="M5.50037 0.999023C5.63295 0.999115 5.76009 1.05179 5.85388 1.14551C5.94777 1.23939 6.00037 1.36722 6.00037 1.5C6.00027 1.63265 5.94769 1.75971 5.85388 1.85352L3.7074 4L5.85388 6.14551C5.94777 6.23939 6.00037 6.36722 6.00037 6.5C6.00027 6.63265 5.94769 6.75971 5.85388 6.85352C5.76008 6.94732 5.63302 6.99991 5.50037 7C5.36759 7 5.23976 6.9474 5.14587 6.85352L3.00037 4.70703L0.853882 6.85352C0.760077 6.94732 0.633017 6.99991 0.500366 7C0.36759 7 0.239761 6.9474 0.145874 6.85352C0.0521583 6.75972 -0.000519052 6.63258 -0.000610352 6.5C-0.000610354 6.36722 0.0519875 6.23939 0.145874 6.14551L2.29333 4L0.145874 1.85352C0.0521583 1.75972 -0.000519119 1.63258 -0.000610352 1.5C-0.000610351 1.36722 0.0519874 1.23939 0.145874 1.14551C0.239761 1.05162 0.36759 0.999023 0.500366 0.999023C0.63295 0.999115 0.76009 1.05179 0.853882 1.14551L3.00037 3.29297L5.14587 1.14551C5.23976 1.05162 5.36759 0.999023 5.50037 0.999023Z"/><path d="M13.5004 3.00037C13.7762 3.00056 14.0004 3.22449 14.0004 3.50037C14.0002 3.77608 13.7761 4.00017 13.5004 4.00037H7.50037C7.22449 4.00037 7.00056 3.7762 7.00037 3.50037C7.00037 3.22437 7.22437 3.00037 7.50037 3.00037H13.5004Z"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.08535 2.00049C5.29127 1.41789 5.84689 1.00049 6.5 1.00049H9.5C10.1531 1.00049 10.7087 1.41789 10.9146 2.00049H11.5C12.3284 2.00049 13 2.67206 13 3.50049V8.10026C12.919 8.12889 12.8402 8.16457 12.7646 8.20715C12.4603 8.37833 12.2253 8.65027 12.1 8.97611L12 8.87618V3.50049C12 3.22435 11.7761 3.00049 11.5 3.00049H10.9146C10.7087 3.58308 10.1531 4.00049 9.5 4.00049H6.5C5.84689 4.00049 5.29127 3.58308 5.08535 3.00049H4.5C4.22386 3.00049 4 3.22435 4 3.50049V13.5005C4 13.7766 4.22386 14.0005 4.5 14.0005H8V14.5001C8.00164 14.6722 8.03284 14.8413 8.09101 15.0005H4.5C3.67157 15.0005 3 14.3289 3 13.5005V3.50049C3 2.67206 3.67157 2.00049 4.5 2.00049H5.08535ZM6.5 2.00049C6.22386 2.00049 6 2.22435 6 2.50049C6 2.77663 6.22386 3.00049 6.5 3.00049H9.5C9.77614 3.00049 10 2.77663 10 2.50049C10 2.22435 9.77614 2.00049 9.5 2.00049H6.5Z"/><path d="M11.916 10.7783C11.971 10.6959 12.0002 10.599 12 10.5C11.9998 10.4345 11.9869 10.3696 11.962 10.309C11.937 10.2484 11.9003 10.1934 11.854 10.147L9.85401 8.147C9.80801 8.09999 9.75288 8.0629 9.69201 8.038C9.63109 8.01296 9.56587 8.00005 9.50001 8C9.36766 8.00003 9.24071 8.05253 9.14701 8.146L7.14701 10.146C7.10043 10.1924 7.06346 10.2476 7.03824 10.3084C7.01301 10.3691 7.00002 10.4342 7.00001 10.5C6.99943 10.5993 7.02844 10.6965 7.08334 10.7793C7.13824 10.8621 7.21655 10.9266 7.30827 10.9647C7.39999 11.0028 7.50098 11.0127 7.59835 10.9931C7.69572 10.9736 7.78507 10.9255 7.85501 10.855L9.00001 9.708L9.00001 14.5C9.00001 14.6326 9.05269 14.7598 9.14645 14.8536C9.24022 14.9473 9.3674 15 9.50001 15C9.63262 15 9.75979 14.9473 9.85356 14.8536C9.94733 14.7598 10 14.6326 10 14.5L10 9.708L11.146 10.854C11.2159 10.9241 11.3051 10.9719 11.4022 10.9912C11.4993 11.0106 11.6 11.0007 11.6915 10.9628C11.7829 10.9249 11.8611 10.8606 11.916 10.7783Z"/><path d="M11.084 13.2217C11.0291 13.3041 10.9998 13.401 11 13.5C11.0002 13.5655 11.0131 13.6304 11.038 13.691C11.063 13.7516 11.0997 13.8066 11.146 13.853L13.146 15.853C13.192 15.9 13.2471 15.9371 13.308 15.962C13.3689 15.987 13.4341 16 13.5 16C13.6324 16 13.7593 15.9475 13.853 15.854L15.853 13.854C15.8996 13.8076 15.9365 13.7524 15.9618 13.6916C15.987 13.6309 16 13.5658 16 13.5C16.0006 13.4007 15.9716 13.3035 15.9167 13.2207C15.8618 13.1379 15.7835 13.0734 15.6917 13.0353C15.6 12.9972 15.499 12.9873 15.4017 13.0069C15.3043 13.0264 15.2149 13.0745 15.145 13.145L14 14.292V9.5C14 9.36739 13.9473 9.24021 13.8536 9.14645C13.7598 9.05268 13.6326 9 13.5 9C13.3674 9 13.2402 9.05268 13.1464 9.14645C13.0527 9.24021 13 9.36739 13 9.5V14.292L11.854 13.146C11.7841 13.0759 11.6949 13.0281 11.5978 13.0088C11.5007 12.9894 11.4 12.9993 11.3085 13.0372C11.2171 13.0751 11.1389 13.1394 11.084 13.2217Z"/></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M2 8C2 4.68629 4.68629 2 8 2C11.3137 2 14 4.68629 14 8C14 11.3137 11.3137 14 8 14C4.68629 14 2 11.3137 2 8ZM8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1ZM8 4.5C8 4.22386 7.77614 4 7.5 4C7.22386 4 7 4.22386 7 4.5V8.5C7 8.77614 7.22386 9 7.5 9H10.5C10.7761 9 11 8.77614 11 8.5C11 8.22386 10.7761 8 10.5 8H8V4.5Z"/></svg>

After

Width:  |  Height:  |  Size: 487 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M15 6V11C15 13.21 13.21 15 11 15H6C5.26 15 4.62 14.6 4.27 14H11C12.65 14 14 12.65 14 11V4.27C14.6 4.62 15 5.26 15 6ZM11 13H4C2.897 13 2 12.103 2 11V4C2 2.897 2.897 2 4 2H11C12.103 2 13 2.897 13 4V11C13 12.103 12.103 13 11 13ZM4 12H11C11.552 12 12 11.552 12 11V4C12 3.449 11.552 3 11 3H4C3.448 3 3 3.449 3 4V11C3 11.552 3.448 12 4 12ZM9.854 5.146C9.659 4.951 9.342 4.951 9.147 5.146L7.501 6.792L5.855 5.146C5.66 4.951 5.343 4.951 5.148 5.146C4.953 5.341 4.953 5.658 5.148 5.853L6.794 7.499L5.148 9.145C4.953 9.34 4.953 9.657 5.148 9.852C5.246 9.95 5.374 9.998 5.502 9.998C5.63 9.998 5.758 9.949 5.856 9.852L7.502 8.206L9.148 9.852C9.246 9.95 9.374 9.998 9.502 9.998C9.63 9.998 9.758 9.949 9.856 9.852C10.051 9.657 10.051 9.34 9.856 9.145L8.21 7.499L9.856 5.853C10.051 5.658 10.051 5.341 9.856 5.146H9.854Z"/></svg>

After

Width:  |  Height:  |  Size: 925 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M8.70701 8.00001L12.353 4.35401C12.548 4.15901 12.548 3.84201 12.353 3.64701C12.158 3.45201 11.841 3.45201 11.646 3.64701L8.00001 7.29301L4.35401 3.64701C4.15901 3.45201 3.84201 3.45201 3.64701 3.64701C3.45201 3.84201 3.45201 4.15901 3.64701 4.35401L7.29301 8.00001L3.64701 11.646C3.45201 11.841 3.45201 12.158 3.64701 12.353C3.74501 12.451 3.87301 12.499 4.00101 12.499C4.12901 12.499 4.25701 12.45 4.35501 12.353L8.00101 8.70701L11.647 12.353C11.745 12.451 11.873 12.499 12.001 12.499C12.129 12.499 12.257 12.45 12.355 12.353C12.55 12.158 12.55 11.841 12.355 11.646L8.70901 8.00001H8.70701Z"/></svg>

After

Width:  |  Height:  |  Size: 713 B

@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M11.5 7C9.015 7 7 9.015 7 11.5C7 13.985 9.015 16 11.5 16C13.985 16 16 13.985 16 11.5C16 9.015 13.985 7 11.5 7ZM13.854 11.854L11.854 13.854C11.806 13.902 11.751 13.938 11.692 13.963C11.634 13.987 11.57 14 11.504 14.001H11.498C11.431 14.001 11.368 13.987 11.31 13.963C11.252 13.939 11.197 13.903 11.15 13.857L11.147 13.854L9.147 11.854C8.952 11.659 8.952 11.342 9.147 11.147C9.342 10.952 9.659 10.952 9.854 11.147L11 12.294V9.001C11 8.725 11.224 8.501 11.5 8.501C11.776 8.501 12 8.725 12 9.001V12.294L13.146 11.147C13.341 10.952 13.658 10.952 13.853 11.147C14.048 11.342 14.048 11.659 13.853 11.854H13.854ZM4.25 12H6V13H4.25C2.455 13 1 11.545 1 9.75C1 8.029 2.338 6.62 4.03 6.507C4.273 4.53 5.958 3 8 3C9.862 3 11.411 4.278 11.857 6H10.811C10.397 4.838 9.303 4 8 4C6.343 4 5 5.343 5 7C5 7.276 4.776 7.5 4.5 7.5H4.25C3.007 7.5 2 8.507 2 9.75C2 10.993 3.007 12 4.25 12Z"/></svg>

After

Width:  |  Height:  |  Size: 986 B

+1
View File
@@ -0,0 +1 @@
<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M7.75 8H2.25C1.01 8 0 6.99 0 5.75C0 4.58 0.897 3.616 2.04 3.51C2.274 2.088 3.513 1 5 1C6.487 1 7.726 2.088 7.96 3.51C9.103 3.616 10 4.58 10 5.75C10 6.99 8.99 8 7.75 8ZM2.25 4.5C1.561 4.5 1 5.061 1 5.75C1 6.439 1.561 7 2.25 7H7.75C8.439 7 9 6.439 9 5.75C9 5.061 8.439 4.5 7.75 4.5H7.5C7.224 4.5 7 4.276 7 4C7 2.897 6.103 2 5 2C3.897 2 3 2.897 3 4C3 4.276 2.776 4.5 2.5 4.5H2.25Z"/></svg>

After

Width:  |  Height:  |  Size: 498 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M11.5 7C9.015 7 7 9.015 7 11.5C7 13.985 9.015 16 11.5 16C13.985 16 16 13.985 16 11.5C16 9.015 13.985 7 11.5 7ZM13.854 11.854C13.659 12.049 13.342 12.049 13.147 11.854L12.001 10.708V14.001C12.001 14.277 11.777 14.501 11.501 14.501C11.225 14.501 11.001 14.277 11.001 14.001V10.708L9.855 11.854C9.66 12.049 9.343 12.049 9.148 11.854C8.953 11.659 8.953 11.342 9.148 11.147L11.148 9.147C11.196 9.099 11.251 9.063 11.31 9.039C11.368 9.015 11.432 9.001 11.498 9.001H11.504C11.571 9.001 11.634 9.015 11.692 9.039C11.75 9.063 11.805 9.099 11.852 9.145L11.855 9.148L13.855 11.148C14.05 11.343 14.05 11.66 13.855 11.855L13.854 11.854ZM4.25 12H6V13H4.25C2.455 13 1 11.545 1 9.75C1 8.029 2.338 6.62 4.03 6.507C4.273 4.53 5.958 3 8 3C9.862 3 11.411 4.278 11.857 6H10.811C10.397 4.838 9.303 4 8 4C6.343 4 5 5.343 5 7C5 7.276 4.776 7.5 4.5 7.5H4.25C3.007 7.5 2 8.507 2 9.75C2 10.993 3.007 12 4.25 12Z"/></svg>

After

Width:  |  Height:  |  Size: 1005 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M8 4C6.34315 4 5 5.34315 5 7C5 7.27614 4.77614 7.5 4.5 7.5H4.25C3.00736 7.5 2 8.50736 2 9.75C2 10.9926 3.00736 12 4.25 12H11.75C12.9926 12 14 10.9926 14 9.75C14 8.50736 12.9926 7.5 11.75 7.5H11.5C11.2239 7.5 11 7.27614 11 7C11 5.34315 9.65685 4 8 4ZM4.03004 6.50733C4.27283 4.53062 5.95767 3 8 3C10.0423 3 11.7272 4.53063 11.97 6.50733C13.6623 6.62043 15 8.029 15 9.75C15 11.5449 13.5449 13 11.75 13H4.25C2.45507 13 1 11.5449 1 9.75C1 8.029 2.33769 6.62043 4.03004 6.50733Z"/></svg>

After

Width:  |  Height:  |  Size: 594 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M12.5 1H3.5C2.121 1 1 2.122 1 3.5V12.5C1 13.879 2.121 15 3.5 15H12.5C13.879 15 15 13.879 15 12.5V3.5C15 2.122 13.879 1 12.5 1ZM2 12.5V3.5C2 2.673 2.673 2 3.5 2H5V14H3.5C2.673 14 2 13.327 2 12.5ZM14 12.5C14 13.327 13.327 14 12.5 14H6V2H12.5C13.327 2 14 2.673 14 3.5V12.5Z"/><path d="M7.5 4H10.5C10.776 4 11 3.776 11 3.5C11 3.224 10.776 3 10.5 3H7.5C7.224 3 7 3.224 7 3.5C7 3.776 7.224 4 7.5 4Z"/><path d="M12.5 5H9.5C9.224 5 9 5.224 9 5.5C9 5.776 9.224 6 9.5 6H12.5C12.776 6 13 5.776 13 5.5C13 5.224 12.776 5 12.5 5Z"/><path d="M10.5 11H7.5C7.224 11 7 11.224 7 11.5C7 11.776 7.224 12 7.5 12H10.5C10.776 12 11 11.776 11 11.5C11 11.224 10.776 11 10.5 11Z"/><path d="M12.5 7H9.5C9.224 7 9 7.224 9 7.5C9 7.776 9.224 8 9.5 8H12.5C12.776 8 13 7.776 13 7.5C13 7.224 12.776 7 12.5 7Z"/><path d="M12.5 9H9.5C9.224 9 9 9.224 9 9.5C9 9.776 9.224 10 9.5 10H12.5C12.776 10 13 9.776 13 9.5C13 9.224 12.776 9 12.5 9Z"/></svg>

After

Width:  |  Height:  |  Size: 1021 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M12.5 2.00002H3.5C2.119 2.00002 1 3.11902 1 4.50002V9.50002C1 10.881 2.119 12 3.5 12H4V13.942C4 14.784 4.992 15.234 5.625 14.679L8.688 11.999H12.5C13.881 11.999 15 10.88 15 9.49902V4.49902C15 3.11802 13.881 1.99902 12.5 1.99902V2.00002ZM14 9.50002C14 10.328 13.328 11 12.5 11H8.312L5 13.898V11H3.5C2.672 11 2 10.328 2 9.50002V4.50002C2 3.67202 2.672 3.00002 3.5 3.00002H12.5C13.328 3.00002 14 3.67202 14 4.50002V9.50002ZM6.854 4.85402L4.708 7.00002L6.854 9.14602C7.049 9.34102 7.049 9.65802 6.854 9.85302C6.756 9.95102 6.628 9.99902 6.5 9.99902C6.372 9.99902 6.244 9.95002 6.146 9.85302L3.646 7.35302C3.451 7.15802 3.451 6.84102 3.646 6.64602L6.146 4.14602C6.341 3.95102 6.658 3.95102 6.853 4.14602C7.048 4.34102 7.048 4.65802 6.853 4.85302L6.854 4.85402ZM12.354 6.64602C12.549 6.84102 12.549 7.15802 12.354 7.35302L9.854 9.85302C9.756 9.95102 9.628 9.99902 9.5 9.99902C9.372 9.99902 9.244 9.95002 9.146 9.85302C8.951 9.65802 8.951 9.34102 9.146 9.14602L11.292 7.00002L9.146 4.85402C8.951 4.65902 8.951 4.34202 9.146 4.14702C9.341 3.95202 9.658 3.95202 9.853 4.14702L12.353 6.64702L12.354 6.64602Z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M9.80307 3.0431C10.0554 3.15525 10.1691 3.45073 10.0569 3.70307L6.05691 12.7031C5.94475 12.9554 5.64927 13.0691 5.39693 12.9569C5.14459 12.8448 5.03094 12.5493 5.14309 12.2969L9.14309 3.29693C9.25525 3.04459 9.55073 2.93094 9.80307 3.0431ZM4.33218 5.3763C4.53857 5.55976 4.55716 5.87579 4.3737 6.08218L2.66898 8L4.3737 9.91782C4.55716 10.1242 4.53857 10.4402 4.33218 10.6237C4.12579 10.8072 3.80975 10.7886 3.6263 10.5822L1.6263 8.33218C1.4579 8.14274 1.4579 7.85726 1.6263 7.66782L3.6263 5.41782C3.80975 5.21143 4.12579 5.19284 4.33218 5.3763ZM11.6678 5.3763C11.8742 5.19284 12.1902 5.21143 12.3737 5.41782L14.3737 7.66782C14.5421 7.85726 14.5421 8.14274 14.3737 8.33218L12.3737 10.5822C12.1902 10.7886 11.8742 10.8072 11.6678 10.6237C11.4614 10.4402 11.4428 10.1242 11.6263 9.91782L13.331 8L11.6263 6.08218C11.4428 5.87579 11.4614 5.55976 11.6678 5.3763Z"/></svg>

After

Width:  |  Height:  |  Size: 977 B

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M2.5 0C2.77614 0 3 0.223858 3 0.5C3 0.969538 3.27449 1.20587 3.8 1.6L3.83977 1.62978C4.31392 1.98457 5 2.49793 5 3.5C5 3.77614 4.77614 4 4.5 4C4.22386 4 4 3.77614 4 3.5C4 3.03046 3.72551 2.79413 3.2 2.4L3.16023 2.37022C2.68608 2.01543 2 1.50207 2 0.5C2 0.223858 2.22386 0 2.5 0ZM5.5 0C5.77614 0 6 0.223858 6 0.5C6 0.969538 6.27449 1.20587 6.8 1.6L6.83977 1.62978C7.31392 1.98457 8 2.49793 8 3.5C8 3.77614 7.77614 4 7.5 4C7.22386 4 7 3.77614 7 3.5C7 3.03046 6.72551 2.79413 6.2 2.4L6.16023 2.37022C5.68608 2.01543 5 1.50207 5 0.5C5 0.223858 5.22386 0 5.5 0ZM9 0.5C9 0.223858 8.77614 0 8.5 0C8.22386 0 8 0.223858 8 0.5C8 1.50207 8.68608 2.01543 9.16023 2.37022L9.2 2.4C9.72551 2.79413 10 3.03046 10 3.5C10 3.77614 10.2239 4 10.5 4C10.7761 4 11 3.77614 11 3.5C11 2.49793 10.3139 1.98457 9.83977 1.62978L9.8 1.6C9.27449 1.20587 9 0.969538 9 0.5ZM13 6H13.5C14.8807 6 16 7.11929 16 8.5C16 9.88071 14.8807 11 13.5 11H12.793C12.14 13.3085 10.0176 15 7.5 15C4.46243 15 2 12.5376 2 9.5V5.8913C2 5.39905 2.39905 5 2.8913 5H12.1087C12.6009 5 13 5.39905 13 5.8913V6ZM3 6V9.5C3 11.9853 5.01472 14 7.5 14C9.98528 14 12 11.9853 12 9.5V6H3ZM13 7V9.5C13 9.66854 12.9924 9.83532 12.9776 10H13.5C14.3284 10 15 9.32843 15 8.5C15 7.67157 14.3284 7 13.5 7H13Z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

+1
View File
@@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M14 4.27051C14.5999 4.62053 15 5.26009 15 6V11C15 13.21 13.21 15 11 15H6C5.26009 15 4.62053 14.5999 4.27051 14H11C12.65 14 14 12.65 14 11V4.27051Z"/><path d="M9.5 7C9.776 7 10 7.224 10 7.5C10 7.776 9.776 8 9.5 8H5.5C5.224 8 5 7.776 5 7.5C5 7.224 5.224 7 5.5 7H9.5Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M11 2C12.103 2 13 2.897 13 4V11C13 12.103 12.103 13 11 13H4C2.897 13 2 12.103 2 11V4C2 2.897 2.897 2 4 2H11ZM4 3C3.449 3 3 3.449 3 4V11C3 11.552 3.449 12 4 12H11C11.551 12 12 11.552 12 11V4C12 3.449 11.551 3 11 3H4Z"/></svg>

After

Width:  |  Height:  |  Size: 652 B

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