Úprava souboru index.html
69
font-logos/.github/workflows/release.yml
vendored
|
@ -1,69 +0,0 @@
|
||||||
# This creates a Release Draft
|
|
||||||
# Adjust the release message in the web GUI and publish the release there.
|
|
||||||
|
|
||||||
name: Draft a Release
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
setup-release-draft:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Fetch repo
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Fetch dependencies
|
|
||||||
run: |
|
|
||||||
sudo apt update -y -q
|
|
||||||
sudo apt install python3-fontforge jq nodejs wkhtmltopdf -y -q
|
|
||||||
npm install nunjucks
|
|
||||||
|
|
||||||
# Ubuntu 20.04 has only fontforge release 2020, but there are some vital bugfixes in the 2023 release
|
|
||||||
# This can be replaced with the ordinary apt package when Ubuntu updates, probably with 23.10
|
|
||||||
# On the other hand ... why not be on the latest release always?
|
|
||||||
- name: Fetch FontForge
|
|
||||||
run: |
|
|
||||||
sudo apt install fuse -y -q
|
|
||||||
curl -L "https://github.com/fontforge/fontforge/releases/download/20230101/FontForge-2023-01-01-a1dad3e-x86_64.AppImage" \
|
|
||||||
--output fontforge
|
|
||||||
chmod u+x fontforge
|
|
||||||
echo Try appimage
|
|
||||||
./fontforge --version
|
|
||||||
export PATH=`pwd`:$PATH
|
|
||||||
echo "PATH=$PATH" >> $GITHUB_ENV
|
|
||||||
echo Try appimage with path
|
|
||||||
fontforge --version
|
|
||||||
|
|
||||||
- name: Determine version
|
|
||||||
id: rel_ver
|
|
||||||
run: |
|
|
||||||
REL_VERSION=$(jq -r '.version' package.json)
|
|
||||||
echo "Release version ${REL_VERSION}"
|
|
||||||
echo "ver=${REL_VERSION}" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Create the assets
|
|
||||||
run: |
|
|
||||||
make
|
|
||||||
|
|
||||||
- name: Crate archive
|
|
||||||
id: archive
|
|
||||||
run: |
|
|
||||||
make pack
|
|
||||||
ZIPFILE=$(ls font-logos-*zip )
|
|
||||||
echo "ZIPFILE=${ZIPFILE}"
|
|
||||||
echo "filename=${ZIPFILE}" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Adjust release tag
|
|
||||||
uses: EndBug/latest-tag@v1
|
|
||||||
with:
|
|
||||||
ref: "v${{ steps.rel_ver.outputs.ver }}"
|
|
||||||
|
|
||||||
- name: Create release draft
|
|
||||||
uses: softprops/action-gh-release@v2
|
|
||||||
with:
|
|
||||||
draft: true
|
|
||||||
tag_name: "v${{ steps.rel_ver.outputs.ver }}"
|
|
||||||
files: |
|
|
||||||
${{ steps.archive.outputs.filename }}
|
|
||||||
generate_release_notes: true
|
|
69
font-logos/.github/workflows/release_npm.yml
vendored
|
@ -1,69 +0,0 @@
|
||||||
# This pushes out a new npm release
|
|
||||||
# It will be triggered once the release draft is published
|
|
||||||
|
|
||||||
name: Publish release to npm
|
|
||||||
|
|
||||||
on:
|
|
||||||
release:
|
|
||||||
types:
|
|
||||||
- released
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
npm-publish:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Fetch repo
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Check if we are on correct commit
|
|
||||||
run: |
|
|
||||||
REL_VERSION=v$(jq -r '.version' package.json)
|
|
||||||
GIT_VERSION=$(git describe --tags)
|
|
||||||
echo "Release version ${REL_VERSION}"
|
|
||||||
echo "Git tag version ${GIT_VERSION}"
|
|
||||||
if [ "${REL_VERSION}" != "${GIT_VERSION}" ]; then \
|
|
||||||
echo "This is probably not what you want"; \
|
|
||||||
exit 1; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Fetch dependencies
|
|
||||||
run: |
|
|
||||||
sudo apt update -y -q
|
|
||||||
sudo apt install python3-fontforge jq nodejs wkhtmltopdf -y -q
|
|
||||||
npm install nunjucks
|
|
||||||
|
|
||||||
# Ubuntu 20.04 has only fontforge release 2020, but there are some vital bugfixes in the 2023 release
|
|
||||||
# This can be replaced with the ordinary apt package when Ubuntu updates, probably with 23.10
|
|
||||||
# On the other hand ... why not be on the latest release always?
|
|
||||||
- name: Fetch FontForge
|
|
||||||
run: |
|
|
||||||
sudo apt install fuse -y -q
|
|
||||||
curl -L "https://github.com/fontforge/fontforge/releases/download/20230101/FontForge-2023-01-01-a1dad3e-x86_64.AppImage" \
|
|
||||||
--output fontforge
|
|
||||||
chmod u+x fontforge
|
|
||||||
echo Try appimage
|
|
||||||
./fontforge --version
|
|
||||||
export PATH=`pwd`:$PATH
|
|
||||||
echo "PATH=$PATH" >> $GITHUB_ENV
|
|
||||||
echo Try appimage with path
|
|
||||||
fontforge --version
|
|
||||||
|
|
||||||
- name: Setup .npmrc file to publish to npm
|
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: '20.x'
|
|
||||||
registry-url: 'https://registry.npmjs.org'
|
|
||||||
|
|
||||||
- name: Build the artifacts
|
|
||||||
run: |
|
|
||||||
npm ci
|
|
||||||
make
|
|
||||||
|
|
||||||
- name: Publish to npm
|
|
||||||
run: |
|
|
||||||
npm publish
|
|
||||||
env:
|
|
||||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
60
font-logos/.github/workflows/update-assets.yml
vendored
|
@ -1,60 +0,0 @@
|
||||||
name: Update assets
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [ master ]
|
|
||||||
paths:
|
|
||||||
- icons.tsv
|
|
||||||
- vectors/*
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
update_assets:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Fetch repo
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Fetch dependencies
|
|
||||||
run: |
|
|
||||||
sudo apt update -y -q
|
|
||||||
sudo apt install jq nodejs wkhtmltopdf -y -q
|
|
||||||
npm install nunjucks
|
|
||||||
|
|
||||||
# Ubuntu 20.04 has only fontforge release 2020, but there are some vital bugfixes in the 2023 release
|
|
||||||
# This can be replaced with the ordinary apt package when Ubuntu updates, probably with 23.10
|
|
||||||
# On the other hand ... why not be on the latest release always?
|
|
||||||
- name: Fetch FontForge
|
|
||||||
run: |
|
|
||||||
sudo apt install fuse -y -q
|
|
||||||
curl -L "https://github.com/fontforge/fontforge/releases/download/20230101/FontForge-2023-01-01-a1dad3e-x86_64.AppImage" \
|
|
||||||
--output fontforge
|
|
||||||
chmod u+x fontforge
|
|
||||||
echo Try appimage
|
|
||||||
./fontforge --version
|
|
||||||
export PATH=`pwd`:$PATH
|
|
||||||
echo "PATH=$PATH" >> $GITHUB_ENV
|
|
||||||
echo Try appimage with path
|
|
||||||
fontforge --version
|
|
||||||
|
|
||||||
- name: Create the assets
|
|
||||||
run: |
|
|
||||||
make
|
|
||||||
|
|
||||||
- name: Commit preview image back to repo
|
|
||||||
uses: EndBug/add-and-commit@v9
|
|
||||||
with:
|
|
||||||
add: 'assets/readme-header.png'
|
|
||||||
message: "[ci] Update preview image"
|
|
||||||
committer_name: GitHub Actions
|
|
||||||
committer_email: 41898282+github-actions[bot]@users.noreply.github.com
|
|
||||||
|
|
||||||
- name: Deploy assets to gh-pages
|
|
||||||
uses: JamesIves/github-pages-deploy-action@v4
|
|
||||||
with:
|
|
||||||
folder: assets
|
|
||||||
target-folder: assets
|
|
||||||
commit-message: "[ci] Update assets"
|
|
||||||
git-config-name: GitHub Actions
|
|
||||||
git-config-email: 41898282+github-actions[bot]@users.noreply.github.com
|
|
||||||
clean: false
|
|
52
font-logos/.github/workflows/update_readme.yml
vendored
|
@ -1,52 +0,0 @@
|
||||||
# This creates and commits an updated readme
|
|
||||||
# It will be triggered once the release draft is published
|
|
||||||
|
|
||||||
name: Update README
|
|
||||||
|
|
||||||
on:
|
|
||||||
release:
|
|
||||||
types:
|
|
||||||
- released
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
update-readme:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Fetch repo
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Fetch dependencies
|
|
||||||
run: |
|
|
||||||
sudo apt update -y -q
|
|
||||||
sudo apt install python3-fontforge jq nodejs wkhtmltopdf -y -q
|
|
||||||
npm install nunjucks
|
|
||||||
|
|
||||||
# Ubuntu 20.04 has only fontforge release 2020, but there are some vital bugfixes in the 2023 release
|
|
||||||
# This can be replaced with the ordinary apt package when Ubuntu updates, probably with 23.10
|
|
||||||
# On the other hand ... why not be on the latest release always?
|
|
||||||
- name: Fetch FontForge
|
|
||||||
run: |
|
|
||||||
sudo apt install fuse -y -q
|
|
||||||
curl -L "https://github.com/fontforge/fontforge/releases/download/20230101/FontForge-2023-01-01-a1dad3e-x86_64.AppImage" \
|
|
||||||
--output fontforge
|
|
||||||
chmod u+x fontforge
|
|
||||||
echo Try appimage
|
|
||||||
./fontforge --version
|
|
||||||
export PATH=`pwd`:$PATH
|
|
||||||
echo "PATH=$PATH" >> $GITHUB_ENV
|
|
||||||
echo Try appimage with path
|
|
||||||
fontforge --version
|
|
||||||
|
|
||||||
- name: Build the artifacts
|
|
||||||
run: |
|
|
||||||
npm ci
|
|
||||||
make
|
|
||||||
|
|
||||||
- name: Commit new README back to repo
|
|
||||||
uses: EndBug/add-and-commit@v9
|
|
||||||
with:
|
|
||||||
add: 'README.md'
|
|
||||||
message: "[ci] Update README.md"
|
|
||||||
committer_name: GitHub Actions
|
|
||||||
committer_email: 41898282+github-actions[bot]@users.noreply.github.com
|
|
8
font-logos/.gitignore
vendored
|
@ -1,8 +0,0 @@
|
||||||
assets/*
|
|
||||||
!assets/readme-header.png
|
|
||||||
!assets/README.md
|
|
||||||
.fontcustom-manifest.json
|
|
||||||
*.zip
|
|
||||||
*.tgz
|
|
||||||
Gemfile.lock
|
|
||||||
node_modules
|
|
|
@ -1,24 +0,0 @@
|
||||||
This is free and unencumbered software released into the public domain.
|
|
||||||
|
|
||||||
Anyone is free to copy, modify, publish, use, compile, sell, or
|
|
||||||
distribute this software, either in source code form or as a compiled
|
|
||||||
binary, for any purpose, commercial or non-commercial, and by any
|
|
||||||
means.
|
|
||||||
|
|
||||||
In jurisdictions that recognize copyright laws, the author or authors
|
|
||||||
of this software dedicate any and all copyright interest in the
|
|
||||||
software to the public domain. We make this dedication for the benefit
|
|
||||||
of the public at large and to the detriment of our heirs and
|
|
||||||
successors. We intend this dedication to be an overt act of
|
|
||||||
relinquishment in perpetuity of all present and future rights to this
|
|
||||||
software under copyright law.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
||||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
||||||
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
||||||
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
||||||
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
||||||
OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
|
|
||||||
For more information, please refer to <http://unlicense.org>
|
|
|
@ -1,55 +0,0 @@
|
||||||
name := font-logos
|
|
||||||
dest := assets
|
|
||||||
out_json_ext := .out.json
|
|
||||||
font_exts := .ttf .woff .woff2 $(out_json_ext)
|
|
||||||
font_assets := $(foreach ext,$(font_exts),$(dest)/$(name)$(ext))
|
|
||||||
json_file = $(dest)/$(name).json
|
|
||||||
version = $(shell jq -r .version package.json)
|
|
||||||
|
|
||||||
START_CODEPOINT ?= 0xf300
|
|
||||||
preview_width := 888
|
|
||||||
|
|
||||||
export START_CODEPOINT
|
|
||||||
export FONT_NAME=$(name)
|
|
||||||
export OUTPUT_DIR=$(dest)
|
|
||||||
export JSON_FILE=$(json_file)
|
|
||||||
export COPYRIGHT=Copyright (c) 2014-$(shell date '+%Y'), Lukas W
|
|
||||||
export VENDORURL=$(shell jq -r .homepage package.json)
|
|
||||||
|
|
||||||
all_files=$(font_assets) $(dest)/$(name).css $(dest)/preview.html $(dest)/readme-header.png README.md
|
|
||||||
|
|
||||||
.PHONY: all
|
|
||||||
all: $(all_files)
|
|
||||||
|
|
||||||
.PHONY: pack
|
|
||||||
pack: $(dest)/$(name)-$(version).zip
|
|
||||||
|
|
||||||
$(name)-$(version).tgz: $(all_files)
|
|
||||||
npm pack
|
|
||||||
|
|
||||||
$(dest)/$(name)-$(version).zip: $(name)-$(version).tgz
|
|
||||||
$(eval dir := $(shell mktemp -d))
|
|
||||||
npm pack
|
|
||||||
tar -xf $(name)-$(version).tgz -C $(dir)
|
|
||||||
cd $(dir) && \
|
|
||||||
mv $(dir)/package $(dir)/$(name)-$(version) && \
|
|
||||||
zip -r $(shell pwd)/$(name)-$(version).zip $(name)-$(version)
|
|
||||||
rm -r $(dir)
|
|
||||||
|
|
||||||
.SECONDEXPANSION:
|
|
||||||
|
|
||||||
$(json_file): scripts/generate-json.mjs icons.tsv package.json
|
|
||||||
node scripts/generate-json.mjs
|
|
||||||
|
|
||||||
$(font_assets)&: scripts/generate-font.py icons.tsv $(shell find vectors) $(json_file)
|
|
||||||
if command -v fontforge; then \
|
|
||||||
fontforge --script $(shell pwd)/$< ; \
|
|
||||||
else \
|
|
||||||
python $< ;\
|
|
||||||
fi
|
|
||||||
|
|
||||||
%: templates/$$*.njk icons.tsv scripts/render-template.mjs $(json_file) $(dest)/$(name)$(out_json_ext)
|
|
||||||
node scripts/render-template.mjs $< $@
|
|
||||||
|
|
||||||
$(dest)/readme-header.png: $(dest)/readme-header.html $(font_assets) $(dest)/font-logos.css
|
|
||||||
wkhtmltoimage --enable-local-file-access --width $(preview_width) --disable-smart-width $< $@
|
|
|
@ -1,202 +0,0 @@
|
||||||
# font-logos #
|
|
||||||
|
|
||||||
![Available logos](assets/readme-header.png)
|
|
||||||
|
|
||||||
font-logos is an icon font containing logos of popular linux distributions and other open source software.
|
|
||||||
|
|
||||||
*Note:* All brand icons are trademarks of their respective owners and should only be used to represent the company or product to which they refer.
|
|
||||||
|
|
||||||
## Installation ##
|
|
||||||
|
|
||||||
Install the font by downloading and unpacking the latest release's zip manually or installing it from npm:
|
|
||||||
|
|
||||||
npm install font-logos
|
|
||||||
|
|
||||||
To use the font, include `assets/font-logos.css` as well as the
|
|
||||||
fonts in your project and use the CSS classes listed below.
|
|
||||||
|
|
||||||
<link href="/assets/font-logos.css" rel="stylesheet">
|
|
||||||
|
|
||||||
Alternatively just link to it using a CDN such as [jsDelivr](//jsdelivr.com):
|
|
||||||
|
|
||||||
<link href="//cdn.jsdelivr.net/npm/font-logos@1/assets/font-logos.css" rel="stylesheet">
|
|
||||||
|
|
||||||
## Usage ##
|
|
||||||
|
|
||||||
Include an icon using the corresponding CSS class in an empty element:
|
|
||||||
|
|
||||||
<i class="fl-[icon]"></i>
|
|
||||||
|
|
||||||
Add `fl-fw` as class for a fixed width icon.
|
|
||||||
|
|
||||||
If you want to insert a glyph of this font on a GNU/Linux system press `Ctrl + Shift + u`, release the keys and then type the code point, for instance: `Ctrl + Shift + u` and `f31a` will insert the `Tux` glyph.
|
|
||||||
|
|
||||||
Available logos are:
|
|
||||||
|
|
||||||
| Distribution | CSS class | Code | Code point | Image |
|
|
||||||
| ------------------------- | ----------------------- | --------------------------------------- | :--------: | :---------------------------------------------------: |
|
|
||||||
| Alma Linux | `fl-almalinux` | `<i class="fl-almalinux"></i>` | `0xf31d` | <img src="vectors/almalinux.svg" width="24"> |
|
|
||||||
| Alpine | `fl-alpine` | `<i class="fl-alpine"></i>` | `0xf300` | <img src="vectors/alpine.svg" width="24"> |
|
|
||||||
| AOSC OS | `fl-aosc` | `<i class="fl-aosc"></i>` | `0xf301` | <img src="vectors/aosc.svg" width="24"> |
|
|
||||||
| Apple | `fl-apple` | `<i class="fl-apple"></i>` | `0xf302` | <img src="vectors/apple.svg" width="24"> |
|
|
||||||
| Archcraft | `fl-archcraft` | `<i class="fl-archcraft"></i>` | `0xf345` | <img src="vectors/archcraft.svg" width="24"> |
|
|
||||||
| ArchLabs | `fl-archlabs` | `<i class="fl-archlabs"></i>` | `0xf31e` | <img src="vectors/archlabs.svg" width="24"> |
|
|
||||||
| Arch Linux | `fl-archlinux` | `<i class="fl-archlinux"></i>` | `0xf303` | <img src="vectors/archlinux.svg" width="24"> |
|
|
||||||
| ArcoLinux | `fl-arcolinux` | `<i class="fl-arcolinux"></i>` | `0xf346` | <img src="vectors/arcolinux.svg" width="24"> |
|
|
||||||
| Arduino | `fl-arduino` | `<i class="fl-arduino"></i>` | `0xf34b` | <img src="vectors/arduino.svg" width="24"> |
|
|
||||||
| Artix Linux | `fl-artix` | `<i class="fl-artix"></i>` | `0xf31f` | <img src="vectors/artix.svg" width="24"> |
|
|
||||||
| Awesome WM | `fl-awesome` | `<i class="fl-awesome"></i>` | `0xf354` | <img src="vectors/awesome.svg" width="24"> |
|
|
||||||
| BigLinux | `fl-biglinux` | `<i class="fl-biglinux"></i>` | `0xf347` | <img src="vectors/biglinux.svg" width="24"> |
|
|
||||||
| bspwm | `fl-bspwm` | `<i class="fl-bspwm"></i>` | `0xf355` | <img src="vectors/bspwm.svg" width="24"> |
|
|
||||||
| Budgie | `fl-budgie` | `<i class="fl-budgie"></i>` | `0xf320` | <img src="vectors/budgie.svg" width="24"> |
|
|
||||||
| CentOS | `fl-centos` | `<i class="fl-centos"></i>` | `0xf304` | <img src="vectors/centos.svg" width="24"> |
|
|
||||||
| Cinnamon | `fl-cinnamon` | `<i class="fl-cinnamon"></i>` | `0xf35f` | <img src="vectors/cinnamon.svg" width="24"> |
|
|
||||||
| Codeberg | `fl-codeberg` | `<i class="fl-codeberg"></i>` | `0xf330` | <img src="vectors/codeberg.svg" width="24"> |
|
|
||||||
| CoreOS | `fl-coreos` | `<i class="fl-coreos"></i>` | `0xf305` | <img src="vectors/coreos.svg" width="24"> |
|
|
||||||
| Crystal Linux | `fl-crystal` | `<i class="fl-crystal"></i>` | `0xf348` | <img src="vectors/crystal.svg" width="24"> |
|
|
||||||
| Debian | `fl-debian` | `<i class="fl-debian"></i>` | `0xf306` | <img src="vectors/debian.svg" width="24"> |
|
|
||||||
| Deepin | `fl-deepin` | `<i class="fl-deepin"></i>` | `0xf321` | <img src="vectors/deepin.svg" width="24"> |
|
|
||||||
| Devuan | `fl-devuan` | `<i class="fl-devuan"></i>` | `0xf307` | <img src="vectors/devuan.svg" width="24"> |
|
|
||||||
| Docker | `fl-docker` | `<i class="fl-docker"></i>` | `0xf308` | <img src="vectors/docker.svg" width="24"> |
|
|
||||||
| dwm | `fl-dwm` | `<i class="fl-dwm"></i>` | `0xf356` | <img src="vectors/dwm.svg" width="24"> |
|
|
||||||
| elementary OS | `fl-elementary` | `<i class="fl-elementary"></i>` | `0xf309` | <img src="vectors/elementary.svg" width="24"> |
|
|
||||||
| Endeavour OS | `fl-endeavour` | `<i class="fl-endeavour"></i>` | `0xf322` | <img src="vectors/endeavour.svg" width="24"> |
|
|
||||||
| Enlightenment | `fl-enlightenment` | `<i class="fl-enlightenment"></i>` | `0xf357` | <img src="vectors/enlightenment.svg" width="24"> |
|
|
||||||
| F-droid | `fl-fdroid` | `<i class="fl-fdroid"></i>` | `0xf36a` | <img src="vectors/fdroid.svg" width="24"> |
|
|
||||||
| Fedora | `fl-fedora` | `<i class="fl-fedora"></i>` | `0xf30a` | <img src="vectors/fedora.svg" width="24"> |
|
|
||||||
| Fedora (inverse) | `fl-fedora-inverse` | `<i class="fl-fedora-inverse"></i>` | `0xf30b` | <img src="vectors/fedora-inverse.svg" width="24"> |
|
|
||||||
| Ferris | `fl-ferris` | `<i class="fl-ferris"></i>` | `0xf323` | <img src="vectors/ferris.svg" width="24"> |
|
|
||||||
| Flathub | `fl-flathub` | `<i class="fl-flathub"></i>` | `0xf324` | <img src="vectors/flathub.svg" width="24"> |
|
|
||||||
| Fluxbox | `fl-fluxbox` | `<i class="fl-fluxbox"></i>` | `0xf358` | <img src="vectors/fluxbox.svg" width="24"> |
|
|
||||||
| Forgejo | `fl-forgejo` | `<i class="fl-forgejo"></i>` | `0xf335` | <img src="vectors/forgejo.svg" width="24"> |
|
|
||||||
| FOSDEM | `fl-fosdem` | `<i class="fl-fosdem"></i>` | `0xf36b` | <img src="vectors/fosdem.svg" width="24"> |
|
|
||||||
| FreeBSD | `fl-freebsd` | `<i class="fl-freebsd"></i>` | `0xf30c` | <img src="vectors/freebsd.svg" width="24"> |
|
|
||||||
| FreeCAD | `fl-freecad` | `<i class="fl-freecad"></i>` | `0xf336` | <img src="vectors/freecad.svg" width="24"> |
|
|
||||||
| freedesktop.org | `fl-freedesktop` | `<i class="fl-freedesktop"></i>` | `0xf360` | <img src="vectors/freedesktop.svg" width="24"> |
|
|
||||||
| Garuda Linux | `fl-garuda` | `<i class="fl-garuda"></i>` | `0xf337` | <img src="vectors/garuda.svg" width="24"> |
|
|
||||||
| Gentoo | `fl-gentoo` | `<i class="fl-gentoo"></i>` | `0xf30d` | <img src="vectors/gentoo.svg" width="24"> |
|
|
||||||
| GIMP | `fl-gimp` | `<i class="fl-gimp"></i>` | `0xf338` | <img src="vectors/gimp.svg" width="24"> |
|
|
||||||
| Gitea | `fl-gitea` | `<i class="fl-gitea"></i>` | `0xf339` | <img src="vectors/gitea.svg" width="24"> |
|
|
||||||
| GNOME | `fl-gnome` | `<i class="fl-gnome"></i>` | `0xf361` | <img src="vectors/gnome.svg" width="24"> |
|
|
||||||
| GNU Guix | `fl-gnu-guix` | `<i class="fl-gnu-guix"></i>` | `0xf325` | <img src="vectors/gnu-guix.svg" width="24"> |
|
|
||||||
| GTK | `fl-gtk` | `<i class="fl-gtk"></i>` | `0xf362` | <img src="vectors/gtk.svg" width="24"> |
|
|
||||||
| Hyperbola GNU/Linux-libre | `fl-hyperbola` | `<i class="fl-hyperbola"></i>` | `0xf33a` | <img src="vectors/hyperbola.svg" width="24"> |
|
|
||||||
| Hyprland | `fl-hyprland` | `<i class="fl-hyprland"></i>` | `0xf359` | <img src="vectors/hyprland.svg" width="24"> |
|
|
||||||
| i3 | `fl-i3` | `<i class="fl-i3"></i>` | `0xf35a` | <img src="vectors/i3.svg" width="24"> |
|
|
||||||
| illumos | `fl-illumos` | `<i class="fl-illumos"></i>` | `0xf326` | <img src="vectors/illumos.svg" width="24"> |
|
|
||||||
| Inkscape | `fl-inkscape` | `<i class="fl-inkscape"></i>` | `0xf33b` | <img src="vectors/inkscape.svg" width="24"> |
|
|
||||||
| JWM | `fl-jwm` | `<i class="fl-jwm"></i>` | `0xf35b` | <img src="vectors/jwm.svg" width="24"> |
|
|
||||||
| Kali Linux | `fl-kali-linux` | `<i class="fl-kali-linux"></i>` | `0xf327` | <img src="vectors/kali-linux.svg" width="24"> |
|
|
||||||
| KDE | `fl-kde` | `<i class="fl-kde"></i>` | `0xf373` | <img src="vectors/kde.svg" width="24"> |
|
|
||||||
| KDE Neon | `fl-kde-neon` | `<i class="fl-kde-neon"></i>` | `0xf331` | <img src="vectors/kde-neon.svg" width="24"> |
|
|
||||||
| KDE Plasma | `fl-kde-plasma` | `<i class="fl-kde-plasma"></i>` | `0xf332` | <img src="vectors/kde-plasma.svg" width="24"> |
|
|
||||||
| Kdenlive | `fl-kdenlive` | `<i class="fl-kdenlive"></i>` | `0xf33c` | <img src="vectors/kdenlive.svg" width="24"> |
|
|
||||||
| KiCad | `fl-kicad` | `<i class="fl-kicad"></i>` | `0xf34c` | <img src="vectors/kicad.svg" width="24"> |
|
|
||||||
| Krita | `fl-krita` | `<i class="fl-krita"></i>` | `0xf33d` | <img src="vectors/krita.svg" width="24"> |
|
|
||||||
| Kubuntu | `fl-kubuntu` | `<i class="fl-kubuntu"></i>` | `0xf333` | <img src="vectors/kubuntu.svg" width="24"> |
|
|
||||||
| Kubuntu (inverse) | `fl-kubuntu-inverse` | `<i class="fl-kubuntu-inverse"></i>` | `0xf334` | <img src="vectors/kubuntu-inverse.svg" width="24"> |
|
|
||||||
| openSUSE Leap | `fl-leap` | `<i class="fl-leap"></i>` | `0xf37e` | <img src="vectors/leap.svg" width="24"> |
|
|
||||||
| LibreOffice | `fl-libreoffice` | `<i class="fl-libreoffice"></i>` | `0xf376` | <img src="vectors/libreoffice.svg" width="24"> |
|
|
||||||
| LibreOffice Base | `fl-libreofficebase` | `<i class="fl-libreofficebase"></i>` | `0xf377` | <img src="vectors/libreofficebase.svg" width="24"> |
|
|
||||||
| LibreOffice Calc | `fl-libreofficecalc` | `<i class="fl-libreofficecalc"></i>` | `0xf378` | <img src="vectors/libreofficecalc.svg" width="24"> |
|
|
||||||
| LibreOffice Draw | `fl-libreofficedraw` | `<i class="fl-libreofficedraw"></i>` | `0xf379` | <img src="vectors/libreofficedraw.svg" width="24"> |
|
|
||||||
| LibreOffice Impress | `fl-libreofficeimpress` | `<i class="fl-libreofficeimpress"></i>` | `0xf37a` | <img src="vectors/libreofficeimpress.svg" width="24"> |
|
|
||||||
| LibreOffice Math | `fl-libreofficemath` | `<i class="fl-libreofficemath"></i>` | `0xf37b` | <img src="vectors/libreofficemath.svg" width="24"> |
|
|
||||||
| LibreOffice Writer | `fl-libreofficewriter` | `<i class="fl-libreofficewriter"></i>` | `0xf37c` | <img src="vectors/libreofficewriter.svg" width="24"> |
|
|
||||||
| Linux Mint | `fl-linuxmint` | `<i class="fl-linuxmint"></i>` | `0xf30e` | <img src="vectors/linuxmint.svg" width="24"> |
|
|
||||||
| Linux Mint (inverse) | `fl-linuxmint-inverse` | `<i class="fl-linuxmint-inverse"></i>` | `0xf30f` | <img src="vectors/linuxmint-inverse.svg" width="24"> |
|
|
||||||
| Loc-OS | `fl-locos` | `<i class="fl-locos"></i>` | `0xf349` | <img src="vectors/locos.svg" width="24"> |
|
|
||||||
| LXDE | `fl-lxde` | `<i class="fl-lxde"></i>` | `0xf363` | <img src="vectors/lxde.svg" width="24"> |
|
|
||||||
| LXLE Linux | `fl-lxle` | `<i class="fl-lxle"></i>` | `0xf33e` | <img src="vectors/lxle.svg" width="24"> |
|
|
||||||
| LXQt | `fl-lxqt` | `<i class="fl-lxqt"></i>` | `0xf364` | <img src="vectors/lxqt.svg" width="24"> |
|
|
||||||
| Mageia | `fl-mageia` | `<i class="fl-mageia"></i>` | `0xf310` | <img src="vectors/mageia.svg" width="24"> |
|
|
||||||
| Mandriva | `fl-mandriva` | `<i class="fl-mandriva"></i>` | `0xf311` | <img src="vectors/mandriva.svg" width="24"> |
|
|
||||||
| Manjaro | `fl-manjaro` | `<i class="fl-manjaro"></i>` | `0xf312` | <img src="vectors/manjaro.svg" width="24"> |
|
|
||||||
| MATE | `fl-mate` | `<i class="fl-mate"></i>` | `0xf365` | <img src="vectors/mate.svg" width="24"> |
|
|
||||||
| mpv | `fl-mpv` | `<i class="fl-mpv"></i>` | `0xf36e` | <img src="vectors/mpv.svg" width="24"> |
|
|
||||||
| MX Linux | `fl-mxlinux` | `<i class="fl-mxlinux"></i>` | `0xf33f` | <img src="vectors/mxlinux.svg" width="24"> |
|
|
||||||
| Neovim | `fl-neovim` | `<i class="fl-neovim"></i>` | `0xf36f` | <img src="vectors/neovim.svg" width="24"> |
|
|
||||||
| NixOS | `fl-nixos` | `<i class="fl-nixos"></i>` | `0xf313` | <img src="vectors/nixos.svg" width="24"> |
|
|
||||||
| Nobara Linux | `fl-nobara` | `<i class="fl-nobara"></i>` | `0xf380` | <img src="vectors/nobara.svg" width="24"> |
|
|
||||||
| Octoprint | `fl-octoprint` | `<i class="fl-octoprint"></i>` | `0xf34d` | <img src="vectors/octoprint.svg" width="24"> |
|
|
||||||
| OpenBSD | `fl-openbsd` | `<i class="fl-openbsd"></i>` | `0xf328` | <img src="vectors/openbsd.svg" width="24"> |
|
|
||||||
| OpenSCAD | `fl-openscad` | `<i class="fl-openscad"></i>` | `0xf34e` | <img src="vectors/openscad.svg" width="24"> |
|
|
||||||
| OpenSUSE | `fl-opensuse` | `<i class="fl-opensuse"></i>` | `0xf314` | <img src="vectors/opensuse.svg" width="24"> |
|
|
||||||
| OSH | `fl-osh` | `<i class="fl-osh"></i>` | `0xf34f` | <img src="vectors/osh.svg" width="24"> |
|
|
||||||
| OSHWA | `fl-oshwa` | `<i class="fl-oshwa"></i>` | `0xf350` | <img src="vectors/oshwa.svg" width="24"> |
|
|
||||||
| OSI | `fl-osi` | `<i class="fl-osi"></i>` | `0xf36c` | <img src="vectors/osi.svg" width="24"> |
|
|
||||||
| Parabola GNU/Linux-libre | `fl-parabola` | `<i class="fl-parabola"></i>` | `0xf340` | <img src="vectors/parabola.svg" width="24"> |
|
|
||||||
| Parrot OS | `fl-parrot` | `<i class="fl-parrot"></i>` | `0xf329` | <img src="vectors/parrot.svg" width="24"> |
|
|
||||||
| Pop!_OS | `fl-pop-os` | `<i class="fl-pop-os"></i>` | `0xf32a` | <img src="vectors/pop-os.svg" width="24"> |
|
|
||||||
| PostmarketOS | `fl-postmarketos` | `<i class="fl-postmarketos"></i>` | `0xf374` | <img src="vectors/postmarketos.svg" width="24"> |
|
|
||||||
| Prusa Slicer | `fl-prusaslicer` | `<i class="fl-prusaslicer"></i>` | `0xf351` | <img src="vectors/prusaslicer.svg" width="24"> |
|
|
||||||
| Puppy Linux | `fl-puppy` | `<i class="fl-puppy"></i>` | `0xf341` | <img src="vectors/puppy.svg" width="24"> |
|
|
||||||
| Qt | `fl-qt` | `<i class="fl-qt"></i>` | `0xf375` | <img src="vectors/qt.svg" width="24"> |
|
|
||||||
| Qtile | `fl-qtile` | `<i class="fl-qtile"></i>` | `0xf35c` | <img src="vectors/qtile.svg" width="24"> |
|
|
||||||
| QubesOS | `fl-qubesos` | `<i class="fl-qubesos"></i>` | `0xf342` | <img src="vectors/qubesos.svg" width="24"> |
|
|
||||||
| Raspberry pi | `fl-raspberry-pi` | `<i class="fl-raspberry-pi"></i>` | `0xf315` | <img src="vectors/raspberry-pi.svg" width="24"> |
|
|
||||||
| Red Hat | `fl-redhat` | `<i class="fl-redhat"></i>` | `0xf316` | <img src="vectors/redhat.svg" width="24"> |
|
|
||||||
| RepRap | `fl-reprap` | `<i class="fl-reprap"></i>` | `0xf352` | <img src="vectors/reprap.svg" width="24"> |
|
|
||||||
| RISC-V | `fl-riscv` | `<i class="fl-riscv"></i>` | `0xf353` | <img src="vectors/riscv.svg" width="24"> |
|
|
||||||
| River | `fl-river` | `<i class="fl-river"></i>` | `0xf381` | <img src="vectors/river.svg" width="24"> |
|
|
||||||
| Rocky Linux | `fl-rocky-linux` | `<i class="fl-rocky-linux"></i>` | `0xf32b` | <img src="vectors/rocky-linux.svg" width="24"> |
|
|
||||||
| Sabayon | `fl-sabayon` | `<i class="fl-sabayon"></i>` | `0xf317` | <img src="vectors/sabayon.svg" width="24"> |
|
|
||||||
| Slackware | `fl-slackware` | `<i class="fl-slackware"></i>` | `0xf318` | <img src="vectors/slackware.svg" width="24"> |
|
|
||||||
| Slackware (inverse) | `fl-slackware-inverse` | `<i class="fl-slackware-inverse"></i>` | `0xf319` | <img src="vectors/slackware-inverse.svg" width="24"> |
|
|
||||||
| Snappy | `fl-snappy` | `<i class="fl-snappy"></i>` | `0xf32c` | <img src="vectors/snappy.svg" width="24"> |
|
|
||||||
| Solus | `fl-solus` | `<i class="fl-solus"></i>` | `0xf32d` | <img src="vectors/solus.svg" width="24"> |
|
|
||||||
| Sway | `fl-sway` | `<i class="fl-sway"></i>` | `0xf35d` | <img src="vectors/sway.svg" width="24"> |
|
|
||||||
| Tails | `fl-tails` | `<i class="fl-tails"></i>` | `0xf343` | <img src="vectors/tails.svg" width="24"> |
|
|
||||||
| Thunderbird | `fl-thunderbird` | `<i class="fl-thunderbird"></i>` | `0xf370` | <img src="vectors/thunderbird.svg" width="24"> |
|
|
||||||
| Tor Browser | `fl-tor` | `<i class="fl-tor"></i>` | `0xf371` | <img src="vectors/tor.svg" width="24"> |
|
|
||||||
| Trisquel GNU/Linux | `fl-trisquel` | `<i class="fl-trisquel"></i>` | `0xf344` | <img src="vectors/trisquel.svg" width="24"> |
|
|
||||||
| openSUSE Tumbleweed | `fl-tumbleweed` | `<i class="fl-tumbleweed"></i>` | `0xf37d` | <img src="vectors/tumbleweed.svg" width="24"> |
|
|
||||||
| Tux | `fl-tux` | `<i class="fl-tux"></i>` | `0xf31a` | <img src="vectors/tux.svg" width="24"> |
|
|
||||||
| Typst | `fl-typst` | `<i class="fl-typst"></i>` | `0xf37f` | <img src="vectors/typst.svg" width="24"> |
|
|
||||||
| Ubuntu | `fl-ubuntu` | `<i class="fl-ubuntu"></i>` | `0xf31b` | <img src="vectors/ubuntu.svg" width="24"> |
|
|
||||||
| Ubuntu (inverse) | `fl-ubuntu-inverse` | `<i class="fl-ubuntu-inverse"></i>` | `0xf31c` | <img src="vectors/ubuntu-inverse.svg" width="24"> |
|
|
||||||
| Vanilla OS | `fl-vanilla` | `<i class="fl-vanilla"></i>` | `0xf366` | <img src="vectors/vanilla.svg" width="24"> |
|
|
||||||
| Void | `fl-void` | `<i class="fl-void"></i>` | `0xf32e` | <img src="vectors/void.svg" width="24"> |
|
|
||||||
| VS Codium | `fl-vscodium` | `<i class="fl-vscodium"></i>` | `0xf372` | <img src="vectors/vscodium.svg" width="24"> |
|
|
||||||
| Wayland | `fl-wayland` | `<i class="fl-wayland"></i>` | `0xf367` | <img src="vectors/wayland.svg" width="24"> |
|
|
||||||
| Wikimedia | `fl-wikimedia` | `<i class="fl-wikimedia"></i>` | `0xf36d` | <img src="vectors/wikimedia.svg" width="24"> |
|
|
||||||
| XeroLinux | `fl-xerolinux` | `<i class="fl-xerolinux"></i>` | `0xf34a` | <img src="vectors/xerolinux.svg" width="24"> |
|
|
||||||
| XFCE | `fl-xfce` | `<i class="fl-xfce"></i>` | `0xf368` | <img src="vectors/xfce.svg" width="24"> |
|
|
||||||
| Xmonad | `fl-xmonad` | `<i class="fl-xmonad"></i>` | `0xf35e` | <img src="vectors/xmonad.svg" width="24"> |
|
|
||||||
| Xorg | `fl-xorg` | `<i class="fl-xorg"></i>` | `0xf369` | <img src="vectors/xorg.svg" width="24"> |
|
|
||||||
| Zorin OS | `fl-zorin` | `<i class="fl-zorin"></i>` | `0xf32f` | <img src="vectors/zorin.svg" width="24"> |
|
|
||||||
|
|
||||||
## Building ##
|
|
||||||
|
|
||||||
Make sure you have the following dependencies installed:
|
|
||||||
* Node, Python and jq to run the build scripts
|
|
||||||
* [FontForge](//fontforge.org) to generate the fonts
|
|
||||||
* [wkhtmltopdf](http://wkhtmltopdf.org/) to generate this readme's preview image
|
|
||||||
|
|
||||||
Then run `npm install`/`yarn install` and `make`.
|
|
||||||
|
|
||||||
## Releasing ##
|
|
||||||
|
|
||||||
If you are a maintainer of this repository and a new release is to be published
|
|
||||||
* Make sure all PRs (that shall be pulled) are pulled
|
|
||||||
* The PRs add new `svg`s in `vectors/`
|
|
||||||
* The `icons.tsv` is ammended (i.e. new icons added at the bottom)
|
|
||||||
* Every time the `svg`s or `icons.tsv` is touched in the `master` branch (i.e. through pulling) the preview image is updated
|
|
||||||
* Note that the `README.md` is NOT updated. You can manually modify it to indicate/add recently added but not released icons.
|
|
||||||
* Once the release seems ready:
|
|
||||||
* Edit the version number in `package.json` (and push that change to `master`)
|
|
||||||
* Trigger the "Draft a Release" workflow manually on the Actions page (on the `master` branch)
|
|
||||||
* The workflow will add a git tag for the release
|
|
||||||
* Go to the releases list and find the draft release
|
|
||||||
* Edit the description etc pp and finally
|
|
||||||
* Push "publish release"
|
|
||||||
* The release is published on Github
|
|
||||||
* Automatically the "Update README" workflow is triggered
|
|
||||||
* The `README.md` is regenerated (the preview should already be up to date, see above)
|
|
||||||
* Maybe the autotriggered workflow does not work, then manually trigger
|
|
||||||
* Automatically the "Publish release to npm" workflow is triggered
|
|
||||||
* If the npm token is not expired the release is pushed to NPM
|
|
||||||
* You need to publish on NPM manually if token is expired (expected)
|
|
||||||
* `npm update` (and commit/push updates if there were any)
|
|
||||||
* `npm adduser` to log into npm with MFA
|
|
||||||
* `npm publish`
|
|
|
@ -1,4 +0,0 @@
|
||||||
## Assets
|
|
||||||
|
|
||||||
The assets are generated by a Github action.
|
|
||||||
Do not change anything here.
|
|
Before Width: | Height: | Size: 879 KiB |
|
@ -1,131 +0,0 @@
|
||||||
offset name id
|
|
||||||
0 Alpine alpine
|
|
||||||
1 AOSC OS aosc
|
|
||||||
2 Apple apple
|
|
||||||
3 Arch Linux archlinux
|
|
||||||
4 CentOS centos
|
|
||||||
5 CoreOS coreos
|
|
||||||
6 Debian debian
|
|
||||||
7 Devuan devuan
|
|
||||||
8 Docker docker
|
|
||||||
9 elementary OS elementary
|
|
||||||
10 Fedora fedora
|
|
||||||
11 Fedora (inverse) fedora-inverse
|
|
||||||
12 FreeBSD freebsd
|
|
||||||
13 Gentoo gentoo
|
|
||||||
14 Linux Mint linuxmint
|
|
||||||
15 Linux Mint (inverse) linuxmint-inverse
|
|
||||||
16 Mageia mageia
|
|
||||||
17 Mandriva mandriva
|
|
||||||
18 Manjaro manjaro
|
|
||||||
19 NixOS nixos
|
|
||||||
20 OpenSUSE opensuse
|
|
||||||
21 Raspberry pi raspberry-pi
|
|
||||||
22 Red Hat redhat
|
|
||||||
23 Sabayon sabayon
|
|
||||||
24 Slackware slackware
|
|
||||||
25 Slackware (inverse) slackware-inverse
|
|
||||||
26 Tux tux
|
|
||||||
27 Ubuntu ubuntu
|
|
||||||
28 Ubuntu (inverse) ubuntu-inverse
|
|
||||||
29 Alma Linux almalinux
|
|
||||||
30 ArchLabs archlabs
|
|
||||||
31 Artix Linux artix
|
|
||||||
32 Budgie budgie
|
|
||||||
33 Deepin deepin
|
|
||||||
34 Endeavour OS endeavour
|
|
||||||
35 Ferris ferris
|
|
||||||
36 Flathub flathub
|
|
||||||
37 GNU Guix gnu-guix
|
|
||||||
38 illumos illumos
|
|
||||||
39 Kali Linux kali-linux
|
|
||||||
40 OpenBSD openbsd
|
|
||||||
41 Parrot OS parrot
|
|
||||||
42 Pop!_OS pop-os
|
|
||||||
43 Rocky Linux rocky-linux
|
|
||||||
44 Snappy snappy
|
|
||||||
45 Solus solus
|
|
||||||
46 Void void
|
|
||||||
47 Zorin OS zorin
|
|
||||||
48 Codeberg codeberg
|
|
||||||
49 KDE Neon kde-neon
|
|
||||||
50 KDE Plasma kde-plasma
|
|
||||||
51 Kubuntu kubuntu
|
|
||||||
52 Kubuntu (inverse) kubuntu-inverse
|
|
||||||
53 Forgejo forgejo
|
|
||||||
54 FreeCAD freecad
|
|
||||||
55 Garuda Linux garuda
|
|
||||||
56 GIMP gimp
|
|
||||||
57 Gitea gitea
|
|
||||||
58 Hyperbola GNU/Linux-libre hyperbola
|
|
||||||
59 Inkscape inkscape
|
|
||||||
60 Kdenlive kdenlive
|
|
||||||
61 Krita krita
|
|
||||||
62 LXLE Linux lxle
|
|
||||||
63 MX Linux mxlinux
|
|
||||||
64 Parabola GNU/Linux-libre parabola
|
|
||||||
65 Puppy Linux puppy
|
|
||||||
66 QubesOS qubesos
|
|
||||||
67 Tails tails
|
|
||||||
68 Trisquel GNU/Linux trisquel
|
|
||||||
69 Archcraft archcraft
|
|
||||||
70 ArcoLinux arcolinux
|
|
||||||
71 BigLinux biglinux
|
|
||||||
72 Crystal Linux crystal
|
|
||||||
73 Loc-OS locos
|
|
||||||
74 XeroLinux xerolinux
|
|
||||||
75 Arduino arduino
|
|
||||||
76 KiCad kicad
|
|
||||||
77 Octoprint octoprint
|
|
||||||
78 OpenSCAD openscad
|
|
||||||
79 OSH osh
|
|
||||||
80 OSHWA oshwa
|
|
||||||
81 Prusa Slicer prusaslicer
|
|
||||||
82 RepRap reprap
|
|
||||||
83 RISC-V riscv
|
|
||||||
84 Awesome WM awesome
|
|
||||||
85 bspwm bspwm
|
|
||||||
86 dwm dwm
|
|
||||||
87 Enlightenment enlightenment
|
|
||||||
88 Fluxbox fluxbox
|
|
||||||
89 Hyprland hyprland
|
|
||||||
90 i3 i3
|
|
||||||
91 JWM jwm
|
|
||||||
92 Qtile qtile
|
|
||||||
93 Sway sway
|
|
||||||
94 Xmonad xmonad
|
|
||||||
95 Cinnamon cinnamon
|
|
||||||
96 freedesktop.org freedesktop
|
|
||||||
97 GNOME gnome
|
|
||||||
98 GTK gtk
|
|
||||||
99 LXDE lxde
|
|
||||||
100 LXQt lxqt
|
|
||||||
101 MATE mate
|
|
||||||
102 Vanilla OS vanilla
|
|
||||||
103 Wayland wayland
|
|
||||||
104 XFCE xfce
|
|
||||||
105 Xorg xorg
|
|
||||||
106 F-droid fdroid
|
|
||||||
107 FOSDEM fosdem
|
|
||||||
108 OSI osi
|
|
||||||
109 Wikimedia wikimedia
|
|
||||||
110 mpv mpv
|
|
||||||
111 Neovim neovim
|
|
||||||
112 Thunderbird thunderbird
|
|
||||||
113 Tor Browser tor
|
|
||||||
114 VS Codium vscodium
|
|
||||||
115 KDE kde
|
|
||||||
116 PostmarketOS postmarketos
|
|
||||||
117 Qt qt
|
|
||||||
118 LibreOffice libreoffice
|
|
||||||
119 LibreOffice Base libreofficebase
|
|
||||||
120 LibreOffice Calc libreofficecalc
|
|
||||||
121 LibreOffice Draw libreofficedraw
|
|
||||||
122 LibreOffice Impress libreofficeimpress
|
|
||||||
123 LibreOffice Math libreofficemath
|
|
||||||
124 LibreOffice Writer libreofficewriter
|
|
||||||
125 openSUSE Tumbleweed tumbleweed
|
|
||||||
126 openSUSE Leap leap
|
|
||||||
127 Typst typst
|
|
||||||
128 Nobara Linux nobara
|
|
||||||
129 River river
|
|
Can't render this file because it has a wrong number of fields in line 2.
|
69
font-logos/package-lock.json
generated
|
@ -1,69 +0,0 @@
|
||||||
{
|
|
||||||
"name": "font-logos",
|
|
||||||
"version": "1.3.0",
|
|
||||||
"lockfileVersion": 3,
|
|
||||||
"requires": true,
|
|
||||||
"packages": {
|
|
||||||
"": {
|
|
||||||
"name": "font-logos",
|
|
||||||
"version": "1.3.0",
|
|
||||||
"license": "Unlicense",
|
|
||||||
"devDependencies": {
|
|
||||||
"lodash.merge": "^4.6.2",
|
|
||||||
"nunjucks": "^3.2.4"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/a-sync-waterfall": {
|
|
||||||
"version": "1.0.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/a-sync-waterfall/-/a-sync-waterfall-1.0.1.tgz",
|
|
||||||
"integrity": "sha512-RYTOHHdWipFUliRFMCS4X2Yn2X8M87V/OpSqWzKKOGhzqyUxzyVmhHDH9sAvG+ZuQf/TAOFsLCpMw09I1ufUnA==",
|
|
||||||
"dev": true
|
|
||||||
},
|
|
||||||
"node_modules/asap": {
|
|
||||||
"version": "2.0.6",
|
|
||||||
"resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
|
|
||||||
"integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==",
|
|
||||||
"dev": true
|
|
||||||
},
|
|
||||||
"node_modules/commander": {
|
|
||||||
"version": "5.1.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz",
|
|
||||||
"integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==",
|
|
||||||
"dev": true,
|
|
||||||
"engines": {
|
|
||||||
"node": ">= 6"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/lodash.merge": {
|
|
||||||
"version": "4.6.2",
|
|
||||||
"resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
|
|
||||||
"integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
|
|
||||||
"dev": true
|
|
||||||
},
|
|
||||||
"node_modules/nunjucks": {
|
|
||||||
"version": "3.2.4",
|
|
||||||
"resolved": "https://registry.npmjs.org/nunjucks/-/nunjucks-3.2.4.tgz",
|
|
||||||
"integrity": "sha512-26XRV6BhkgK0VOxfbU5cQI+ICFUtMLixv1noZn1tGU38kQH5A5nmmbk/O45xdyBhD1esk47nKrY0mvQpZIhRjQ==",
|
|
||||||
"dev": true,
|
|
||||||
"dependencies": {
|
|
||||||
"a-sync-waterfall": "^1.0.0",
|
|
||||||
"asap": "^2.0.3",
|
|
||||||
"commander": "^5.1.0"
|
|
||||||
},
|
|
||||||
"bin": {
|
|
||||||
"nunjucks-precompile": "bin/precompile"
|
|
||||||
},
|
|
||||||
"engines": {
|
|
||||||
"node": ">= 6.9.0"
|
|
||||||
},
|
|
||||||
"peerDependencies": {
|
|
||||||
"chokidar": "^3.3.0"
|
|
||||||
},
|
|
||||||
"peerDependenciesMeta": {
|
|
||||||
"chokidar": {
|
|
||||||
"optional": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,30 +0,0 @@
|
||||||
{
|
|
||||||
"name": "font-logos",
|
|
||||||
"description": "An icon font providing popular linux distros' logos",
|
|
||||||
"version": "1.3.0",
|
|
||||||
"style": "assets/font-logos.css",
|
|
||||||
"authors": [
|
|
||||||
"Lukas W (https://github.com/Lukas-W)"
|
|
||||||
],
|
|
||||||
"license": "Unlicense",
|
|
||||||
"homepage": "https://github.com/Lukas-W/font-logos",
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/Lukas-W/font-logos.git"
|
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"build": "make"
|
|
||||||
},
|
|
||||||
"files": [
|
|
||||||
"assets/font-logos.css",
|
|
||||||
"assets/font-logos.ttf",
|
|
||||||
"assets/font-logos.woff",
|
|
||||||
"assets/font-logos.woff2",
|
|
||||||
"vectors/*",
|
|
||||||
"README.md"
|
|
||||||
],
|
|
||||||
"devDependencies": {
|
|
||||||
"lodash.merge": "^4.6.2",
|
|
||||||
"nunjucks": "^3.2.4"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,23 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# Convert the icons.tsv file's data to Nerd Font lib's format
|
|
||||||
# to update their lib file with the new glyphs.
|
|
||||||
# Usage: ./create_nf_lib.sh
|
|
||||||
# Copy missing glyphs from the output to the
|
|
||||||
# <PATH>/nerd-fonts/bin/scripts/lib/i_logos.sh file.
|
|
||||||
|
|
||||||
# Get script directory to set file path relative to it
|
|
||||||
file_path="$(
|
|
||||||
cd -- "$(dirname "${0}")" >/dev/null 2>&1 || exit
|
|
||||||
pwd -P
|
|
||||||
)/../icons.tsv"
|
|
||||||
|
|
||||||
# Read the tsv file excluding the header
|
|
||||||
sed '1d' "${file_path}" | while IFS=$'\t' read -r offset _ classname; do
|
|
||||||
# Calculate the codepoint, font-logos starts at 0xF300
|
|
||||||
codepoint=$((0xF300 + offset))
|
|
||||||
# Get the glyph from the codepoint
|
|
||||||
glyph=$(printf "\\u%x" "${codepoint}" 2>/dev/null)
|
|
||||||
# Print line using the Nerd Fonts lib's format
|
|
||||||
printf "i='%b' i_linux_%s=\$i\n" "${glyph}" "$(echo "${classname}" | tr '-' '_')"
|
|
||||||
done
|
|
|
@ -1,4 +0,0 @@
|
||||||
import fs from 'fs';
|
|
||||||
export default JSON.parse(
|
|
||||||
fs.readFileSync(`${process.env.OUTPUT_DIR}/${process.env.FONT_NAME}.json`)
|
|
||||||
);
|
|
|
@ -1,69 +0,0 @@
|
||||||
import os
|
|
||||||
import sys
|
|
||||||
import tempfile
|
|
||||||
import json
|
|
||||||
import fontforge
|
|
||||||
|
|
||||||
# Need to change working directory in case we run via AppImage
|
|
||||||
os.chdir(os.path.join(os.path.dirname(sys.argv[0]), '..'))
|
|
||||||
|
|
||||||
autowidth = False
|
|
||||||
font_em = 512
|
|
||||||
font_design_size = 16
|
|
||||||
jsonfile = os.environ['JSON_FILE']
|
|
||||||
fontname = os.environ['FONT_NAME']
|
|
||||||
outputdir = os.environ['OUTPUT_DIR']
|
|
||||||
vectorsdir = 'vectors'
|
|
||||||
start_codepoint = int(os.environ['START_CODEPOINT'], base=0)
|
|
||||||
design_px = font_em // font_design_size
|
|
||||||
outjsonfile = os.path.join(outputdir, fontname+'.out.json')
|
|
||||||
font = fontforge.font()
|
|
||||||
# font.encoding = 'UnicodeFull'
|
|
||||||
font.fontname = fontname
|
|
||||||
font.familyname = fontname
|
|
||||||
font.fullname = fontname
|
|
||||||
font.design_size = font_design_size
|
|
||||||
font.em = font_em
|
|
||||||
font.copyright = os.environ['COPYRIGHT']
|
|
||||||
|
|
||||||
# if autowidth:
|
|
||||||
# font.autoWidth(0, 0, font.em)
|
|
||||||
font.autoWidth(0, 0, font.em)
|
|
||||||
|
|
||||||
# Add valid space glyph to avoid "unknown character" box on IE11
|
|
||||||
glyph = font.createChar(32)
|
|
||||||
glyph.width = 200
|
|
||||||
|
|
||||||
outputInfo = {
|
|
||||||
'em': font.em,
|
|
||||||
'icons': {},
|
|
||||||
}
|
|
||||||
|
|
||||||
def addIcon(iconId, icon):
|
|
||||||
glyph = font.createChar(icon['codepoint'], icon['name'])
|
|
||||||
glyph.importOutlines(
|
|
||||||
os.path.join(vectorsdir, (iconId+'.svg')),
|
|
||||||
)
|
|
||||||
glyph.left_side_bearing = 0
|
|
||||||
glyph.right_side_bearing = 0
|
|
||||||
|
|
||||||
outputInfo['icons'][iconId] = {
|
|
||||||
'width': glyph.width,
|
|
||||||
}
|
|
||||||
|
|
||||||
with open(jsonfile) as f:
|
|
||||||
fontData = json.load(f)
|
|
||||||
|
|
||||||
for iconId, icon in fontData['icons'].items():
|
|
||||||
addIcon(iconId, icon)
|
|
||||||
|
|
||||||
font.appendSFNTName("English (US)", "Version", fontData['version']['string'])
|
|
||||||
font.appendSFNTName("English (US)", "Vendor URL", os.environ['VENDORURL'])
|
|
||||||
font.version = fontData['version']['string']
|
|
||||||
|
|
||||||
font.generate(os.path.join(outputdir, fontname + '.ttf'))
|
|
||||||
font.generate(os.path.join(outputdir, fontname + '.woff'))
|
|
||||||
font.generate(os.path.join(outputdir, fontname + '.woff2'))
|
|
||||||
|
|
||||||
with open(outjsonfile, 'w') as f:
|
|
||||||
json.dump(outputInfo, f, indent=2)
|
|
|
@ -1,39 +0,0 @@
|
||||||
import fs from 'node:fs/promises';
|
|
||||||
import {tsvFileToObjects} from './tsv.mjs';
|
|
||||||
const iconsFile = './icons.tsv';
|
|
||||||
|
|
||||||
async function getIcons() {
|
|
||||||
const startCodepoint = parseInt(process.env.START_CODEPOINT);
|
|
||||||
let icons = tsvFileToObjects(iconsFile, {
|
|
||||||
'offset': parseInt,
|
|
||||||
'scale': s => s.toLowerCase() === 'true',
|
|
||||||
})
|
|
||||||
.map(r => ({...r, codepoint: startCodepoint + r.offset}))
|
|
||||||
.map(r => ({...r, variant: r.id.endsWith('-inverse')}))
|
|
||||||
.map(({id, ...r}) => [id, r])
|
|
||||||
;
|
|
||||||
icons = Object.fromEntries(icons);
|
|
||||||
return icons;
|
|
||||||
}
|
|
||||||
|
|
||||||
async function readPackage() {
|
|
||||||
return JSON.parse(await fs.readFile('package.json'));
|
|
||||||
}
|
|
||||||
|
|
||||||
const {version} = await readPackage();
|
|
||||||
const [major, minor, patch] = version.match(/^(\d+)\.(\d+)\.(\d+)/).slice(1);
|
|
||||||
|
|
||||||
const data = {
|
|
||||||
name: process.env.FONT_NAME,
|
|
||||||
version: {
|
|
||||||
string: version,
|
|
||||||
major, minor, patch,
|
|
||||||
stable: parseInt(major) > 0 ? major : `${major}.${minor}.${patch}`,
|
|
||||||
},
|
|
||||||
icons: await getIcons(),
|
|
||||||
};
|
|
||||||
|
|
||||||
await fs.writeFile(
|
|
||||||
process.env.OUTPUT_DIR + '/' + process.env.FONT_NAME + '.json',
|
|
||||||
JSON.stringify(data, null, 2)
|
|
||||||
);
|
|
|
@ -1,32 +0,0 @@
|
||||||
import fs from 'node:fs';
|
|
||||||
import nunjucks from 'nunjucks';
|
|
||||||
import font from './data.mjs';
|
|
||||||
import merge from 'lodash.merge';
|
|
||||||
|
|
||||||
const [templateFile, outFile] = process.argv.slice(2);
|
|
||||||
|
|
||||||
const outInfo = JSON.parse(
|
|
||||||
fs.readFileSync(`${process.env.OUTPUT_DIR}/${process.env.FONT_NAME}.out.json`));
|
|
||||||
|
|
||||||
const context = {
|
|
||||||
font: merge(font, outInfo),
|
|
||||||
classPrefix: 'fl-',
|
|
||||||
formats: [
|
|
||||||
{name: 'woff', ext: 'woff'},
|
|
||||||
{name: 'woff2', ext: 'woff2'},
|
|
||||||
{name: 'truetype', ext: 'ttf'},
|
|
||||||
],
|
|
||||||
icons: font.icons,
|
|
||||||
uniqueIcons: Object.fromEntries(Object.entries(font.icons).filter(([,icon]) => !icon.variant)),
|
|
||||||
};
|
|
||||||
|
|
||||||
const env = new nunjucks.Environment(new nunjucks.FileSystemLoader(), {
|
|
||||||
throwOnUndefined: true,
|
|
||||||
});
|
|
||||||
env.addFilter('keys', obj => Object.keys(obj));
|
|
||||||
env.addFilter('values', obj => Object.values(obj));
|
|
||||||
env.addFilter('column', (objs, col) => objs.map(o => o[col]));
|
|
||||||
env.addFilter('map', (array, fn) => array.map(fn));
|
|
||||||
env.addFilter('maxLength', array => Math.max(...array.map(x => x.length)));
|
|
||||||
|
|
||||||
fs.writeFileSync(outFile, env.render(templateFile, context));
|
|
|
@ -1,30 +0,0 @@
|
||||||
import fs from 'node:fs';
|
|
||||||
|
|
||||||
const I = x=>x;
|
|
||||||
|
|
||||||
export function tsvFileToObjects(file, parsers) {
|
|
||||||
let [cols, ...rows] = fs.readFileSync(file, 'utf8')
|
|
||||||
.toString()
|
|
||||||
.split('\n')
|
|
||||||
.map(r => r
|
|
||||||
.split('\t')
|
|
||||||
// Allow for multiple \t between columns
|
|
||||||
.map(t => t.trim())
|
|
||||||
.filter(I)
|
|
||||||
)
|
|
||||||
// Remove empty rows
|
|
||||||
.filter(r => r.length)
|
|
||||||
;
|
|
||||||
|
|
||||||
// Sanity check rows
|
|
||||||
const invalidRows = rows.filter(r => r.length !== cols.length);
|
|
||||||
if (invalidRows.length) {
|
|
||||||
throw new Error(`Some rows have wrong number of columns:\n${invalidRows.join('\n')}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
return rows.map(r => Object.fromEntries(
|
|
||||||
cols.map(
|
|
||||||
(c, i) => [c, (parsers[c] || I)(r[i])]
|
|
||||||
)
|
|
||||||
));
|
|
||||||
}
|
|
|
@ -1,82 +0,0 @@
|
||||||
# {{ font.name }} #
|
|
||||||
|
|
||||||
![Available logos](assets/readme-header.png)
|
|
||||||
|
|
||||||
{{ font.name }} is an icon font containing logos of popular linux distributions and other open source software.
|
|
||||||
|
|
||||||
*Note:* All brand icons are trademarks of their respective owners and should only be used to represent the company or product to which they refer.
|
|
||||||
|
|
||||||
## Installation ##
|
|
||||||
|
|
||||||
Install the font by downloading and unpacking the latest release's zip manually or installing it from npm:
|
|
||||||
|
|
||||||
npm install {{ font.name }}
|
|
||||||
|
|
||||||
To use the font, include `assets/{{ font.name }}.css` as well as the
|
|
||||||
fonts in your project and use the CSS classes listed below.
|
|
||||||
|
|
||||||
<link href="/assets/{{ font.name }}.css" rel="stylesheet">
|
|
||||||
|
|
||||||
Alternatively just link to it using a CDN such as [jsDelivr](//jsdelivr.com):
|
|
||||||
|
|
||||||
<link href="//cdn.jsdelivr.net/npm/{{ font.name }}@{{ font.version.stable }}/assets/{{ font.name }}.css" rel="stylesheet">
|
|
||||||
|
|
||||||
## Usage ##
|
|
||||||
|
|
||||||
Include an icon using the corresponding CSS class in an empty element:
|
|
||||||
|
|
||||||
<i class="fl-[icon]"></i>
|
|
||||||
|
|
||||||
Add `fl-fw` as class for a fixed width icon.
|
|
||||||
|
|
||||||
If you want to insert a glyph of this font on a GNU/Linux system press `Ctrl + Shift + u`, release the keys and then type the code point, for instance: `Ctrl + Shift + u` and `f31a` will insert the `Tux` glyph.
|
|
||||||
|
|
||||||
Available logos are:
|
|
||||||
|
|
||||||
{%- macro img(id) %}<img src="vectors/{{ id }}.svg" width="24">{% endmacro %}
|
|
||||||
{%- macro class(id) %}`fl-{{ id }}`{% endmacro %}
|
|
||||||
{%- macro code(id) %}`<i class="fl-{{ id }}"></i>`{% endmacro %}
|
|
||||||
{%- set ids = icons|keys|sort %}
|
|
||||||
{%- set nameW = icons|values|column('name')|maxLength %}
|
|
||||||
{%- set maxIdLength = ids|maxLength %}
|
|
||||||
{%- set imgW = maxIdLength + img("")|length %}
|
|
||||||
{%- set classW = maxIdLength + class("")|length %}
|
|
||||||
{%- set codeW = maxIdLength + code("")|length %}
|
|
||||||
|
|
||||||
| {{ "Distribution"|center(nameW) }} | {{ "CSS class"|center(classW) }} | {{ "Code"|center(codeW) }} | Code point | {{ "Image"|center(imgW) }} |
|
|
||||||
| {{ "-".repeat(nameW) }} | {{ "-".repeat(classW) }} | {{ "-".repeat(codeW) }} | :--------: | :{{ "-".repeat(imgW-2) }}: |
|
|
||||||
{%- for id in ids %}
|
|
||||||
{%- set icon=icons[id] %}
|
|
||||||
| {{ icon.name.padEnd(nameW) }} | {{ class(id).padEnd(classW) }} | {{ code(id).padEnd(codeW)|safe }} | `0x{{ icon.codepoint.toString(16) }}` | {{ img(id).padEnd(imgW)|safe }} |
|
|
||||||
{%- endfor %}
|
|
||||||
|
|
||||||
## Building ##
|
|
||||||
|
|
||||||
Make sure you have the following dependencies installed:
|
|
||||||
* Node, Python and jq to run the build scripts
|
|
||||||
* [FontForge](//fontforge.org) to generate the fonts
|
|
||||||
* [wkhtmltopdf](http://wkhtmltopdf.org/) to generate this readme's preview image
|
|
||||||
|
|
||||||
Then run `npm install`/`yarn install` and `make`.
|
|
||||||
|
|
||||||
## Releasing ##
|
|
||||||
|
|
||||||
If you are a maintainer of this repository and a new release is to be published
|
|
||||||
* Make sure all PRs (that shall be pulled) are pulled
|
|
||||||
* The PRs add new `svg`s in `vectors/`
|
|
||||||
* The `icons.tsv` is ammended (i.e. new icons added at the bottom)
|
|
||||||
* Every time the `svg`s or `icons.tsv` is touched in the `master` branch (i.e. through pulling) the preview image is updated
|
|
||||||
* Note that the `README.md` is NOT updated. You can manually modify it do indicate/add recently added but not released icons.
|
|
||||||
* Once the release seems ready:
|
|
||||||
* Edit the version number in `package.json` (and push that change to `master`)
|
|
||||||
* Trigger the "Draft a Release" workflow manually on the Actions page (on the `master` branch)
|
|
||||||
* The workflow will add a git tag for the release
|
|
||||||
* Go to the releases list and find the draft release
|
|
||||||
* Edit the description etc pp and finally
|
|
||||||
* Push "publish release"
|
|
||||||
* The release is published on Github
|
|
||||||
* Automatically the "Update README" workflow is triggered
|
|
||||||
* The `README.md` is regenerated (the preview should already be up to date, see above)
|
|
||||||
* Automatically the "Publish release to npm" workflow is triggered
|
|
||||||
* If the npm token is not expired the release is pushed to NPM
|
|
||||||
* You need to publish on NPM manually if token is expired (expected)
|
|
|
@ -1,43 +0,0 @@
|
||||||
{% set fwClass = classPrefix+'fw' %}
|
|
||||||
@font-face {
|
|
||||||
font-display: auto;
|
|
||||||
font-family: "{{ font.name }}";
|
|
||||||
font-style: normal;
|
|
||||||
font-weight: normal;
|
|
||||||
src:
|
|
||||||
{%- for format in formats -%}
|
|
||||||
url("{{ font.name }}.{{ format.ext }}?v={{ font.version.string|urlencode }}") format("{{ format.name }}"){% if not loop.last %},{% endif %}
|
|
||||||
{%- endfor -%}
|
|
||||||
}
|
|
||||||
|
|
||||||
{% for id, icon in icons -%}
|
|
||||||
.{{ classPrefix }}{{ id }}::before{% if not loop.last %}, {% endif %}
|
|
||||||
{% endfor %} {
|
|
||||||
display: inline-block;
|
|
||||||
font-family: "{{ font.name }}";
|
|
||||||
font-style: normal;
|
|
||||||
font-weight: normal;
|
|
||||||
font-variant: normal;
|
|
||||||
text-rendering: auto;
|
|
||||||
line-height: 1;
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
font-smoothing: antialiased;
|
|
||||||
}
|
|
||||||
|
|
||||||
.{{ fwClass }} {
|
|
||||||
text-align: center;
|
|
||||||
width: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
{%- for id, icon in icons %}
|
|
||||||
.{{ classPrefix }}{{ id }}::before {
|
|
||||||
content: "\{{ icon.codepoint.toString(16) }}";
|
|
||||||
}
|
|
||||||
{%- if icon.width > font.em %}
|
|
||||||
.{{ fwClass }}.{{ classPrefix }}{{ id }}::before {
|
|
||||||
font-size: {{ font.em/icon.width }}em;
|
|
||||||
line-height: {{ icon.width/font.em }}em;
|
|
||||||
}
|
|
||||||
{%- endif -%}
|
|
||||||
{%- endfor -%}
|
|
|
@ -1,42 +0,0 @@
|
||||||
<link href="font-logos.css" rel="stylesheet">
|
|
||||||
|
|
||||||
<style>
|
|
||||||
body {
|
|
||||||
color: #333;
|
|
||||||
}
|
|
||||||
td {
|
|
||||||
text-align: center;
|
|
||||||
vertical-align: text-bottom;
|
|
||||||
padding: 10px;
|
|
||||||
}
|
|
||||||
td i {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
td i::before {
|
|
||||||
background-color: #eee;
|
|
||||||
}
|
|
||||||
small {
|
|
||||||
color: #888;
|
|
||||||
margin-top: 1em;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<table>
|
|
||||||
<tbody>
|
|
||||||
{% set ids=icons|keys|sort %}
|
|
||||||
{% for id in ids %}
|
|
||||||
{% set icon=icons[id] %}
|
|
||||||
<tr>
|
|
||||||
<td><code>fl-{{ id }}</code></td>
|
|
||||||
{% for size in [12,14,16,18,20,24,28,32,36,42,48,54] %}
|
|
||||||
<td>
|
|
||||||
<i style="font-size: {{ size }}px" class="preview-icon fl-{{ id }}"></i>
|
|
||||||
<small>{{size}}px</small>
|
|
||||||
</td>
|
|
||||||
{% endfor %}
|
|
||||||
</tr>
|
|
||||||
{% endfor %}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</body>
|
|
|
@ -1,37 +0,0 @@
|
||||||
<link href="font-logos.css" rel="stylesheet">
|
|
||||||
|
|
||||||
{% set icons = uniqueIcons %} {# Don't include variants (...-inverse) #}
|
|
||||||
{% set rows = 6 %}
|
|
||||||
{% set n = icons|length %}
|
|
||||||
{% set nPerRow = (n / rows) | round(0, "ceil") %}
|
|
||||||
{% set paddingPx = 5 %}
|
|
||||||
{% set widthPx = 888 %} {# Using GitHub's Readme width #}
|
|
||||||
{% set spacingPx = 2 * paddingPx %}
|
|
||||||
{% set totalSpacePx = spacingPx * (nPerRow - 1) %}
|
|
||||||
{% set iconWidthPx = (widthPx - totalSpacePx) / nPerRow %}
|
|
||||||
|
|
||||||
<style>
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
width: {{ widthPx }}px;
|
|
||||||
color: #333;
|
|
||||||
font-size: {{ iconWidthPx }}px;
|
|
||||||
}
|
|
||||||
div {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
margin: {{ - paddingPx }}px;
|
|
||||||
}
|
|
||||||
i {
|
|
||||||
padding: {{ paddingPx }}px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<div>
|
|
||||||
{% for id in icons|keys|sort %}
|
|
||||||
<i class="fl-{{id}} fl-fw"></i>
|
|
||||||
{% endfor %}
|
|
||||||
</div>
|
|
||||||
</body>
|
|
|
@ -1,15 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
viewBox="0 0 61 60.999999"
|
|
||||||
version="1.1"
|
|
||||||
id="svg4"
|
|
||||||
width="61"
|
|
||||||
height="61"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs8" />
|
|
||||||
<path
|
|
||||||
d="m 56.09969,34.363756 c 2.6,-0.2 4.7,1.5 4.9,4.1 0.2,2.7 -1.7,4.9 -4.3,5.1 -2.5,0.2 -4.7,-1.7 -4.9,-4.2 -0.2,-2.7 1.6,-4.7 4.3,-5 z m -31.6,21.3 c 0,-2.6 2,-4.6 4.4,-4.6 2.4,0 4.7,2.2 4.7,4.7 0,2.4 -2,4.5 -4.3,4.6 -2.9,0.1 -4.8,-1.8 -4.8,-4.7 z m 7.1,-29.2 c -0.4,0.2 -0.6,-0.1 -0.7,-0.4 -3.7,-6.9 -2.6,-15.6 3.9,-20.8000001 1.7,-1.4 4.9,-1.7 6.3,-0.3 0.6,0.5 0.7,1.1 0.8,1.8 0.2,1.5 0.5,3 1.5,4.2000001 1.1,1.3 2.5,1.8 4.1,1.7 1.4,0 2.8,-0.2 3.7,1.4 0.5,0.9 0.3,4.4 -0.5,5.1 -0.4,0.3 -0.7,0.1 -1,0 -2.3,-0.8 -4.7,-0.9 -7.1,-0.5 -0.8,0.1 -1.2,-0.1 -1.2,-1 -0.1,-1.5 -0.4,-2.9 -1.2,-4.2 -1.6,-2.7 -4.3,-2.8 -6.1,-0.3 -1.5,2 -1.9,4.4 -2.3,6.8 -0.4,2.1 -0.3,4.3 -0.2,6.5 z m 2.5,1.5 c -0.2,-0.3 -0.1,-0.6 0.2,-0.8 5.7,-5.2 14.3,-6.3 20.8,-1.1 1.7,1.4 2.8,4.3 1.9,6 -0.4,0.7 -0.9,1 -1.5,1.2 -1.4,0.6 -2.7,1.2 -3.6,2.5 -0.9,1.3 -1.1,2.8 -0.7,4.4 0.3,1.3 0.8,2.7 -0.5,3.9 -0.7,0.7 -4.1,1.3 -5,0.7 -0.4,-0.3 -0.3,-0.6 -0.2,-1 0.3,-2.5 -0.3,-4.8 -1.2,-7 -0.3,-0.8 -0.2,-1.2 0.6,-1.4 1.4,-0.4 2.7,-1.1 3.7,-2.1 2.2,-2.1 1.7,-4.8 -1.2,-6 -2.3,-1 -4.7,-0.8 -7,-0.6 -2.2,0.2 -4.3,0.7 -6.3,1.3 z m -1.3,2.6 c 0.3,-0.3 0.5,-0.2 0.8,0 6.5,4.1 10,11.9 7,19.6 -0.8,2 -3.4,4 -5.3,3.5 -0.8,-0.2 -1.2,-0.6 -1.6,-1.1 -0.9,-1.2 -1.9,-2.3 -3.4,-2.8 -1.6,-0.5 -3,-0.2 -4.4,0.6 -1.2,0.7 -2.4,1.6 -3.9,0.7 -0.9,-0.5 -2.4,-3.6 -2.1,-4.6 0.2,-0.4 0.6,-0.4 1,-0.4 2.5,-0.4 4.5,-1.6 6.4,-3.2 0.6,-0.5 1.1,-0.5 1.6,0.2 0.8,1.2 1.8,2.2 3.1,2.9 2.6,1.5 5.1,0.2 5.4,-2.8 0.3,-2.5 -0.6,-4.7 -1.4,-6.9 -0.9,-2 -2,-3.9 -3.2,-5.7 z m -3.2,0.6 c -0.4,2 -1.3,3.9 -2.5,5.6 -3.7,5.4 -8.8,7.6 -15.2,7 -2.3000002,-0.2 -4.2000002,-2.1 -4.4000002,-4 -0.1,-0.8 0.1,-1.4 0.6,-2 0.7,-0.9 1.3,-1.7 1.6,-2.8 0.6000002,-2.2 -0.2,-4 -1.8,-5.6 -2.2,-2.2 -1.9,-4.2 0.7,-5.8 0.3,-0.2 0.7,-0.4 1.1,-0.6 0.6000002,-0.3 1.1000002,-0.3 1.3000002,0.4 0.9,2.3 2.7,4 4.7,5.4 0.7,0.6 0.7,1 0.1,1.7 -1.2,1.3 -1.9,2.9 -2,4.7 -0.2,2.2 1.1,3.6 3.3,3.6 1.4,0 2.7,-0.5 3.9,-1.1 3.1,-1.6 5.5,-3.9 7.8,-6.3 0.3,-0.1 0.4,-0.3 0.8,-0.2 z m -16.4,-21 c 0.2,0 0.7,0.1 1.2,0.2 3.7,0.7 6,-0.6000001 7.2,-4.1000001 0.8,-2.3 2.5,-3 4.7,-1.8 0.1,0 0.1,0.1 0.2,0.1 2.2,1.3 2.2,1.5 0.7,3.5 -1.2,1.6 -1.8,3.4000001 -2.1,5.3000001 -0.2,1.1 -0.6,1.3 -1.6,0.9 -1.6,-0.6 -3.3,-0.6 -5,0 -1.9,0.6 -2.7,2.3 -2.1,4.2 0.8,2.5 3,3.6 4.9,4.9 1.9,1.3 4.1,2 6.2,2.9 0.3,0.1 0.8,0.1 0.7,0.6 -0.1,0.3 -0.5,0.3 -0.9,0.3 -4.5,0.1 -8.8,-0.5 -12.3,-3.5 -3.3,-2.7 -5.7000002,-6 -5.3000002,-10.6 0.5000002,-1.5 1.6000002,-2.6 3.5000002,-2.9 z m -8.2000002,28.1 c -2.4,0.3 -4.79999997,-1.7 -4.9999999666,-4.2 -0.2000000034,-2.4 1.7999999666,-4.8 4.0999999666,-5 2.6,-0.3 5,1.5 5.2,3.9 0.2,2.3 -1.4,5.1 -4.3,5.3 z M 46.99969,2.6637559 c 2.5,-0.2 4.9,1.8 5.1,4.3 0.2,2.4 -1.8,4.7000001 -4.2,4.9000001 -2.6,0.2 -4.9,-1.7 -5.1,-4.2000001 -0.2,-2.5 1.6,-4.8 4.2,-5 z m -26.1,1.9 c 0.3,2.6 -1.5,4.8 -4.2,5.2 -2.3,0.3000001 -4.7,-1.6 -5,-3.8 -0.3,-2.9 1.3,-4.99999997 4,-5.29999997 2.5,-0.3 4.9,1.59999997 5.2,3.89999997 z"
|
|
||||||
id="path2" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 3.1 KiB |
|
@ -1,31 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
viewBox="0 0 99.999999 99.999999"
|
|
||||||
xml:space="preserve"
|
|
||||||
height="100"
|
|
||||||
width="100"
|
|
||||||
version="1.1"
|
|
||||||
id="svg2"><metadata
|
|
||||||
id="metadata8"><rdf:RDF><cc:Work
|
|
||||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
|
||||||
id="defs6"><clipPath
|
|
||||||
id="clipPath16"
|
|
||||||
clipPathUnits="userSpaceOnUse"><path
|
|
||||||
id="path18"
|
|
||||||
d="M 0,560 H 960 V 0 H 0 Z" /></clipPath></defs><g
|
|
||||||
transform="matrix(1.25,0,0,-1.25,-267.55675,530.43749)"
|
|
||||||
id="g10"><g
|
|
||||||
transform="matrix(0.513,0,0,0.513,243.60252,376.2251)"
|
|
||||||
id="g56"><path
|
|
||||||
id="path58"
|
|
||||||
d="M 0,0 V 15.687 L -11.296,4.379 C -10.079,3.532 -8.932,2.836 -7.853,2.27 -6.774,1.703 -5.764,1.265 -4.823,0.932 -3.882,0.598 -3.009,0.37 -2.206,0.222 -1.402,0.075 -0.667,0.009 0,0 m 57.751,1.304 c 0.02,-0.017 0.13,-0.11 0.333,-0.239 0.204,-0.13 0.502,-0.297 0.898,-0.462 0.395,-0.164 0.889,-0.327 1.485,-0.448 0.596,-0.122 1.294,-0.202 2.098,-0.202 0.671,0 1.411,0.059 2.222,0.2 0.812,0.142 1.693,0.367 2.645,0.699 0.953,0.333 1.976,0.773 3.07,1.344 1.094,0.572 2.259,1.276 3.495,2.136 L 65.425,12.729 37.015,41.245 24.549,28.776 7.733,46.117 -34.471,4.39 c 1.235,-0.86 2.398,-1.564 3.491,-2.136 1.093,-0.571 2.115,-1.011 3.067,-1.344 0.951,-0.332 1.832,-0.557 2.643,-0.698 0.81,-0.142 1.55,-0.201 2.22,-0.201 0.804,0 1.502,0.08 2.097,0.202 0.596,0.121 1.089,0.284 1.485,0.449 0.396,0.164 0.693,0.331 0.897,0.461 0.204,0.13 0.314,0.223 0.334,0.24 L 0.815,20.415 7.628,26.948 26.494,8.082 33.085,1.304 c 0.02,-0.017 0.13,-0.11 0.334,-0.239 0.204,-0.13 0.501,-0.297 0.897,-0.462 0.396,-0.164 0.89,-0.327 1.485,-0.448 0.596,-0.122 1.295,-0.202 2.099,-0.202 0.67,0 1.411,0.059 2.222,0.2 0.811,0.142 1.693,0.367 2.645,0.699 0.952,0.333 1.975,0.773 3.069,1.344 1.094,0.572 2.259,1.276 3.495,2.136 L 34.192,19.157 37.01,21.975 50.111,8.874 57.751,1.304 M 57.588,80.32 94.807,15.838 57.588,-48.644 h -74.463 l -37.219,64.482 37.219,64.482 z" /></g><g
|
|
||||||
transform="matrix(0.513,0,0,0.513,261.23161,385.96143)"
|
|
||||||
id="g60"><path
|
|
||||||
id="path62"
|
|
||||||
d="M 0,0 -9.913,9.895 -9.208,10.604 0.775,0.73 Z" /></g></g></svg>
|
|
Before Width: | Height: | Size: 2.5 KiB |
|
@ -1,66 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
version="1.1"
|
|
||||||
id="svg2"
|
|
||||||
height="512"
|
|
||||||
width="512">
|
|
||||||
<title
|
|
||||||
id="title4445">Logo of Anthon OS4 Project</title>
|
|
||||||
<defs
|
|
||||||
id="defs4" />
|
|
||||||
<metadata
|
|
||||||
id="metadata7">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
<dc:title>Logo of Anthon OS4 Project</dc:title>
|
|
||||||
<dc:creator>
|
|
||||||
<cc:Agent>
|
|
||||||
<dc:title>Junde Yi</dc:title>
|
|
||||||
</cc:Agent>
|
|
||||||
</dc:creator>
|
|
||||||
<cc:license
|
|
||||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
|
||||||
<dc:date />
|
|
||||||
<dc:contributor>
|
|
||||||
<cc:Agent>
|
|
||||||
<dc:title>Jeff Bai, Icenowy Zheng, Junde Yi</dc:title>
|
|
||||||
</cc:Agent>
|
|
||||||
</dc:contributor>
|
|
||||||
<dc:publisher>
|
|
||||||
<cc:Agent>
|
|
||||||
<dc:title>Anthon Open Source Community </dc:title>
|
|
||||||
</cc:Agent>
|
|
||||||
</dc:publisher>
|
|
||||||
<dc:description />
|
|
||||||
</cc:Work>
|
|
||||||
<cc:License
|
|
||||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
|
||||||
</cc:License>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<g
|
|
||||||
transform="translate(0,12)"
|
|
||||||
id="layer2">
|
|
||||||
<path
|
|
||||||
id="path3558"
|
|
||||||
d="M 256,-4.686 A 248.68573,248.68573 0 0 0 7.314,244 248.68573,248.68573 0 0 0 256,492.686 248.68573,248.68573 0 0 0 504.686,244 248.68573,248.68573 0 0 0 256,-4.686 Z m 0,65.338 c 101.16252,0 183.17,82.08563 183.17,183.348 0,29.2803 -6.8702,56.95124 -19.064,81.504 l -83.432,-43.212 c 5.79574,-11.72609 9.042,-24.90425 9.042,-38.81999 0,-49.05908 -40.41008,-88.83601 -90.254,-88.83601 -0.73209,0 -1.46809,0.005 -2.196,0.022 l -6.19,-93.799999 c 2.96088,-0.142428 5.92788,-0.206 8.924,-0.206 z m -14.088,0.528 c 0.0385,-0.0031 0.0774,0.0031 0.116,0 l -0.584,0.322 -0.022,-0.276 c 0.16431,-0.0128 0.32557,-0.03361 0.49,-0.046 z M 94.744001,156.958 176.984,199.57 c -7.49227,12.94863 -11.776,27.93597 -11.776,43.90201 0,49.05904 40.41009,88.83599 90.254,88.83599 3.21127,0 6.38532,-0.16196 9.51,-0.48401 l 6.262,94.90401 c -5.02414,0.41423 -10.1031,0.62 -15.234,0.62 -101.16251,0 -183.17,-82.08564 -183.17,-183.348 0,-31.50401 7.931378,-61.14458 21.914001,-87.042 z" />
|
|
||||||
</g>
|
|
||||||
<g
|
|
||||||
transform="translate(0,-540.36218)"
|
|
||||||
id="layer1" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.8 KiB |
|
@ -1,30 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
id="svg2"
|
|
||||||
height="170px"
|
|
||||||
version="1.1"
|
|
||||||
viewBox="0 0 170 170"
|
|
||||||
width="170px">
|
|
||||||
<metadata
|
|
||||||
id="metadata10">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
<dc:title></dc:title>
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<defs
|
|
||||||
id="defs8" />
|
|
||||||
<path
|
|
||||||
id="path4"
|
|
||||||
d="m 153.59607,132.48161 c -2.57091,5.93933 -5.61402,11.40645 -9.13984,16.43284 -4.80603,6.85226 -8.7411,11.59533 -11.77372,14.2292 -4.70109,4.32332 -9.73798,6.53745 -15.13164,6.66338 -3.87211,0 -8.54172,-1.10182 -13.97736,-3.33694 -5.453475,-2.22462 -10.465176,-3.32644 -15.047692,-3.32644 -4.806027,0 -9.960438,1.10182 -15.473729,3.32644 -5.521685,2.23512 -9.969884,3.3999 -13.370831,3.51533 -5.172251,0.22036 -10.327713,-2.05673 -15.47373,-6.84177 -3.284468,-2.86473 -7.392678,-7.77569 -12.314134,-14.73289 -5.280334,-7.42941 -9.621499,-16.04458 -13.022446,-25.8665 -3.642297,-10.60894 -5.468168,-20.88209 -5.468168,-30.827836 0,-11.392804 2.461778,-21.218927 7.392678,-29.453184 3.875253,-6.61406 9.030715,-11.831433 15.483174,-15.661564 6.452459,-3.830131 13.424347,-5.781924 20.932454,-5.906797 4.108209,0 9.495577,1.270764 16.190436,3.76822 6.675972,2.50585 10.96257,3.776614 12.841959,3.776614 1.40508,0 6.167035,-1.485881 14.239689,-4.448199 7.63403,-2.747201 14.07705,-3.884697 19.35528,-3.436624 14.30266,1.154286 25.04801,6.792449 32.19409,16.950166 -12.79159,7.750507 -19.11917,18.606043 -18.99325,32.53198 0.11543,10.847144 4.05049,19.873654 11.78421,27.040724 3.50483,3.32644 7.41891,5.89735 11.77372,7.72323 -0.94442,2.7388 -1.9413,5.36218 -3.00115,7.88062 z M 120.79336,3.4009449 c 0,8.5019461 -3.10608,16.4401821 -9.29725,23.7877381 -7.47138,8.734797 -16.508387,13.782176 -26.308276,12.985718 -0.124873,-1.019969 -0.197278,-2.093455 -0.197278,-3.221507 0,-8.161852 3.553102,-16.89665 9.86285,-24.038533 C 98.003558,9.2982975 102.00998,6.2915921 106.86847,3.8930905 111.71648,1.5303718 116.30214,0.22371991 120.61497,-1.7157505e-6 120.7409,1.1365504 120.79336,2.2732074 120.79336,3.40084 Z" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.4 KiB |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg width="48" height="48" version="1.1" viewBox="0 0 12.7 12.7" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m6.35 0v2.88e-4c-0.565 1.39-0.906 2.29-1.54 3.64 0.548 0.277 1.03 0.717 1.63 1.42-0.685-0.541-1.22-0.868-1.81-1.04-0.806 1.68-2.07 4.07-4.63 8.68 0.759-0.445 5.05-1.57 4.66-2.58-0.105-0.253-0.317-0.287-0.643-0.403v-0.645c0.326-0.116 0.537-0.149 0.643-0.403 0.105-0.254-0.0205-0.427-0.169-0.74l0.456-0.456c0.314 0.149 0.486 0.274 0.74 0.169h1.58e-4c0.253-0.105 0.287-0.316 0.403-0.642h0.645c0.117 0.328 0.15 0.537 0.403 0.642h1.59e-4c0.254 0.105 0.428-0.0209 0.74-0.169l0.456 0.456c-0.149 0.314-0.274 0.486-0.169 0.74v1.58e-4c0.105 0.253 0.313 0.286 0.643 0.403v0.645c-2.13 1.19 2.85 2.57 3.89 2.98-0.392-0.721-0.741-1.37-1.07-1.99-0.526-0.407-1.07-0.938-2.19-1.51 0.769 0.2 1.32 0.43 1.75 0.688-3.39-6.32-3.67-7.16-4.83-9.89zm0.0657 8.6c-0.441 0-0.798 0.357-0.798 0.798s0.357 0.798 0.798 0.798c0.441 0 0.798-0.357 0.798-0.798s-0.358-0.798-0.798-0.798z" fill="#000000"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1 KiB |
|
@ -1,34 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
width="512"
|
|
||||||
height="512"
|
|
||||||
viewBox="0 0 135.46666 135.46667"
|
|
||||||
version="1.1"
|
|
||||||
id="svg8">
|
|
||||||
<defs
|
|
||||||
id="defs2" />
|
|
||||||
<metadata
|
|
||||||
id="metadata5">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
<dc:title></dc:title>
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<g
|
|
||||||
id="layer1"
|
|
||||||
style="display:inline">
|
|
||||||
<path
|
|
||||||
id="path892"
|
|
||||||
d="M 66.879018,0.20960859 C 47.90629,48.224706 22.636216,94.346678 -1.049807,135.98724 26.782301,120.15034 37.394473,116.08008 52.581765,112.7706 38.64467,80.168315 47.995751,56.516071 71.119674,41.546511 c 1.950448,27.094937 29.644016,36.781697 15.349896,72.525849 15.09142,3.98415 30.50179,11.31282 47.94729,21.55625 C 115.28038,102.24173 81.858694,39.145413 66.879018,0.20960859 Z M 69.842881,56.272196 C 40.502834,75.734829 56.381617,106.09232 58.539568,109.26367 52.836544,98.012065 61.535071,83.067738 64.550145,83.036061 c 5.063893,-0.0532 14.863439,29.014479 -0.406872,47.478559 39.969257,-44.162386 5.406315,-49.002882 5.699608,-74.242424 z" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.4 KiB |
|
@ -1,34 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="512"
|
|
||||||
height="512"
|
|
||||||
id="svg3037"
|
|
||||||
version="1.1"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
||||||
<defs
|
|
||||||
id="defs5498" />
|
|
||||||
<metadata
|
|
||||||
id="metadata5594">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<path
|
|
||||||
id="path2518"
|
|
||||||
d="m 243.0023,12.90627 c -21.63981,53.05505 -34.6919,87.75929 -58.78499,139.23721 14.77209,15.6584 32.90413,33.89339 62.35049,54.4881 C 214.91007,193.60462 193.31562,180.52586 177.17775,166.954 146.34319,231.29506 98.0343,322.94602 0,499.09371 c 77.05167,-44.48326 136.78074,-71.90767 192.44539,-82.3721 -2.39027,-10.28049 -3.74922,-21.40082 -3.65692,-33.0037 l 0.0914,-2.46842 c 1.22263,-49.36496 26.90225,-87.32662 57.32221,-84.74912 30.41998,2.57752 54.0651,44.70927 52.84249,94.07426 -0.22995,9.28893 -1.2777,18.22477 -3.10838,26.51266 55.06028,10.77077 114.15068,38.12498 190.15982,82.00642 -14.98752,-27.59306 -28.36518,-52.46619 -41.14035,-76.15534 -20.12297,-15.59664 -41.11223,-35.89574 -83.9263,-57.87075 29.42793,7.64662 50.49796,16.46877 66.92162,26.32982 C 298.06225,149.56729 287.54404,117.43306 243.0023,12.90627 Z" />
|
|
||||||
<path
|
|
||||||
id="path3940"
|
|
||||||
d="m 488.49503,455.69905 v -13.32983 h -4.97933 v -1.78346 h 11.97928 v 1.78346 h -4.99996 v 13.32983 h -1.99999" />
|
|
||||||
<path
|
|
||||||
id="path3942"
|
|
||||||
d="m 497.57744,455.69905 v -15.11329 h 3.0103 l 3.5773,10.70093 c 0.32987,0.99657 0.57042,1.74227 0.72162,2.23712 0.1717,-0.54984 0.43986,-1.35739 0.80412,-2.42268 l 3.61855,-10.51537 h 2.69068 v 15.11329 h -1.92781 v -12.6494 l -4.39173,12.6494 h -1.80409 l -4.37111,-12.86589 v 12.86589 h -1.92783" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2 KiB |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.1" viewBox="0 0 2419 2424" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m2.0048 2370.9c0-7.9783 1157.3-2209.5 1196.1-2275.3l26.803-45.474 29.274 51.365c16.101 28.25 134.09 252.85 262.21 499.11 128.11 246.26 386.45 741.39 574.08 1100.3 263.29 503.6 337.52 654.83 325.24 662.61-8.7488 5.5438-114.18 10.161-234.29 10.261l-218.39 0.1766-64.403-65.304c-161.58-163.84-443.98-312.37-759.59-399.52l-141.39-39.042 176.74-8.8653c166.03-8.3276 353.34-2.7135 455.74 13.662 34.228 5.4734 45.029 3.231 45.029-9.3488 0-31.079-433.26-823.05-450.26-823.05-12.391 0-99.855 152.46-439.38 765.89-166.79 301.35-304.18 549.02-305.31 550.39-5.0262 6.0992-478.21 18.126-478.21 12.154z" fill="#000000"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 742 B |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m11.8 12.6c-6.51 0-11.8 5.1-11.8 11.4 0 6.33 5.29 11.5 11.8 11.5 0.598 0.0074 1.2-0.0326 1.79-0.121 5.11-0.755 8.51-4.35 10.4-7.18 1.89 2.83 5.29 6.42 10.4 7.18 0.594 0.0796 1.19 0.111 1.79 0.0956 6.43-0.0957 11.8-5.2 11.8-11.4h0.00463c0-6.33-5.29-11.4-11.8-11.4-0.599-0.0159-1.2 0.0166-1.79 0.0962-5.1 0.756-8.51 4.35-10.4 7.18-1.89-2.84-5.29-6.43-10.4-7.18-0.594-0.0797-1.19-0.112-1.79-0.0962zm0.0046 4.06c0.412-0.0158 0.825 0.0168 1.23 0.0962 4.82 0.66 7.75 5.38 8.69 7.27-1.04 1.89-3.97 6.52-8.79 7.28-0.405 0.0752-0.817 0.106-1.23 0.091-4.25 0-7.75-3.3-7.75-7.37 0-4.06 3.5-7.37 7.84-7.37zm24.3 0c4.35 0 7.84 3.3 7.84 7.37 0 4.06-3.5 7.37-7.75 7.37-0.412 0.015-0.824-0.0157-1.23-0.091-4.91-0.755-7.84-5.39-8.77-7.28 1.01-1.89 3.86-6.61 8.68-7.27 0.403-0.0794 0.814-0.112 1.22-0.0962zm-1.51 3.78v2.46h-2.36v2.27h2.36v2.46h2.36v-2.46h2.36v-2.27h-2.36v-2.46zm-26.2 2.46v2.27h7.09v-2.27z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1,023 B |
|
@ -1,62 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
width="512"
|
|
||||||
height="512"
|
|
||||||
viewBox="0 0 135.46667 135.46667"
|
|
||||||
version="1.1"
|
|
||||||
id="svg879">
|
|
||||||
<title
|
|
||||||
id="title1672">Artix Logo Signet B&W</title>
|
|
||||||
<defs
|
|
||||||
id="defs873">
|
|
||||||
<pattern
|
|
||||||
y="0"
|
|
||||||
x="0"
|
|
||||||
height="6"
|
|
||||||
width="6"
|
|
||||||
patternUnits="userSpaceOnUse"
|
|
||||||
id="EMFhbasepattern" />
|
|
||||||
</defs>
|
|
||||||
<metadata
|
|
||||||
id="metadata876">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
<dc:title>Artix Logo Signet B&W</dc:title>
|
|
||||||
<cc:license
|
|
||||||
rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/" />
|
|
||||||
</cc:Work>
|
|
||||||
<cc:License
|
|
||||||
rdf:about="http://creativecommons.org/licenses/by-nc-sa/4.0/">
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
|
||||||
<cc:requires
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
|
||||||
<cc:requires
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
|
||||||
<cc:prohibits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#CommercialUse" />
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
|
||||||
<cc:requires
|
|
||||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
|
||||||
</cc:License>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<g
|
|
||||||
id="layer1">
|
|
||||||
<path
|
|
||||||
d="M 67.732584,2.5189031e-5 44.438419,47.761449 108.54681,83.681023 Z M 37.401326,62.190708 1.6630387,135.46664 107.71081,91.654502 Z m 78.151114,35.855154 -33.446032,19.201058 51.697222,18.21972 z"
|
|
||||||
id="path4885-0" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2 KiB |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m0 15v-15h48v48h-15v-16.5h-18v1.5h16.5v15h-31.5v-31.5h33v-1.5z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 197 B |
|
@ -1,6 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg width="40" height="40" version="1.1" viewBox="0 0 10.583 10.583" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g transform="translate(.0045972 -.34144)" fill="#000000">
|
|
||||||
<path d="m8.4194 2.1149c-0.10969-1.929e-4 -0.22562 0.00939-0.34911 0.029988-1.9758 0.32962-1.8904 2.6271-1.8904 2.6271s-0.0022 1.0173 0.94888 1.5317c0.7903 0.45505 1.2445-0.037272 1.3223-0.11486 0.077783-0.077586 1.6835-2.0879 1.4253 1.7308 0 0 0.56551-0.61522 0.6009-2.0805 0.035388-1.4653-0.90587-1.5543-0.90587-1.5543 0 0-0.41643-0.10443-1.2431 0.78875-0.82667 0.89317-0.88437 0.85325-0.88437 0.85325s-0.23342 0.16449-0.26084-0.24953c-0.027417-0.41401-0.11705-1.6689 1.1452-2.3481 1.2623-0.67926 1.8751 0.98452 1.8751 0.98452s-0.13872-2.1959-1.784-2.1988zm-3.5403 0.94944a0.6709 0.89473 77.92 0 0-0.25179 0.026026 0.6709 0.89473 77.92 0 0-0.73443 0.84363 0.6709 0.89473 77.92 0 0 1.0151 0.4685 0.6709 0.89473 77.92 0 0 0.73443-0.84307 0.6709 0.89473 77.92 0 0-0.76329-0.49509zm-4.182 0.28065s-0.56494 0.61598-0.60033 2.0811c-0.035388 1.4651 0.90587 1.5554 0.90587 1.5554s0.41587 0.10443 1.2425-0.78875c0.82667-0.89317 0.88494-0.85325 0.88494-0.85325 0 0 0.23342-0.16449 0.26084 0.24953 0.027417 0.41401 0.11668 1.6689-1.1458 2.3481-1.2625 0.67926-1.8751-0.98452-1.8751-0.98452s0.15736 2.4982 2.1337 2.1688c1.9763-0.32942 1.8898-2.6271 1.8898-2.6271s0.00223-1.0163-0.94944-1.5317c-0.7903-0.45505-1.2445 0.036699-1.3223 0.1143-0.077783 0.077586-1.6828 2.0879-1.4247-1.732zm4.419 1.225a0.68432 0.68432 0 0 0-0.66257 0.89399s0.40021 1.5845 2.5417 1.6352c0 0-1.237-0.88578-1.208-1.8972a0.68432 0.68432 0 0 0-0.67106-0.63202z" fill="#000000"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.6 KiB |
|
@ -1,3 +0,0 @@
|
||||||
<svg version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m24 0a24 24 0 0 0-24 24 24 24 0 0 0 24 24 24 24 0 0 0 24-24 24 24 0 0 0-24-24zm-5.87 5.75h0.105c0.193 0 0.348 0.155 0.348 0.348v17.6h10.7v-17.6c0-0.193 0.155-0.348 0.348-0.348 0.193 0 0.348 0.155 0.348 0.348v17.6h11.9c0.193 0 0.346 0.156 0.346 0.348s-0.154 0.348-0.346 0.348h-17.6v17.6c0 0.193-0.154 0.348-0.346 0.348-0.193 0-0.348-0.156-0.348-0.348v-17.6h-17.6c-0.193 0-0.346-0.155-0.346-0.348s0.154-0.348 0.346-0.348h11.8v-17.6c0-0.193 0.155-0.348 0.348-0.348zm5.66 7.83c0.491-0.00196 0.988 0.109 1.41 0.363 0.521 0.625 0.777-0.659 1.47-0.223 0.0879 0.612 0.0154 1.25 0.0391 1.87 0.174 0.51-0.415 0.717-0.754 0.463-0.0305-0.948-0.878-1.71-1.81-1.75-0.947-0.259-2.15 0.717-1.37 1.64 0.804 0.73 1.99 0.686 2.92 1.17 1.49 0.501 1.77 2.78 0.496 3.66-1.17 0.794-2.91 0.864-4.05-0.043-0.228 0.29-0.691 0.798-1.18 0.453-0.00494-0.655 0.00296-1.31 0-1.97-0.218-0.547 0.418-0.713 0.762-0.438 0.107 1.26 1.48 2.09 2.67 1.87 1.01 0.035 1.7-1.22 1.04-2.02-0.754-0.787-1.95-0.736-2.89-1.18-0.878-0.26-1.41-1.19-1.27-2.08 0.0598-1.24 1.41-1.83 2.5-1.78zm8.31 0.0801c0.667 0.0415 1.34 0.00947 2.01 0.0195 1.26 0.0535 2.69-0.23 3.76 0.604 1.15 1 0.623 3.15-0.854 3.53-0.833 0.318-1.76 0.11-2.6 0.236-0.108 0.585-0.0178 1.21-0.0469 1.81-0.135 0.516 0.226 0.697 0.689 0.607 0.576-0.26 0.814 0.373 0.51 0.744-0.984 0.0212-1.97 0.00386-2.95 0.00976-0.53 0.124-0.887-0.163-0.682-0.715 0.336-0.136 0.793 0.0974 1.07-0.145 0.00761-1.74 0.00171-3.48 0.00391-5.22 0.126-0.533-0.189-0.828-0.719-0.709-0.498 0.215-0.53-0.709-0.189-0.775zm-22.8 0.00977c0.174 0.0206 0.351 0.00491 0.525 0.00977 1.41 0.0278 2.83-0.0658 4.24 0.0664 0.923 0.107 1.94 0.755 1.87 1.8 0.217 1-1.15 1.71-1.56 1.79 1.03 0.0846 2.07 0.929 1.85 2.05-0.0307 1.07-1.09 1.71-2.05 1.8-1.39 0.101-2.8 0.0288-4.19 0.0508-0.372-0.00542-1.02 0.152-0.877-0.439-0.0757-0.668 0.937-0.0154 1.09-0.492 0.035-1.81 0.00583-3.63 0.0156-5.45 0.139-0.527-0.404-0.409-0.738-0.41-0.501 0.21-0.483-0.705-0.166-0.771zm26.5 0.744c-0.0583-8.73e-4 -0.118 0.00347-0.18 0.0117l-0.146 0.00195c-0.376 0.0445-0.839-0.0922-1.15 0.113-0.0238 0.747-0.00311 1.49-0.00976 2.24-0.149 0.648 0.606 0.427 0.994 0.465 0.699 0.104 1.47-0.265 1.57-1.03 0.265-0.794-0.203-1.79-1.08-1.81zm-22.4 0.00391c-0.0559-9.6e-5 -0.113 0.00334-0.172 0.0117l-0.533 0.00195c-0.363 0.0554-0.871-0.127-1.12 0.143 0.00682 0.766-0.0577 1.55 0.041 2.3 0.351 0.141 0.762 0.0398 1.14 0.0703 0.667 0.0424 1.58-0.0208 1.73-0.828 0.265-0.782-0.253-1.7-1.09-1.7zm0.0449 3.27c-0.0598-0.00166-0.121 6.21e-4 -0.184 0.00781l-1.35 0.00977c-0.589-0.116-0.381 0.599-0.418 0.957 0.0326 0.586-0.0698 1.2 0.0605 1.77 0.403 0.0769 0.822 0.0229 1.23 0.0391 0.719 0.0642 1.64-0.103 1.82-0.926 0.307-0.846-0.272-1.83-1.17-1.86zm5.66 9.46-0.0156 0.00195c0.411 0.265 0.104 0.87-0.367 0.785 0.269 0.939 0.608 1.86 0.883 2.8 0.353-0.91 0.67-1.84 0.973-2.77-0.44-0.0395-0.84-0.201-0.617-0.758 0.339-0.0805 0.703-0.0205 1.05-0.0391 0.342 0.0715 0.961-0.177 1.06 0.207 0.165 0.58-0.37 0.451-0.73 0.59-0.414 1.22-0.839 2.44-1.26 3.66-0.0104 0.563-0.576 0.816-1.03 0.539-0.365-0.999-0.757-1.99-1.1-3-0.409 0.877-0.748 1.8-1.14 2.69-0.0521 0.482-0.598 0.451-0.947 0.363-0.536-1.4-1.03-2.83-1.54-4.24-0.451-0.0735-0.949-0.253-0.609-0.805 0.796-0.0165 1.6 0.00558 2.39-0.0117 0.385 0.365 0.0148 0.875-0.51 0.762 0.245 0.848 0.597 1.71 0.865 2.56 0.292 0.209 0.462-0.839 0.684-1.19 0.124-0.424 0.503-0.837 0.359-1.28-0.373-0.169-0.79-0.243-0.555-0.82 0.696-0.0797 1.43 0.00524 2.14-0.0449zm9.29 0.00586c0.197 0.00536 0.363 0.0607 0.414 0.285 0.332 1.02 0.615 2.06 0.957 3.06 0.291-0.691 0.493-1.44 0.775-2.14 0.188-0.381 0.214-0.878 0.518-1.17 0.687-0.0438 1.38-0.0178 2.07-0.0137 0.342 0.505-0.132 0.787-0.604 0.762 0.00328 0.864 0.0639 1.73 0.0898 2.6 0.0934 0.307-0.164 0.915 0.27 0.957 0.485-0.134 0.653 0.261 0.502 0.678-0.627 0.0599-1.26 0.012-1.89 0.0273-0.3-0.0654-0.92 0.197-0.861-0.281-0.174-0.588 0.49-0.328 0.77-0.508-0.0239-1.02-0.0354-2.06-0.119-3.08-0.343 1.15-0.731 2.29-1.12 3.43 0.00889 0.615-0.686 0.581-1.09 0.432-0.467-1.31-0.838-2.66-1.33-3.95-0.104 0.737-0.0474 1.49-0.0977 2.24 0.078 0.337-0.29 1.06 0.268 1.02 0.485-0.151 0.55 0.311 0.432 0.678-0.442 0.055-0.891 0.0116-1.34 0.0254-0.293-0.0839-0.858 0.192-0.941-0.174-0.165-0.574 0.339-0.531 0.742-0.57 0.103-0.829 0.0871-1.69 0.146-2.54-0.0654-0.351 0.281-1.07-0.26-1.04-0.49 0.218-0.593-0.591-0.258-0.717 0.451 0.0183 0.905 0.00255 1.36 0.00781 0.171 0.0287 0.397-0.0151 0.594-0.00976z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 4.4 KiB |
|
@ -1,38 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
id="svg2"
|
|
||||||
version="1.1"
|
|
||||||
viewBox="0 0 175.15235 175.15235"
|
|
||||||
height="175.15234pt"
|
|
||||||
width="175.15234pt">
|
|
||||||
<metadata
|
|
||||||
id="metadata26">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
<dc:title></dc:title>
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<defs
|
|
||||||
id="defs24" />
|
|
||||||
<path
|
|
||||||
transform="scale(0.75000004)"
|
|
||||||
d="M 111.90625 0 C 85.228288 1.2034275 59.003334 11.640592 39.128906 29.537109 C 15.691858 50.11453 1.4417301 80.475545 0 111.58594 L 0 122.20117 C 1.5251358 153.22816 15.751434 183.48196 39.128906 204.01172 C 58.931842 221.83674 85.026924 232.23836 111.59766 233.53711 L 122.28516 233.53711 C 153.58619 231.96431 184.0759 217.48729 204.59375 193.72852 C 221.89451 174.2592 231.94047 148.8199 233.53711 122.89258 L 233.53711 112.0625 C 232.26218 80.523167 217.71384 49.721961 193.83594 29.025391 C 174.35471 11.67697 148.86755 1.5966266 122.89258 0 L 111.90625 0 z M 143.37109 61.730469 C 145.68828 61.74952 147.99412 61.877606 150.26172 62.089844 C 163.10622 63.531574 176.15392 68.500482 184.82812 78.425781 C 190.71419 84.883777 193.75185 93.378725 194.94336 101.92188 C 198.6728 103.20871 202.42662 104.42509 206.16797 105.65234 C 202.74833 107.59451 199.34035 109.54806 195.99219 111.60938 C 197.04072 128.65991 190.77241 145.59001 180.40625 158.9707 C 169.14645 170.93349 154.16998 179.19202 138.28711 183.18359 C 115.06454 188.97435 89.446933 185.42281 69.083984 172.68555 C 56.227566 164.67859 45.694654 152.77665 39.927734 138.7168 C 34.851891 124.95483 34.910697 109.86983 37.603516 95.607422 C 39.855474 104.24589 46.481658 111.64567 55.060547 114.30273 C 62.948358 116.78109 72.741273 115.89763 78.603516 109.54688 C 91.900794 97.310036 99.89593 80.057969 114.86133 69.548828 C 123.08053 63.604671 133.32997 61.647915 143.37109 61.730469 z "
|
|
||||||
id="path6" />
|
|
||||||
<path
|
|
||||||
id="path16"
|
|
||||||
d="m 68.53282,89.917494 c 1.858759,-3.306453 5.361806,-5.335001 9.061452,-5.853309 6.827367,-0.750653 13.502816,5.549472 12.582372,12.466201 -1.19747,4.369864 -3.976673,8.882734 -8.614635,10.107004 -11.83172,2.70772 -23.547266,-1.61748 -34.842805,-4.70945 8.319736,-1.17066 17.300762,-4.432428 21.813616,-12.010446 z" />
|
|
||||||
<path
|
|
||||||
transform="scale(0.75000004)"
|
|
||||||
d="M 161.13281 87.037109 C 156.99869 87.037109 153.63867 90.397121 153.63867 94.53125 C 153.63867 98.665378 156.99869 102.02539 161.13281 102.02539 C 165.26696 102.02539 168.63086 98.665378 168.63086 94.53125 C 168.63086 92.949476 168.13455 91.483719 167.29492 90.273438 C 167.42033 90.567473 167.49219 90.889961 167.49219 91.228516 C 167.49219 92.602668 166.34816 93.718749 164.96094 93.71875 C 163.57371 93.718757 162.42773 92.602676 162.42773 91.228516 C 162.42773 89.854356 163.57371 88.74218 164.96094 88.742188 C 165.46682 88.742188 165.93843 88.891909 166.33594 89.146484 C 164.98619 87.843244 163.15328 87.037109 161.13281 87.037109 z "
|
|
||||||
id="path884" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 3.2 KiB |
|
@ -1,78 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
width="512"
|
|
||||||
height="512"
|
|
||||||
id="svg3037"
|
|
||||||
version="1.1">
|
|
||||||
<defs
|
|
||||||
id="defs5498" />
|
|
||||||
<metadata
|
|
||||||
id="metadata5594">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
<dc:title />
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<g
|
|
||||||
id="layer3"
|
|
||||||
style="display:inline">
|
|
||||||
<path
|
|
||||||
d="M 0.78125257,256.03194 C 18.075419,273.32611 35.369584,290.62027 52.66375,307.91444 c 0,-12.8179 0,-25.63581 0,-38.45371 51.68238,0 103.36477,0 155.04715,0 4.392,-4.38147 8.784,-8.76295 13.176,-13.14441 -5.25093,-5.0067 -9.69416,-11.00099 -15.76697,-15.13503 -50.82925,0 -101.65852,0 -152.487777,0 0,-12.33342 0,-24.66683 0,-37.00025 -17.283633,17.28364 -34.567267,34.56727 -51.85090043,51.8509 z"
|
|
||||||
id="path4830" />
|
|
||||||
<path
|
|
||||||
d="m 460.89875,238.36915 c -1.73596,6.19237 -10.12418,4.07827 -14.88225,3.88644 -46.65948,0.43749 -93.43076,0.0668 -140.1333,0.18959 -4.40254,4.392 -8.80507,8.784 -13.2076,13.176 5.31261,4.90456 9.68566,10.99921 15.76697,15.10343 50.83979,0 101.67958,0 152.51937,0 0,12.33342 0,24.66683 0,37.00025 17.2731,-17.28363 34.54621,-34.56727 51.81931,-51.8509 -17.29417,-17.29417 -34.58833,-34.58833 -51.8825,-51.8825 0,11.45923 0,22.91846 0,34.37769 z"
|
|
||||||
id="path4830-7" />
|
|
||||||
<path
|
|
||||||
d="m 204.83556,51.85125 c 12.8179,0 25.63581,0 38.45371,0 0,51.67185 0,103.3437 0,155.01555 4.392,4.40254 8.78401,8.80507 13.17601,13.2076 4.74171,-5.67432 12.34132,-9.85926 15.07183,-16.77808 0,-50.50276 0,-101.0055 0,-151.508264 12.33342,0 24.66683,0 37.00025,0 C 291.26426,34.514955 273.99115,17.241853 256.71806,-0.03124743 239.42389,17.262919 222.12973,34.557084 204.83556,51.85125 z"
|
|
||||||
id="path4830-76" />
|
|
||||||
<path
|
|
||||||
d="m 242.02539,306.74535 c 0,51.12416 0,102.24833 0,153.3725 -12.33342,0 -24.66683,0 -37.00025,0 17.28363,17.28363 34.56727,34.56726 51.8509,51.8509 17.29417,-17.3047 34.58833,-34.6094 51.8825,-51.9141 -12.8179,0 -25.63581,0 -38.45372,0 0,-51.67185 0,-103.34369 0,-155.01555 -4.41306,-4.4236 -8.82613,-8.8472 -13.2392,-13.27079 -5.0134,4.99234 -10.02682,9.98469 -15.04023,14.97704 z"
|
|
||||||
id="path4830-7-2" />
|
|
||||||
<path
|
|
||||||
d="m 69.820995,186.86581 c -0.05266,12.38608 -0.105324,24.77216 -0.157986,37.15824 39.707061,0 79.414141,0 119.121201,0 -26.01498,-26.01498 -52.02994,-52.02995 -78.04492,-78.04493 -13.639434,13.6289 -27.278865,27.25779 -40.918295,40.88669 z"
|
|
||||||
id="path4880" />
|
|
||||||
<path
|
|
||||||
d="m 188.24706,70.209186 -40.91829,40.886694 78.07652,78.04493 0,-119.089609 z"
|
|
||||||
id="path4880-8" />
|
|
||||||
<path
|
|
||||||
d="m 145.9069,402.80064 c 13.63943,13.63943 27.27886,27.27887 40.91829,40.91829 12.38608,0.0527 24.77216,0.10533 37.15823,0.15799 0,-39.70707 0,-79.41414 0,-119.1212 -26.0255,26.01497 -52.05102,52.02994 -78.07652,78.04492 z"
|
|
||||||
id="path4880-3" />
|
|
||||||
<path
|
|
||||||
d="m 70.168564,325.29287 c 13.628898,13.6289 27.257795,27.25779 40.886696,40.88669 26.0255,-26.01498 52.05102,-52.02995 78.07652,-78.04493 -39.70706,0 -79.41414,0 -119.121202,0 0.05266,12.38608 0.105324,24.77216 0.157986,37.15824 z"
|
|
||||||
id="path4880-8-1" />
|
|
||||||
<path
|
|
||||||
d="m 288.59957,187.52935 c 26.0255,-26.0255 52.05102,-52.05102 78.07652,-78.07652 -13.63943,-13.628899 -27.27886,-27.257796 -40.91829,-40.886695 -12.38608,-0.05266 -24.77216,-0.105324 -37.15823,-0.157985 0,39.70706 0,79.41414 0,119.1212 z"
|
|
||||||
id="path4880-5" />
|
|
||||||
<path
|
|
||||||
d="m 323.45121,224.15043 c 39.70706,0 79.41414,0 119.1212,0 -0.0527,-12.38607 -0.10533,-24.77215 -0.15798,-37.15823 -13.62891,-13.63943 -27.2578,-27.27886 -40.8867,-40.91829 -26.0255,26.0255 -52.05102,52.05102 -78.07652,78.07652 z"
|
|
||||||
id="path4880-8-4" />
|
|
||||||
<path
|
|
||||||
d="m 403.17078,365.38963 c 13.6289,-13.6289 27.25779,-27.25779 40.8867,-40.88669 0.0527,-12.38608 0.10532,-24.77216 0.15798,-37.15823 -39.70706,0 -79.41414,0 -119.1212,0 26.0255,26.01498 52.05102,52.02994 78.07652,78.04492 z"
|
|
||||||
id="path4880-35" />
|
|
||||||
<path
|
|
||||||
d="m 288.47318,441.31755 c 12.38607,-0.0527 24.77215,-0.10533 37.15823,-0.15798 13.63943,-13.63943 27.27886,-27.27887 40.91829,-40.9183 -26.0255,-26.01497 -52.05102,-52.02994 -78.07652,-78.04492 0,39.70706 0,79.41414 0,119.1212 z"
|
|
||||||
id="path4880-8-0" />
|
|
||||||
<path
|
|
||||||
d="m 69.852592,162.47282 c 13.627952,-13.61924 27.293917,-27.20097 40.855098,-40.88669 34.04134,34.11464 102.31153,102.24833 102.31153,102.24833 l 12.48087,-0.18958 -0.11262,-11.46114 c 0,0 -70.67189,-69.42569 -103.3996,-101.87779 13.90679,-13.793007 27.74713,-27.653224 41.58183,-41.518635 -31.23903,0 -62.47808,0 -93.717108,0 0,31.228505 0,62.457005 0,93.685505 z"
|
|
||||||
id="path4943" />
|
|
||||||
<path
|
|
||||||
d="m 288.44409,287.48989 0.12472,10.07698 104.3329,103.7803 -41.58183,41.51864 93.68551,0 0,-93.71711 -40.8235,40.9183 -103.72574,-102.60189 z"
|
|
||||||
id="path4943-6" />
|
|
||||||
<path
|
|
||||||
d="m 388.73089,106.19832 -6.69859,12.1965 -92.57961,92.99037 0.15798,12.48087 10.42288,0.001 102.94765,-103.48202 41.48704,41.55023 0,-93.685506 -93.68551,0 z"
|
|
||||||
id="path4943-60" />
|
|
||||||
<path
|
|
||||||
d="m 212.00882,288.35497 -99.7994,102.41932 -41.756482,-41.05684 0,93.68551 93.653912,0 -40.8551,-40.8235 100.41737,-101.7812 -0.12639,-12.65764 z"
|
|
||||||
id="path4943-6-1" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 5.5 KiB |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.1" viewBox="0 0 23 23" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m11.5 0c-6.351 0-11.5 5.149-11.5 11.5 0 6.352 5.149 11.5 11.5 11.5 6.352 0 11.5-5.148 11.5-11.5 0-6.351-5.148-11.5-11.5-11.5zm0 1.9609c5.269 0 9.5391 4.2701 9.5391 9.5391 0 0.8104-0.11055 1.5924-0.30078 2.3438l-4.5371-5.043-5.8008 6.5996 2.7988-5.5996-1.3984-2.5-8.2461 9.4766c-1.006-1.5117-1.5938-3.3257-1.5938-5.2773 0-5.269 4.2701-9.5391 9.5391-9.5391z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 490 B |
|
@ -1,118 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="16"
|
|
||||||
height="16"
|
|
||||||
viewBox="0 0 4.2333332 4.2333335"
|
|
||||||
version="1.1"
|
|
||||||
id="svg1468"
|
|
||||||
sodipodi:docname="codeberg-logo_special_no-halftone.svg"
|
|
||||||
inkscape:version="1.2-alpha1 (b6a15bb, 2022-02-23)"
|
|
||||||
inkscape:export-filename="/home/mray/Projects/Codeberg/codeberg_.png"
|
|
||||||
inkscape:export-xdpi="1536"
|
|
||||||
inkscape:export-ydpi="1536"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
||||||
<title
|
|
||||||
id="title2230">Codeberg logo special version</title>
|
|
||||||
<defs
|
|
||||||
id="defs1462" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
inkscape:bbox-nodes="true"
|
|
||||||
inkscape:bbox-paths="true"
|
|
||||||
inkscape:guide-bbox="true"
|
|
||||||
inkscape:snap-bbox-edge-midpoints="true"
|
|
||||||
inkscape:object-paths="true"
|
|
||||||
inkscape:snap-intersection-paths="true"
|
|
||||||
inkscape:snap-bbox-midpoints="true"
|
|
||||||
inkscape:snap-bbox="true"
|
|
||||||
showborder="false"
|
|
||||||
id="base"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:zoom="5.6568543"
|
|
||||||
inkscape:cx="5.7452425"
|
|
||||||
inkscape:cy="32.261747"
|
|
||||||
inkscape:document-units="px"
|
|
||||||
inkscape:current-layer="layer1"
|
|
||||||
inkscape:document-rotation="0"
|
|
||||||
showgrid="false"
|
|
||||||
fit-margin-top="0"
|
|
||||||
fit-margin-left="0"
|
|
||||||
fit-margin-right="0"
|
|
||||||
fit-margin-bottom="0"
|
|
||||||
units="px"
|
|
||||||
inkscape:snap-global="false"
|
|
||||||
inkscape:snap-page="true"
|
|
||||||
showguides="true"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid2067" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<metadata
|
|
||||||
id="metadata1465">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
<dc:title>Codeberg logo special version</dc:title>
|
|
||||||
<dc:creator>
|
|
||||||
<cc:Agent>
|
|
||||||
<dc:title>Robert Martinez</dc:title>
|
|
||||||
</cc:Agent>
|
|
||||||
</dc:creator>
|
|
||||||
<cc:license
|
|
||||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
|
||||||
<dc:description>Special single color version with fake halftone</dc:description>
|
|
||||||
<dc:date>2020-04-09</dc:date>
|
|
||||||
<dc:rights>
|
|
||||||
<cc:Agent>
|
|
||||||
<dc:title>Codeberg and the Codeberg Logo are trademarks of Codeberg e.V.</dc:title>
|
|
||||||
</cc:Agent>
|
|
||||||
</dc:rights>
|
|
||||||
<dc:source>codeberg.org</dc:source>
|
|
||||||
<dc:publisher>
|
|
||||||
<cc:Agent>
|
|
||||||
<dc:title>Codeberg e.V.</dc:title>
|
|
||||||
</cc:Agent>
|
|
||||||
</dc:publisher>
|
|
||||||
</cc:Work>
|
|
||||||
<cc:License
|
|
||||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
|
||||||
</cc:License>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<g
|
|
||||||
style="opacity:1"
|
|
||||||
inkscape:label="Layer 1"
|
|
||||||
inkscape:groupmode="layer"
|
|
||||||
id="layer1"
|
|
||||||
transform="translate(-44.867463,-75.990641)">
|
|
||||||
<g
|
|
||||||
id="g1542-5-7-2"
|
|
||||||
style="opacity:1"
|
|
||||||
transform="matrix(0.62731857,0,0,0.30231784,25.415003,63.342477)" />
|
|
||||||
<path
|
|
||||||
id="rect60043"
|
|
||||||
style="fill-opacity:1;stroke:none;stroke-width:0.0660874;paint-order:markers fill stroke;stop-color:#000000"
|
|
||||||
d="m 46.983886,76.122471 c -1.172544,0 -2.116423,0.944367 -2.116423,2.116911 -5.6e-5,0.397554 0.112002,0.787589 0.323326,1.124632 l 1.764533,-2.281439 c 0.01275,-0.01632 0.04434,-0.01632 0.05708,0 l 0.736954,0.952848 h -0.527804 l 0.01143,0.04204 h 0.549083 l 0.155695,0.200846 h -0.648209 l 0.01818,0.06591 h 0.680903 l 0.137012,0.176972 h -0.768612 l 0.02386,0.08511 h 0.810129 l 0.122481,0.157769 H 47.42501 l 0.02906,0.103797 h 0.939356 l 0.10743,0.138567 h -1.008381 l 0.03218,0.114695 h 1.064947 l 0.09912,0.128189 h -1.128265 l 0.03218,0.114694 h 1.184832 c 0.211323,-0.337043 0.323393,-0.727078 0.323326,-1.12463 1e-6,-1.172544 -0.944364,-2.116911 -2.116909,-2.116911 z m 0.644552,3.369732 0.03218,0.114695 h 0.939339 c 0.03063,-0.03616 0.06232,-0.07645 0.09055,-0.114695 z m 0.06799,0.242882 0.03166,0.114695 h 0.628487 c 0.04111,-0.03504 0.08566,-0.07553 0.125654,-0.114694 z m 0.06747,0.242883 0.03218,0.114176 h 0.212225 c 0.06271,-0.03599 0.120816,-0.07262 0.183679,-0.114176 z"
|
|
||||||
sodipodi:nodetypes="scccccccccccccccccccccccccccccsccccccccccccccc" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 4.8 KiB |
|
@ -1,23 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xml:space="preserve"
|
|
||||||
enable-background="new 0 0 222.068 222.068"
|
|
||||||
viewBox="0 0 222.068 222.068"
|
|
||||||
preserveAspectRatio="xMidYMin"
|
|
||||||
y="0px"
|
|
||||||
x="0px"
|
|
||||||
id="Layer_1"
|
|
||||||
version="1.1"
|
|
||||||
width="100%"
|
|
||||||
height="100%"><metadata
|
|
||||||
id="metadata15"><rdf:RDF><cc:Work
|
|
||||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
|
||||||
id="defs13" /><path
|
|
||||||
d="M 110.8125 3.15625 C 51.542504 3.15625 3.3125 51.364004 3.3125 110.625 C 3.3125 169.89 51.542504 218.125 110.8125 218.125 C 170.0645 218.125 218.28125 169.89 218.28125 110.625 C 218.28125 51.364004 170.0645 3.15625 110.8125 3.15625 z M 110.8125 13.03125 C 164.7155 13.03125 208.40525 56.713004 208.40625 110.625 C 208.40625 122.821 184.9415 133.3225 151.1875 138.0625 C 150.2985 138.1915 149.42325 138.3235 148.53125 138.4375 C 140.42025 139.4865 131.7365 140.19325 122.6875 140.53125 C 118.7925 140.67625 114.8355 140.75 110.8125 140.75 C 106.7775 140.75 102.81325 140.67725 98.90625 140.53125 C 89.86825 140.19325 81.19775 139.4865 73.09375 138.4375 C 72.37075 132.3905 71.87 126.097 71.625 119.625 C 71.508 116.669 71.46875 113.654 71.46875 110.625 C 71.46875 107.593 71.508 104.61825 71.625 101.65625 C 71.87 95.18325 72.37075 88.89075 73.09375 82.84375 C 73.23875 81.58475 73.3935 80.32975 73.5625 79.09375 C 78.8565 40.669752 93.529502 13.03125 110.8125 13.03125 z M 110.8125 61.84375 C 105.9735 61.84375 101.66525 69.248 98.90625 80.75 C 97.81025 85.336 96.95425 90.571 96.40625 96.25 C 95.97425 100.801 95.75 105.617 95.75 110.625 C 95.75 115.633 95.97425 120.48425 96.40625 125.03125 C 100.96025 125.46325 105.7975 125.6875 110.8125 125.6875 C 115.8215 125.6875 120.6335 125.46325 125.1875 125.03125 C 135.1985 124.08125 143.84675 122.161 149.96875 119.625 C 156.01475 117.124 159.59375 113.995 159.59375 110.625 C 159.59275 100.457 156.5045 91.03775 151.1875 83.21875 C 150.2085 81.79075 149.15025 80.40775 148.03125 79.09375 C 139.07525 68.53675 125.7395 61.84375 110.8125 61.84375 z "
|
|
||||||
id="path5" /></svg>
|
|
Before Width: | Height: | Size: 2.3 KiB |
|
@ -1,5 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.1" viewBox="0 0 127 127" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m40.565 127 63.522-63.5-27.41-27.347-8.7638 8.7437 18.584 18.604-63.584 63.5z" fill="#000000"/>
|
|
||||||
<path d="m86.528 0-63.522 63.5 27.286 27.223h0.1243l8.7017-8.6816-18.522-18.542 63.398-63.5z" fill="#000000"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 341 B |
Before Width: | Height: | Size: 6.8 KiB |
|
@ -1,30 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
id="svg4"
|
|
||||||
version="1.1"
|
|
||||||
viewBox="0 0 512 512"
|
|
||||||
height="512"
|
|
||||||
width="512">
|
|
||||||
<metadata
|
|
||||||
id="metadata10">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
<dc:title></dc:title>
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<defs
|
|
||||||
id="defs8" />
|
|
||||||
<path
|
|
||||||
id="path2"
|
|
||||||
d="M 343.58938,14.867426 C 306.76184,1.4450561 269.10241,-2.2185039 232.51485,1.2050861 190.10399,4.6286661 169.4345,17.699086 170.68235,15.363366 101.26677,40.112366 42.69787,93.353906 15.53317,168.01685 -32.79697,301.00872 35.69072,448.06288 168.42662,496.47301 301.24251,544.88314 448.13669,476.31546 496.46683,343.32359 544.79697,210.33172 476.30928,63.277556 343.57338,14.867426 Z M 177.19356,472.39593 c -13.83832,-5.08738 -27.16471,-11.58259 -39.83517,-19.24566 61.91249,4.75142 142.6547,-9.50285 197.0641,-60.48867 0,0 103.8274,-82.90194 28.74851,-219.06143 0,0 12.07853,54.90534 -3.3276,99.98787 0,0 -14.75021,61.41655 -80.15027,79.15841 C 183.36881,379.07925 73.55813,311.58344 27.6437,278.9154 24.22012,245.33547 27.22775,210.66768 39.56225,176.76779 57.81604,126.61388 92.13188,87.450626 134.04679,61.197806 c -10.49472,73.239124 -2.15973,140.734934 9.66283,168.987504 15.99806,37.9154 43.73869,82.15003 97.90812,87.82934 54.24942,5.66332 84.06981,-45.00254 84.06981,-45.00254 27.83662,-42.25087 32.1561,-102.89951 31.74015,-104.40333 -0.41595,-1.42383 -7.4231,-5.42334 -7.4231,-5.42334 -18.66974,75.65482 -49.498,100.97975 -49.498,100.97975 -48.6661,46.90631 -83.15791,14.33426 -83.15791,14.33426 -37.00351,-39.73918 -11.08666,-104.40334 -11.08666,-104.40334 14.49424,-43.99466 56.74512,-108.402844 104.65931,-141.230864 7.99903,1.99975 15.99806,3.2476 23.9171,6.07926 27.9966,10.25476 53.73748,25.91686 75.73481,46.07441 -35.00375,12.83044 -91.4929,39.835174 -91.4929,39.835174 -89.57314,37.73942 -95.6524,94.82049 -95.6524,94.82049 -9.32687,58.82487 37.41946,33.91589 37.41946,33.91589 47.99418,-23.42116 71.65531,-96.32432 71.65531,-96.32432 -15.00618,-2.91164 -26.82875,1.6638 -26.82875,1.6638 -19.16567,47.41825 -58.32892,66.8239 -58.32892,66.8239 -15.42213,8.15901 -19.0057,-6.25524 -19.0057,-6.25524 -2.57568,-10.83069 11.16665,-12.67047 11.16665,-12.67047 21.32541,-8.255 35.00375,-30.66828 38.07538,-39.83517 3.07163,-9.16688 8.75094,-9.91879 8.75094,-9.91879 18.1578,-5.66332 36.90752,-9.50285 55.91322,-11.42262 36.2516,-4.41546 91.73287,12.91044 91.73287,12.91044 12.49449,5.00739 24.41304,8.75094 35.00375,11.74257 20.41353,50.82584 23.58114,108.73881 3.42359,164.23608 -43.49872,119.64949 -175.6427,181.402 -295.21219,137.82329 z" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.9 KiB |
|
@ -1,22 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xml:space="preserve"
|
|
||||||
style="enable-background:new 0 0 512 512;"
|
|
||||||
viewBox="0 0 512 512"
|
|
||||||
height="512px"
|
|
||||||
width="512px"
|
|
||||||
y="0px"
|
|
||||||
x="0px"
|
|
||||||
id="Layer_1"
|
|
||||||
version="1.1"><metadata
|
|
||||||
id="metadata3402"><rdf:RDF><cc:Work
|
|
||||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
|
||||||
id="defs3400" /><path
|
|
||||||
id="path3396"
|
|
||||||
d="M12,20.433c864.515,206.328,46.7,374.071,46.7,374.071c-16.106,2.579-29.103,10.971-36.924,23.739 c-8.786,14.31-9.546,33.679-1.331,47.277c9.982,16.56,22.632,22.29,33.561,24.775c17.161,3.863,31.03-2.303,31.03-2.303 S503.115,363.745,499.982,239.64C498.398,177.322,371.784,71.962,12,20.433L12,20.433z M12,20.433" /></svg>
|
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,70 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
||||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
width="466px" height="423.891px" viewBox="0 0 466 423.891" enable-background="new 0 0 466 423.891" xml:space="preserve">
|
|
||||||
<rect x="-43.5" y="37.005" display="none" fill-rule="evenodd" clip-rule="evenodd" fill="#E7E7E7" width="792" height="612"/>
|
|
||||||
<g>
|
|
||||||
<path id="outline_7_" fill-rule="evenodd" clip-rule="evenodd" d="M242.133,168.481h47.146v48.194h23.837
|
|
||||||
c11.008,0,22.33-1.962,32.755-5.494c5.123-1.736,10.872-4.154,15.926-7.193c-6.656-8.689-10.053-19.661-11.054-30.476
|
|
||||||
c-1.358-14.71,1.609-33.855,11.564-45.368l4.956-5.732l5.905,4.747c14.867,11.946,27.372,28.638,29.577,47.665
|
|
||||||
c17.901-5.266,38.921-4.02,54.701,5.088l6.475,3.734l-3.408,6.652c-13.345,26.046-41.246,34.113-68.524,32.687
|
|
||||||
c-40.817,101.663-129.68,149.794-237.428,149.794c-55.666,0-106.738-20.81-135.821-70.197l-0.477-0.807l-4.238-8.621
|
|
||||||
C4.195,271.415,0.93,247.6,3.145,223.803l0.664-7.127h40.315v-48.194h47.143v-47.145h94.292V74.191h56.574V168.481z"/>
|
|
||||||
<g display="none">
|
|
||||||
<path display="inline" fill="#394D54" d="M61.093,319.89c6.023,0,11.763-0.157,17.219-0.464c0.476-0.026,0.932-0.063,1.402-0.092
|
|
||||||
c0.005-0.002,0.008-0.002,0.012-0.002c13.872-0.855,25.876-2.708,35.902-5.57c0.002-0.002,0.004-0.002,0.006-0.002
|
|
||||||
c1.823-0.521,3.588-1.07,5.282-1.656c1.894-0.657,2.896-2.725,2.241-4.618c-0.656-1.895-2.722-2.899-4.618-2.24
|
|
||||||
c-12.734,4.412-29.535,6.842-50.125,7.298c-0.002,0-0.004,0-0.005,0c-10.477,0.232-21.93-0.044-34.352-0.843c0,0,0,0-0.001,0
|
|
||||||
c-0.635-0.038-1.259-0.075-1.9-0.118c-1.995-0.128-3.731,1.374-3.869,3.375c-0.136,1.999,1.376,3.73,3.375,3.866
|
|
||||||
c2.537,0.173,5.03,0.321,7.49,0.453c0.392,0.021,0.77,0.034,1.158,0.054l0,0C47.566,319.697,54.504,319.89,61.093,319.89z"/>
|
|
||||||
</g>
|
|
||||||
<g id="Containers_8_">
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M86.209,179.744h3.227v34.052h-3.227V179.744z M80.02,179.744
|
|
||||||
h3.354v34.052H80.02V179.744z M73.828,179.744h3.354v34.052h-3.354V179.744z M67.636,179.744h3.354v34.052h-3.354V179.744z
|
|
||||||
M61.446,179.744H64.8v34.052h-3.354V179.744z M55.384,179.744h3.224v34.052h-3.224V179.744z M51.981,176.338h40.858v40.86H51.981
|
|
||||||
V176.338z"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M133.354,132.598h3.229v34.051h-3.229V132.598z M127.165,132.598
|
|
||||||
h3.354v34.051h-3.354V132.598z M120.973,132.598h3.354v34.051h-3.354V132.598z M114.781,132.598h3.354v34.051h-3.354V132.598z
|
|
||||||
M108.593,132.598h3.352v34.051h-3.352V132.598z M102.531,132.598h3.222v34.051h-3.222V132.598z M99.124,129.193h40.863v40.859
|
|
||||||
H99.124V129.193z"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M133.354,179.744h3.229v34.052h-3.229V179.744z M127.165,179.744
|
|
||||||
h3.354v34.052h-3.354V179.744z M120.973,179.744h3.354v34.052h-3.354V179.744z M114.781,179.744h3.354v34.052h-3.354V179.744z
|
|
||||||
M108.593,179.744h3.352v34.052h-3.352V179.744z M102.531,179.744h3.222v34.052h-3.222V179.744z M99.124,176.338h40.863v40.86
|
|
||||||
H99.124V176.338z"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M180.501,179.744h3.225v34.052h-3.225V179.744z M174.31,179.744
|
|
||||||
h3.355v34.052h-3.355V179.744z M168.12,179.744h3.354v34.052h-3.354V179.744z M161.928,179.744h3.354v34.052h-3.354V179.744z
|
|
||||||
M155.736,179.744h3.354v34.052h-3.354V179.744z M149.676,179.744h3.222v34.052h-3.222V179.744z M146.271,176.338h40.861v40.86
|
|
||||||
h-40.861V176.338z"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M180.501,132.598h3.225v34.051h-3.225V132.598z M174.31,132.598
|
|
||||||
h3.355v34.051h-3.355V132.598z M168.12,132.598h3.354v34.051h-3.354V132.598z M161.928,132.598h3.354v34.051h-3.354V132.598z
|
|
||||||
M155.736,132.598h3.354v34.051h-3.354V132.598z M149.676,132.598h3.222v34.051h-3.222V132.598z M146.271,129.193h40.861v40.859
|
|
||||||
h-40.861V129.193z"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M227.647,179.744h3.226v34.052h-3.226V179.744z M221.457,179.744
|
|
||||||
h3.354v34.052h-3.354V179.744z M215.265,179.744h3.354v34.052h-3.354V179.744z M209.073,179.744h3.354v34.052h-3.354V179.744z
|
|
||||||
M202.884,179.744h3.354v34.052h-3.354V179.744z M196.821,179.744h3.224v34.052h-3.224V179.744z M193.416,176.338h40.861v40.86
|
|
||||||
h-40.861V176.338z"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M227.647,132.598h3.226v34.051h-3.226V132.598z M221.457,132.598
|
|
||||||
h3.354v34.051h-3.354V132.598z M215.265,132.598h3.354v34.051h-3.354V132.598z M209.073,132.598h3.354v34.051h-3.354V132.598z
|
|
||||||
M202.884,132.598h3.354v34.051h-3.354V132.598z M196.821,132.598h3.224v34.051h-3.224V132.598z M193.416,129.193h40.861v40.859
|
|
||||||
h-40.861V129.193z"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M227.647,85.451h3.226v34.053h-3.226V85.451z M221.457,85.451
|
|
||||||
h3.354v34.053h-3.354V85.451z M215.265,85.451h3.354v34.053h-3.354V85.451z M209.073,85.451h3.354v34.053h-3.354V85.451z
|
|
||||||
M202.884,85.451h3.354v34.053h-3.354V85.451z M196.821,85.451h3.224v34.053h-3.224V85.451z M193.416,82.048h40.861v40.86h-40.861
|
|
||||||
V82.048z"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M274.792,179.744h3.224v34.052h-3.224V179.744z M268.602,179.744
|
|
||||||
h3.352v34.052h-3.352V179.744z M262.408,179.744h3.354v34.052h-3.354V179.744z M256.218,179.744h3.354v34.052h-3.354V179.744z
|
|
||||||
M250.026,179.744h3.354v34.052h-3.354V179.744z M243.964,179.744h3.227v34.052h-3.227V179.744z M240.561,176.338h40.86v40.86
|
|
||||||
h-40.86V176.338z"/>
|
|
||||||
</g>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M137.428,283.445c6.225,0,11.271,5.049,11.271,11.272
|
|
||||||
c0,6.225-5.046,11.271-11.271,11.271c-6.226,0-11.272-5.046-11.272-11.271C126.156,288.494,131.202,283.445,137.428,283.445"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M137.428,286.644c1.031,0,2.015,0.194,2.923,0.546
|
|
||||||
c-0.984,0.569-1.65,1.635-1.65,2.854c0,1.82,1.476,3.293,3.296,3.293c1.247,0,2.329-0.693,2.89-1.715
|
|
||||||
c0.395,0.953,0.615,1.999,0.615,3.097c0,4.458-3.615,8.073-8.073,8.073c-4.458,0-8.074-3.615-8.074-8.073
|
|
||||||
C129.354,290.258,132.971,286.644,137.428,286.644"/>
|
|
||||||
<path fill="#FFFFFF" d="M167.394,364.677c-27.916-13.247-43.239-31.256-51.765-50.915c-10.37,2.961-22.835,4.852-37.317,5.664
|
|
||||||
c-5.457,0.307-11.196,0.464-17.219,0.464c-6.942,0-14.26-0.205-21.94-0.613c25.6,25.585,57.094,45.283,115.408,45.645
|
|
||||||
C158.866,364.921,163.14,364.837,167.394,364.677z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 6.5 KiB |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m0 22h12v-8h4v16h4v-8h4v8h4v-8h20v12h-4v-8h-4v8h-4v-8h-4v8h-28v-4h8v-4h-8v8h-4z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 214 B |
|
@ -1,74 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
width="512"
|
|
||||||
height="512"
|
|
||||||
id="svg2"
|
|
||||||
version="1.0">
|
|
||||||
<title
|
|
||||||
id="title3032">Gentoo Logo Dark v1.0</title>
|
|
||||||
<defs
|
|
||||||
id="defs4" />
|
|
||||||
<metadata
|
|
||||||
id="metadata7">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
<dc:title>Gentoo Logo Dark v1.0</dc:title>
|
|
||||||
<dc:date>2011-06-03</dc:date>
|
|
||||||
<dc:creator>
|
|
||||||
<cc:Agent>
|
|
||||||
<dc:title>Sebastian Pipping <sping@gentoo.org></dc:title>
|
|
||||||
</cc:Agent>
|
|
||||||
</dc:creator>
|
|
||||||
<dc:rights>
|
|
||||||
<cc:Agent>
|
|
||||||
<dc:title>Lennart Andre Rolland, Gentoo Foundation Inc.</dc:title>
|
|
||||||
</cc:Agent>
|
|
||||||
</dc:rights>
|
|
||||||
<dc:publisher>
|
|
||||||
<cc:Agent>
|
|
||||||
<dc:title>Gentoo Foundation Inc.</dc:title>
|
|
||||||
</cc:Agent>
|
|
||||||
</dc:publisher>
|
|
||||||
<dc:contributor>
|
|
||||||
<cc:Agent>
|
|
||||||
<dc:title>Lennart Andre Rolland for original vector version, idea for dark version and specific RGB value by unknown person</dc:title>
|
|
||||||
</cc:Agent>
|
|
||||||
</dc:contributor>
|
|
||||||
<cc:license
|
|
||||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.5/" />
|
|
||||||
</cc:Work>
|
|
||||||
<cc:License
|
|
||||||
rdf:about="http://creativecommons.org/licenses/by-sa/2.5/">
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
|
||||||
<cc:requires
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
|
||||||
<cc:requires
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
|
||||||
<cc:requires
|
|
||||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
|
||||||
</cc:License>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<g
|
|
||||||
id="layer2"
|
|
||||||
style="display:inline"
|
|
||||||
transform="translate(-25.69105,-136.02588)">
|
|
||||||
<path
|
|
||||||
d="m 281.69105,136.15571 c -141.31319,0 -255.870165,114.55698 -255.870165,255.87017 0,141.31319 114.556975,255.87017 255.870165,255.87017 141.31319,0 255.87017,-114.55698 255.87017,-255.87017 0,-141.31319 -114.55698,-255.87017 -255.87017,-255.87017 z m 0,21.32252 c 107.4377,0 198.00417,72.2394 225.77878,170.79333 -23.9223,49.34229 -57.96197,93.76773 -99.41623,129.66754 -19.91415,17.24584 -41.65638,32.61976 -65.67334,43.44462 -24.01696,10.82487 -50.43388,16.96708 -76.73441,15.45883 -19.76012,-1.13318 -39.27993,-6.63756 -56.58462,-16.23177 45.86056,-24.85024 87.23971,-57.9831 121.11188,-97.65711 22.23302,-26.04121 41.68521,-55.63627 49.17505,-89.04815 3.74493,-16.70594 4.37955,-34.20184 0.87955,-50.96081 -3.49998,-16.75896 -11.24864,-32.72954 -22.975,-45.20373 -11.45596,-12.18652 -26.495,-20.81893 -42.61838,-25.26717 -16.12339,-4.44825 -33.28151,-4.79259 -49.73476,-1.78576 -32.9065,6.01366 -62.28601,25.1384 -85.84977,48.88186 -41.53456,41.85128 -67.21166,100.90427 -62.50161,159.67897 2.355,29.38735 12.20312,58.26418 29.07857,82.43817 3.76684,5.39598 7.908,10.5355 12.34041,15.40551 C 133.38322,505.6964 107.92858,511.82074 82.112326,515.27 59.947304,479.45445 47.143399,437.2404 47.143399,392.02588 c 0,-129.53709 105.010561,-234.54765 234.547651,-234.54765 z m 1.49257,47.38929 c 16.48779,0.0224 33.08756,5.01378 46.24321,14.95241 11.85258,8.95418 20.63501,21.69304 25.61367,35.68856 4.97867,13.9955 6.25633,29.19379 4.55769,43.95103 -3.3973,29.51446 -18.28649,56.58149 -36.27493,80.22595 -31.85077,41.86543 -74.18683,75.37368 -121.2718,98.82986 -4.81952,2.40092 -9.71541,4.68297 -14.63257,6.87651 -10.24533,-8.96562 -19.02669,-19.59937 -25.72029,-31.45071 -13.98649,-24.76375 -18.59885,-54.18066 -15.88526,-82.49148 2.71358,-28.31081 12.42915,-55.59647 25.48039,-80.86564 15.13235,-29.29847 35.75903,-57.05044 64.63387,-72.97629 14.43743,-7.96293 30.76825,-12.76255 47.25602,-12.7402 z M 514.1331,360.62848 c 1.37417,10.27104 2.1056,20.75028 2.1056,31.3974 0,129.53709 -105.01056,234.54765 -234.54765,234.54765 -72.74936,0 -137.76709,-33.11811 -180.78826,-85.10348 26.55388,-6.03093 52.50707,-14.69362 77.40072,-25.72029 10.88617,8.2906 22.90869,15.09037 35.68855,19.98986 36.80354,14.10959 78.58783,12.068 115.83456,-0.82624 37.24673,-12.89423 70.27619,-36.03797 99.06974,-62.95472 34.30058,-32.06482 63.22046,-69.85861 85.23674,-111.33018 z"
|
|
||||||
id="path2993" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 4.7 KiB |
|
@ -1 +0,0 @@
|
||||||
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><path d="M19.20894013 151.3023553c-6.57226357-1.07943065-17.61020123-3.33451695-18.2645975-3.73152582-.03497245-.02120828-.08219318-.05221276-.07030544-.0960432.17509767-.6454689 3.57213905-5.38378196 27.07724397-33.67248397 32.50216271-39.11677114 59.22655021-70.5906303 71.8536903-84.6235227 4.12852458-4.58813929 8.28804355-9.48846543 11.51165131-12.89925038 2.87534764-3.04230324 5.04138947-4.85834789 5.22121547-4.85834789.12749204 0-2.80837998 3.67484923-4.6074984 6.10163471C103.32792901 29.12635475 77.03389181 70.169903 39.88549428 129.980815l-13.70245431 22.061689-1.50413148-.0443354c-.8272723-.02444001-3.28875656-.33752469-5.46996836-.6957729zm5.73906607 24.72250987c-6.8311611-.16561646-12.5010892-.38870734-12.599841-.49574855-.23461606-.25433775 13.41517607-22.7626327 13.91315351-22.94257989.20949941-.07574385 5.61210524.38125415 12.00578904 1.01548265 22.81591698 2.26320604 49.16167714 4.4029395 70.6949821 5.7416868 12.18406481.7574789 34.7127904.73493753 39.02635216-.00201983 15.86025723-2.86191573 25.17950786-9.03768549 28.2199266-20.5505487.78926101-2.98862004 1.29712857-4.03336002 1.28293923-10.482151-.32732453-7.93306748-.78739267-10.85989064-3.4670182-19.76051006-6.64895674-22.0850363-22.77833692-50.39300551-48.47917455-85.16333398-3.82616523-5.17637005-9.0645897-12.39139593-8.44001601-11.9028592.3114688.24362554 3.13205869 2.77336207 4.46685721 4.20315853 7.33834697 7.86061394 25.99940979 29.35773354 31.20195187 35.64944895 27.27692576 32.9874374 42.93929965 60.1300673 46.1262373 80.01337328 2.16576914 13.51224838-1.45765505 23.7429298-10.81101061 30.52469076-6.74691879 4.8919418-15.18727817 7.54444093-30.28463325 9.38340061-34.727616 4.23008194-83.2460198 5.97168553-132.8564944 4.76898429z"/><path d="M116.16542087 16.29691497c-6.53213952 8.91013991-12.52449807 18.51768274-18.64712999 27.87789463-13.79768554 21.20812752-27.2829378 42.72074633-40.74994589 64.228259-8.6109719 13.80338754-17.26788094 27.57470008-25.70848069 41.50163088.01836031.3460484 1.03684444.16227363 1.45095223.29718857 21.57541046 2.05453679 43.1219009 4.01162658 64.7267939 5.48835898 10.6198715.70244846 21.24850102 1.3386968 31.89247118 1.51956302 3.71154964.0479711 7.62841561.00201983 11.17111707-.18341121 7.19675646-.43691073 14.59744566-1.26208443 21.16325585-4.72501245 4.93320705-2.60883028 9.2876503-6.85811076 11.4454512-12.41356869 2.3189232-5.76598543 2.28382856-12.2742808 1.30940917-18.3731554-.12994614-.79291691-.30596475-1.90750282-.4901233-2.82195327-.43828421-2.28124317-.93807243-4.35809914-1.54996155-6.61159987-.55986824-2.03527765-1.1343096-3.8894972-1.8104295-5.9105451-2.36132968-6.99931042-5.3230455-13.7433368-8.56115568-20.3117233-.57045219-1.12893885-1.2550756-2.51671464-1.89231366-3.73293768-9.09157471-17.455962-19.92056185-33.76578827-31.21315185-49.61072-3.95444502-5.50299066-8.02100104-11.40123698-12.15496909-16.74752372-.08392418.10552431-.29787531.42373534-.3817894.52925561z"/></svg>
|
|
Before Width: | Height: | Size: 2.9 KiB |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m23.9 8.7e-8c-0.31 3.1-0.741 5.14-1.91 5.78-1.27-0.386-2.11-2.29-3.06-5.26 0.335 3.07 0.34 5.15-0.641 6.03-1.31-0.144-2.51-1.83-4.03-4.53 0.961 2.97 1.39 5.01 0.578 6.06-1.32 0.159-2.85-1.25-4.91-3.59 1.55 2.7 2.39 4.6 1.82 5.8-1.26 0.416-3.05-0.646-5.54-2.51 2.18 2.44 3.41 4.19 2.92 5.51 0.786-1.05 0.874-1.15 1.31-1.63 0.405-0.442 0.543-0.584 1.32-1.28 0.863-0.757 1-0.863 1.51-1.22 0.493-0.353 0.653-0.463 1.58-1 0.986-0.554 1.15-0.629 1.71-0.877 0.547-0.24 0.734-0.316 1.71-0.635 1.06-0.337 1.24-0.381 1.84-0.508 0.61-0.129 0.783-0.161 1.93-0.287 1.05-0.103 1.24-0.107 1.85-0.107 0.652 0 0.782 4.42e-4 2.09 0.131 0.965 0.108 1.17 0.147 1.74 0.268 0.599 0.127 0.782 0.168 1.83 0.5 0.992 0.324 1.17 0.4 1.72 0.641 0.551 0.242 0.731 0.325 1.65 0.838 1 0.578 1.15 0.676 1.65 1.04 0.491 0.352 0.646 0.47 1.45 1.17 0.837 0.749 0.962 0.88 1.38 1.33 0.441 0.481 0.531 0.578 1.32 1.63-0.497-1.31 0.732-3.06 2.91-5.51-2.49 1.86-4.28 2.92-5.54 2.51-0.565-1.2 0.273-3.1 1.82-5.8-2.06 2.34-3.59 3.75-4.91 3.59-0.811-1.05-0.385-3.09 0.576-6.06-1.52 2.69-2.72 4.38-4.03 4.53-0.981-0.88-0.976-2.95-0.641-6.03-0.953 3-1.8 4.91-3.09 5.27-1.18-0.626-1.61-2.67-1.93-5.79zm-0.0938 7.36c-5.4 0.0771-10.6 2.76-13.7 7.37-4.75 7.15-3.62 17.6 4.59 23.2 7.18 4.74 13.9 2.66 18 0.369l-2.06-3.53c-4.45 2.34-9.66 2.62-13.7-0.107-6.17-4.09-7.39-12.1-3.58-17.7 3.74-5.65 11.5-7.37 17.6-3.32 6.45 4.37 6.07 12 4.47 15.4-0.706-0.486-1.41-0.971-2.12-1.46 1.84-4.77-0.0316-9.47-3.72-11.9-4.34-2.9-10.6-2.41-14.2 2.84-0.688 1.04-0.688 1.04-1.07 2.06l21.9 14.7c0.908-0.946 0.908-0.945 1.49-1.81 4.93-7.37 3.22-17.9-4.57-23.1-2.93-1.98-6.23-2.87-9.47-2.82zm15 27.4c-0.786 1.05-0.874 1.14-1.31 1.62-0.416 0.454-0.544 0.588-1.38 1.33-0.801 0.702-0.957 0.818-1.45 1.17-0.496 0.355-0.653 0.462-1.6 1.01-0.974 0.547-1.14 0.624-1.71 0.871-0.55 0.241-0.733 0.317-1.72 0.641-1.05 0.332-1.23 0.373-1.83 0.5-0.59 0.125-0.782 0.163-1.83 0.279-1.2 0.119-1.36 0.119-1.99 0.119-0.611 0-0.799-0.0021-1.89-0.109-1.1-0.122-1.29-0.158-1.89-0.285-0.599-0.127-0.782-0.168-1.83-0.5-0.992-0.324-1.17-0.4-1.72-0.641-0.565-0.248-0.73-0.325-1.71-0.875-0.936-0.54-1.09-0.648-1.59-1-0.49-0.351-0.647-0.469-1.44-1.16-0.843-0.755-0.969-0.884-1.39-1.34-0.441-0.481-0.529-0.578-1.31-1.63 0.497 1.31-0.732 3.06-2.91 5.51 2.49-1.86 4.28-2.92 5.54-2.51 0.565 1.2-0.272 3.1-1.82 5.8 2.06-2.34 3.59-3.75 4.91-3.59 0.808 1.05 0.383 3.09-0.578 6.06 1.52-2.69 2.72-4.38 4.03-4.53 0.982 0.88 0.976 2.95 0.641 6.03 0.945-2.97 1.79-4.88 3.06-5.26 1.17 0.639 1.59 2.68 1.9 5.78 0.312-3.12 0.745-5.17 1.93-5.79 1.29 0.364 2.14 2.28 3.09 5.27-0.335-3.07-0.34-5.15 0.641-6.03 1.31 0.144 2.51 1.83 4.03 4.53-0.962-2.97-1.39-5.01-0.576-6.06 1.32-0.157 2.86 1.25 4.91 3.59-1.55-2.7-2.39-4.6-1.82-5.8 1.26-0.416 3.05 0.646 5.54 2.51-2.18-2.44-3.41-4.19-2.91-5.51z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.8 KiB |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m1.34 0.304a1.32 1.32 0 0 0-0.829 0.277 1.32 1.32 0 0 0-0.238 1.86l3.81 4.94c-0.135 0.353-0.211 0.736-0.211 1.14v7.41c0 1.76 1.42 3.18 3.18 3.18h33.9c1.76 0 3.18-1.42 3.18-3.18v-7.41c0-0.402-0.0761-0.784-0.211-1.14l3.81-4.94a1.32 1.32 0 0 0-0.238-1.86 1.32 1.32 0 0 0-1.86 0.238l-3.63 4.7c-0.33-0.115-0.683-0.182-1.05-0.182h-33.9c-0.37 0-0.723 0.0668-1.05 0.182l-3.63-4.7a1.32 1.32 0 0 0-1.03-0.515zm12.5 9a3.57 3.57 0 0 1 3.57 3.57 3.57 3.57 0 0 1-3.57 3.57 3.57 3.57 0 0 1-3.57-3.57 3.57 3.57 0 0 1 3.57-3.57zm20.7 0a3.57 3.57 0 0 1 3.57 3.57 3.57 3.57 0 0 1-3.57 3.57 3.57 3.57 0 0 1-3.57-3.57 3.57 3.57 0 0 1 3.57-3.57zm-27.4 10.9c-1.76 0-3.18 1.42-3.18 3.18v21.2c0 1.76 1.42 3.18 3.18 3.18h33.9c1.76 0 3.18-1.42 3.18-3.18v-21.2c0-1.76-1.42-3.18-3.18-3.18zm16.9 2.65c6.13 0 11.1 4.99 11.1 11.1 0 6.13-4.99 11.1-11.1 11.1s-11.1-4.99-11.1-11.1c0-6.13 4.99-11.1 11.1-11.1zm0 2.01c-5.04 0-9.11 4.07-9.11 9.11s4.07 9.11 9.11 9.11 9.11-4.07 9.11-9.11-4.07-9.11-9.11-9.11zm0 2.49c3.64 0 6.62 2.98 6.62 6.62 0 3.64-2.98 6.62-6.62 6.62-3.13 0-5.76-2.21-6.44-5.14h3.34c0.549 1.16 1.72 1.96 3.1 1.96 1.92 0 3.44-1.52 3.44-3.44 0-1.92-1.52-3.44-3.44-3.44-1.3 0-2.4 0.704-2.99 1.75h-3.4c0.756-2.82 3.34-4.93 6.39-4.93z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.3 KiB |
|
@ -1,28 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
version="1.1"
|
|
||||||
width="512"
|
|
||||||
height="512"
|
|
||||||
id="svg2855"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
||||||
<metadata
|
|
||||||
id="metadata20">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<defs
|
|
||||||
id="defs2857" />
|
|
||||||
<path
|
|
||||||
id="path1616"
|
|
||||||
d="M 255.98242 0 C 114.65639 0.0042443177 0.13707368 114.53866 0.044921875 255.83398 L 0 255.83398 L 0 453.95117 L 0.044921875 453.95117 C 0.11274647 486.02932 26.110634 512 58.205078 512 L 58.480469 512 L 58.525391 512 L 256.08984 512 C 397.43713 511.9096 511.92578 397.3884 511.92578 256.05469 C 511.92597 114.66383 397.38027 0.0042470372 255.99023 0 L 255.98242 0 z M 259.39062 18.050781 C 269.98268 18.203358 280.56498 19.045263 291.04492 20.582031 C 314.01396 23.976136 336.47785 30.767486 357.4668 40.697266 C 385.47181 53.899237 410.80739 72.685197 431.67383 95.550781 C 452.65254 118.47622 469.09113 145.54729 479.66797 174.77148 C 488.7326 199.66064 493.51604 226.08502 493.86914 252.56641 C 494.26121 278.03708 490.57391 303.57611 482.88477 327.86523 C 473.58854 357.29211 458.46198 384.85383 438.6543 408.51758 C 418.00998 433.25269 392.30705 453.73799 363.57617 468.32031 C 332.22553 484.30293 297.24852 493.04661 262.08008 493.89258 C 235.63282 493.98395 209.18399 493.9724 182.73633 493.98828 C 141.52344 493.98958 100.31052 493.99785 59.097656 493.96289 C 50.488044 494.21989 41.85094 491.53075 34.861328 486.50977 C 24.850857 479.47383 18.469017 467.59937 18.083984 455.375 C 17.998075 416.05053 17.999768 376.72527 18.003906 337.40039 C 18.023532 310.60626 17.975215 283.8116 18.046875 257.01758 C 18.084144 245.79293 18.744928 234.56444 20.279297 223.44141 C 23.719746 198.11665 31.324032 173.37111 42.671875 150.47266 C 57.386223 120.71647 78.458311 94.152149 103.96875 72.923828 C 128.27667 52.675627 156.6686 37.355433 186.95117 28.195312 C 206.99824 22.103054 227.86145 18.766441 248.79883 18.126953 C 252.3279 18.024748 255.85994 17.999922 259.39062 18.050781 z M 307.86133 105.37695 C 267.93882 105.37695 232.6592 135.41958 227.77539 174.85742 C 227.44707 178.15865 227.3488 180.53637 227.33398 183.5293 L 227.37891 344.75391 C 227.37891 375.6782 204.21645 396.72656 175.29492 396.72656 C 146.32559 396.72656 122.99023 373.58642 122.99023 344.69727 C 123.47516 312.9915 148.83704 292.88194 178.44336 292.00586 L 178.60156 292.00586 L 208.64844 291.73047 L 208.64844 249.14648 L 178.60156 249.37305 C 124.73293 248.87207 81.960403 291.0586 80.398438 344.70312 C 80.398437 396.84881 123.26958 439.37109 175.28711 439.37109 C 224.36425 439.37109 265.22055 401.02628 269.67969 353.04297 C 270.32261 336.70522 270.00977 315.1543 270.00977 315.1543 C 270.10043 306.28014 269.87444 309.4654 269.96484 291.8457 L 307.24609 291.57031 C 336.08545 291.79102 335.75718 248.33404 306.91211 248.93164 L 269.96289 249.20703 C 269.96289 227.34476 270.30695 205.60906 269.96289 183.70312 C 270.01044 164.76519 287.94431 148.02148 307.85156 148.02148 C 327.77083 148.02148 348.83398 157.9626 348.83398 183.70312 C 348.83398 187.38061 348.76237 189.52004 348.55859 190.88281 C 346.33511 202.82145 354.48909 214.23432 366.50781 215.95703 C 378.52657 217.65986 389.5651 208.98129 390.75586 196.90234 C 391.44383 192.12693 391.41797 187.91348 391.41797 183.70312 C 391.41797 138.30367 350.84115 105.38281 307.85352 105.38281 L 307.86133 105.37695 z " />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 3.7 KiB |
|
@ -1,28 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
version="1.1"
|
|
||||||
width="512"
|
|
||||||
height="512"
|
|
||||||
id="svg2855"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
||||||
<metadata
|
|
||||||
id="metadata20">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<defs
|
|
||||||
id="defs2857" />
|
|
||||||
<path
|
|
||||||
id="path1616"
|
|
||||||
d="M 255.98988,1.6799999e-6 C 114.66024,1.6799999e-6 0.13737814,114.53647 0.04522463,255.83441 H 0 V 453.95111 H 0.04522463 C 0.11304922,486.02926 26.109925,512 58.204369,512 H 58.480533 58.52598 256.09055 C 397.43784,511.9096 511.92633,397.38884 511.92633,256.05513 511.92652,114.66165 397.37557,1.6799999e-6 255.98192,1.6799999e-6 Z M 307.85262,105.38319 C 350.84025,105.38319 391.41859,138.30277 391.41859,183.70222 391.41859,187.91258 391.44329,192.12724 390.75532,196.90265 389.56456,208.9816 378.52716,217.66044 366.5084,215.95761 354.48968,214.2349 346.33446,202.82081 348.55794,190.88217 348.76172,189.5194 348.83411,187.37971 348.83411,183.70222 348.83411,157.9617 327.77119,148.02223 307.85192,148.02223 287.94467,148.02223 270.0105,164.76429 269.96295,183.70222 270.30701,205.60816 269.96295,227.345 269.96295,249.20727 L 306.9129,248.93105 C 335.75797,248.33345 336.08506,291.79081 307.2457,291.5701 L 269.96431,291.84631 C 269.87391,309.46601 270.10016,306.28 270.0095,315.15416 270.0095,315.15416 270.3219,336.70539 269.67898,353.04314 265.21984,401.02645 224.36464,439.37068 175.2875,439.37068 123.26997,439.37068 80.399115,396.84894 80.399115,344.70326 81.961081,291.05873 124.73279,248.872 178.60142,249.37298 L 208.64759,249.14673 V 291.73052 L 178.60142,292.00669 H 178.44285 C 148.83653,292.88277 123.47497,312.9922 122.99004,344.69797 122.99004,373.58712 146.32533,396.72638 175.29466,396.72638 204.21619,396.72638 227.3783,375.67749 227.3783,344.7532 L 227.33309,183.52987 C 227.34791,180.53694 227.44621,178.15955 227.77453,174.85832 232.65834,135.42048 267.93834,105.37652 307.86085,105.37652 Z" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 7.3 KiB |
|
@ -1,30 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
viewBox="0 0 32 32"
|
|
||||||
height="32"
|
|
||||||
width="32"
|
|
||||||
id="svg2"
|
|
||||||
version="1.1">
|
|
||||||
<metadata
|
|
||||||
id="metadata8">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
<dc:title></dc:title>
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<defs
|
|
||||||
id="defs6" />
|
|
||||||
<path
|
|
||||||
id="path12"
|
|
||||||
d="M 4.3050695,25.738258 9.043e-4,22.935932 3.005e-4,18.388138 -3.034e-4,13.840345 7.9709051,8.6535784 C 12.35507,5.800857 15.961465,3.4624011 15.985118,3.457009 c 0.02365,-0.00533 3.636746,2.3284808 8.029096,5.1863824 l 7.986089,5.1961856 -4.69e-4,4.548177 -4.66e-4,4.548178 -4.299213,2.796929 c -2.364567,1.53831 -4.318642,2.80139 -4.342389,2.806844 -0.02374,0.0055 -1.688681,-1.06088 -3.699851,-2.36963 l -3.656675,-2.379548 -3.653669,2.377444 c -2.009518,1.307593 -3.6727191,2.376355 -3.6960032,2.375028 -0.023288,-0.0013 -1.9792075,-1.263461 -4.3464983,-2.804741 z m 4.257289,-2.982209 V 19.122975 L 5.087348,16.861954 C 3.1760931,15.618392 1.5940308,14.593908 1.5716572,14.585322 c -0.033259,-0.0128 -0.040684,0.647873 -0.040684,3.623586 v 3.639197 l 3.4904298,2.270509 c 1.9197356,1.24878 3.5017966,2.270509 3.5156908,2.270509 0.01389,0 0.025261,-1.634883 0.025261,-3.633074 z m 14.6877775,0.0096 V 19.14217 l -0.101563,-0.07548 c -0.150384,-0.11176 -6.889676,-4.490283 -6.911318,-4.490283 -0.01013,0 -0.0185,1.637028 -0.0185,3.637841 v 3.637841 l 3.476629,2.265837 c 1.912145,1.246211 3.494206,2.267047 3.515691,2.268522 0.03105,0.0021 0.03906,-0.741415 0.03906,-3.620796 z m 3.688495,-6.271479 c 2.757599,-1.794134 3.4331,-2.246462 3.399921,-2.276635 -0.05107,-0.04644 -6.926284,-4.5159307 -6.976005,-4.5350104 -0.0427,-0.016383 -7.003165,4.5055424 -7.003165,4.5496674 0,0.0168 1.575029,1.055917 3.500066,2.309153 3.296607,2.146156 3.504071,2.276089 3.568962,2.235209 0.03788,-0.02388 1.617491,-1.050945 3.510221,-2.282384 z m -14.735578,0.03811 c 1.907849,-1.242673 3.467409,-2.271976 3.465692,-2.287337 -0.0048,-0.04292 -6.9896288,-4.5784171 -7.0281574,-4.5636311 -0.062039,0.023808 -6.9688556,4.5238171 -6.9767285,4.5455601 -0.011064,0.03071 6.9672386,4.567312 7.023502,4.565951 0.025781,-6.26e-4 1.6078429,-1.017868 3.5156919,-2.260543 z m 7.318778,-4.770847 c 1.904472,-1.238848 3.474041,-2.2634358 3.487932,-2.2768621 0.01389,-0.013424 -1.557526,-1.0541985 -3.492037,-2.3128284 L 16.000433,4.8833237 12.500557,7.1594963 c -1.924933,1.2518953 -3.4999905,2.2832044 -3.5001265,2.2917984 -4.025e-4,0.025448 6.9804955,4.5610123 7.0213345,4.5618333 0.02057,4.14e-4 1.595595,-1.012849 3.500066,-2.251696 z" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.9 KiB |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.0" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m39.7 8.75v0.00195c-16.7-0.023-40.7 6.52-36.1 21.9 0 0-0.34 1.06-0.377 2.58-1.03-0.366-2.1-0.781-3.2-1.26 1.1 0.828 2.17 1.56 3.22 2.21 0.101 1.52 0.559 3.31 1.86 4.93-0.103-0.736 0.112-1.95 0.742-3.45 15.5 7.98 24.3-3.06 24.2-9.35-1.17 2.89-7.72 12.1-23.5 7.93 3.7-6.85 15.1-17.6 41.6-18.5 0 0-20.4-3.51-37 5.96 0 0 11.3-11.9 36.9-12.2-2.38-0.441-5.24-0.668-8.34-0.672zm-26.6 20.9-2.2 0.0625-1.13 1.57 2.38-0.0644z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 550 B |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path transform="matrix(.19541 0 0 .19541 4.4591 4.4591)" d="m148.89-22.819c-11.016 0-20.699 6.1246-25.821 15.127h-13.766c-40.013 0-72.761 32.759-72.761 72.772v102.23c-9.0006 5.1222-15.127 14.806-15.127 25.821 0 16.292 13.392 29.684 29.684 29.684s29.684-13.392 29.684-29.684c0-11.014-6.1263-20.698-15.127-25.821v-23.074c0-24.283 19.364-43.659 43.647-43.659h13.766c5.1209 9.0054 14.802 15.139 25.821 15.139 16.292 0 29.684-13.403 29.684-29.695s-13.392-29.684-29.684-29.684c-11.019 0-20.7 6.1314-25.821 15.139h-13.766c-16.341 0-31.465 5.4617-43.647 14.65v-21.05c0-24.283 19.364-43.659 43.647-43.659h13.766c5.1218 9.0024 14.805 15.127 25.821 15.127 16.292 0 29.684-13.392 29.684-29.684s-13.392-29.684-29.684-29.684zm0 17.466c6.8545 0 12.23 5.3634 12.23 12.218 0 6.8545-5.375 12.23-12.23 12.23-6.8545 0-12.218-5.375-12.218-12.23 0-6.8545 5.3634-12.218 12.218-12.218zm0 79.16c6.8545 0 12.23 5.3634 12.23 12.218 0 6.8545-5.375 12.23-12.23 12.23-6.8545 0-12.218-5.375-12.218-12.23 0-6.8545 5.3634-12.218 12.218-12.218zm-97.79 107.1c6.8545 0 12.218 5.375 12.218 12.23s-5.3634 12.218-12.218 12.218-12.23-5.3634-12.23-12.218 5.375-12.23 12.23-12.23z" color="#000000" style="-inkscape-stroke:none"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.3 KiB |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m22.3 0-2.02 0.24-1.08 4.72c-1.36 0.338-2.68 0.82-3.93 1.44l-3.89-2.82-1.68 1.15 1.2 4.61c-1.06 0.949-2.01 2.01-2.85 3.16l-4.69-0.65-0.949 1.8 3.15 3.49c-0.495 1.35-0.843 2.74-1.04 4.16l-4.42 1.6-0.00378 2.04 4.42 1.62c0.19 1.42 0.533 2.82 1.03 4.16l-3.18 3.48 0.941 1.81 4.69-0.627c0.832 1.16 1.78 2.22 2.84 3.17l-1.23 4.61 1.67 1.16 3.93-2.79c1.26 0.624 2.58 1.11 3.93 1.45l1.05 4.76 2.02 0.25 2.19-4.38v-0.0098c1.38-0.0344 2.76-0.215 4.12-0.54l0.0136 0.0582 3.16 3.75 1.9-0.718-0.101-4.91-0.0465-0.0832c1.21-0.669 2.34-1.46 3.37-2.37l0.0911 0.107 4.54 1.86 1.35-1.52-2.37-4.31-0.147-0.0986c0.76-1.14 1.4-2.36 1.9-3.64l0.176 0.0699 4.88-0.472 0.491-1.97-4.08-2.7-0.219-0.0253c0.0824-0.695 0.126-1.39 0.134-2.1-6.5e-4 -0.669-0.0355-1.34-0.105-2l0.198-0.0212 4.12-2.69-0.484-1.98-4.88-0.491-0.188 0.0737c-0.495-1.28-1.13-2.51-1.88-3.65l0.147-0.0968 2.39-4.27-1.35-1.52-4.54 1.83-0.0968 0.11c-1.04-0.907-2.16-1.71-3.36-2.38l0.0522-0.093 0.122-4.91-1.9-0.726-3.18 3.74-0.0098 0.0484c-1.35-0.332-2.72-0.522-4.12-0.563zm1.1 11c6.16-0.243 11.6 3.89 13.1 9.86 1.7 6.95-2.56 14-9.52 15.7-6.95 1.7-14-2.56-15.7-9.52-1.7-6.95 2.56-14 9.52-15.7 0.839-0.205 1.7-0.327 2.56-0.361zm-3.74 9.6a3.34 3.34 0 0 0-3.34 3.34 3.34 3.34 0 0 0 3.34 3.34 3.34 3.34 0 0 0 3.34-3.34 3.34 3.34 0 0 0-3.34-3.34zm8.5 0a3.34 3.34 0 0 0-3.34 3.34 3.34 3.34 0 0 0 3.34 3.34 3.34 3.34 0 0 0 3.34-3.34 3.34 3.34 0 0 0-3.34-3.34z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.5 KiB |
|
@ -1,41 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
width="512"
|
|
||||||
height="512"
|
|
||||||
id="svg3037"
|
|
||||||
version="1.1">
|
|
||||||
<defs
|
|
||||||
id="defs5498" />
|
|
||||||
<metadata
|
|
||||||
id="metadata5594">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
<dc:title />
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<g
|
|
||||||
id="layer1"
|
|
||||||
transform="translate(-100.75915,-484.95513)">
|
|
||||||
<path
|
|
||||||
d="M 71.830078 46.238281 C 64.515798 46.279581 58.529741 48.003462 54.556641 51.976562 C 39.503311 67.029883 56.698586 110.93827 75.603516 146.64258 A 235.32248 235.32248 0 0 1 148.46875 72.636719 C 122.35634 58.870975 92.037149 46.124076 71.830078 46.238281 z "
|
|
||||||
transform="translate(100.75915,484.95513)"
|
|
||||||
id="path6420" />
|
|
||||||
<path
|
|
||||||
d="M 275.06641 49.996094 A 220.96997 220.96997 0 0 0 54.095703 270.9668 A 220.96997 220.96997 0 0 0 275.06641 491.93555 A 220.96997 220.96997 0 0 0 496.03711 270.9668 A 220.96997 220.96997 0 0 0 473.04297 173.07422 C 469.72377 178.74813 466.49131 184.06197 463.47461 188.83008 C 466.00032 199.81065 464.87762 208.8209 459.42578 214.27539 C 444.64928 229.04865 403.80019 212.16023 368.18945 176.55273 C 332.57547 140.942 315.68706 100.09614 330.4668 85.316406 C 336.54203 79.235734 347.04695 78.547178 359.76953 82.287109 C 364.14612 79.544291 368.93318 76.644357 374.01953 73.671875 A 220.96997 220.96997 0 0 0 275.06641 49.996094 z "
|
|
||||||
transform="translate(100.75915,484.95513)"
|
|
||||||
id="circle6464" />
|
|
||||||
<path
|
|
||||||
d="m 595.635,536.93356 c 25.42781,25.4278 -41.1677,133.25599 -52.57758,144.66292 -11.40396,11.40101 -41.26812,0.0384 -66.69593,-25.39237 C 450.93368,630.77335 439.56516,600.9151 450.97208,589.50818 462.379,578.10126 570.2072,511.50575 595.635,536.93356 Z"
|
|
||||||
id="path6571" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.1 KiB |
|
@ -1,3 +0,0 @@
|
||||||
<svg version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m11.835 1.562e-4 -8.1004 7.9996v40h17.531c0.5956 0.0012 0.75857 0.0012 0.8716-0.30322 0.11333-0.30417 1.1387-5.445 1.2642-5.6557 0.24298-0.38823 2.9403-1.5483 3.5039-1.2451 0.20691 0.11479 4.1654 3.357 4.3637 3.4746 0.09436 0.056 0.19303 0.07286 0.35596 0.06006 0.44675-0.02696 4.2778-3.1343 4.314-3.186 0.04718-0.0604 0.09395-0.20733 0.10254-0.32373 0.04619-0.40884-1.9534-5.2749-1.9893-5.6162 0.17831-0.93032 0.93252-1.6956 1.5059-2.4492 0.15005-0.16812 0.40735-0.27971 0.64748-0.27539 1.8246 0.16593 3.6453 0.37557 5.4668 0.57276l0.18457-0.08203c0.09862-0.0474 0.21346-0.11959 0.25635-0.16699 0.06002-0.06896 1.5604-4.1136 1.8091-4.8764 0.09432-0.2802 0.0356-0.51704-0.1831-0.7412-0.43612-0.46043-4.4535-3.1708-4.6743-3.6592-0.2052-0.3804-0.04747-2.3305 0.18018-2.6645 0.26787-0.38601 4.27-2.2172 4.5835-2.4624 0.3775-0.2952 0.40577-0.88408 0.40577-1.0005v-17.4zm0 7.9996h24.299v8.0008h-16.2v6h8.1004v7.1996h-8.1004v10.8h-8.0992z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1 KiB |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m35.4 3.8c-0.255-0.00882-0.51-0.00577-0.766 0.00782-0.589 0.0311-1.18 0.122-1.77 0.276l-26.4 6.88c-4.73 1.23-7.61 6.1-6.33 10.8l4.13 15.8c1.23 4.73 6.1 7.61 10.8 6.33l26.4-6.88c4.44-1.16 7.15-5.51 6.49-9.99l-0.105-0.688-0.0282-0.166-4.13-15.8c-1.01-3.88-4.46-6.49-8.27-6.6zm-0.0412 1.36c3.24 0.108 6.16 2.31 6.99 5.6l3.92 14.9 0.223 0.855c1.05 4.02-1.34 8.1-5.36 9.15l-26.4 6.88c-4.02 1.05-8.1-1.34-9.15-5.36l-4.13-15.8c-1.05-4.02 1.34-8.1 5.36-9.15l26.4-6.88c0.502-0.131 1-0.208 1.51-0.235 0.218-0.0118 0.436-0.0149 0.649-0.00782zm-0.788 2.06c-0.754-0.00301-1.56 0.0882-2.41 0.279l-23.5 6.1c-4.88 1.42-6.26 4.05-5.27 8.55l3.51 13.4c0.971 4.24 4.59 6.21 8.76 4.91l23.5-6.1c4.27-1.02 6.26-4.2 5.27-8.55l-3.51-13.4c-0.788-3.36-3.11-5.17-6.38-5.18zm2.6 7.15c0.392 0.0182 0.749 0.282 0.855 0.693l1.25 4.79v0.0019l0.0216 0.0843c0.132 0.502-0.162 0.999-0.665 1.13l-6.83 1.78c-0.505 0.132-1-0.158-1.13-0.66l-1.28-4.88c-0.132-0.505 0.159-0.999 0.665-1.13l6.83-1.78c0.0938-0.0245 0.187-0.0335 0.279-0.0294zm-20.6 1.33c0.599-0.0319 1.15 0.354 1.32 0.965l1.56 5.99c0.182 0.699-0.226 1.39-0.921 1.58l-8.37 2.18c-0.699 0.182-1.39-0.226-1.58-0.921l-1.56-5.99c-0.182-0.699 0.226-1.39 0.921-1.58l8.37-2.18c0.0915-0.0238 0.179-0.0368 0.261-0.0412zm11.8 2.95 0.346 1.34-8.27 0.954-0.346-1.33zm1.81 5.11c0.369 0.295 0.821 0.481 1.31 0.51l-3.15 4.74c-0.336-0.338-0.798-0.532-1.29-0.526zm-11.3 1.79 4.08 3.94-1.04 0.272c-0.159 0.0418-0.305 0.11-0.441 0.191l-4.14-4zm8.16 4.29c0.195-0.0103 0.378 0.113 0.431 0.318l0.876 3.35c0.061 0.235-0.071 0.459-0.304 0.52l-4.69 1.23c-0.233 0.061-0.454-0.0676-0.516-0.304l-0.876-3.35c-0.0605-0.233 0.0688-0.456 0.304-0.517l4.69-1.23c0.0336-0.0088 0.0638-0.0144 0.086-0.0157z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.8 KiB |
|
@ -1,8 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg width="400" height="400" version="1.1" viewBox="0 0 105.83 105.83" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g transform="translate(0 -191.17)">
|
|
||||||
<g>
|
|
||||||
<path d="m49.979 204.75-23.177 17.945 0.76946-0.18345h0.005168c-0.19985 0.0472-0.68056 0.16175-0.77463 0.18345l1.3167-0.1912c0.001653-3e-5 0.004027 2e-5 0.005684 0l-1.2986 0.18965 4.6023-0.20154c-0.007453 0.00465-0.0128 0.00861-0.022737 0.01395l-0.63924 0.04186-20.543 12.73 5.5118-1.2092-5.7444 8.7602-8.6672 9.3416 5.2152-1.9368-2.6112 7.7401 6.8321-3.575c0.003391 0.00488 0.008126 0.00872 0.009819 0.01653l-5.163 11.495 6.9675-5.0777c0.075803-0.04612 0.13129-0.07738 0.16743-0.09353l5.7831 16.616 2.6944-3.839c0.016732-0.00465 0.045587-5.3e-4 0.070797 0.00155l11.976 6.4378 0.75603-2.2479 17.473 5.7051-0.15244-2.4841 9.6898 1.3761-0.80202-3.051 6.2327-4.0458-1.0526-2.3766 4.284-5.2534-0.52348-0.81287 3.852-5.3242 0.006201 0.00672 0.044441 0.09922-2.9988-25.527 27.665 1.74 0.10335 0.18706-0.78496 11.016 0.46664-0.45372c1.99e-4 0.00234-0.002481 0.04322-0.0031 0.05633 0.003118-0.02176 0.01692-0.05294 0.035656-0.08837l5.6875-5.533 1.2268-10.055 0.03928 0.00207-9.0697-12.089 0.02067-0.02377-0.059428-0.02738-0.041341-0.0553-0.022738 0.02584-7.691-3.5466-8.4217-10.409 0.029972-0.01705-0.046509-0.00311-0.004651-0.00568-0.008268 0.00465-29.217-1.9957zm10.8 11.568c8.0395-0.08511 15.033 9.327 19.448 4.5604-2.2397 3.5797-7.4537 3.9052-11.089 3.9176 0 0-5.5776-0.13302-4.8472-4.8142-1.2052-1.9909-5.0225-1.951-7.5365-2.7554 1.3648-0.62628 2.7085-0.89455 4.024-0.90848zm5.0726 2.3001a2.9548 2.9548 0 0 0-1.2278 2.3931 2.9548 2.9548 0 0 0 2.9549 2.9549 2.9548 2.9548 0 0 0 2.9543-2.9549 2.9548 2.9548 0 0 0-0.08785-0.7059 2.407 2.9216 0 0 1-2.2526 1.9007 2.407 2.9216 0 0 1-2.4066-2.9213 2.407 2.9216 0 0 1 0.065629-0.66663zm26.07 5.101c-1.5746 2.6244-2.9394 2.7296-2.9394 2.7296-0.41991-1.8896 2.9394-2.7296 2.9394-2.7296z" fill="#000000" stroke-width=".093156"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.9 KiB |
|
@ -1,75 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
width="512"
|
|
||||||
height="512"
|
|
||||||
id="svg2"
|
|
||||||
version="1.0">
|
|
||||||
<title
|
|
||||||
id="title3032">Gentoo Logo Dark v1.0</title>
|
|
||||||
<defs
|
|
||||||
id="defs4" />
|
|
||||||
<metadata
|
|
||||||
id="metadata7">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
<dc:title>Gentoo Logo Dark v1.0</dc:title>
|
|
||||||
<dc:date>2011-06-03</dc:date>
|
|
||||||
<dc:creator>
|
|
||||||
<cc:Agent>
|
|
||||||
<dc:title>Sebastian Pipping <sping@gentoo.org></dc:title>
|
|
||||||
</cc:Agent>
|
|
||||||
</dc:creator>
|
|
||||||
<dc:rights>
|
|
||||||
<cc:Agent>
|
|
||||||
<dc:title>Lennart Andre Rolland, Gentoo Foundation Inc.</dc:title>
|
|
||||||
</cc:Agent>
|
|
||||||
</dc:rights>
|
|
||||||
<dc:publisher>
|
|
||||||
<cc:Agent>
|
|
||||||
<dc:title>Gentoo Foundation Inc.</dc:title>
|
|
||||||
</cc:Agent>
|
|
||||||
</dc:publisher>
|
|
||||||
<dc:contributor>
|
|
||||||
<cc:Agent>
|
|
||||||
<dc:title>Lennart Andre Rolland for original vector version, idea for dark version and specific RGB value by unknown person</dc:title>
|
|
||||||
</cc:Agent>
|
|
||||||
</dc:contributor>
|
|
||||||
<cc:license
|
|
||||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.5/" />
|
|
||||||
</cc:Work>
|
|
||||||
<cc:License
|
|
||||||
rdf:about="http://creativecommons.org/licenses/by-sa/2.5/">
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
|
||||||
<cc:requires
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
|
||||||
<cc:requires
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
|
||||||
<cc:requires
|
|
||||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
|
||||||
</cc:License>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<g
|
|
||||||
id="layer2"
|
|
||||||
style="display:inline"
|
|
||||||
transform="translate(-25.69105,-136.02588)">
|
|
||||||
<path
|
|
||||||
d="M 212.03125 0.0625 C 202.87493 0.12755657 193.86211 0.94485937 185.1875 2.53125 C 92.4908 19.4834 27.273526 99.66472 21.75 152.5 C 19.039913 178.42335 33.010042 197.84168 40.71875 206.40625 C 61.552273 229.55282 103.08458 247.22621 129.78125 261.875 C 91.18621 294.78255 73.464335 310.85 56.03125 329.15625 C 29.94514 356.54894 11.58732 386.68499 11.53125 408.28125 C 11.511528 415.23755 10.388551 437.42689 19.4375 454.9375 C 22.840438 461.52254 32.524819 483.48219 61.6875 499.9375 C 80.326754 510.45488 106.8784 514.33509 132.875 510.625 C 213.33105 499.14273 321.07569 430.8931 397.96875 367.34375 C 446.97423 326.84248 482.80941 287.60598 493.15625 268.28125 C 501.5046 252.68908 502.43629 224.70743 497.59375 207.15625 C 483.83587 157.2925 371.99621 55.16909 280.5625 14.0625 C 259.61465 4.6447906 235.43073 -0.10375569 212.03125 0.0625 z M 211.875 1.5 C 236.85412 1.1518039 261.59072 6.9653969 283.21875 17.59375 C 357.06447 53.88267 481.79298 155.8628 491 207.15625 C 502.37863 270.54806 279.1196 442.18363 143.3125 468.96875 C 90.62569 479.31137 45.715115 482.11258 25.21875 426.46875 C 7.450976 378.23255 41.903325 342.95245 92.625 296.59375 C 113.68712 277.34335 130.48278 262.95874 155.75 241.625 C 157.20342 240.17159 34.034672 197.70018 30.09375 148.96875 C 26.042925 98.87834 105.33386 6.44883 206.875 1.65625 C 208.54174 1.5778281 210.20973 1.5232131 211.875 1.5 z M 209.5 12.59375 C 205.97685 12.647632 202.39857 12.862207 198.71875 13.25 C 148.85401 18.50492 139.29857 24.9161 94.125 59.09375 C 78.98489 70.54854 51.108579 98.43471 43.96875 131.5 C 41.249511 144.09307 44.461726 154.96893 53.53125 162.59375 C 82.572331 187.00886 131.18607 206.82095 171.0625 225.96875 C 182.74237 231.57715 174.99119 241.72532 156.15625 258.03125 C 108.62886 299.177 44.392194 349.27235 39.90625 387.4375 C 37.792365 405.42185 43.952306 429.86924 65.78125 442.375 C 91.28089 456.9837 144.21676 447.44325 179.5625 434.28125 C 231.21358 415.04749 299.04091 372.60094 352.90625 330.875 C 408.9194 287.48531 461.01759 232.36347 463.59375 223.375 C 466.75723 212.3373 466.41759 202.15882 460.3125 190.4375 C 450.72527 172.03084 437.91891 158.34032 424.15625 143.03125 C 387.22878 104.10047 348.15283 69.90154 301.40625 43.6875 C 270.81352 26.532061 243.55716 12.072894 209.5 12.59375 z M 233.0625 89.875 C 244.56071 90.012106 257.76201 93.677775 271.9375 100.53125 C 307.96244 117.94836 344.96587 163.70005 271.625 190.03125 C 251.6819 197.19133 188.43882 172.45617 190.375 138.6875 C 192.22786 105.95199 207.83705 90.58481 230.78125 89.90625 C 231.5324 89.884035 232.29595 89.86586 233.0625 89.875 z M 236.96875 119.0625 C 230.89236 119.27322 226.04751 121.01733 223.71875 124.625 C 211.83864 143.02942 217.23272 156.0528 228.25 164.375 C 232.34571 154.62597 274.19177 165.27333 274.0625 174.4375 C 274.50276 174.23064 274.88804 173.99889 275.21875 173.75 C 312.28813 145.85121 263.29979 118.14938 236.96875 119.0625 z "
|
|
||||||
id="path2973"
|
|
||||||
transform="translate(25.69105,136.02588)" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 5.3 KiB |
|
@ -1,5 +0,0 @@
|
||||||
<svg width="500" height="500" version="1.1" viewBox="0 0 500 500" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g transform="translate(.623 -6.35)">
|
|
||||||
<path d="m494 437c-18.1-9.81-37.9-16.2-56.2-25.6-11-9.39-11.7-25.4-29.3-25.8-10.3-7.85-32.7-2.72-32.4-19.1-7.67-5.96-21.1-8.9-30.1-14.8-21.2-11.3-42-23.5-61.3-37.8-3.46-20.4 25.5-5.19 36.4-1.65 23 8.34 45.7 17.9 66.8 30.4 11.3-12.1 20.8 7.74 32.2 10.9 8.18 2.87 14.9 14.8 24.3 9.87 16-3.53 31.3 7.33 36.7 22.1 7.67 17.2 11.5 35.7 16.9 53.6l-1.18-0.591zm-68.4-54.7c3.45-8.81 9.06-15-3.03-18.8-8.42-4.11-15.4-11.9-24.5-14.2-5.42-10.5-23.7 24.3-8.02 21.3 11 4.05 26.5 12.1 35.6 11.6zm-187-9.25c-52.1-2.62-103-21.5-146-49.8 26.1-12.6 31.8-46.3 23.1-71.6 21.9 11.9 51.7 1.21 61.2-21.8 6.75 31.1 45.2 49 73.2 33.8 28.2-12.9 37.7-52.5 18.7-76.8-17.3-25.3-57.5-28.3-78.4-5.81-8.62 6.07-11.4 28.5-16.7 8.78-13.8-24.9-52.3-28.5-70.5-6.56-8.62 5.36-15.7 29.9-12.5 27.2-16.5-7.05-3.21-24.3 3.76-33.8 7.08-4.09 4.43-12.2 5.14-18.9 0.334-13.8 0.676-27.6 0.997-41.5 9.36 16.1 21.7 30.5 36.8 41.4 14.6 0.192 28.9 6.76 38.7 17.7 10.8 1.33 16.9-15.7 28.9-16.5 21.4-8.67 47.2-3.53 64 12.1 46.2-9.54 94.2-33.6 115-78.1 1.48-9.18 12.7-27.2 14.9-8.09 6.48 64.5 8.39 132-14.8 194-5.3 13.5-12.1 26.6-20.6 38.4-16.9-7.79-34.4-14.3-52.1-20.2-8.12-12.1-22.9-16.9-36-21.4 13.3 8.45 18.5 19.6 0.572 24.6-36.2 17.9-78.5 13.9-117 6.68 34.4 11.5 71.6 23.1 108 15.1 13.9-6.9 23.6 13.5 36.2 17.2 6.88 6.52 33.4 13.2 12.6 19-23.8 12-50.9 16.1-77.4 15.1zm-171-56.4c-36.5-4.77-64.5-39.9-67.2-75.7-2.25-20.5 11.7-44 34-44.2 33.7-0.912 61.6 27.8 71 58.4 7.36 21.2 2.95 51.2-20.9 59.5-5.44 1.95-11.3 2.33-17 2.01zm-32.8-61.1c23.4-3.92 21.9-45.2-2.34-46-26.7 1.03-24.8 48.4 2.34 46zm202-6.01c-13.1-1.24-23.9-14.2-21.8-27.4 8.6 16.7 36.4 6.25 31.9-11.9-1.73-6.57-10.7-13.4 1.7-8.24 17.7 5.85 21.5 32.3 5.82 42.7-5 3.81-11.4 5.42-17.6 4.8zm-92.5-9.54c-11.2 0.887-21.5-16.9-17.8-22.6 11.7 18.5 38.5-5.73 21.8-19.5 19.6 0.119 27.1 28.8 10.3 38.6-4.13 2.87-9.32 3.87-14.3 3.41z" stroke-width=".164"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2 KiB |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg id="a" version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m8.42 9.21c-0.493 0-1.05 0.0402-1.68 0.178-0.664 0.137-2.56 0.565-4.11 2.05-3.44 3.06-2.56 7.93-2.45 8.67 0.13 0.893 0.527 3.37 2.42 5.54 3.5 4.28 11 4.18 11 4.18s0.924 2.21 2.34 4.24c1.91 2.53 3.87 4.5 5.78 4.73 4.81 0 14.4-0.0076 14.4-0.0076s0.916 0.0076 2.16-0.787c1.07-0.649 2.02-1.79 2.02-1.79s0.985-1.05 2.36-3.46c0.42-0.741 0.771-1.46 1.08-2.14 0 0 4.21-8.94 4.21-17.6-0.084-2.63-0.733-3.1-0.886-3.25-0.313-0.313-0.733-0.305-0.733-0.305s-8.95 0.504-13.6 0.611c-1.01 0.0228-2.02 0.0456-3.02 0.0532l0.0077 8.93s4.38 1.85 6.35 3.06c0.283 0.176 0.779 0.519 0.985 1.1 0.16 0.466 0.153 1-0.0764 1.47l-4.66 9.69c-0.473 0.97-1.63 1.38-2.59 0.916l-9.69-4.66c-0.954-0.458-1.37-1.62-0.901-2.58l4.66-9.69c0.458-0.954 1.62-1.37 2.58-0.901 1.31 0.631 2.06 0.986 2.06 0.989-2.1e-5 -2.78-0.0076-8.33-0.0076-8.33-2.21 0.0305-6.81-0.168-6.81-0.168s-10.8-0.542-12-0.649c-0.374-0.0229-0.804-0.0631-1.3-0.0631zm0.931 3.67s0.542 4.54 1.2 7.19c0.55 2.23 1.89 5.93 1.89 5.93s-1.99-0.237-3.28-0.695c-1.98-0.649-2.82-1.43-2.82-1.43s-1.46-1.02-2.19-3.04c-1.26-3.37-0.107-5.44-0.107-5.44s0.641-1.72 2.94-2.29c1.05-0.283 2.37-0.237 2.37-0.237zm19.2 6.1c-0.367 0.748-0.741 1.5-1.11 2.25-0.512-0.0076-0.985 0.267-1.23 0.718-0.26 0.481-0.206 1.08 0.145 1.51l-1.88 3.85c-0.626 0.0076-1.18 0.443-1.32 1.05s0.153 1.24 0.695 1.53c0.588 0.305 1.34 0.137 1.73-0.412 0.389-0.542 0.328-1.29-0.138-1.76l1.83-3.75c0.115 0.0076 0.282 0.0153 0.473-0.0382 0.313-0.0687 0.542-0.275 0.542-0.275 0.321 0.137 0.657 0.29 1.01 0.466 0.367 0.183 0.71 0.374 1.02 0.557 0.0687 0.0382 0.137 0.084 0.214 0.145 0.122 0.0993 0.26 0.237 0.359 0.42 0.145 0.42-0.145 1.14-0.145 1.14-0.176 0.58-1.4 3.1-1.4 3.1-0.618-0.0153-1.17 0.382-1.35 0.954-0.199 0.618 0.084 1.32 0.68 1.63 0.596 0.305 1.33 0.13 1.72-0.405 0.382-0.519 0.351-1.24-0.0841-1.73 0.145-0.283 0.283-0.565 0.428-0.863 0.382-0.794 1.03-2.32 1.03-2.32 0.0687-0.13 0.435-0.786 0.206-1.63-0.191-0.87-0.962-1.28-0.962-1.28-0.932-0.603-2.23-1.16-2.23-1.16s3e-5 -0.313-0.084-0.542c-0.084-0.237-0.214-0.389-0.298-0.481 0.359-0.741 0.718-1.47 1.08-2.21-0.313-0.153-0.619-0.305-0.932-0.466z" fill="#000000" stroke-width=".0764"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.2 KiB |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.0" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m39.2 0.394c-9.82 0-11.7 14-6.14 14s16-14 6.14-14zm-15.2 1.71c-0.156-5.39e-4 -0.321 0.0108-0.495 0.0332-5.51 0.718-3.58 10.3-0.638 10.5 2.85 0.174 5.98-10.5 1.13-10.5zm-9.58 3.8c-0.292 0.00646-0.61 0.0774-0.958 0.221-4.43 1.83-0.674 9.38 1.82 8.9 2.29-0.467 2.59-9.18-0.854-9.1zm-7.06 5.95c-0.386-0.013-0.806 0.115-1.25 0.423-3.56 2.45 1.2 8.38 3.29 7.46 1.83-0.806 0.662-7.78-2.04-7.9zm20.3 4.55c-7.62-0.129-17.7 3.69-19.4 11.4-1.86 8.3 7.62 19.8 17.6 19.8 4.87 0 10.5-4.39 11.6-9.98 0.802-4.27-9.46-2.55-9.1 0.264 0.443 3.37-2.47 5.03-5.35 2.86-9.1-6.9 15-10.4 13.4-19.8-0.495-2.94-4.19-4.43-8.78-4.51z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 739 B |
|
@ -1 +0,0 @@
|
||||||
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.41" version="1.1" viewBox="0 0 512 512" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="m22.2 105c-5.4 2.02-10.8 4.04-16.2 6.05 8.38 20.3 18.2 40.5 33.1 56.9 13.1 14.7 31.8 23.7 51.3 26.1 14.2 1.86 28.6 1.48 42.8-0.0978 8.64 4.12 13.5 13 18 21 12.3 23.5 20.3 48.9 28.7 74 12.3 37.3 22.9 75.2 37.8 112 1.58 2.37 1.38 7.56 5.36 6.3 22.8-0.00133 45.7 0.00267 68.5-2e-3 14.4-32.9 24.3-67.5 35.4-102 9.36-28.7 18.1-57.8 31.2-85.1 4.83-9.21 9.76-19.2 18.7-25.1 3.66-2.13 8.15 0.387 12.2-0.0355 21.6 1.27 44.4-0.00584 63.6-10.9 19.7-10.9 32.7-30.3 42.8-49.8 3.87-7.53 7.34-15.3 10.5-23.1-5.4-2.01-10.8-4.06-16.2-6.04-8.87 16.3-20.7 32.4-38.2 39.9-15.2 6.49-32.1 6.52-48.4 6.18-11.1-0.0536-21.8-3.12-32.9-3.82-16-1.09-32.8 4.23-43.8 16.2-6.8 6.96-11 15.9-13.9 25-18.9 52.6-37.7 105-56.6 158-19.9-55.4-39.7-111-59.7-166-6.53-15.8-20.8-28.4-37.7-31.6-11.8-2.7-23.9-0.846-35.6 1.3-16.3 2.08-33 2.03-49.2-0.722-14.4-2.69-27.6-10.7-37-22-5.74-6.74-10.5-14.3-14.8-22z"/></svg>
|
|
Before Width: | Height: | Size: 1 KiB |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m27 0-24.5 6.74 16.2 12.2 8.32-2.56zm0.659 0.103v16l17.8-5.47zm-25.8 7.55 1 25.1 15.2-4.5v-8.4zm44.4 3.97-18.5 5.7v8.3l16.5 11.5zm-19.2 5.9-7.86 2.42v7.93l7.86-2.33zm0.271 8.63-8.13 2.41v19.4l24.7-10.3zm-9.26 2.74-15.2 4.49 15.2 14.2z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 369 B |
|
@ -1,7 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g transform="matrix(1.3077 0 0 1.3077 -9.8404 -9.7537)" fill="#000000">
|
|
||||||
<path d="m34.259 29c-5.5782 0.01728-14.085 5.956-26.259 22.56 25.93-19.24 31.037-15.14 34.321 0.016 1.9132-10.38-0.04818-22.6-8.0667-22.58z"/>
|
|
||||||
<path d="m33.955 11.826c-7.908 18.48 9.936 24.27 22.01 0.4592-9.056 7.684-22.26 16.16-22.01-0.4592z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 451 B |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m22 0c-5.51 9.84-15.7 16.5-16.1 29.9a18.1 18.1 0 0 0 18.1 18.1 18.1 18.1 0 0 0 18.1-18.1h-0.0512c-0.551-13.4-10.6-20.1-16.1-29.9l0.0472 7.48c4.33 7.08 11 12.6 12.6 22.4h0.0512a14.6 14.6 0 0 1-14.6 14.6 14.6 14.6 0 0 1-14.6-14.6c1.38-9.84 7.87-15.3 12.6-22.4z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 393 B |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m24.7 0.034a2.68 2.68 0 0 0-1.98 4.57 2.68 2.68 0 1 0 3.78-3.8 2.68 2.68 0 0 0-1.8-0.779zm6.04 6.32c-0.724 0.00188-1.41 0.297-1.92 0.816-1.03 1.06-1 2.75 0.0606 3.8 0 0 5.53 5.51 12.4 12.4 1.48 1.47 1.71 3.24 0.975 5.79-0.738 2.55-2.64 5.56-5.1 8.02-2.46 2.46-5.45 4.39-8 5.14-2.55 0.748-4.32 0.518-5.79-0.951-3.44-3.42-6.51-6.55-8.74-8.8-1.12-1.13-2.03-2.03-2.68-2.68-0.326-0.32-0.585-0.563-0.807-0.766-0.111-0.101-0.203-0.185-0.359-0.307-0.0779-0.0606-0.149-0.13-0.391-0.266-0.12-0.0673-0.265-0.164-0.672-0.268-0.407-0.103-1.56-0.299-2.57 0.709-0.597 0.584-0.886 1.41-0.785 2.23 0.102 0.828 0.583 1.56 1.3 1.99 0.132 0.124 0.284 0.264 0.523 0.498 0.608 0.597 1.51 1.5 2.62 2.62 2.23 2.25 5.3 5.36 8.76 8.82 3.01 2.99 7.33 3.4 11.1 2.29 3.76-1.1 7.31-3.51 10.3-6.49 2.98-2.98 5.36-6.55 6.46-10.3 1.09-3.76 0.669-8.07-2.34-11.1-6.9-6.86-12.4-12.4-12.4-12.4-0.506-0.517-1.2-0.811-1.92-0.809zm-17.1 4.75a2.68 2.68 0 0 0-1.98 4.57 2.68 2.68 0 1 0 3.78-3.79 2.68 2.68 0 0 0-1.8-0.779zm6.21 6.27c-0.724 0.0019-1.42 0.296-1.92 0.815-1.03 1.06-0.999 2.75 0.0625 3.8l13.9 13.9c0.675 0.692 1.67 0.966 2.6 0.719 0.934-0.247 1.66-0.979 1.9-1.92 0.244-0.936-0.0326-1.93-0.727-2.6l-13.9-13.9c-0.506-0.517-1.2-0.807-1.92-0.805zm-17.1 4.51a2.75 2.75 0 0 0-2.75 2.75 2.75 2.75 0 0 0 2.75 2.75 2.75 2.75 0 0 0 2.75-2.75 2.75 2.75 0 0 0-2.75-2.75z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.4 KiB |
|
@ -1 +0,0 @@
|
||||||
<svg width="33.5mm" height="43.5mm" version="1.1" viewBox="0 0 33.5 43.5" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-37.7 -69.7)"><path d="m38.7 69.7c-0.0103 0.692 0.257 1.35 0.449 2.01 0.257 0.75 0.51 1.51 0.888 2.21-0.483-0.309-0.946-0.67-1.24-1.17-0.344-0.416-0.654-0.89-1.13-1.17-0.0484-0.0327 0.179 0.646 0.309 0.921 0.625 1.37 1.46 2.66 2.57 3.7-0.42-0.231-0.868-0.451-1.21-0.789-0.26-0.336-0.491-0.719-0.847-0.959 0.197 0.663 0.647 1.22 1.03 1.78 0.776 1.08 1.6 2.19 2.82 2.8 0.789 0.415 1.58 0.842 2.43 1.12-0.94-0.0254-1.9-0.31-2.65-0.898-0.503-0.433-0.992-0.931-1.62-1.17-0.053-0.0198 0.309 0.597 0.492 0.838 1.08 1.45 2.44 2.77 4.1 3.53 0.182 0.0846 0.638 0.225 0.19 0.124-0.763-0.154-1.52-0.363-2.22-0.704-0.342-0.293-0.66-0.646-1.08-0.824 0.325 0.611 0.878 1.06 1.36 1.54 0.976 0.898 2.01 1.82 3.32 2.18 0.628 0.185 1.26 0.365 1.9 0.498-1.12 0.197-2.36 0.134-3.35-0.471-0.197-0.113-0.611-0.569-0.727-0.428 0.0134 0.264 0.587 0.996 0.976 1.35 1.03 1.02 2.25 1.94 3.69 2.24 0.284 0.0893 0.886 0.0895 0.986 0.124-0.855 0.231-1.8 0.324-2.64-5.4e-5 -0.239-0.151-0.867-0.343-0.74-0.222 0.309 0.552 0.911 0.855 1.43 1.19 1.15 0.675 2.43 1.23 3.79 1.23-1.04 0.363-2.13 0.616-3.23 0.625-0.436-0.115-0.877-0.294-1.33-0.269 0.559 0.408 1.25 0.572 1.9 0.793 1.24 0.369 2.53 0.751 3.84 0.524 0.23-0.00265 0.773-0.178 0.807-0.104-0.743 0.613-1.65 1.12-2.63 1.15-0.278-0.0511-0.931 0.00897-0.769 0.0721 0.494 0.396 1.17 0.45 1.77 0.565 1.02 0.134 2.07 0.217 3.07-0.0201-0.661 0.682-1.49 1.28-2.45 1.42-0.205 0.0382-1.14 0.00885-0.58 0.27 0.965 0.317 2.01 0.266 3.01 0.207 0.268 0.025 0.935-0.202 0.922-0.0747-0.633 0.659-1.34 1.26-2.15 1.7-0.434 0.104-0.902 0.153-1.29 0.386 0.714 0.084 1.43-0.103 2.13-0.222 0.938-0.204 1.9-0.379 2.76-0.834-0.222 0.466-0.651 0.801-1.04 1.13-0.475 0.362-1.03 0.652-1.63 0.71-0.263-8.59e-4 -0.551 0.204-0.421 0.177 0.566 0.283 1.23 0.195 1.85 0.181 0.386-0.096 0.558-0.0373 0.361 0.347-0.163 0.602-0.275 1.22-0.365 1.83-1.55 2.14-3.71 3.81-6.1 4.93-1.03 0.473-2.12 0.785-3.23 1-0.28 0.0356-1.21 0.383-0.578 0.601 0.839 0.143 1.7 0.00248 2.54-0.121 1.76-0.297 3.48-0.866 5.08-1.65-1.25 1.22-2.66 2.33-4.29 2.98-0.807 0.255-1.67 0.333-2.43 0.714-0.819 0.376-1.63 0.805-2.32 1.38-0.11 0.372 0.646 0.0533 0.873 0.0628 2.91-0.569 5.65-1.83 8.15-3.42-0.648 0.967-1.37 1.93-2.37 2.56-0.0839 0.0637-0.517 0.349-0.281 0.198-0.885 0.507-1.56 1.3-2.2 2.07-0.178 0.354-0.677 0.695-0.607 1.09 0.582-0.185 1.07-0.589 1.59-0.908 2.7-1.86 4.92-4.36 6.73-7.08 1.51-1.25 2.88-2.68 3.95-4.33-0.121 0.636-0.599 1.11-0.86 1.68-0.167 0.211-0.188 0.507 0.0941 0.178 0.694-0.717 1.24-1.57 1.79-2.39 0.623-0.952 1.2-1.94 1.6-3.01 0.486-1.19 0.803-2.45 1-3.73 0.15-1.04 0.00974-2.15-0.558-3.05-0.212-0.167 0.113-0.656 0.155-0.959 0.185-0.56 0.414-1.1 0.656-1.64 0.595 0.052 1.11-0.294 1.52-0.691 1.07-0.935 2.48-1.6 3.92-1.48 0.319 0.0962 1.15 0.303 0.708-0.0362-0.748-0.573-1.69-0.823-2.58-1.07-1.49-0.379-3.15-0.19-4.45 0.666-1.16 0.722-2.09 1.76-2.86 2.88-0.346 0.527-0.61 1.11-0.797 1.71-0.271-0.619-0.922-0.896-1.43-1.29-3.88-2.64-7.82-5.29-11-8.8-1.06-1.18-2.15-2.36-2.93-3.76-0.0761-0.196-0.155-0.342-0.141-0.306-0.391-0.959-0.813-1.92-1.38-2.79-0.125-0.275-0.523-0.425-0.383 0.0319-0.0351 0.326 0.202 1.01 0.0955 1.13-0.151-0.106-0.926-0.557-1.33-0.826-0.985-0.673-1.9-1.47-2.6-2.44-0.158-0.42-0.267-0.887-0.549-1.24zm10.2 39.2c-0.152 0.0481-0.169 0.0199 0 0z" stroke-width=".265"/></g></svg>
|
|
Before Width: | Height: | Size: 3.3 KiB |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.0" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m23.6 0.342c-1.48-0.00296-2.95 0.536-4.01 1.62l-17.7 18.1c-5.98 7.41 4.07 6.54 8.38 8.68 1.55 1.58-5.92 2.75-4.38 4.33 1.55 1.58 9.35 3.04 10.9 4.62 1.55 1.58-3.16 3.26-1.62 4.84 1.55 1.58 5.12 0.0831 5.79 3.73 0.477 2.61 6.44 1.12 9.36-1.01 1.55-1.58-2.96-1.43-1.41-3.01 3.84-3.93 7.42-1.43 8.74-5.37 0.65-1.95-5.66-3-4.11-4.58 4.45-2.6 19.8-4.29 12.5-11.6l-18.3-18.8c-1.12-1.08-2.62-1.62-4.1-1.62zm0.159 1.72c1.06 0.0056 2.11 0.402 2.87 1.17l7 7.11c0.664 0.679 0.655 1.99 0.283 2.37l-3.48-2.78-0.684 4.12-2.91-1.53-4.65 2.94-1.54-6.2-2.5 4.32h-3.82c-1.56 0-1.74-1.98-0.326-3.39 2.47-2.67 5.31-5.39 6.85-6.96 0.775-0.792 1.84-1.18 2.9-1.17zm-8.41 27.7c0.473 0.294 7.63 1.75 9.38 2.04 0.606 0.128 0.177 0.752-0.659 1.17-1.88 0.501-11-3.21-8.72-3.21zm27.8 4.98c-1.44 0.0496-2.86 0.785-3.25 2.16 0 0.899 6.62 1.49 6.62-0.212-0.472-1.36-1.93-2-3.37-1.95zm-30.6 3.9c-2.01 0.107-4.16 1.56-2.45 3.04 1.57 1.36 3.99-0.337 4.72-2.23-0.475-0.631-1.36-0.86-2.27-0.812zm26.5 0.112c-2.02 1.81 0.227 3.65 2.22 2.48 0.444-0.451-0.0118-2.03-2.22-2.48z" stroke-width=".132"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.2 KiB |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m10.435 11.478v15.652a3.1304 2.6087 0 0 1-6.2609 0l-4.1739 6.2609a8.9155 4.4577 0 0 0 16.068 0.6216l0.62772 2.5088h6.2609l3.1304-12.522 3.1304 12.522h6.2609l3.1304-12.522 3.1304 12.522h6.2609l-6.2609-25.043h-6.2609l-3.1304 12.522-3.1304-12.522h-6.2609l-3.1304 12.522-3.1304-12.522z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 416 B |
Before Width: | Height: | Size: 7 KiB |
|
@ -1,99 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
|
|
||||||
<svg
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
width="830"
|
|
||||||
height="830"
|
|
||||||
viewBox="0 0 830 830"
|
|
||||||
id="svg2"
|
|
||||||
version="1.1"
|
|
||||||
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
|
|
||||||
sodipodi:docname="neon.svg">
|
|
||||||
<defs
|
|
||||||
id="defs4" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="base"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:zoom="0.49497475"
|
|
||||||
inkscape:cx="312.38213"
|
|
||||||
inkscape:cy="-26.540833"
|
|
||||||
inkscape:document-units="px"
|
|
||||||
inkscape:current-layer="layer1"
|
|
||||||
showgrid="true"
|
|
||||||
units="px"
|
|
||||||
inkscape:object-paths="false"
|
|
||||||
inkscape:snap-intersection-paths="false"
|
|
||||||
inkscape:object-nodes="false"
|
|
||||||
inkscape:snap-smooth-nodes="false"
|
|
||||||
inkscape:snap-midpoints="false"
|
|
||||||
showguides="true"
|
|
||||||
inkscape:guide-bbox="true"
|
|
||||||
inkscape:snap-grids="true"
|
|
||||||
inkscape:snap-to-guides="true"
|
|
||||||
inkscape:window-width="2560"
|
|
||||||
inkscape:window-height="1329"
|
|
||||||
inkscape:window-x="2560"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:snap-nodes="true"
|
|
||||||
fit-margin-top="0"
|
|
||||||
fit-margin-left="0"
|
|
||||||
fit-margin-right="0"
|
|
||||||
fit-margin-bottom="0">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid4136"
|
|
||||||
visible="false"
|
|
||||||
originx="1326.2522"
|
|
||||||
originy="2130.0374" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<metadata
|
|
||||||
id="metadata7">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
<dc:title></dc:title>
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<g
|
|
||||||
inkscape:label="Layer 1"
|
|
||||||
inkscape:groupmode="layer"
|
|
||||||
id="layer1"
|
|
||||||
transform="translate(1326.2522,-2352.3996)">
|
|
||||||
<g
|
|
||||||
id="g5183"
|
|
||||||
transform="translate(-5251.2522,-784.96258)">
|
|
||||||
<path
|
|
||||||
id="path4146-67"
|
|
||||||
d="m 4340,3137.3622 a 25,25 0 0 0 -23.377,16.1699 400,400 0 0 0 -241.8183,100.8633 25,25 0 0 0 -9.8047,-2.0332 25,25 0 0 0 -25,25 25,25 0 0 0 1.9453,9.6621 400,400 0 0 0 -100.7344,241.9648 25,25 0 0 0 -16.2109,23.3731 25,25 0 0 0 16.2051,23.3886 400,400 0 0 0 100.5117,242.5157 25,25 0 0 0 -1.7168,9.0957 25,25 0 0 0 25,25 25,25 0 0 0 9.1699,-1.7657 400,400 0 0 0 242.5996,100.9434 25,25 0 0 0 23.2305,15.8223 25,25 0 0 0 23.3769,-16.17 400,400 0 0 0 242.5274,-100.5468 25,25 0 0 0 9.0957,1.7168 25,25 0 0 0 25,-25 25,25 0 0 0 -1.7656,-9.17 400,400 0 0 0 100.9433,-242.5996 25,25 0 0 0 15.8223,-23.2304 25,25 0 0 0 -16.1699,-23.377 400,400 0 0 0 -100.5469,-242.5273 25,25 0 0 0 1.7168,-9.0957 25,25 0 0 0 -25,-25 25,25 0 0 0 -9.1699,1.7656 A 400,400 0 0 0 4363.2305,3153.1844 25,25 0 0 0 4340,3137.3622 Z m -22.5156,35.7968 a 25,25 0 0 0 22.5156,14.2032 25,25 0 0 0 22.3769,-13.8809 380,380 0 0 1 229.3711,94.7109 25,25 0 0 0 -1.748,9.17 25,25 0 0 0 25,25 25,25 0 0 0 9.041,-1.7188 380,380 0 0 1 95.1621,229.2031 25,25 0 0 0 -14.2031,22.5157 25,25 0 0 0 13.8809,22.3769 380,380 0 0 1 -94.711,229.3711 25,25 0 0 0 -9.1699,-1.748 25,25 0 0 0 -25,25 25,25 0 0 0 1.7187,9.041 380,380 0 0 1 -229.2031,95.1621 25,25 0 0 0 -22.5156,-14.2031 25,25 0 0 0 -22.377,13.8808 380,380 0 0 1 -229.3711,-94.7109 25,25 0 0 0 1.7481,-9.1699 25,25 0 0 0 -25,-25 25,25 0 0 0 -9.041,1.7187 380,380 0 0 1 -94.8301,-229.3652 25,25 0 0 0 13.8711,-22.3535 25,25 0 0 0 -13.8731,-22.375 380,380 0 0 1 95.1954,-229.1973 25,25 0 0 0 8.6777,1.5723 25,25 0 0 0 25,-25 25,25 0 0 0 -1.666,-8.8946 380,380 0 0 1 229.1504,-95.3086 z"
|
|
||||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0.89999998;stroke-dasharray:1, 1;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
<path
|
|
||||||
id="path4177-2"
|
|
||||||
d="m 4340,3257.3622 a 25,25 0 0 0 -23.377,16.1699 280,280 0 0 0 -256.623,278.8301 280,280 0 0 0 256.6562,278.8691 25,25 0 0 0 23.3438,16.1309 25,25 0 0 0 23.3769,-16.17 A 280,280 0 0 0 4620,3552.3622 280,280 0 0 0 4363.3437,3273.493 25,25 0 0 0 4340,3257.3622 Z m 22.3769,36.1191 A 260,260 0 0 1 4600,3552.3622 260,260 0 0 1 4362.3535,3811.2313 25,25 0 0 0 4340,3797.3622 25,25 0 0 0 4317.623,3811.243 260,260 0 0 1 4080,3552.3622 260,260 0 0 1 4317.6465,3293.493 25,25 0 0 0 4340,3307.3622 a 25,25 0 0 0 22.3769,-13.8809 z"
|
|
||||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0.89999998;stroke-dasharray:1, 1;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
|
||||||
inkscape:connector-curvature="0" />
|
|
||||||
<circle
|
|
||||||
r="100"
|
|
||||||
cy="3552.3623"
|
|
||||||
cx="4340"
|
|
||||||
id="path4192-6"
|
|
||||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0.89999998;stroke-dasharray:1, 1;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 6.3 KiB |
|
@ -1,61 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
viewBox="0 0 22 22"
|
|
||||||
version="1.1"
|
|
||||||
id="svg6"
|
|
||||||
sodipodi:docname="kde-plasma.svg"
|
|
||||||
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
|
|
||||||
<metadata
|
|
||||||
id="metadata10">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<sodipodi:namedview
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1"
|
|
||||||
objecttolerance="10"
|
|
||||||
gridtolerance="10"
|
|
||||||
guidetolerance="10"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:window-width="808"
|
|
||||||
inkscape:window-height="480"
|
|
||||||
id="namedview8"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="10.727273"
|
|
||||||
inkscape:cx="11"
|
|
||||||
inkscape:cy="11"
|
|
||||||
inkscape:window-x="3347"
|
|
||||||
inkscape:window-y="324"
|
|
||||||
inkscape:window-maximized="0"
|
|
||||||
inkscape:current-layer="svg6" />
|
|
||||||
<defs
|
|
||||||
id="defs3051">
|
|
||||||
<style
|
|
||||||
type="text/css"
|
|
||||||
id="current-color-scheme">
|
|
||||||
.ColorScheme-Text {
|
|
||||||
color:#232629;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</defs>
|
|
||||||
<path
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
|
||||||
d="M 7 3 C 6.446 3 6 3.446 6 4 C 6 4.554 6.446 5 7 5 C 7.554 5 8 4.554 8 4 C 8 3.446 7.554 3 7 3 z M 14 3 L 12 5 L 15 8 L 12 11 L 14 13 L 17 10 L 19 8 L 14 3 z M 4.5 9 C 3.669 9 3 9.669 3 10.5 C 3 11.331 3.669 12 4.5 12 C 5.331 12 6 11.331 6 10.5 C 6 9.669 5.331 9 4.5 9 z M 9 15 C 7.892 15 7 15.892 7 17 C 7 18.108 7.892 19 9 19 C 10.108 19 11 18.108 11 17 C 11 15.892 10.108 15 9 15 z "
|
|
||||||
class="ColorScheme-Text"
|
|
||||||
id="path4" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2 KiB |
|
@ -1,3 +0,0 @@
|
||||||
<svg version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m27.763 0-7.9827 0.76419v32.87l7.8982-1.1891v-14.014l10.617 15.544 8.3231-2.6335-10.871-14.949 10.957-14.099-8.4927-1.9527-10.532 14.099zm-18.095 8.01c-0.090136 0.009277-0.17721 0.049168-0.2449 0.11726l-3.1331 3.1325c-0.13173 0.1321-0.15654 0.33696-0.059429 0.49692l3.6682 6.0415c-0.6506 1.0938-1.172 2.273-1.5447 3.5171l-6.7342 1.4007c-0.18736 0.03878-0.32236 0.20482-0.32236 0.39709v4.4302c0 0.18736 0.12819 0.34963 0.30872 0.39327l6.5362 1.5976c0.34856 1.4408 0.88868 2.8066 1.6026 4.062l-3.7833 5.7693c-0.10555 0.16124-0.083493 0.37364 0.052879 0.50946l3.132 3.1326c0.13173 0.13136 0.33737 0.15715 0.49801 0.06049l5.9285-3.6006c1.1645 0.67201 2.4205 1.2008 3.7478 1.5595l1.3833 6.6507c0.038926 0.18845 0.2055 0.32238 0.39656 0.32238h4.4307c0.18626 0 0.34882-0.1271 0.39327-0.30983l1.6293-6.6644c1.3683-0.36926 2.6624-0.91963 3.8553-1.6222l5.8424 3.8307c0.16064 0.10576 0.3731 0.08461 0.50946-0.05177l3.1331-3.1326c0.13253-0.13248 0.15626-0.33735 0.05889-0.4969l-2.1327-3.5149-0.69001 0.21818c-0.10058 0.03173-0.21027-0.0056-0.26944-0.09333 0 0-1.3604-1.9914-3.1173-4.5627-2.1003 4.1105-6.3734 6.9262-11.308 6.9262-7.0106 0-12.694-5.6839-12.694-12.695 0-5.1575 3.0762-9.593 7.4924-11.58v-3.2749c-0.80373 0.28117-1.5807 0.62017-2.3187 1.0222-5.38e-4 -5e-4 -0.0011-0.0019-0.0032-0.0037l-5.9798-3.922c-0.080543-0.052694-0.17387-0.07366-0.26401-0.064383z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.4 KiB |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path class="st0" d="m20.2 6 3.74 5.77v30.2h1.12v-30.2l3.83-5.79zm8.98 5.23c-0.399 0-0.745 0.319-0.745 0.718v26.3c0 0.585 0.665 0.931 1.14 0.585l18.1-13.1c0.399-0.293 0.399-0.878 0-1.17l-18.1-13.1c-0.106-0.106-0.239-0.159-0.399-0.159zm-11.4 0.0045v2h2.75v-2zm-2.17 3.24v2h4.95v-2zm-5.8 3.24v2.01h10.7v-2.01zm-5.91 3.21v2.01h16.6v-2.01zm-3.9 3.24v2.01h20.5v-2.01zm6.5 3.21v2h14v-2zm5.72 3.24v2.01h8.34v-2.01zm-2.25 3.21v2.01h10.6v-2.01zm5.45 3.08v2h5.11v-2z" fill="#000000" stroke-width=".267"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 617 B |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m41.1 0c-2.81 0-5.1 2.27-5.1 5.08s2.28 5.08 5.1 5.08c2.81 0 5.1-2.27 5.1-5.08s-2.28-5.08-5.1-5.08zm-39.7 10.7c0.652 0.652 1.07 1.39 1.25 2.23 0.1 0.468 0.15 1.35 0.15 2.63v27.6c-5e-6 1.29-0.05 2.16-0.15 2.63-0.184 0.836-0.602 1.58-1.25 2.23h11.8c-0.936-0.936-1.4-2.57-1.4-4.89v-10l7.24 9.88c1.27 1.74 1.9 3.07 1.9 3.99-2.5e-5 0.301-0.05 0.643-0.15 1.03h12.9c-0.535-0.418-0.944-0.777-1.23-1.08-1.05-1.17-1.92-2.22-2.61-3.16l-11.3-15.5 9.42-11.7c0.969-1.2 1.65-2.03 2.03-2.48 1.44-1.72 2.63-2.85 3.58-3.38h-12.6c0.0835 0.201 0.125 0.468 0.125 0.802-2.5e-5 0.919-0.735 2.31-2.21 4.16l-7.19 9.1v-9.2c-1.4e-5 -2.31 0.468-3.93 1.4-4.86zm34.2 9.9c0.138 0.155 0.263 0.313 0.374 0.475 0.112 0.162 0.211 0.327 0.296 0.496 0.0856 0.169 0.158 0.342 0.217 0.519 0.0595 0.176 0.106 0.357 0.139 0.54 0.0167 0.0877 0.0314 0.202 0.044 0.343s0.0232 0.309 0.0315 0.503c0.0167 0.389 0.0249 0.884 0.0249 1.49v18.6c-4e-6 0.602-0.0082 1.1-0.0249 1.49-0.0084 0.196-0.019 0.366-0.0315 0.51s-0.0273 0.263-0.044 0.354c-0.0167 0.094-0.0362 0.187-0.0598 0.279-0.0235 0.0919-0.0502 0.182-0.0805 0.272-0.0303 0.0898-0.0642 0.179-0.101 0.266-0.0371 0.0878-0.0782 0.174-0.122 0.26-0.0877 0.171-0.189 0.338-0.304 0.501s-0.243 0.322-0.385 0.476h11c-0.142-0.155-0.27-0.314-0.385-0.476-0.115-0.163-0.216-0.33-0.304-0.501-0.0439-0.0856-0.0841-0.172-0.121-0.26-0.0371-0.0877-0.071-0.177-0.101-0.266-0.0303-0.0898-0.057-0.18-0.0805-0.272-0.0235-0.0919-0.0439-0.185-0.0606-0.279-0.0167-0.0919-0.0314-0.21-0.044-0.354s-0.0232-0.314-0.0315-0.51c-0.0167-0.393-0.0249-0.89-0.0249-1.49v-23z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.6 KiB |
|
@ -1,4 +0,0 @@
|
||||||
<svg width="24.1" height="24.1" role="img" version="1.1" viewBox="0 0 24.1 24.1" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<title>Krita</title>
|
|
||||||
<path d="m0.654 0.798c-0.197-0.00295-0.383 0.0864-0.502 0.242-0.352 0.448-0.0354 0.9 0.361 1.26 0.206 0.189 1.77 1.79 3.43 3.53 0.522-0.732 1.13-1.4 1.82-1.98-2.09-1.3-4.06-2.55-4.3-2.71-0.26-0.186-0.543-0.338-0.809-0.342zm12.4 0.41c-2.64 0.0035-5.19 0.954-7.19 2.68 1.85 1.15 3.79 2.33 4.69 2.84 1.47 0.821 3.76 2.68 4.09 4.43 0.535 0.466 2.18 1.92 2.6 2.41 0.698-0.211 1.52 0.131 2.06 1.12 0.866 1.58 0.228 3.75-1.98 5.01 1.13-1.45-0.722-2.43-1.19-3.85-0.0865-0.251-0.123-0.512-0.109-0.777-0.533-0.282-2.11-1.45-2.8-1.96-1.8 0.16-4.21-1.77-5.35-3.08-0.7-0.802-2.32-2.52-3.86-4.12-1.33 1.87-2.04 4.1-2.05 6.39 0 9.85 11.9 14.8 18.9 7.81 7-6.99 2.03-18.9-7.81-18.9zm1.51 10.2c-0.256 0.062-0.96 0.835-1.11 1.31-0.038 0.115-0.0281 0.248 0.0664 0.342 0.802 0.592 1.56 1.17 2.4 1.7 0.162-0.393 0.746-0.963 1.1-1.2zm-11.5 1.78c0.98 2 5.92 6.94 12 2.57-0.0043 0.243 0.0339 0.485 0.113 0.715 0.46 1.42 2.36 2.43 1.24 3.89-2.14 1.36-5 1.2-6.99 0.529-3.51-1.18-5.85-4.25-6.4-7.7z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,5 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg id="kubuntu__x5F__black" width="600" height="600" enable-background="new 0 0 779.617 170.079" version="1.1" viewBox="0 0 600 600" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><metadata><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/></cc:Work></rdf:RDF></metadata>
|
|
||||||
|
|
||||||
|
|
||||||
<path d="m299.99 0c-165.68-3.7895e-14 -299.99 134.31-299.99 299.99 3.7895e-14 165.68 134.31 300.01 299.99 300.01 165.69 0 300.01-134.33 300.01-300.01 0-165.68-134.32-299.99-300.01-299.99zm-18.186 60.195c1.3698 0.1451 2.6111 0.98495 3.2324 2.2891l29.625 62.283c14.431 0.42374 28.906 2.9066 43.023 7.4141l47.6-47.531c1.3106-1.3155 3.3625-1.5651 4.9629-0.5918l37.838 23.014c1.6423 0.99879 2.3581 3.0141 1.7168 4.8164l-23.018 64.799c8.69 9.6458 16.057 20.222 22.02 31.461l70.654 0.05078c1.8706 0.0016 3.4951 1.2802 3.9394 3.0918l10.48 43.033c0.46134 1.865-0.45298 3.7912-2.1894 4.6211l-88.506 19.373c-10.463-69.69-70.581-123.13-143.19-123.13-16.089 0-31.549 2.6646-46.008 7.5078l-0.74023-0.45313-18.965-87.533c0.00981-1.8736 1.2945-3.4972 3.1016-3.9395l43.027-10.482c0.46712-0.1148 0.93795-0.14212 1.3945-0.09375zm-140.33 63.371c0.90093-0.09338 1.833 0.11441 2.6387 0.64062l67.281 61.287c-34.183 26.488-56.213 67.911-56.213 114.5 0 42.052 17.943 79.902 46.57 106.36l-0.03711 0.80078-60.471 66.889c-1.6059 0.96518-3.6616 0.71261-4.9785-0.60156l-31.312-31.316c-1.3632-1.3578-1.5844-3.4824-0.5293-5.0938l37.82-57.676c-7.1365-12.55-12.537-26.207-16.021-40.611l-65.344-15.973c-1.8049-0.43624-3.082-2.0585-3.082-3.9316v-44.287c0-1.9222 1.3496-3.5822 3.2227-3.9707l67.322-14.004c3.7258-12.437 8.9355-24.228 15.439-35.162l-36.67-60.393c-0.97063-1.5991-0.72314-3.6517 0.59375-4.9727l31.322-31.316c0.67686-0.68163 1.5463-1.0765 2.4473-1.1699zm299.92 207.65 87.83 19.666c1.638 0.90964 2.4442 2.8181 1.9629 4.6152l-11.504 42.766c-0.49594 1.859-2.2255 3.1118-4.1484 3.002l-68.855-3.9785c-7.3116 12.449-16.448 23.946-27.189 34.156l18.781 64.592c0.52306 1.7817-0.24419 3.6997-1.8672 4.6348l-38.375 22.109c-1.6655 0.95959-3.7771 0.6185-5.0488-0.81055l-45.742-51.344c-12.636 2.9804-25.452 4.3526-38.174 4.1758l-34.023 61.924c-0.901 1.6393-2.8035 2.4484-4.6055 1.9668l-42.771-11.506c-1.857-0.49241-3.1036-2.221-2.9961-4.1426l23.131-87.547 0.44532-0.24414c16.075 6.1555 33.511 9.5625 51.75 9.5625 69.255 0 127.12-48.634 141.4-113.6z" fill-rule="evenodd"/></svg>
|
|
Before Width: | Height: | Size: 2.5 KiB |
|
@ -1,90 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
inkscape:export-ydpi="41.27"
|
|
||||||
inkscape:export-xdpi="41.27"
|
|
||||||
inkscape:export-filename="/home/jr/src/logo/kubuntu_logotype_black.png"
|
|
||||||
sodipodi:docname="kubuntu.svg"
|
|
||||||
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
|
|
||||||
xml:space="preserve"
|
|
||||||
enable-background="new 0 0 779.617 170.079"
|
|
||||||
viewBox="0 0 475.60519 477.93476"
|
|
||||||
height="477.93475"
|
|
||||||
width="475.60519"
|
|
||||||
y="0px"
|
|
||||||
x="0px"
|
|
||||||
id="kubuntu__x5F__black"
|
|
||||||
version="1.1"><metadata
|
|
||||||
id="metadata27"><rdf:RDF><cc:Work
|
|
||||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
|
||||||
id="defs25"><inkscape:perspective
|
|
||||||
id="perspective29"
|
|
||||||
inkscape:persp3d-origin="389.8085 : 486.61502 : 1"
|
|
||||||
inkscape:vp_z="779.617 : 514.96152 : 1"
|
|
||||||
inkscape:vp_y="0 : 1000 : 0"
|
|
||||||
inkscape:vp_x="0 : 514.96152 : 1"
|
|
||||||
sodipodi:type="inkscape:persp3d" /><inkscape:perspective
|
|
||||||
sodipodi:type="inkscape:persp3d"
|
|
||||||
inkscape:vp_x="0 : 430.42202 : 1"
|
|
||||||
inkscape:vp_y="0 : 1000 : 0"
|
|
||||||
inkscape:vp_z="1 : 430.42202 : 1"
|
|
||||||
inkscape:persp3d-origin="0.5 : 430.25535 : 1"
|
|
||||||
id="perspective3135" /><inkscape:perspective
|
|
||||||
sodipodi:type="inkscape:persp3d"
|
|
||||||
inkscape:vp_x="0 : 430.42202 : 1"
|
|
||||||
inkscape:vp_y="0 : 1000 : 0"
|
|
||||||
inkscape:vp_z="1 : 430.42202 : 1"
|
|
||||||
inkscape:persp3d-origin="0.5 : 430.25535 : 1"
|
|
||||||
id="perspective3415" /><inkscape:perspective
|
|
||||||
sodipodi:type="inkscape:persp3d"
|
|
||||||
inkscape:vp_x="0 : 430.42202 : 1"
|
|
||||||
inkscape:vp_y="0 : 1000 : 0"
|
|
||||||
inkscape:vp_z="1 : 430.42202 : 1"
|
|
||||||
inkscape:persp3d-origin="0.5 : 430.25535 : 1"
|
|
||||||
id="perspective2861" /></defs><sodipodi:namedview
|
|
||||||
inkscape:document-rotation="0"
|
|
||||||
inkscape:current-layer="kubuntu__x5F__black"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-x="2560"
|
|
||||||
inkscape:cy="225.54248"
|
|
||||||
inkscape:cx="-76.468113"
|
|
||||||
inkscape:zoom="0.84208499"
|
|
||||||
showgrid="false"
|
|
||||||
id="namedview23"
|
|
||||||
inkscape:window-height="1329"
|
|
||||||
inkscape:window-width="2560"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
guidetolerance="10"
|
|
||||||
gridtolerance="10"
|
|
||||||
objecttolerance="10"
|
|
||||||
borderopacity="1"
|
|
||||||
bordercolor="#666666"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
fit-margin-top="0"
|
|
||||||
fit-margin-left="0"
|
|
||||||
fit-margin-right="0"
|
|
||||||
fit-margin-bottom="0" />
|
|
||||||
|
|
||||||
|
|
||||||
<path
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke-width:0.2345369"
|
|
||||||
d="m 384.75821,213.90359 c -4.18576,-21.04677 -10.85819,-37.60466 -21.87136,-54.27465 -5.99217,-9.06997 -10.69853,-14.77474 -19.04402,-23.08401 -35.32596,-35.17266 -86.52765,-49.632464 -135.13468,-38.163214 -3.59228,0.84763 -7.92851,2.020844 -9.63608,2.607134 -1.83718,0.63079 -3.24624,0.8369 -3.45146,0.50485 -0.19074,-0.30862 -4.61125,-20.235744 -9.82337,-44.282494 -8.86538,-40.90156 -9.41736,-43.811732 -8.55857,-45.12241 0.50489,-0.770572 1.11708,-1.401039 1.36042,-1.401039 0.24334,0 10.2893,-2.404745 22.32436,-5.343879 C 212.95851,2.404745 223.21958,0 223.72582,0 c 0.50625,0 1.35527,0.393501 1.88671,0.874446 0.53144,0.480945 7.63311,14.938411 15.7815,32.127701 8.1484,17.189289 15.08245,31.327509 15.40902,31.418269 0.32657,0.0908 4.29112,0.4697 8.81011,0.84208 9.50987,0.78367 18.09432,2.30996 27.61375,4.90966 l 6.73564,1.83946 24.45363,-24.4274 c 13.4495,-13.435075 24.89229,-24.427409 25.42843,-24.427409 0.81966,0 12.88508,7.115529 35.68251,21.043599 7.73665,4.7267 8.27798,0.68359 -5.15292,38.48643 -6.40945,18.040184 -11.65199,33.010114 -11.65006,33.266524 0.002,0.25642 2.15851,3.12478 4.79244,6.37416 5.34352,6.59209 12.39401,16.91083 15.10317,22.10423 l 1.78027,3.41274 36.0054,0.001 c 33.42089,10e-4 36.09451,0.076 37.24677,1.0405 0.98668,0.8259 2.34019,5.56908 6.59719,23.11879 2.9457,12.14384 5.35582,22.58979 5.35582,23.21322 0,0.62344 -0.48059,1.56845 -1.06797,2.10002 -0.69353,0.62763 -16.30341,4.303 -44.52262,10.4829 -23.90006,5.23424 -43.70727,9.51662 -44.01602,9.51662 -0.30876,0 -0.86692,-1.53636 -1.24038,-3.41414 z"
|
|
||||||
id="path831"
|
|
||||||
inkscape:connector-curvature="0" /><path
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke-width:0.2345369"
|
|
||||||
d="m 190.59834,472.10153 c -11.59325,-3.18162 -21.53606,-5.99069 -22.09512,-6.24239 -0.55907,-0.2517 -1.18175,-0.97834 -1.38374,-1.61476 -0.31993,-1.00801 21.85745,-86.72882 22.85629,-88.34499 0.21736,-0.35168 3.3024,0.35899 7.76521,1.78881 14.64922,4.69339 27.93671,6.70963 44.21797,6.70963 16.01333,0 29.42614,-2.00066 43.61862,-6.50619 48.28583,-15.32877 84.67236,-54.18935 97.39558,-104.01786 0.35439,-1.38792 0.9233,-2.52349 1.26424,-2.52349 0.63704,0 84.97103,18.80418 86.67602,19.32639 0.52195,0.15986 1.24568,0.94184 1.60832,1.73774 0.5538,1.21546 -0.24119,4.80129 -4.96686,22.40319 -7.00755,26.10128 -6.5068,24.6064 -8.457,25.24674 -1.02139,0.33536 -13.337,-0.17234 -33.96264,-1.40009 -17.79808,-1.05944 -33.32555,-1.94282 -34.50548,-1.96308 -2.04856,-0.0351 -2.28386,0.18085 -5.21715,4.78932 -5.02135,7.88902 -11.23825,15.76857 -17.96872,22.7743 l -6.33074,6.58965 9.54836,32.82172 c 7.63528,26.2457 9.43902,33.12003 9.00267,34.31055 -0.41895,1.14309 -5.19361,4.16717 -20.56053,13.02225 -11.00818,6.34338 -20.66279,11.53342 -21.4547,11.53342 -1.14961,0 -6.17266,-5.31184 -24.92017,-26.35287 l -23.48032,-26.35287 -3.45677,0.79832 c -7.15204,1.65174 -15.63771,2.6818 -24.98092,3.03239 -5.89326,0.22114 -9.85035,0.61676 -10.16647,1.01641 -0.28468,0.3599 -8.05769,14.41484 -17.27337,31.23322 -9.21568,16.81837 -17.18315,30.91285 -17.7055,31.32106 -0.52234,0.40822 -1.63344,0.72106 -2.46909,0.69522 -0.83565,-0.0258 -11.00475,-2.65013 -22.59799,-5.83174 z"
|
|
||||||
id="path833"
|
|
||||||
inkscape:connector-curvature="0" /><path
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke-width:0.2345369"
|
|
||||||
d="m 62.713282,397.28648 c -14.0309,-14.00524 -16.59574,-16.82874 -16.58562,-18.25825 0.009,-1.20558 4.83275,-9.02042 16.80508,-27.22288 9.2362,-14.04253 17.82629,-27.16508 19.08909,-29.16122 l 2.29598,-3.62934 -4.43547,-9.14919 c -3.85544,-7.95273 -8.92687,-21.54367 -10.97461,-29.4109 l -0.64395,-2.47399 -6.67029,-1.5916 C 27.699918,268.30176 2.026179,261.71838 1.095202,260.87586 0.065747,259.94421 0,258.46703 0,236.26926 v -23.61545 l 1.411014,-1.1099 c 1.00459,-0.79022 11.137878,-3.12978 35.180534,-8.12246 18.573234,-3.85691 33.789914,-7.05076 33.814834,-7.09745 0.0249,-0.0467 1.06186,-3.0061 2.30431,-6.57645 2.83033,-8.13338 7.02921,-17.5948 10.60531,-23.89718 l 2.75155,-4.84923 -18.68944,-30.75427 c -10.27919,-16.91486 -18.68944,-31.286204 -18.68944,-31.936324 0,-0.75554 6.04711,-7.24283 16.75994,-17.9799 13.68646,-13.71743 17.054,-16.79787 18.36349,-16.79787 1.28707,0 8.25096,6.0565 35.285418,30.68777 l 33.68188,30.687774 -3.50513,2.99525 c -16.12195,13.77672 -28.49744,29.54446 -37.32314,47.55378 -16.449198,33.56549 -19.529558,70.56039 -8.82492,105.98693 6.74177,22.3116 18.30952,41.97108 34.82399,59.18363 l 5.59696,5.83356 -25.49154,28.2038 c -36.787548,40.70168 -35.352048,39.18845 -37.175238,39.18845 -1.26278,0 -4.81327,-3.23783 -18.1671,-16.56724 z"
|
|
||||||
id="path835"
|
|
||||||
inkscape:connector-curvature="0" /></svg>
|
|
Before Width: | Height: | Size: 7.3 KiB |
|
@ -1,3 +0,0 @@
|
||||||
<svg version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m23.927 0a1.5489 1.5489 0 0 0-1.0223 0.44767l-17.036 17.036a1.5489 1.5489 0 0 0 0 2.1898l17.036 17.036a1.5489 1.5489 0 0 0 2.1898 0l17.036-17.036a1.5489 1.5489 0 0 0 0-2.1898l-17.036-17.036a1.5489 1.5489 0 0 0-1.1676-0.44767zm0.072589 3.7325 14.846 14.846-14.846 14.846-14.846-14.846zm-18.584 24.137v1.5487a1.5487 1.5487 0 0 0 0.45374 1.095l17.036 17.036a1.5489 1.5489 0 0 0 2.1898 0l17.036-17.036a1.5487 1.5487 0 0 0 0.4537-1.095 1.5487 1.5487 0 0 0 0-0.07259v-1.4761h-1.5487a1.5487 1.5487 0 0 0-1.0949 0.45372l-15.941 15.941-15.941-15.941a1.5487 1.5487 0 0 0-1.095-0.44767v-0.0061z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 679 B |
|
@ -1,3 +0,0 @@
|
||||||
<svg version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m7 0c-2.216 0-4 1.784-4 4v24c0 2.216 1.784 4 4 4h18c2.216 0 4-1.784 4-4v-16l-12-12zm13 0 9 9v-9zm-13 3h8.75l10.25 10.25v14.75c0 0.554-0.446 1-1 1h-18c-0.554 0-1-0.446-1-1v-24c0-0.554 0.446-1 1-1z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 291 B |
|
@ -1,3 +0,0 @@
|
||||||
<svg version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m7 0c-2.216 0-4 1.784-4 4v24c0 2.216 1.784 4 4 4h18c2.216 0 4-1.784 4-4v-16l-12-12zm13 0 9 9v-9zm-9.5 12.238c3.0376 0 5.5 0.61561 5.5 1.375v1.375c0 0.75939-2.4624 1.375-5.5 1.375-3.0376 0-5.5-0.61561-5.5-1.375v-1.375c0-0.75939 2.4624-1.375 5.5-1.375zm8.25 2.75h6.875c0.76175 0 1.375 0.61325 1.375 1.375v11c0 0.76175-0.61325 1.375-1.375 1.375h-6.875c-0.76175 0-1.375-0.61325-1.375-1.375v-11c0-0.76175 0.61325-1.375 1.375-1.375zm-13.75 1.375c0 0.75939 2.4624 1.375 5.5 1.375 3.0376 0 5.5-0.61561 5.5-1.375v2.75c0 0.75939-2.4624 1.375-5.5 1.375-3.0376 0-5.5-0.61561-5.5-1.375zm13.75 0v2.75h2.75v-2.75zm4.125 0v2.75h2.75v-2.75zm-17.875 4.125c0 0.75939 2.4624 1.375 5.5 1.375 3.0376 0 5.5-0.61561 5.5-1.375v2.75c0 0.75939-2.4624 1.375-5.5 1.375-3.0376 0-5.5-0.61561-5.5-1.375zm13.75 0v2.75h2.75v-2.75zm4.125 0v2.75h2.75v-2.75zm-17.875 4.125c0 0.75939 2.4624 1.375 5.5 1.375 3.0376 0 5.5-0.61561 5.5-1.375v2.75c0 0.75939-2.4624 1.375-5.5 1.375-3.0376 0-5.5-0.61561-5.5-1.375zm13.75 0v2.75h2.75v-2.75zm4.125 0v2.75h2.75v-2.75z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,3 +0,0 @@
|
||||||
<svg version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m7 0c-2.216 0-4 1.784-4 4v24c0 2.216 1.784 4 4 4h18c2.216 0 4-1.784 4-4v-16l-12-12zm13 0 9 9v-9zm-13.625 12.381h15.125c0.76175 0 1.375 0.61325 1.375 1.375v5.5h2.75c0.76175 0 1.375 0.61325 1.375 1.375v6.875c0 0.76175-0.61325 1.375-1.375 1.375h-9.625c-0.76175 0-1.375-0.61325-1.375-1.375v-2.75l-8.25 0.05825c-0.76173 0.005376-1.375-0.61325-1.375-1.375v-9.625c0-0.76175 0.61325-1.4332 1.375-1.4332zm0 1.375v1.375h4.125v-1.375zm5.5 0v1.375h4.125v-1.375zm5.5 0v1.375h4.125v-1.375zm-11 2.75v1.375h4.125v-1.375zm5.5 0v1.375h4.125v-1.375zm5.5 0v1.375h4.125v-1.375zm-11 2.75v1.375h4.125v-1.375zm5.5 0v1.375h2.75c0-0.76175 0.61325-1.375 1.375-1.375zm6.875 1.375v6.875h1.375v-6.875zm-12.375 1.375v1.375h4.125v-1.375zm5.5 0v1.375h2.75v-1.375zm4.125 0v5.5h1.375v-5.5zm8.25 1.375v4.125h1.375v-4.125zm-2.75 1.375v2.75h1.375v-2.75z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 911 B |
|
@ -1,3 +0,0 @@
|
||||||
<svg version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m7 0c-2.216 0-4 1.784-4 4v24c0 2.216 1.784 4 4 4h18c2.216 0 4-1.784 4-4v-16l-12-12zm13 0 9 9v-9zm-9.4863 13c3.0301-3.31e-4 5.4866 2.4562 5.4863 5.4863-0.0047 0.24792-0.02626 0.49523-0.06445 0.74023-0.29807-0.46919-0.60212-0.93099-0.91602-1.3809-0.28775-0.33856-0.65402-0.60352-1.0762-0.60352-0.50172 0-1.0052 0.23663-1.2812 0.71484l-3.377 5.8555c-2.4836-0.5713-4.2467-2.7778-4.2559-5.3262-3.314e-4 -3.0294 2.455-5.4856 5.4844-5.4863zm8.2285 2.7422h6.8574c0.75976 0 1.3711 0.61329 1.3711 1.373v6.8555c0 0.75976-0.61133 1.3711-1.3711 1.3711h-6.1367c-0.69897-1.2392-1.3847-2.4955-2.0918-3.7266v-4.5c0-0.75976 0.61133-1.373 1.3711-1.373zm0 1.373v6.8555h6.8574v-6.8555zm-4.9375 1.7852c0.2805-0.05967 0.56752 0.06807 0.71094 0.31641l4.8125 8.332c0.25645 0.44194-0.06327 0.99546-0.57422 0.99414h-9.6211c-0.51095 0.001321-0.83067-0.5522-0.57422-0.99414l4.8105-8.332c0.0938-0.16241 0.2521-0.27741 0.43555-0.31641z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1,000 B |
|
@ -1,3 +0,0 @@
|
||||||
<svg version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m7 0c-2.216 0-4 1.784-4 4v24c0 2.216 1.784 4.0033 4 4l18-0.02703c2.216-0.0033 4-1.784 4-4v-15.973l-12-12zm13 0 9 9v-9zm-14.312 12.408h20.625c0.38088 0 0.6875 0.30662 0.6875 0.6875s-0.30662 0.6875-0.6875 0.6875h-20.625c-0.38087 0-0.6875-0.30662-0.6875-0.6875s0.30663-0.6875 0.6875-0.6875zm2.75 2.75h15.125c0.38088 0 0.6875 0.30662 0.6875 0.6875s-0.30662 0.6875-0.6875 0.6875h-15.125c-0.38087 0-0.6875-0.30662-0.6875-0.6875s0.30663-0.6875 0.6875-0.6875zm-2.75 5.5c0.3797 0 0.6875 0.3078 0.6875 0.6875s-0.3078 0.6875-0.6875 0.6875-0.6875-0.3078-0.6875-0.6875 0.3078-0.6875 0.6875-0.6875zm2.75 0h5.5c0.38088 0 0.6875 0.30662 0.6875 0.6875s-0.30662 0.6875-0.6875 0.6875h-5.5c-0.38087 0-0.6875-0.30662-0.6875-0.6875s0.30663-0.6875 0.6875-0.6875zm8.9375 0h8.25c0.76175 0 1.375 0.61325 1.375 1.375v5.5c0 0.76175-0.61325 1.375-1.375 1.375h-8.25c-0.76175 0-1.375-0.61325-1.375-1.375v-5.5c0-0.76175 0.61325-1.375 1.375-1.375zm7.4551 1.3828c-0.14357 0.02277-0.27622 0.09047-0.37891 0.19336l-2.2637 2.2637-1.375-1.375-3.2363 3.2363c-0.26874 0.26853-0.26874 0.70413 0 0.97266 0.26853 0.26874 0.70413 0.26874 0.97266 0l2.2637-2.2637 1.375 1.375 3.2363-3.2363c0.26874-0.26853 0.26874-0.70413 0-0.97266-0.15554-0.1558-0.37629-0.22769-0.59375-0.19336zm-19.143 1.3672c0.3797 0 0.6875 0.3078 0.6875 0.6875s-0.3078 0.6875-0.6875 0.6875-0.6875-0.3078-0.6875-0.6875 0.3078-0.6875 0.6875-0.6875zm2.75 0h5.5c0.38088 0 0.6875 0.30662 0.6875 0.6875s-0.30662 0.6875-0.6875 0.6875h-5.5c-0.38087 0-0.6875-0.30662-0.6875-0.6875s0.30663-0.6875 0.6875-0.6875zm-2.75 2.75c0.3797 0 0.6875 0.3078 0.6875 0.6875s-0.3078 0.6875-0.6875 0.6875-0.6875-0.3078-0.6875-0.6875 0.3078-0.6875 0.6875-0.6875zm2.75 0h5.5c0.38088 0 0.6875 0.30662 0.6875 0.6875s-0.30662 0.6875-0.6875 0.6875h-5.5c-0.38087 0-0.6875-0.30662-0.6875-0.6875s0.30663-0.6875 0.6875-0.6875z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.9 KiB |
|
@ -1,3 +0,0 @@
|
||||||
<svg version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m7 0c-2.216 0-4 1.784-4 4v24c0 2.216 1.784 4 4 4h18c2.216 0 4-1.784 4-4v-16l-12-12zm13 0 9 9v-9zm-5.1168 12.336h11.424c0.3797 0 0.6875 0.3078 0.6875 0.6875s-0.3078 0.6875-0.6875 0.6875h-10.576l-5.9238 11.848-3.1738-6.3477h-0.95117c-0.3797 0-0.6875-0.3078-0.6875-0.6875s0.3078-0.6875 0.6875-0.6875h1.7988l2.3262 4.6504 5.0762-10.15zm9.3613 4.125c0.36475-2.06e-4 0.71464 0.14452 0.97266 0.40234 0.53621 0.53684 0.53621 1.4066 0 1.9434l-1.7793 1.7793 1.7793 1.7773c0.53621 0.53684 0.53621 1.4066 0 1.9434-0.53706 0.53748-1.4082 0.53748-1.9453 0l-1.7773-1.7773-1.7773 1.7773c-0.53706 0.53748-1.4082 0.53748-1.9453 0-0.53621-0.53684-0.53621-1.4066 0-1.9434l1.7793-1.7773-1.7793-1.7793c-0.53621-0.53684-0.53621-1.4066 0-1.9434 0.22071-0.22083 0.51001-0.35997 0.82031-0.39453 0.41548-0.04635 0.82948 0.09884 1.125 0.39453l1.7773 1.7773 1.7773-1.7773c0.25802-0.25782 0.60791-0.40255 0.97266-0.40234zm-18.562 11h4.125c0.38088 0 0.6875 0.30662 0.6875 0.6875 0 0.38087-0.30662 0.6875-0.6875 0.6875h-4.125c-0.38087-1e-6 -0.6875-0.30663-0.6875-0.6875 0-0.38088 0.30663-0.6875 0.6875-0.6875zm8.25 0h4.125c0.38088 0 0.6875 0.30662 0.6875 0.6875 0 0.38087-0.30662 0.6875-0.6875 0.6875h-4.125c-0.38088-1e-6 -0.6875-0.30663-0.6875-0.6875 0-0.38088 0.30662-0.6875 0.6875-0.6875zm8.25 0h4.125c0.38088 0 0.6875 0.30662 0.6875 0.6875 0 0.38087-0.30662 0.6875-0.6875 0.6875h-4.125c-0.38088-1e-6 -0.6875-0.30663-0.6875-0.6875 0-0.38088 0.30662-0.6875 0.6875-0.6875z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.5 KiB |
|
@ -1,3 +0,0 @@
|
||||||
<svg version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m7 0c-2.216 0-4 1.784-4 4v24c0 2.216 1.784 4 4 4h18c2.216 0 4-1.784 4-4v-16l-12-12h-10zm13 0 9 9v-9h-9zm-14.312 12.375h8.25c0.38088 0 0.6875 0.30662 0.6875 0.6875s-0.30662 0.6875-0.6875 0.6875h-8.25c-0.38087 0-0.6875-0.30662-0.6875-0.6875s0.30663-0.6875 0.6875-0.6875zm13.062 0h6.875c0.76175 0 1.375 0.61325 1.375 1.375v4.125c0 0.76175-0.61325 1.375-1.375 1.375h-6.875c-0.76175 0-1.375-0.61325-1.375-1.375v-4.125c0-0.76175 0.61325-1.375 1.375-1.375zm6.1875 1.375a0.6875 0.6875 0 0 0-0.6875 0.6875 0.6875 0.6875 0 0 0 0.6875 0.6875 0.6875 0.6875 0 0 0 0.6875-0.6875 0.6875 0.6875 0 0 0-0.6875-0.6875zm-4.3496 0.72852a0.84979 0.84979 0 0 0-0.89844 0.57617l-0.93945 2.8203h5.5l-3.1523-3.1523a0.84979 0.84979 0 0 0-0.50976-0.24414zm-14.9 0.64648h8.25c0.38088 0 0.6875 0.30662 0.6875 0.6875s-0.30662 0.6875-0.6875 0.6875h-8.25c-0.38087 0-0.6875-0.30662-0.6875-0.6875s0.30663-0.6875 0.6875-0.6875zm0 2.75h8.25c0.38088 0 0.6875 0.30662 0.6875 0.6875s-0.30662 0.6875-0.6875 0.6875h-8.25c-0.38087 0-0.6875-0.30662-0.6875-0.6875s0.30663-0.6875 0.6875-0.6875zm0 4.125h20.625c0.38088 0 0.6875 0.30662 0.6875 0.6875s-0.30662 0.6875-0.6875 0.6875h-20.625c-0.38087 0-0.6875-0.30662-0.6875-0.6875s0.30663-0.6875 0.6875-0.6875zm0 2.75h20.625c0.38088 0 0.6875 0.30662 0.6875 0.6875s-0.30662 0.6875-0.6875 0.6875h-20.625c-0.38087 0-0.6875-0.30662-0.6875-0.6875s0.30663-0.6875 0.6875-0.6875zm0 2.75h8.25c0.38088 0 0.6875 0.30662 0.6875 0.6875s-0.30662 0.6875-0.6875 0.6875h-8.25c-0.38087 0-0.6875-0.30662-0.6875-0.6875s0.30663-0.6875 0.6875-0.6875z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.6 KiB |
|
@ -1,28 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="512"
|
|
||||||
height="512"
|
|
||||||
id="svg3037"
|
|
||||||
version="1.1"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
||||||
<defs
|
|
||||||
id="defs5498" />
|
|
||||||
<metadata
|
|
||||||
id="metadata5594">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<path
|
|
||||||
id="path3543"
|
|
||||||
d="M 0 26.498047 L 0 190.40039 L 60.361328 190.40039 L 60.361328 219.85352 L 60.447266 318.20117 C 60.447266 413.32373 143.06947 485.50195 238.27734 485.50195 L 512 485.50195 L 512 195.16797 C 512 99.959954 429.4634 27.869141 334.16992 27.869141 L 254.54492 27.697266 L 0 26.498047 z M 12.691406 38.275391 L 256.75781 39.425781 L 333.10742 39.589844 C 424.47835 39.589844 503.61719 108.71297 503.61719 200.00195 L 503.61719 478.38477 L 241.16016 478.38477 C 149.87127 478.38477 70.650391 409.17779 70.650391 317.9707 L 70.568359 207.22656 L 70.568359 178.98633 L 12.691406 178.98633 L 12.691406 38.275391 z M 49.962891 75.710938 L 49.962891 141.79688 L 73.119141 141.79688 C 88.840128 141.79688 107.75781 156.57015 107.75781 178.25 L 107.92188 317.88867 C 107.92188 385.94444 167.60378 441.11328 241.16016 441.11328 L 422.77148 441.11328 C 446.05405 441.11328 466.42773 426.36925 466.42773 403.70898 L 466.42773 200.00195 C 466.42773 131.94625 406.74407 76.777344 333.10547 76.777344 L 256.67578 76.777344 L 256.67578 76.613281 L 49.962891 75.710938 z M 143.56445 117.12109 L 181.54297 117.12109 L 181.54297 311.94922 C 181.54297 338.01305 199.33899 358.29297 220.17578 358.29297 L 349.68164 358.80273 C 376.68282 358.80273 397.69922 340.20249 397.69922 318.13281 L 397.48047 214.67383 C 397.48047 207.9599 395.28987 202.70964 390.49609 197.86719 C 385.68666 193.00926 380.59547 190.81055 373.98242 190.81055 C 367.23073 190.81055 362.21255 192.9982 357.39258 197.86719 C 352.59875 202.70964 350.4082 207.9599 350.4082 214.67383 L 350.4082 303.2168 L 310.24805 303.2168 L 310.24805 214.67383 C 310.24805 207.9599 308.05745 202.70964 303.26367 197.86719 C 298.44366 192.9982 293.42736 190.81055 286.67578 190.81055 C 280.0628 190.81055 274.96967 193.00926 270.16016 197.86719 C 265.3664 202.70964 263.17578 207.9599 263.17578 214.67383 L 263.17578 303.2168 L 223.01367 303.2168 L 223.01367 214.67383 C 223.01363 197.15705 229.47682 181.6362 241.78516 169.20312 C 254.09962 156.76341 269.42663 150.35938 286.67578 150.35938 C 303.60019 150.35937 318.31132 156.67367 330.25586 168.18359 C 342.23546 156.65467 357.051 150.35938 373.98242 150.35938 C 391.23148 150.35937 406.55676 156.76341 418.87109 169.20312 C 431.1796 181.6362 437.64258 197.15705 437.64258 214.67383 L 437.78711 325.18945 C 435.88942 343.6954 428.08171 360.13998 414.72461 373.86328 L 414.65234 373.86328 C 398.94717 389.85215 379.47893 398.0918 357.32031 398.0918 L 213.11914 398.0918 C 195.47035 396.20436 179.76238 387.84724 166.70117 374.95508 C 151.41999 359.733 143.56445 340.90762 143.56445 319.44141 L 143.56445 117.12109 z " />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 3.2 KiB |
|
@ -1,49 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
width="512"
|
|
||||||
height="512"
|
|
||||||
id="svg3037"
|
|
||||||
version="1.1">
|
|
||||||
<defs
|
|
||||||
id="defs5498" />
|
|
||||||
<metadata
|
|
||||||
id="metadata5594">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
<dc:title />
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<g
|
|
||||||
id="layer1"
|
|
||||||
transform="translate(-100.75915,-484.95513)">
|
|
||||||
<g
|
|
||||||
id="g3159"
|
|
||||||
transform="matrix(1.8062188,0,0,1.8062258,100.75924,484.95513)">
|
|
||||||
<g
|
|
||||||
style="display:inline"
|
|
||||||
transform="matrix(0.41109898,0,0,0.41109739,-33.081295,-9.0723127)"
|
|
||||||
id="layer1-4">
|
|
||||||
<g
|
|
||||||
transform="translate(36.663888,-55.180569)"
|
|
||||||
id="g3016">
|
|
||||||
<path
|
|
||||||
id="path6141"
|
|
||||||
d="m 368.58661,721.50735 c -122.9425,0 -229.6326,-93.20203 -229.6326,-216.03435 l -0.11028,-149.14492 0,-38.03188 -77.944466,0 0,-189.49986 328.693796,1.54796 102.82057,0.22126 c 123.05297,0 229.63256,93.09107 229.63256,216.03369 l 0,374.90812 -353.45939,0 0,0 0,0 z M 671.96217,620.93836 c 0,-81.67298 0,-274.33915 0,-274.33915 0,-91.65342 -80.37661,-165.94989 -179.54873,-165.94989 l -102.93106,0 0,-0.22126 -278.38915,-1.21642 0,89.00068 c 0,0 11.18147,0 31.18512,0 21.1721,0 46.64858,19.89631 46.64858,49.09346 l 0.22126,188.05741 c 0,91.65351 80.37705,165.94984 179.43844,165.94984 l 244.58232,0 c 31.35558,0 58.79327,-19.85726 58.79327,-50.37477 z" />
|
|
||||||
<path
|
|
||||||
id="path4130"
|
|
||||||
d="m 429.88247,279.74272 c -23.23011,0 -43.87075,8.62459 -60.45513,25.37765 -16.57613,16.74411 -25.27959,37.64786 -25.27954,61.23842 l 0,119.24517 54.08639,0 0,-119.24517 c 0,-9.04192 2.95029,-16.11202 9.40622,-22.63355 6.47717,-6.54236 13.3361,-9.5041 22.24206,-9.5041 9.09263,0 15.84866,2.94685 22.33997,9.5041 6.45597,6.52153 9.40634,13.59163 9.40634,22.63355 l 0,119.24517 54.08632,0 0,-119.24517 c 0,-9.04192 2.95036,-16.11202 9.4064,-22.63355 6.49125,-6.55725 13.24728,-9.5041 22.34006,-9.5041 8.90604,0 15.76481,2.96174 22.24186,9.5041 6.45597,6.52153 9.40634,13.59163 9.40634,22.63355 l 0.29394,139.33197 c 0,29.72212 -28.30487,54.77182 -64.66844,54.77182 L 340.3265,559.77685 c -28.06174,0 -52.02874,-27.31375 -52.02874,-62.41495 l 0,-262.38182 -51.14679,0 0,272.47385 c 0,28.9094 10.57865,54.26083 31.15842,74.761 17.59005,17.36238 38.74446,28.61707 62.51278,31.15896 l 194.20127,-4.7e-4 c 29.84189,0 56.05939,-11.09612 77.21017,-32.62896 l 0.0982,0 c 17.98854,-18.4817 28.5047,-40.62686 31.06039,-65.54957 l -0.19566,-148.8361 c 0,-23.59056 -8.70318,-44.49431 -25.27954,-61.23842 -16.5842,-16.75306 -37.22503,-25.37765 -60.45502,-25.37765 -22.80223,0 -42.75419,8.47911 -58.88759,24.00558 -16.08619,-15.50088 -35.89872,-24.00558 -58.6915,-24.00558 z" />
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 3.1 KiB |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m22.4 0.371c-3.42 0.00671-6.95 0.73-9.62 2.97-4.71 3.7-7.03 9.76-7.11 15.6-0.411 4.31-0.538 8.66-1.29 12.9-1.32 4.43-4.38 8.39-4.29 13.2 0.269 0.691-0.578 2.7 0.565 2.55 1.95 9.8e-5 3.9 1.95e-4 5.85 2.93e-4 -0.0722-4.46-0.217-9.13 1.92-13.2 1.36-3.11 4.45-5.87 8.04-5.37 2.92 0.0838 5.47 2.28 8.47 1.64 2.99-0.554 5.98-2.47 9.1-1.62 4.41 1.66 6.83 6.24 7.87 10.6 0.461 2.62 0.323 5.31 0.336 7.96h5.72c-0.157-3.48-0.21-7.26-2.45-10.2-2.08-2.91-2.7-6.52-2.82-10-0.47-4.64 0.0299-9.43-1.22-14-0.289-0.395-0.701-2.3-1.24-3.22-2.23-5.29-7.31-9.61-13.2-9.72-1.54-0.149-3.08-0.183-4.62-0.192zm8.97 1.15c0.0664 0.033 0.211 0.105 0 0zm4.65 2.75c0.888 1 1.5 1.39 0 0zm-21.5 4.49c2.88-0.123 5.01 3.34 3.52 5.84-1.35 2.8-5.84 2.69-7.04-0.176-1.32-2.52 0.748-5.7 3.53-5.66zm18.8 0.0115c2.88-0.263 5.11 3.12 3.76 5.68-1.19 2.81-5.55 2.97-6.97 0.291-1.55-2.44 0.335-5.92 3.21-5.97zm6.69 1.73c0.521 0.899 1.76 3.7 0.605 1.19-0.194-0.393-0.398-0.827-0.605-1.19zm-6.47 0.896c-3.38 0.517 0.658 4.66 1.31 1.38 0.0384-0.72-0.603-1.39-1.31-1.38zm-19 0.0046c-3.03 0.451 0.233 4.4 1.3 1.72 0.313-0.87-0.443-1.77-1.3-1.72zm9.53 1.37c3.12 0.25 3.93 4.08 6.58 5.15 2.14 0.387 5.67-1.28 6.26 1.89 0.225 2.67-4.05 2.04-5.06 2.03-0.945-0.239-3.42-0.557-2.32-0.431-4.05-0.53-8.18-0.536-12.2 0.0407 1.22-0.235 4.84-0.444 1.84-0.194-2.3 0.0149-4.65 1.41-6.86 0.253-2.73-1.03-0.603-4.03 1.69-3.18 2.51 0.425 4.91-0.684 6.09-2.96 0.979-1.26 2.23-2.73 4-2.6zm-2.52 0.897c-0.597 0.661-1.29 1.26 0 0zm2.82 7.9c2.22 0.0882 5.81 0.058 7.12 0.965-1.76 1.75-4.26 2.27-6.66 2.15-2.88 0.0822-5.99-0.0838-8.29-2.06-0.515-0.841 2.91-0.649 4.11-0.906 1.24-0.098 2.48-0.142 3.72-0.149zm9.19 0.36c0.9 0.0333-0.827 0.0403 0 0z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.8 KiB |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.0" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m36 18.7c-2.94-3.32-5.59-5.47-9.52 0.127-2.34 3.33-16.4 22.4-18.9 25.4-0.747 0.882-1.18 1.5-1.76 1.85 9.12e-4 -1.21 9.68-16.5 12.4-21 3.25-5.34 3.15-5.02 2.76-5.02-0.551 2e-3 -1.67 0.815-3.38 2.63-3.11 3.32-12.3 15.7-13 15.5 0.221-0.898 7.43-12 10.7-16.5 2.82-3.94 1.74-4.24 0.126-3.86-6.89 1.64-15.1 5.62-15.4 5.48 0.0997-0.206 27.8-19.7 31.5-20 0.43-0.0433 1.34-0.811 2.96-1.45 1.76-0.694 2.94-1.26 3.23-1.08-1.28 1.8-1.96 2.16-1.97 2.74-0.0187 0.949-0.356 2.48-0.726 2.97 7.15 4.76 9.94 21 12 34.1 0.488 3.1 0.939 5.43 1.05 6.81-0.604-1.55-6.32-22.2-12-28.6z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 696 B |
|
@ -1,3 +0,0 @@
|
||||||
<svg version="1.1" viewBox="0 0 732 732" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m2.67 365v-365h89.3v731h-89.3v-365zm311 363c-39.6-3.52-80.8-26.5-91.1-67.3-5.58-39.6-1.92-80.1-3.28-120 1.53-32.7-3.61-66.4 4.26-98.4 12.7-45.6 63.5-65.7 107-64.3 101-0.579 203-1.58 304 0.619 40.5 1.39 87.3 23.9 94 68 3.87 13 1.54 24.3-11.8 28.9-57.2 37.9-114 76.8-171 115-52.7-0.0195-105-0.0389-158-0.0584 60.4-40.2 121-80.4 181-121-74.6 0.34-149-2.37-224 1.26-32.8-2.81-41 29-36.6 55.2 0.49 29.2-2.1 58.7 1.77 87.7 12.6 27.8 48.8 16.9 72.9 19.6 115 0.726 231 0.697 346 1.02v95.9c-137-0.509-274 0.744-411-1.6l-5.37-0.431zm-94.7-419v-45c35.3-17.7 69.6-37.6 105-54.9 31 13.1 61.2 28.9 91.6 43.6 1.03 12.3-37.9 20.9-51.4 31.6-11 4.33-21.2 9.21-17.2 22.7v47h-128c3.3e-4 -15 6.7e-4 -30 1e-3 -45zm383 15.3v-29.7c-127-67.7-254-135-381-204-3.2-29.9-1.07-60.2-1.67-90.3h128v60.8c128 67.4 255 135 383 202v90.1h-128v-29.7zm11.3-183c-28.1-14.3-56.8-27.3-84.6-42.2 24-13.3 48.9-25.3 73.3-37.8v-60.9h128c-0.596 30.1 1.53 60.5-1.67 90.3-34.4 19-69.8 38.2-104 55.8-3.71-1.51-7.19-3.5-10.8-5.28z" stroke-width="1.33"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="m27.1 1.35c-1.38-0.0463-2.78 0.277-4 0.936-1.39 0.752-2.55 1.94-3.26 3.35-0.714 1.41-0.986 3.04-0.768 4.61 0.218 1.57 0.925 3.06 2 4.22-0.558-1.03-0.824-2.22-0.758-3.39 0.066-1.17 0.463-2.33 1.13-3.29 0.67-0.965 1.61-1.74 2.69-2.21 1.08-0.472 2.28-0.641 3.45-0.48 1.63 0.224 3.16 1.1 4.18 2.4h16.2l-14.3-1.96c-1.19-2.25-3.53-3.85-6.06-4.13-0.197-0.0218-0.394-0.0344-0.592-0.041zm-25.8 2.78c-1.05 2.06-1.46 4.44-1.17 6.73 0.287 2.29 1.27 4.49 2.79 6.24 0.85 0.973 1.87 1.8 2.99 2.44l-3.17-0.893c-0.154 1.79 0.197 3.62 1 5.23 0.807 1.61 2.07 2.98 3.6 3.93 2.27 1.4 5.13 1.83 7.7 1.13-2.58 0.0173-5.14-1.27-6.67-3.34-0.864-1.17-1.41-2.58-1.55-4.03l15.1 2.47-12.2-3.43c-0.974-0.474-1.86-1.12-2.61-1.91-1.03-1.09-1.78-2.45-2.15-3.9-0.43-1.66-0.365-3.45 0.182-5.08l18 10.1zm29.3 7.87c-0.356 0.739-0.604 1.53-0.732 2.34-0.399 2.51 0.347 5.05 1.09 7.48 0.744 2.43 1.5 4.96 1.13 7.48-0.28 1.88-1.2 3.64-2.48 5.04-1.28 1.4-2.92 2.46-4.68 3.17-2.9 1.18-6.16 1.46-9.22 0.785v8.36l2.51-5.97c3.26 0.743 6.75 0.442 9.83-0.848 2.21-0.923 4.22-2.36 5.68-4.26 1.45-1.9 2.32-4.28 2.26-6.67-0.0738-2.87-1.43-5.54-2.75-8.1-1.31-2.56-2.65-5.24-2.66-8.12-0.0018-0.232 0.0053-0.464 0.0215-0.695z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.3 KiB |
|
@ -1,43 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="512"
|
|
||||||
height="512"
|
|
||||||
id="svg3037"
|
|
||||||
version="1.1"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
||||||
<defs
|
|
||||||
id="defs5498" />
|
|
||||||
<metadata
|
|
||||||
id="metadata5594">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<path
|
|
||||||
d="m 219.33737,198.08776 h -0.0239 c -15.97169,0 -28.97857,-12.98891 -28.99549,-28.94959 -0.0239,-16.01383 12.98515,-29.02203 28.97134,-29.03898 15.99581,0 29.0003,12.98891 29.01959,28.94958 0,16.01386 -12.9851,29.02448 -28.97129,29.0414 v 0 z"
|
|
||||||
id="path3042-0-6-4" />
|
|
||||||
<path
|
|
||||||
d="m 297.64733,176.82681 c -14.91385,0 -27.0526,-12.1259 -27.06244,-27.02678 -0.0239,-14.94027 12.11413,-27.08585 27.03786,-27.09813 14.93352,0 27.07228,12.1234 27.087,27.02429 0,14.94025 -12.11655,27.08585 -27.03781,27.10062 h -0.0239 z"
|
|
||||||
id="path3056-6-4-1" />
|
|
||||||
<path
|
|
||||||
d="m 275.37192,99.551046 c 0,13.344804 -10.8181,24.162904 -24.1629,24.162904 -13.34481,0 -24.16291,-10.8181 -24.16291,-24.162904 0,-13.344802 10.8181,-24.162903 24.16291,-24.162903 13.3448,0 24.1629,10.818101 24.1629,24.162903 z"
|
|
||||||
id="path4104" />
|
|
||||||
<path
|
|
||||||
d="m 312.09952,58.957377 c 0,12.27722 -9.95265,22.229872 -22.22987,22.229872 -12.27722,0 -22.22987,-9.952652 -22.22987,-22.229872 0,-12.277218 9.95265,-22.229871 22.22987,-22.229871 12.27722,0 22.22987,9.952653 22.22987,22.229871 z"
|
|
||||||
id="path4106" />
|
|
||||||
<path
|
|
||||||
id="path4132"
|
|
||||||
d="m 261.84069,19.330224 c 0,10.675843 -8.65448,19.330324 -19.33032,19.330324 -10.67584,0 -19.33032,-8.654481 -19.33032,-19.330324 0,-10.6758411 8.65448,-19.330323408982 19.33032,-19.330323408982 10.67584,0 19.33032,8.654482308982 19.33032,19.330323408982 z" />
|
|
||||||
<path
|
|
||||||
id="path3347-1"
|
|
||||||
d="m 138.54019,224.20885 c -25.01318,32.4213 -45.299203,68.88782 -45.299203,113.06465 0,95.75577 72.663343,174.72658 162.758993,174.72658 90.09294,0 162.75899,-78.97041 162.75899,-174.72658 0,-44.18557 -20.31828,-79.49338 -46.74574,-113.0646 -9.90973,-10.39894 -24.21656,-8.85275 -34.63174,-2.19859 -30.47653,15.76979 -46.92747,22.07045 -81.38151,21.91612 -33.32256,-0.14935 -50.83028,-5.5913 -81.30848,-22.20547 -10.41519,-6.36481 -26.24161,-7.91105 -36.15131,2.48789 z m 21.71921,26.89812 c 31.59027,17.46677 59.76393,26.32867 95.74058,26.32867 36.00708,0 64.13408,-8.86202 95.74058,-26.32867 17.24647,24.31775 33.50921,54.47137 33.50921,86.16653 0,78.51037 -57.86396,141.21737 -129.24979,141.21737 -71.38925,0 -131.6433,-62.70659 -131.6433,-141.21737 0,-31.65332 18.61864,-61.82975 35.90272,-86.16653 z" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.8 KiB |
|
@ -1,90 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="512"
|
|
||||||
height="512"
|
|
||||||
id="svg3037"
|
|
||||||
version="1.1"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
||||||
<defs
|
|
||||||
id="defs5498" />
|
|
||||||
<metadata
|
|
||||||
id="metadata5594">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<g
|
|
||||||
id="layer3">
|
|
||||||
<g
|
|
||||||
transform="translate(-62.655652,150.77721)"
|
|
||||||
id="layer1">
|
|
||||||
<g
|
|
||||||
id="g4434"
|
|
||||||
transform="matrix(1.8356672,0,0,1.8356672,-47.148633,170.10515)">
|
|
||||||
<path
|
|
||||||
id="path3064"
|
|
||||||
d="m 229.46674,-129.81383 c -0.75476,-4.86053 -3.56544,-5.45159 -6.24114,-1.31207 l -31.78166,49.253156 c -2.66983,4.121495 -8.82923,6.87328 -13.68913,6.088133 l -57.87237,-9.320521 c -4.87143,-0.789967 -6.2992,1.697308 -3.18481,5.510067 l 37.0159,45.453812 c 3.10285,3.822611 3.81758,10.515847 1.57029,14.905834 l -26.75387,52.157528 c -2.24079,4.390825 -0.32089,6.511307 4.25752,4.736239 l 54.67498,-21.165835 c 4.59057,-1.768571 11.18383,-0.374967 14.66187,3.104535 l 41.33064,41.570418 c 3.47258,3.502557 6.09044,2.343282 5.81587,-2.575724 L 246.03886,0.04992151 c -0.27038,-4.90433521 3.08525,-10.74996551 7.48676,-12.97294051 l 52.31515,-26.464839 c 4.39313,-2.231778 4.08921,-5.076833 -0.677,-6.346775 l -56.66006,-15.006439 c -4.7614,-1.259253 -9.27022,-6.283896 -10.02603,-11.14233 l -9.01094,-57.930428" />
|
|
||||||
<path
|
|
||||||
id="path3068"
|
|
||||||
d="m 325.30385,-64.628448 -10.12978,18.601639" />
|
|
||||||
<path
|
|
||||||
id="path3070"
|
|
||||||
d="m 325.30385,-64.628448 -10.12978,18.601639" />
|
|
||||||
<path
|
|
||||||
id="path3072"
|
|
||||||
d="m 325.30594,-64.62761 c -1.99535,0.04422 -3.13975,0.189056 -3.74548,1.212513 -0.65603,1.108553 -3.69937,6.792165 -3.69937,6.792165 0,0 -3.12297,5.641065 -3.69727,6.792166 -0.53028,1.066005 -0.0335,2.104134 1.01235,3.804795 1.99326,-0.0459 3.13765,-0.190942 3.74338,-1.215028 0.65604,-1.108552 3.69728,-6.792375 3.69728,-6.792375 0,0 3.12298,-5.640226 3.69936,-6.793004 0.53028,-1.064328 0.0314,-2.102457 -1.01025,-3.801232" />
|
|
||||||
<path
|
|
||||||
id="path3074"
|
|
||||||
d="m 338.73475,-43.205439 -21.57999,0.222591" />
|
|
||||||
<path
|
|
||||||
id="path3076"
|
|
||||||
d="m 338.73475,-43.205439 -21.57999,0.222591" />
|
|
||||||
<path
|
|
||||||
id="path3078"
|
|
||||||
d="m 338.73475,-43.203971 c -1.02911,-1.75369 -1.72707,-2.698548 -2.93853,-2.730407 -1.31207,-0.03102 -7.87871,0.08195 -7.87871,0.08195 0,0 -6.57084,0.02117 -7.88291,0.0809 -1.20936,0.05743 -1.88636,1.016122 -2.87984,2.791189 1.02911,1.750336 1.72497,2.695195 2.93853,2.726424 1.31207,0.03354 7.87871,-0.08195 7.87871,-0.08195 0,0 6.57083,-0.02054 7.88291,-0.08111 1.20936,-0.0547 1.88636,-1.015073 2.87984,-2.786997" />
|
|
||||||
<path
|
|
||||||
id="path3080"
|
|
||||||
d="M 327.00157,-21.472227 315.53248,-39.82256" />
|
|
||||||
<path
|
|
||||||
id="path3082"
|
|
||||||
d="M 327.00157,-21.472227 315.53248,-39.82256" />
|
|
||||||
<path
|
|
||||||
id="path3084"
|
|
||||||
d="m 326.99948,-21.47055 c 0.96414,-1.798752 1.40639,-2.887603 0.80065,-3.94229 -0.65813,-1.139573 -4.18772,-6.701201 -4.18772,-6.701201 0,0 -3.45205,-5.609206 -4.18773,-6.699734 -0.68119,-1.00627 -1.85492,-1.085707 -3.89429,-1.007947 -0.95995,1.796237 -1.40429,2.886974 -0.79647,3.939775 0.65604,1.139783 4.18773,6.701411 4.18773,6.701411 0,0 3.45204,5.609835 4.18773,6.701201 0.68118,1.004593 1.85492,1.084868 3.8901,1.008785" />
|
|
||||||
<path
|
|
||||||
id="path3086"
|
|
||||||
d="m 301.80185,-21.130795 10.10462,-18.586129" />
|
|
||||||
<path
|
|
||||||
id="path3088"
|
|
||||||
d="m 301.80185,-21.130795 10.10462,-18.586129" />
|
|
||||||
<path
|
|
||||||
id="path3090"
|
|
||||||
d="m 301.79976,-21.130795 c 1.99326,-0.04506 3.13555,-0.192409 3.74129,-1.213351 0.65184,-1.109391 3.68888,-6.787345 3.68888,-6.787345 0,0 3.1146,-5.636873 3.69099,-6.787345 0.52818,-1.064328 0.0293,-2.10078 -1.01654,-3.798926 -1.98907,0.04674 -3.13137,0.192409 -3.735,1.214189 -0.65394,1.108553 -3.69099,6.787345 -3.69099,6.787345 0,0 -3.11459,5.636244 -3.68888,6.789022 -0.53028,1.061813 -0.0314,2.099941 1.01025,3.796411" />
|
|
||||||
<path
|
|
||||||
id="path3092"
|
|
||||||
d="m 309.91741,-42.778072 0,0" />
|
|
||||||
<path
|
|
||||||
id="path3094"
|
|
||||||
d="m 300.09155,-64.278004 11.47119,18.355993" />
|
|
||||||
<path
|
|
||||||
id="path3096"
|
|
||||||
d="m 300.09155,-64.278004 11.47119,18.355993" />
|
|
||||||
<path
|
|
||||||
id="path3098"
|
|
||||||
d="m 300.09365,-64.278842 c -0.96205,1.797914 -1.40849,2.887603 -0.80066,3.94208 0.65813,1.140621 4.18773,6.703926 4.18773,6.703926 0,0 3.45204,5.610673 4.18772,6.702039 0.68329,1.007109 1.85702,1.084869 3.89639,1.007947 0.95995,-1.797075 1.4043,-2.886974 0.79647,-3.940613 -0.65604,-1.139783 -4.18773,-6.702878 -4.18773,-6.702878 0,0 -3.45204,-5.61256 -4.18773,-6.702249 -0.68118,-1.008785 -1.85702,-1.086545 -3.89219,-1.010252" />
|
|
||||||
<path
|
|
||||||
id="path3108"
|
|
||||||
d="M 88.233453,-87.638309 C 71.983271,-69.331362 62.567802,-47.429425 60.362224,-23.048179 58.207369,0.78099211 62.033961,31.610457 79.196305,49.696281 110.79624,82.999062 169.51413,45.958766 197.21286,25.831688 202.7072,21.840353 206.5143,15.544301 211.97449,11.577698 182.74906,32.813957 127.41804,67.3277 93.957308,35.442081 76.621419,18.924035 74.091596,-11.813627 74.923273,-34.161793 c 0.941714,-25.298858 11.387766,-48.93562 28.072017,-67.730507 -4.517836,5.088361 -10.228487,9.146767 -14.761837,14.253991" />
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 5.7 KiB |
|
@ -1,47 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
width="200"
|
|
||||||
height="200"
|
|
||||||
viewBox="0 0 200 200"
|
|
||||||
id="svg2"
|
|
||||||
version="1.1">
|
|
||||||
<defs
|
|
||||||
id="defs4" />
|
|
||||||
<metadata
|
|
||||||
id="metadata7">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
<dc:title></dc:title>
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<g
|
|
||||||
id="layer1"
|
|
||||||
transform="translate(222.41168,-236.90015)">
|
|
||||||
<rect
|
|
||||||
id="rect4149-7"
|
|
||||||
width="58.534939"
|
|
||||||
height="200"
|
|
||||||
x="-80.946617"
|
|
||||||
y="236.90016" />
|
|
||||||
<rect
|
|
||||||
id="rect4149-0-6"
|
|
||||||
width="58.534939"
|
|
||||||
height="129.26881"
|
|
||||||
x="-151.68127"
|
|
||||||
y="307.63138" />
|
|
||||||
<path
|
|
||||||
id="rect4149-0-4-9"
|
|
||||||
transform="translate(-222.41168,236.90015)"
|
|
||||||
d="M 0 0 L 0 200 L 58.535156 200 L 58.535156 58.535156 L 129.26562 58.535156 L 129.26562 0 L 58.535156 0 L 20.765625 0 L 0 0 z " />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.2 KiB |