Compare commits
51 Commits
2024.12.25
...
kpham42-ge
Author | SHA1 | Date | |
---|---|---|---|
![]() |
8c35d23547 | ||
cf6da63bc6 | |||
9a2aca08c0 | |||
b9eac4bf34 | |||
0dee9ea677 | |||
![]() |
e0e2407f80 | ||
b88588bda4
|
|||
![]() |
c11661c0be | ||
![]() |
2998a56f46
|
||
![]() |
272004c2a9
|
||
8baf09e913
|
|||
87eb01d344
|
|||
d6d8332165
|
|||
f913f99747
|
|||
![]() |
6e47043503
|
||
![]() |
e380bf672f | ||
![]() |
f6767eaab7
|
||
![]() |
1e132c3b72 | ||
![]() |
7e5f6ffd8c | ||
![]() |
14712bd8cb | ||
![]() |
3a6d18e861 | ||
![]() |
b4c8aa592e
|
||
111ac3be00
|
|||
![]() |
8be1fa93c6 | ||
![]() |
5ce317abcc
|
||
![]() |
546283662f
|
||
![]() |
bee2651c68
|
||
![]() |
f44a55b03d
|
||
![]() |
172f68e2f0
|
||
6f38136498
|
|||
![]() |
28dc13eeb1 | ||
![]() |
58580b39c9 | ||
ee9b344fb2
|
|||
b0c9e3b55f
|
|||
![]() |
9335fd264f
|
||
853bb5bb1b
|
|||
3bbfa97f26
|
|||
22c77cc6b0
|
|||
c3e2dc65d8
|
|||
d904114f81
|
|||
4af33a239b
|
|||
![]() |
d5147160d6
|
||
![]() |
c2cdb83438
|
||
![]() |
6c3ea08ab1 | ||
![]() |
2e24a6dff7 | ||
![]() |
463d73f044 | ||
![]() |
a093b053c2
|
||
![]() |
c8dfb160cb
|
||
![]() |
17a0706a88
|
||
![]() |
d9d35c5f87
|
||
![]() |
317a2ee7d3 |
@@ -2956,6 +2956,35 @@
|
||||
"business",
|
||||
"fundingFinding"
|
||||
]
|
||||
},
|
||||
{
|
||||
"login": "bruch-alex",
|
||||
"name": "Alex Bruch",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/173354246?v=4",
|
||||
"profile": "https://github.com/bruch-alex",
|
||||
"contributions": [
|
||||
"translation"
|
||||
]
|
||||
},
|
||||
{
|
||||
"login": "qiyongzheng",
|
||||
"name": "qiyongzheng",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/153378707?v=4",
|
||||
"profile": "https://github.com/qiyongzheng",
|
||||
"contributions": [
|
||||
"doc"
|
||||
]
|
||||
},
|
||||
{
|
||||
"login": "hashcatHitman",
|
||||
"name": "Sam K",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/155700084?v=4",
|
||||
"profile": "https://github.com/hashcatHitman",
|
||||
"contributions": [
|
||||
"doc",
|
||||
"promotion",
|
||||
"question"
|
||||
]
|
||||
}
|
||||
],
|
||||
"contributorsPerLine": 5,
|
||||
|
17
.github/workflows/build-pr.yml
vendored
@@ -99,13 +99,24 @@ jobs:
|
||||
continue-on-error: true
|
||||
privileged: ${{ fromJSON(needs.metadata.outputs.privileged) }}
|
||||
|
||||
build_videos:
|
||||
if: ${{ contains(github.event.pull_request.labels.*.name, 'ci:build videos') }}
|
||||
needs: [submodule, metadata]
|
||||
uses: ./.github/workflows/build-videos.yml
|
||||
with:
|
||||
ref: ${{github.event.pull_request.head.ref}}
|
||||
repo: ${{github.event.pull_request.head.repo.full_name}}
|
||||
continue-on-error: true
|
||||
privileged: ${{ fromJSON(needs.metadata.outputs.privileged) }}
|
||||
|
||||
combine_build:
|
||||
needs: [build_english, build_i18n, build_blog]
|
||||
needs: [build_english, build_i18n, build_blog, build_videos]
|
||||
if: |
|
||||
(always() && !cancelled() && !failure()) &&
|
||||
needs.build_english.result == 'success' &&
|
||||
(needs.build_i18n.result == 'success' || needs.build_i18n.result == 'skipped') &&
|
||||
(needs.build_blog.result == 'success' || needs.build_blog.result == 'skipped')
|
||||
(needs.build_blog.result == 'success' || needs.build_blog.result == 'skipped') &&
|
||||
(needs.build_videos.result == 'success' || needs.build_videos.result == 'skipped')
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
@@ -127,5 +138,5 @@ jobs:
|
||||
|
||||
cleanup:
|
||||
if: ${{ always() }}
|
||||
needs: [build_english, build_i18n, build_blog]
|
||||
needs: [build_english, build_i18n, build_blog, build_videos]
|
||||
uses: privacyguides/.github/.github/workflows/cleanup.yml@main
|
||||
|
104
.github/workflows/build-videos.yml
vendored
Normal file
@@ -0,0 +1,104 @@
|
||||
name: 🛠️ Build Videos
|
||||
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
ref:
|
||||
required: true
|
||||
type: string
|
||||
repo:
|
||||
required: true
|
||||
type: string
|
||||
context:
|
||||
type: string
|
||||
default: deploy-preview
|
||||
continue-on-error:
|
||||
type: boolean
|
||||
default: true
|
||||
privileged:
|
||||
type: boolean
|
||||
default: true
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
continue-on-error: ${{ inputs.continue-on-error }}
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
steps:
|
||||
- name: Add GitHub Token to Environment
|
||||
run: |
|
||||
echo "GH_TOKEN=${{ secrets.GITHUB_TOKEN }}" >> "$GITHUB_ENV"
|
||||
|
||||
- name: Download Repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: ${{ inputs.repo }}
|
||||
ref: ${{ inputs.ref }}
|
||||
persist-credentials: "false"
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Download Submodules
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
pattern: repo-*
|
||||
path: modules
|
||||
|
||||
- name: Move mkdocs-material-insiders to mkdocs-material
|
||||
if: inputs.privileged
|
||||
run: |
|
||||
rmdir modules/mkdocs-material
|
||||
mv modules/repo-mkdocs-material-insiders modules/mkdocs-material
|
||||
|
||||
- name: Move brand submodule to theme/assets/brand
|
||||
run: |
|
||||
rmdir theme/assets/brand
|
||||
mv modules/repo-brand theme/assets/brand
|
||||
|
||||
- name: Install Python (pipenv)
|
||||
if: inputs.privileged
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
cache: "pipenv"
|
||||
|
||||
- name: Install Python (no pipenv)
|
||||
if: ${{ !inputs.privileged }}
|
||||
uses: actions/setup-python@v5
|
||||
|
||||
- name: Install Python Dependencies
|
||||
if: inputs.privileged
|
||||
run: |
|
||||
pip install pipenv
|
||||
pipenv install
|
||||
sudo apt install pngquant
|
||||
|
||||
- name: Install Python Dependencies (Unprivileged)
|
||||
if: ${{ !inputs.privileged }}
|
||||
run: |
|
||||
pip install mkdocs-material mkdocs-rss-plugin mkdocs-glightbox mkdocs-macros-plugin
|
||||
sudo apt install pngquant
|
||||
|
||||
- name: Build Website (Privileged)
|
||||
if: inputs.privileged
|
||||
run: |
|
||||
pipenv run mkdocs build --config-file mkdocs.videos.yml
|
||||
|
||||
- name: Build Website (Unprivileged)
|
||||
if: ${{ !inputs.privileged }}
|
||||
run: |
|
||||
BUILD_INSIDERS=false mkdocs build --config-file mkdocs.videos.yml
|
||||
|
||||
- name: Package Website
|
||||
run: |
|
||||
tar -czf site-build-videos.tar.gz site
|
||||
|
||||
- name: Upload Site
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: site-build-videos.tar.gz
|
||||
path: site-build-videos.tar.gz
|
||||
retention-days: 1
|
85
.github/workflows/publish-immediate.yml
vendored
Normal file
@@ -0,0 +1,85 @@
|
||||
# Copyright (c) 2021-2025 Jonah Aragon <jonah@triplebit.net>
|
||||
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
# of this software and associated documentation files (the "Software"), to
|
||||
# deal in the Software without restriction, including without limitation the
|
||||
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
# sell copies of the Software, and to permit persons to whom the Software is
|
||||
# furnished to do so, subject to the following conditions:
|
||||
|
||||
# The above copyright notice and this permission notice shall be included in
|
||||
# all copies or substantial portions of the Software.
|
||||
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
||||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
# IN THE SOFTWARE.
|
||||
|
||||
name: 📦 Immediate Releases
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- "main"
|
||||
paths:
|
||||
- "blog/**"
|
||||
- "videos/**"
|
||||
|
||||
concurrency:
|
||||
group: release-deployment
|
||||
cancel-in-progress: false
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
pages: write
|
||||
id-token: write
|
||||
deployments: write
|
||||
|
||||
jobs:
|
||||
submodule:
|
||||
strategy:
|
||||
matrix:
|
||||
repo: [mkdocs-material-insiders, brand]
|
||||
uses: privacyguides/.github/.github/workflows/download-repo.yml@main
|
||||
with:
|
||||
repo: ${{ matrix.repo }}
|
||||
secrets:
|
||||
ACTIONS_SSH_KEY: ${{ secrets.ACTIONS_SSH_KEY }}
|
||||
|
||||
build_blog:
|
||||
needs: submodule
|
||||
permissions:
|
||||
contents: read
|
||||
uses: ./.github/workflows/build-blog.yml
|
||||
with:
|
||||
repo: ${{ github.repository }}
|
||||
ref: ${{ github.ref }}
|
||||
continue-on-error: false
|
||||
|
||||
build_videos:
|
||||
needs: submodule
|
||||
permissions:
|
||||
contents: read
|
||||
uses: ./.github/workflows/build-videos.yml
|
||||
with:
|
||||
repo: ${{ github.repository }}
|
||||
ref: ${{ github.ref }}
|
||||
continue-on-error: false
|
||||
|
||||
deploy:
|
||||
needs: [build_blog, build_videos]
|
||||
uses: privacyguides/webserver/.github/workflows/deploy-garage.yml@main
|
||||
with:
|
||||
environment: production
|
||||
secrets:
|
||||
PROD_GARAGE_KEY_ID: ${{ secrets.PROD_GARAGE_KEY_ID }}
|
||||
PROD_GARAGE_SECRET_KEY: ${{ secrets.PROD_GARAGE_SECRET_KEY }}
|
||||
|
||||
cleanup:
|
||||
if: ${{ always() }}
|
||||
needs: [build_blog, build_videos]
|
||||
uses: privacyguides/.github/.github/workflows/cleanup.yml@main
|
14
.github/workflows/publish-release.yml
vendored
@@ -74,6 +74,16 @@ jobs:
|
||||
ref: ${{ github.ref }}
|
||||
continue-on-error: false
|
||||
|
||||
build_videos:
|
||||
needs: submodule
|
||||
permissions:
|
||||
contents: read
|
||||
uses: ./.github/workflows/build-videos.yml
|
||||
with:
|
||||
repo: ${{ github.repository }}
|
||||
ref: ${{ github.ref }}
|
||||
continue-on-error: false
|
||||
|
||||
release:
|
||||
name: Create release notes
|
||||
needs: build
|
||||
@@ -95,7 +105,7 @@ jobs:
|
||||
makeLatest: true
|
||||
|
||||
deploy:
|
||||
needs: [build, build_blog]
|
||||
needs: [build, build_blog, build_videos]
|
||||
uses: privacyguides/webserver/.github/workflows/deploy-all.yml@main
|
||||
secrets:
|
||||
NETLIFY_TOKEN: ${{ secrets.NETLIFY_TOKEN }}
|
||||
@@ -112,5 +122,5 @@ jobs:
|
||||
|
||||
cleanup:
|
||||
if: ${{ always() }}
|
||||
needs: [build, build_blog]
|
||||
needs: [build, build_blog, build_videos]
|
||||
uses: privacyguides/.github/.github/workflows/cleanup.yml@main
|
||||
|
2
.github/workflows/update-discussions.yml
vendored
@@ -79,4 +79,4 @@ jobs:
|
||||
secret_key: ${{ secrets.PROD_GARAGE_SECRET_KEY }}
|
||||
bucket: ${{ vars.PROD_GARAGE_BUCKET }}
|
||||
source: ./site/en/index.html
|
||||
target: /en
|
||||
target: /en/index.html
|
||||
|
@@ -28,3 +28,4 @@ no-hard-tabs: true
|
||||
emphasis-style:
|
||||
style: "asterisk"
|
||||
no-duplicate-header: false
|
||||
no-trailing-punctuation: false
|
||||
|
7
.vscode/ltex.dictionary.en-US.txt
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
Kinect
|
||||
Scanalytics
|
||||
mmWave
|
||||
TODO
|
||||
MotionScore
|
||||
GaitMetrics
|
||||
Bayometric
|
1
.vscode/ltex.disabledRules.en-US.txt
vendored
Normal file
@@ -0,0 +1 @@
|
||||
COMMA_PARENTHESIS_WHITESPACE
|
8
.vscode/ltex.hiddenFalsePositives.en-US.txt
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
{"rule":"MORFOLOGIK_RULE_EN_US","sentence":"^\\QImage Credit: Yipeng Lu\\E$"}
|
||||
{"rule":"CLOSE_SCRUTINY","sentence":"^\\QThis technology can work using only 2D footage and doesn't even require close proximity or high resolution sensors like other forms of biometrics.\\E$"}
|
||||
{"rule":"MORFOLOGIK_RULE_EN_US","sentence":"^\\QCompanies like TypingDNA claim to be able to identify users by how they type.\\E$"}
|
||||
{"rule":"MORFOLOGIK_RULE_EN_US","sentence":"^\\QImage Credit: Alireza Bilesan, Saeed Behzadipour, Teppei Tsujita, Shunsuke Komizunai, and Atsushi Konno\\E$"}
|
||||
{"rule":"MORFOLOGIK_RULE_EN_US","sentence":"^\\QImage Credit: Yousef, R.N., Khalil, A.T., Samra, A.S. et al.\\E$"}
|
||||
{"rule":"MORFOLOGIK_RULE_EN_US","sentence":"^\\QImage Credit: clockit.io\\E$"}
|
||||
{"rule":"MORFOLOGIK_RULE_EN_US","sentence":"^\\QExample of finger minutiae including forks (where one line splits into multiple lines), ends (where a line ends), islands (isolated dots), and inclosures (lines that split into two and then reconnect)\\E$"}
|
||||
{"rule":"MORFOLOGIK_RULE_EN_US","sentence":"^\\QIllustration: Jonah Aragon / Privacy Guides | Photo: Jair Lázaro / Unsplash\\E$"}
|
13
.vscode/settings.json
vendored
@@ -20,7 +20,18 @@
|
||||
|
||||
{
|
||||
"git.ignoreLimitWarning": true,
|
||||
"ltex.diagnosticSeverity": "hint",
|
||||
"ltex.diagnosticSeverity": {
|
||||
"COMMA_COMPOUND_SENTENCE": "error",
|
||||
"MORFOLOGIK_RULE_EN_US": "information",
|
||||
"HE_VERB_AGR": "hint",
|
||||
"WHETHER": "hint",
|
||||
"MAKE_SINCE": "information",
|
||||
"CLOSE_SCRUTINY": "information",
|
||||
"EN_COMPOUNDS": "warning",
|
||||
"ADMIT_ENJOY_VB": "hint",
|
||||
"ABOUT_WHO_TO": "warning",
|
||||
"default": "hint"
|
||||
},
|
||||
"editor.unicodeHighlight.ambiguousCharacters": true,
|
||||
"editor.unicodeHighlight.invisibleCharacters": true,
|
||||
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint",
|
||||
|
@@ -609,6 +609,11 @@ Privacy Guides wouldn't be possible without these wonderful people ([emoji key](
|
||||
<td align="center" valign="top" width="20%"><a rel="nofollow noopener noreferrer" href="https://github.com/PASSK3YS"><img src="https://avatars.githubusercontent.com/u/54213179?v=4" width="100px;" loading=lazy /><br /><sub><b>Kieran Colfer</b></sub></a><br /><a href="https://github.com/privacyguides/privacyguides.org/commits?author=PASSK3YS" title="Documentation">📖</a></td>
|
||||
<td align="center" valign="top" width="20%"><a rel="nofollow noopener noreferrer" href="https://github.com/SamsungGalaxyPlayer"><img src="https://avatars.githubusercontent.com/u/12520755?v=4" width="100px;" loading=lazy /><br /><sub><b>Justin Ehrenhofer</b></sub></a><br /><a href="https://github.com/privacyguides/privacyguides.org/commits?author=SamsungGalaxyPlayer" title="Documentation">📖</a> <a href="#business-SamsungGalaxyPlayer" title="Business development">💼</a> <a href="#fundingFinding-SamsungGalaxyPlayer" title="Funding Finding">🔍</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top" width="20%"><a rel="nofollow noopener noreferrer" href="https://github.com/bruch-alex"><img src="https://avatars.githubusercontent.com/u/173354246?v=4" width="100px;" loading=lazy /><br /><sub><b>Alex Bruch</b></sub></a><br /><a href="#translation-bruch-alex" title="Translation">🌍</a></td>
|
||||
<td align="center" valign="top" width="20%"><a rel="nofollow noopener noreferrer" href="https://github.com/qiyongzheng"><img src="https://avatars.githubusercontent.com/u/153378707?v=4" width="100px;" loading=lazy /><br /><sub><b>qiyongzheng</b></sub></a><br /><a href="https://github.com/privacyguides/privacyguides.org/commits?author=qiyongzheng" title="Documentation">📖</a></td>
|
||||
<td align="center" valign="top" width="20%"><a rel="nofollow noopener noreferrer" href="https://github.com/hashcatHitman"><img src="https://avatars.githubusercontent.com/u/155700084?v=4" width="100px;" loading=lazy /><br /><sub><b>Sam K</b></sub></a><br /><a href="https://github.com/privacyguides/privacyguides.org/commits?author=hashcatHitman" title="Documentation">📖</a> <a href="#promotion-hashcatHitman" title="Promotion">📣</a> <a href="#question-hashcatHitman" title="Answering Questions">💬</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<tr>
|
||||
|
@@ -8,17 +8,21 @@ authors:
|
||||
name: Dan Arel
|
||||
description: Former Team Member
|
||||
avatar: https://github.com/danarel.png
|
||||
niek-de-wilde:
|
||||
name: Niek de Wilde
|
||||
description: Team Member
|
||||
avatar: https://github.com/blacklight447.png
|
||||
mastodon:
|
||||
username: blacklight447
|
||||
instance: mastodon.social
|
||||
dngray:
|
||||
name: Daniel Gray
|
||||
description: Team Member
|
||||
avatar: https://github.com/dngray.png
|
||||
em:
|
||||
name: Em
|
||||
description: Staff Writer
|
||||
avatar: https://github.com/EmAtPrivacyGuides.png
|
||||
mastodon:
|
||||
username: Em0nM4stodon
|
||||
instance: infosec.exchange
|
||||
kevpham:
|
||||
name: Kevin Pham
|
||||
description: News Intern
|
||||
avatar: https://github.com/kpham42.png
|
||||
freddy:
|
||||
name: Freddy
|
||||
description: Team Member
|
||||
@@ -28,6 +32,10 @@ authors:
|
||||
instance: social.lol
|
||||
twitter: m00ws
|
||||
bluesky: freddy.lol
|
||||
fria:
|
||||
name: fria
|
||||
description: Team Member
|
||||
avatar: https://github.com/friadev.png
|
||||
jonah:
|
||||
name: Jonah Aragon
|
||||
description: Project Director
|
||||
@@ -53,11 +61,14 @@ authors:
|
||||
name: Nate Bartram
|
||||
description: Guest Contributor
|
||||
avatar: https://gitlab.com/uploads/-/system/user/avatar/8993331/avatar.png
|
||||
niek-de-wilde:
|
||||
name: Niek de Wilde
|
||||
description: Team Member
|
||||
avatar: https://github.com/blacklight447.png
|
||||
mastodon:
|
||||
username: blacklight447
|
||||
instance: mastodon.social
|
||||
sam-howell:
|
||||
name: Sam Howell
|
||||
description: Guest Contributor
|
||||
avatar: https://gitlab.com/uploads/-/system/user/avatar/5349522/avatar.png
|
||||
fria:
|
||||
name: fria
|
||||
description: Team Member
|
||||
avatar: https://github.com/friadev.png
|
||||
|
After Width: | Height: | Size: 95 KiB |
BIN
blog/assets/images/biometrics-explained/biometrics.webp
Normal file
After Width: | Height: | Size: 50 KiB |
BIN
blog/assets/images/biometrics-explained/capacitve-diagram.webp
Normal file
After Width: | Height: | Size: 68 KiB |
BIN
blog/assets/images/biometrics-explained/finger-minutiae.webp
Normal file
After Width: | Height: | Size: 41 KiB |
BIN
blog/assets/images/biometrics-explained/kinect-skeleton.webp
Normal file
After Width: | Height: | Size: 105 KiB |
BIN
blog/assets/images/biometrics-explained/model-free-gait.webp
Normal file
After Width: | Height: | Size: 79 KiB |
BIN
blog/assets/images/biometrics-explained/optical-diagram.webp
Normal file
After Width: | Height: | Size: 125 KiB |
After Width: | Height: | Size: 51 KiB |
BIN
blog/assets/images/biometrics-explained/ultrasonic-diagram.webp
Normal file
After Width: | Height: | Size: 46 KiB |
Before Width: | Height: | Size: 1011 KiB |
BIN
blog/assets/images/choosing-the-right-messenger/cover.webp
Normal file
After Width: | Height: | Size: 131 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/brave1.webp
Normal file
After Width: | Height: | Size: 211 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/brave2.webp
Normal file
After Width: | Height: | Size: 212 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/brave3.webp
Normal file
After Width: | Height: | Size: 79 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/brave4.webp
Normal file
After Width: | Height: | Size: 117 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/brave5.webp
Normal file
After Width: | Height: | Size: 89 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/brave6.webp
Normal file
After Width: | Height: | Size: 76 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/chrome1.webp
Normal file
After Width: | Height: | Size: 73 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/chrome2.webp
Normal file
After Width: | Height: | Size: 69 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/chrome3.webp
Normal file
After Width: | Height: | Size: 87 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/chrome4.webp
Normal file
After Width: | Height: | Size: 64 KiB |
After Width: | Height: | Size: 636 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/edge1.webp
Normal file
After Width: | Height: | Size: 246 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/edge2.webp
Normal file
After Width: | Height: | Size: 234 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/edge3.webp
Normal file
After Width: | Height: | Size: 99 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/edge4.webp
Normal file
After Width: | Height: | Size: 132 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/edge5.webp
Normal file
After Width: | Height: | Size: 44 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/firefox1.webp
Normal file
After Width: | Height: | Size: 111 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/firefox2.webp
Normal file
After Width: | Height: | Size: 115 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/firefox3.webp
Normal file
After Width: | Height: | Size: 152 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/firefox4.webp
Normal file
After Width: | Height: | Size: 52 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/firefox5.webp
Normal file
After Width: | Height: | Size: 99 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/firefox6.webp
Normal file
After Width: | Height: | Size: 151 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/history1.webp
Normal file
After Width: | Height: | Size: 142 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/history2.webp
Normal file
After Width: | Height: | Size: 94 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/history3.webp
Normal file
After Width: | Height: | Size: 44 KiB |
BIN
blog/assets/images/clearing-your-browsing-data/safari.webp
Normal file
After Width: | Height: | Size: 260 KiB |
After Width: | Height: | Size: 50 KiB |
After Width: | Height: | Size: 108 KiB |
After Width: | Height: | Size: 127 KiB |
BIN
blog/assets/images/cryptpad-review/cryptpad-calendar.webp
Normal file
After Width: | Height: | Size: 100 KiB |
BIN
blog/assets/images/cryptpad-review/cryptpad-code.webp
Normal file
After Width: | Height: | Size: 140 KiB |
BIN
blog/assets/images/cryptpad-review/cryptpad-cover.webp
Normal file
After Width: | Height: | Size: 48 KiB |
BIN
blog/assets/images/cryptpad-review/cryptpad-creatingfile.webp
Normal file
After Width: | Height: | Size: 110 KiB |
BIN
blog/assets/images/cryptpad-review/cryptpad-deletingfiles.webp
Normal file
After Width: | Height: | Size: 151 KiB |
BIN
blog/assets/images/cryptpad-review/cryptpad-diagram.webp
Normal file
After Width: | Height: | Size: 168 KiB |
BIN
blog/assets/images/cryptpad-review/cryptpad-document.webp
Normal file
After Width: | Height: | Size: 149 KiB |
BIN
blog/assets/images/cryptpad-review/cryptpad-filetypes.webp
Normal file
After Width: | Height: | Size: 131 KiB |
BIN
blog/assets/images/cryptpad-review/cryptpad-form.webp
Normal file
After Width: | Height: | Size: 147 KiB |
BIN
blog/assets/images/cryptpad-review/cryptpad-kanban.webp
Normal file
After Width: | Height: | Size: 113 KiB |
BIN
blog/assets/images/cryptpad-review/cryptpad-login.webp
Normal file
After Width: | Height: | Size: 148 KiB |
BIN
blog/assets/images/cryptpad-review/cryptpad-markdown.webp
Normal file
After Width: | Height: | Size: 132 KiB |
BIN
blog/assets/images/cryptpad-review/cryptpad-presentation.webp
Normal file
After Width: | Height: | Size: 147 KiB |
BIN
blog/assets/images/cryptpad-review/cryptpad-profile.webp
Normal file
After Width: | Height: | Size: 84 KiB |
BIN
blog/assets/images/cryptpad-review/cryptpad-richtext.webp
Normal file
After Width: | Height: | Size: 98 KiB |
BIN
blog/assets/images/cryptpad-review/cryptpad-sheet.webp
Normal file
After Width: | Height: | Size: 144 KiB |
BIN
blog/assets/images/cryptpad-review/cryptpad-trackingchanges.webp
Normal file
After Width: | Height: | Size: 152 KiB |
BIN
blog/assets/images/cryptpad-review/cryptpad-whiteboard.webp
Normal file
After Width: | Height: | Size: 128 KiB |
Before Width: | Height: | Size: 607 KiB |
BIN
blog/assets/images/delisting-startpage/cover.webp
Normal file
After Width: | Height: | Size: 61 KiB |
BIN
blog/assets/images/delisting-wire/cover.avif
Normal file
After Width: | Height: | Size: 65 KiB |
Before Width: | Height: | Size: 415 KiB |
Before Width: | Height: | Size: 955 KiB |
BIN
blog/assets/images/firefox-privacy/cover.webp
Normal file
After Width: | Height: | Size: 132 KiB |
BIN
blog/assets/images/installing-and-using-tails/cover.webp
Normal file
After Width: | Height: | Size: 58 KiB |
After Width: | Height: | Size: 106 KiB |
After Width: | Height: | Size: 253 KiB |
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 62 KiB |
After Width: | Height: | Size: 56 KiB |
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 399 KiB |
After Width: | Height: | Size: 400 KiB |
After Width: | Height: | Size: 402 KiB |
After Width: | Height: | Size: 139 KiB |
After Width: | Height: | Size: 137 KiB |
After Width: | Height: | Size: 8.4 KiB |
After Width: | Height: | Size: 73 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 226 KiB |
After Width: | Height: | Size: 67 KiB |
@@ -0,0 +1,289 @@
|
||||
<?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"
|
||||
version="1.1"
|
||||
width="445.93149"
|
||||
height="222.96574"
|
||||
id="svg3375"
|
||||
sodipodi:docname="tails-logo-flat-inverted.svg"
|
||||
inkscape:version="0.92.1 r15371">
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1600"
|
||||
inkscape:window-height="803"
|
||||
id="namedview4163"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.5474765"
|
||||
inkscape:cx="222.96574"
|
||||
inkscape:cy="111.48287"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg3375" />
|
||||
<defs
|
||||
id="defs3377" />
|
||||
<metadata
|
||||
id="metadata3380">
|
||||
<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>
|
||||
<rect
|
||||
width="445.93149"
|
||||
height="222.96574"
|
||||
x="0"
|
||||
y="0"
|
||||
id="rect5238-1-0"
|
||||
style="fill:#56347c;fill-opacity:1;stroke:none;display:inline;enable-background:new" />
|
||||
<g
|
||||
transform="matrix(0.54009561,0,0,0.54009561,100.01996,109.64097)"
|
||||
id="text3064"
|
||||
style="font-style:normal;font-weight:normal;font-size:61.55144501px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;enable-background:new">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 146.40953,78.028847 h 33.47986 V -41.412792 h 40.49252 V -69.46348 h -114.4649 v 28.050688 h 40.49252 V 78.028847"
|
||||
id="path5241"
|
||||
style="font-variant:normal;font-weight:bold;font-stretch:normal;font-size:226.21522522px;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Bold';fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 212.79027,46.811146 c 0,19.00206 12.89428,33.932283 33.25363,33.932283 12.66804,0 23.30018,-5.881604 32.80121,-14.251559 h 0.67865 l 2.48836,11.536977 h 27.14583 V 13.783723 c 0,-34.38468 -15.83509,-50.672211 -44.5644,-50.672211 -17.64477,0 -33.70608,6.10782 -47.95763,14.70399 l 11.7632,21.94287681 C 239.25744,-6.5756412 248.7585,-10.421306 258.25953,-10.421306 c 11.98939,0 16.96614,6.3340359 17.64478,16.2874959 C 231.56617,10.39049 212.79027,23.284786 212.79027,46.811146 m 31.67013,-2.488368 c 0,-8.59617 7.69134,-15.382638 31.44391,-18.549648 v 19.680724 c -5.88159,5.88159 -10.85834,9.50104 -18.54965,9.50104 -7.91752,0 -12.89426,-3.393236 -12.89426,-10.632116"
|
||||
id="path5243"
|
||||
style="font-variant:normal;font-weight:bold;font-stretch:normal;font-size:226.21522522px;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Bold';fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 351.42697,-50.687616 c 11.31075,0 19.22829,-7.238898 19.22829,-17.418573 0,-10.179675 -7.91754,-17.192357 -19.22829,-17.192357 -11.08454,0 -19.2283,7.012682 -19.2283,17.192357 0,10.179675 8.14376,17.418573 19.2283,17.418573 M 334.91326,78.028847 h 33.25363 V -34.173905 H 334.91326 V 78.028847"
|
||||
id="path5245"
|
||||
style="font-variant:normal;font-weight:bold;font-stretch:normal;font-size:226.21522522px;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Bold';fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 397.21082,43.191702 c 0,22.6215 7.69134,37.551727 30.53905,37.551727 7.4651,0 13.12049,-1.131077 16.73993,-2.714582 l -4.07187,-24.65746 c -1.80972,0.45243 -2.71459,0.452431 -4.07188,0.452431 -2.71458,0 -5.88159,-2.26216 -5.88159,-9.274825 V -80.548026 H 397.21082 V 43.191702"
|
||||
id="path5247"
|
||||
style="font-variant:normal;font-weight:bold;font-stretch:normal;font-size:226.21522522px;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Bold';fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 451.76403,65.134579 c 11.31075,9.274815 28.27692,15.60885 42.98089,15.60885 30.0866,0 46.14791,-15.835086 46.14791,-36.194436 0,-20.585565 -16.0613,-28.503123 -30.31284,-33.706068 -11.53697,-4.2980851 -21.94288,-7.0126794 -21.94288,-14.2515593 0,-5.655375 4.07189,-8.8223937 12.66806,-8.8223937 7.91752,0 15.60885,3.6194494 23.75259,9.5010393 l 14.93021,-19.9069393 c -9.72725,-7.23888 -22.39533,-14.25156 -39.58767,-14.25156 -26.01472,0 -42.98089,14.25158 -42.98089,35.0633602 0,18.5496298 16.0613,27.8244778 29.6342,33.0274228 11.53696,4.5243 22.84773,7.91754 22.84773,15.382635 0,5.88159 -4.29809,9.50104 -14.25155,9.50104 -9.50103,0 -18.77588,-4.071882 -28.95555,-11.763192 l -14.93021,20.811801"
|
||||
id="path5249"
|
||||
style="font-variant:normal;font-weight:bold;font-stretch:normal;font-size:226.21522522px;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Bold';fill:#ffffff;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.2550913,0,0,1.2550913,40.682161,35.305883)"
|
||||
id="g5374"
|
||||
style="fill:#ffffff;fill-opacity:1">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 88.342066,56.730068 v 16.662869 c 0,0.510289 -0.341075,0.643984 -0.760689,0.296591 L 79.077314,66.649116 C 78.658103,66.302056 78.317029,65.609 78.317029,65.098711 v -2.097683 l -2.657657,-2.16078 c -2.850156,-2.317289 -5.132376,-7.0217 -5.132376,-10.464763 0,-3.442323 2.29778,-4.339449 5.132376,-2.002743 l 2.657657,2.160782 v -2.097681 c 0,-0.510046 0.341074,-0.643737 0.760285,-0.296677 l 8.503862,7.040243 c 0.420546,0.346435 0.76089,1.040613 0.76089,1.550659 z M 75.81131,51.432227 c -1.50022,-1.236708 -2.716309,-0.761675 -2.716309,1.060197 0,1.822367 1.216089,4.301887 2.716309,5.538595 l 2.505719,2.035532 V 53.467516 L 75.81131,51.431984 Z"
|
||||
id="path5189-4"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.46410314,0.9267926,-0.9267926,0.46410314,77.258376,-14.89278)"
|
||||
id="g3500"
|
||||
style="fill:#ffffff;fill-opacity:1">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 97.976,37.8 C 97.972,37.779 97.968,37.758 97.963,37.737 97.947,37.669 97.927,37.602 97.901,37.538 97.898,37.53 97.896,37.522 97.893,37.515 97.863,37.446 97.826,37.38 97.786,37.317 97.775,37.299 97.762,37.283 97.75,37.266 97.715,37.216 97.676,37.169 97.634,37.125 97.623,37.113 97.613,37.101 97.601,37.089 97.548,37.037 97.49,36.989 97.428,36.946 97.413,36.935 97.396,36.927 97.38,36.917 97.349,36.898 97.32,36.877 97.288,36.86 L 96.743,36.576 71.837016,47.695585 25.252,24.269 l -0.666,0.33 c -0.006,0.003 -0.01,0.007 -0.016,0.01 -0.047,0.024 -0.09,0.055 -0.134,0.084 -0.029,0.019 -0.06,0.036 -0.087,0.057 -0.034,0.027 -0.063,0.059 -0.094,0.09 -0.031,0.03 -0.065,0.059 -0.093,0.092 -0.022,0.026 -0.039,0.056 -0.06,0.084 -0.031,0.043 -0.063,0.086 -0.088,0.132 -0.003,0.005 -0.007,0.01 -0.01,0.015 -0.015,0.028 -0.022,0.057 -0.035,0.085 -0.02,0.046 -0.041,0.09 -0.056,0.138 -0.013,0.041 -0.02,0.082 -0.029,0.123 -0.009,0.043 -0.019,0.085 -0.024,0.128 -0.005,0.043 -0.004,0.085 -0.005,0.127 -0.001,0.044 -0.003,0.087 0.001,0.13 0.002,0.023 0.005,0.046 0.009,0.069 -0.006,0.051 -0.015,0.1 -0.015,0.152 L 23.854,41.674 27.21708,40.107419 63.622,58.211 38.537615,69.347048 l -18.939,-9.469 L 2.6090632,51.38471 c -0.012,-0.006 -0.025,-0.009 -0.038,-0.014 -0.042,-0.02 -0.086,-0.035 -0.131,-0.05 -0.04,-0.014 -0.08,-0.028 -0.121,-0.038 -0.038,-0.009 -0.078,-0.014 -0.117,-0.019 -0.049,-0.007 -0.098,-0.014 -0.148,-0.015 -0.013,0 -0.024,-0.004 -0.037,-0.004 -0.025,0 -0.049,0.006 -0.074,0.007 -0.05,0.004 -0.099,0.007 -0.148,0.016 -0.04,0.007 -0.079,0.017 -0.118,0.027 -0.043,0.011 -0.085,0.024 -0.127,0.039 -0.039,0.015 -0.077,0.032 -0.114,0.051 -0.039,0.019 -0.077,0.039 -0.115,0.062 -0.035,0.022 -0.068,0.045 -0.1,0.07 -0.035,0.027 -0.07,0.054 -0.103,0.085 -0.031,0.029 -0.059,0.059 -0.087,0.09 -0.028,0.032 -0.056,0.064 -0.082,0.099 -0.028,0.038 -0.052,0.079 -0.076,0.12 -0.013,0.023 -0.03,0.042 -0.042,0.066 -0.006,0.012 -0.008,0.025 -0.014,0.037 -0.02,0.043 -0.036,0.089 -0.051,0.135 -0.013,0.039 -0.027,0.078 -0.036,0.117 -0.009,0.04 -0.014,0.081 -0.02,0.122 -0.007,0.048 -0.013,0.095 -0.014,0.142 0.001,0.014 -0.003,0.026 -0.003,0.039 v 19.531 c 0,0.026 0.006,0.051 0.008,0.077 0.003,0.048 0.006,0.096 0.014,0.143 0.007,0.042 0.017,0.082 0.028,0.122 0.011,0.042 0.023,0.083 0.038,0.123 0.015,0.04 0.033,0.079 0.052,0.117 0.019,0.038 0.038,0.076 0.061,0.112 0.022,0.035 0.046,0.069 0.071,0.102 0.027,0.035 0.054,0.069 0.084,0.102 0.028,0.031 0.059,0.059 0.09,0.087 0.032,0.029 0.064,0.056 0.1,0.082 0.038,0.027 0.077,0.051 0.118,0.075 0.023,0.014 0.043,0.031 0.068,0.043 L 37.945615,91.543048 c 0.007,0.004 0.015,0.004 0.022,0.008 0.017,0.008 0.032,0.017 0.049,0.025 0.01,0.004 0.02,0.007 0.03,0.011 0.056,0.022 0.113,0.041 0.171,0.055 0.012,0.003 0.024,0.006 0.036,0.009 0.016,0.003 0.032,0.005 0.048,0.008 0.077,0.014 0.154,0.024 0.232,0.024 0.001,0 0.002,0 0.003,0 h 0.001 10e-4 c 10e-4,0 0.002,0 0.003,0 0.078,0 0.156,-0.01 0.232,-0.024 0.016,-0.003 0.032,-0.005 0.048,-0.008 0.012,-0.003 0.024,-0.006 0.036,-0.009 0.058,-0.014 0.115,-0.033 0.17,-0.055 0.01,-0.004 0.021,-0.007 0.031,-0.011 0.017,-0.007 0.032,-0.017 0.049,-0.024 0.007,-0.003 0.015,-0.004 0.022,-0.008 L 61.746,81.642 l 9.462,5.221 c 0.018,0.01 0.037,0.017 0.056,0.026 0.019,0.01 0.038,0.02 0.058,0.029 0.008,0.003 0.016,0.007 0.024,0.01 0.031,0.013 0.063,0.023 0.095,0.033 0.019,0.006 0.038,0.013 0.058,0.019 0.021,0.006 0.043,0.011 0.064,0.015 0.015,0.003 0.029,0.006 0.044,0.008 0.007,0.001 0.015,0.003 0.022,0.004 0.014,0.002 0.028,0.006 0.042,0.008 0.059,0.008 0.117,0.013 0.176,0.013 h 0.001 0.001 c 10e-4,0 0.002,0 0.003,0 0.078,0 0.155,-0.01 0.232,-0.024 0.013,-0.002 0.026,-0.003 0.039,-0.006 0.01,-0.002 0.019,-0.006 0.029,-0.008 0.07,-0.017 0.14,-0.037 0.207,-0.065 0.007,-0.003 0.014,-0.007 0.021,-0.01 0.004,-0.002 0.008,-0.004 0.012,-0.006 0.006,-0.003 0.012,-0.003 0.018,-0.006 L 97.238,75.317 C 97.703,75.098 98,74.631 98,74.117 V 38.034 C 98,38.028 97.998,38.023 97.998,38.017 97.997,37.943 97.989,37.871 97.976,37.8 Z m -60.762385,40.617048 -7.614,3.666 3.972,1.986 3.641,-1.986 v 6.29 L 3.3410632,71.43771 v -9.829 l 8.6775518,4.241338 -7.2569997,3.35 3.972,1.986 7.2689997,-3.378 4.313,2.051 -7.487,3.456 3.972,1.986 7.503,-3.482 4.621,2.344 -7.381,3.407 3.972,1.986 7.395,-3.434 4.303,2.111 z M 65.228,76.939 39.861615,88.216048 v -16.57 L 65.228,60.37 Z M 3.3410632,58.52771 v -3.31 L 37.213615,71.821048 v 3.31 z"
|
||||
id="path3502"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
</g>
|
||||
<polygon
|
||||
points="45.366,56.241 39.076,59.22 33.117,56.241 39.407,53.262 "
|
||||
transform="rotate(63.400001,48.43115,48.892589)"
|
||||
id="polygon3506"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<polygon
|
||||
points="29.145,47.634 35.103,50.613 28.814,53.593 22.855,50.613 "
|
||||
transform="rotate(63.400001,48.414793,48.413403)"
|
||||
id="polygon3508"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0,-0.2492475,0.19547686,0.16114179,71.005984,62.192969)"
|
||||
id="Captions"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<g
|
||||
transform="translate(122.10986,-55.111168)"
|
||||
id="Captions-7"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 45.058193,34.347585 c 2.124399,2.704098 4.295157,7.985437 4.295157,12.865587 0,4.87818 -2.170758,6.542025 -4.295157,5.703941 0,-1.998055 0,-16.795084 0,-18.569528 z"
|
||||
id="path4818-2-4-3"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<g
|
||||
transform="translate(74.936297,109.72221)"
|
||||
id="Your_Icon"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.53512829,0,0,0.50600414,141.30837,-72.432434)"
|
||||
id="g3777"
|
||||
style="fill:#ffffff;fill-opacity:1;enable-background:new">
|
||||
<g
|
||||
transform="matrix(1.1068913,-0.00147632,0.00147632,1.1068913,82.041299,617.01076)"
|
||||
id="text3014-8-5-8-6-2-4"
|
||||
style="font-style:normal;font-weight:normal;font-size:46.73732758px;line-height:79.00000215%;font-family:Sans;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;display:inline;fill:#ffffff;fill-opacity:1;stroke:none;enable-background:new">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -44.825494,-126.19021 c 0,2.58576 0.811813,4.35971 3.608044,4.35971 0.60134,0 1.503352,-0.24053 2.345228,-0.5412 l -0.360805,-1.08241 c -0.511138,0.24053 -1.262815,0.451 -1.804021,0.451 -1.984422,0 -2.435429,-1.23275 -2.435429,-3.06684 v -9.41098 h 4.179316 v -1.14254 h -4.179316 v -4.17932 h -1.142548 l -0.180402,4.17932 -2.285094,0.12027 v 1.02227 h 2.255027 v 9.29072"
|
||||
id="path4089"
|
||||
style="font-variant:normal;font-weight:300;font-stretch:normal;font-size:30.06702805px;line-height:79.00000215%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -35.760285,-122.1913 h 1.32295 v -10.88426 c 1.773953,-1.80402 3.006704,-2.70604 4.720523,-2.70604 2.345226,0 3.307373,1.44322 3.307373,4.51006 v 9.08024 h 1.322949 v -9.26064 c 0,-3.72831 -1.383086,-5.53234 -4.359719,-5.53234 -1.984422,0 -3.487776,1.11248 -4.991126,2.61583 v -3.1871 -6.25394 h -1.32295 v 21.61819"
|
||||
id="path4091"
|
||||
style="font-variant:normal;font-weight:300;font-stretch:normal;font-size:30.06702805px;line-height:79.00000215%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -21.107306,-129.37732 c 0,4.72052 2.976639,7.54682 6.67488,7.54682 2.10469,0 3.397575,-0.7216 4.5401213,-1.41315 l -0.5412063,-1.02227 c -1.082412,0.78174 -2.315163,1.29288 -3.878647,1.29288 -3.247236,0 -5.381998,-2.61584 -5.442132,-6.25394 h 10.4031918 c 0.060134,-0.36081 0.060134,-0.72161 0.060134,-1.08242 0,-4.23944 -2.1046958,-6.67488 -5.5323328,-6.67488 -3.217169,0 -6.284009,2.88644 -6.284009,7.60696 m 1.353016,-0.87194 c 0.30067,-3.45771 2.495566,-5.59247 4.96106,-5.59247 2.585762,0 4.239451,1.89423 4.239451,5.59247 h -9.200511"
|
||||
id="path4093"
|
||||
style="font-variant:normal;font-weight:300;font-stretch:normal;font-size:30.06702805px;line-height:79.00000215%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -6.7526479,-126.34055 c 0,2.52563 1.7138233,4.51005 4.4198532,4.51005 1.68375184,0 3.09690511,-0.78174 4.359719,-1.89422 h 0.090201 l 0.3307373,1.53342 H 6.055906 v -8.53904 c 0,-4.57018 -2.1046958,-6.73501 -5.92320455,-6.73501 -2.34522585,0 -4.47998905,0.81181 -6.37420995,1.95436 l 1.5634855,2.9165 c 1.4432159,-0.84188 2.7060338,-1.35302 3.96884767,-1.35302 1.59355089,0 2.25502723,0.84188 2.34522823,2.16483 -5.8931316,0.60134 -8.3887009,2.31516 -8.3887009,5.44213 m 4.209384,-0.33074 c 0,-1.14254 1.0222821,-2.04455 4.1793169,-2.46549 v 2.61583 c -0.78174199,0.78174 -1.44321841,1.26281 -2.46549634,1.26281 -1.05234496,0 -1.71382056,-0.451 -1.71382056,-1.41315"
|
||||
id="path4095"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Source Sans Pro Bold';fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 9.8203923,-122.1913 h 4.4198527 v -10.07245 c 0.932077,-0.96215 1.804023,-1.44322 2.525631,-1.44322 1.262814,0 1.834088,0.66148 1.834088,2.8263 v 8.68937 h 4.419854 v -10.07245 c 0.962144,-0.96215 1.804022,-1.44322 2.555697,-1.44322 1.262814,0 1.834089,0.66148 1.834089,2.8263 v 8.68937 h 4.419853 v -9.26064 c 0,-3.72831 -1.443221,-6.01341 -4.66039,-6.01341 -1.984421,0 -3.367508,1.14255 -4.690456,2.49556 -0.751675,-1.59355 -2.014493,-2.49556 -4.119183,-2.49556 -1.954355,0 -3.277307,1.05235 -4.510054,2.28509 h -0.120268 l -0.30067,-1.92429 H 9.8203923 v 14.91325"
|
||||
id="path4097"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Source Sans Pro Bold';fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 35.600517,-122.1913 h 4.419853 v -10.07245 c 0.962144,-0.93208 1.653688,-1.44322 2.766167,-1.44322 1.262814,0 1.834088,0.66148 1.834088,2.8263 v 8.68937 h 4.419853 v -9.26064 c 0,-3.72831 -1.383086,-6.01341 -4.630322,-6.01341 -2.014489,0 -3.517843,1.05235 -4.780657,2.25503 h -0.120268 l -0.300671,-1.89423 h -3.608043 v 14.91325"
|
||||
id="path4099"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Source Sans Pro Bold';fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 51.934902,-129.64792 c 0,4.93099 3.277311,7.81742 7.546825,7.81742 1.773952,0 3.75838,-0.6314 5.291796,-1.68375 l -1.473284,-2.67596 c -1.082412,0.66147 -2.104693,0.99221 -3.217172,0.99221 -1.984422,0 -3.487776,-0.99222 -3.878647,-3.24724 h 8.929908 c 0.0902,-0.36081 0.180402,-1.08242 0.180402,-1.86416 0,-4.05904 -2.104696,-7.15595 -6.344143,-7.15595 -3.577973,0 -7.035685,2.97664 -7.035685,7.81743 m 4.239451,-1.53342 c 0.30067,-1.98442 1.503353,-2.9165 2.886435,-2.9165 1.773953,0 2.495563,1.20268 2.495563,2.9165 h -5.381998"
|
||||
id="path4101"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Source Sans Pro Bold';fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 67.045932,-123.90512 c 1.50335,1.23275 3.75838,2.07462 5.712735,2.07462 3.998911,0 6.133674,-2.10469 6.133674,-4.81072 0,-2.7361 -2.134761,-3.78845 -4.028982,-4.47999 -1.533417,-0.57127 -2.916502,-0.93208 -2.916502,-1.89422 0,-0.75167 0.541208,-1.17261 1.683754,-1.17261 1.052345,0 2.074626,0.48107 3.157038,1.26281 l 1.984424,-2.6459 c -1.292881,-0.96214 -2.976638,-1.89422 -5.26173,-1.89422 -3.457705,0 -5.712736,1.89423 -5.712736,4.66039 0,2.46549 2.134761,3.69824 3.938781,4.38979 1.533417,0.60134 3.03677,1.05234 3.03677,2.04455 0,0.78175 -0.571275,1.26282 -1.894223,1.26282 -1.262814,0 -2.495565,-0.54121 -3.848579,-1.56349 l -1.984424,2.76617"
|
||||
id="path4103"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Source Sans Pro Bold';fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 83.894272,-139.29944 c 1.50335,0 2.555697,-0.96214 2.555697,-2.31516 0,-1.35301 -1.052347,-2.28509 -2.555697,-2.28509 -1.473283,0 -2.555698,0.93208 -2.555698,2.28509 0,1.35302 1.082415,2.31516 2.555698,2.31516 m -2.194893,17.10814 h 4.419853 v -14.91325 h -4.419853 v 14.91325"
|
||||
id="path4105"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Source Sans Pro Bold';fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 89.107617,-129.64792 c 0,4.96105 3.217176,7.81742 7.366422,7.81742 1.623617,0 3.517843,-0.60134 4.961061,-1.86415 l -1.773956,-2.79623 c -0.721608,0.57127 -1.593554,1.08241 -2.675966,1.08241 -1.924288,0 -3.33744,-1.65369 -3.33744,-4.23945 0,-2.58576 1.353018,-4.23945 3.487775,-4.23945 0.691541,0 1.353017,0.2706 2.074625,0.87194 l 2.014492,-2.7361 c -0.99221,-1.02228 -2.525633,-1.71382 -4.35972,-1.71382 -4.119179,0 -7.757293,2.85637 -7.757293,7.81743"
|
||||
id="path4107"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Source Sans Pro Bold';fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 105.5181,-140.11125 c 0.66147,0 1.20268,-0.48107 1.20268,-1.17261 0,-0.75168 -0.54121,-1.20268 -1.20268,-1.20268 -0.66148,0 -1.20268,0.451 -1.20268,1.20268 0,0.69154 0.5412,1.17261 1.20268,1.17261 m -0.69154,17.91995 h 1.32295 v -14.43217 h -1.32295 v 14.43217"
|
||||
id="path4109"
|
||||
style="font-variant:normal;font-weight:300;font-stretch:normal;font-size:30.06702805px;line-height:79.00000215%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 111.69735,-122.1913 h 1.32294 v -10.88426 c 1.77396,-1.80402 3.00671,-2.70604 4.72053,-2.70604 2.34522,0 3.30737,1.44322 3.30737,4.51006 v 9.08024 h 1.32295 v -9.26064 c 0,-3.72831 -1.38309,-5.53234 -4.35972,-5.53234 -1.98442,0 -3.48778,1.11248 -4.96106,2.58577 h -0.0902 l -0.12027,-2.22496 h -1.14254 v 14.43217"
|
||||
id="path4111"
|
||||
style="font-variant:normal;font-weight:300;font-stretch:normal;font-size:30.06702805px;line-height:79.00000215%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 126.46778,-129.37732 c 0,4.78065 2.8263,7.54682 6.55461,7.54682 1.83409,0 3.36751,-0.81181 4.60026,-1.92428 l -0.69155,-0.90202 c -0.99221,0.90201 -2.31516,1.65369 -3.84858,1.65369 -3.15703,0 -5.23166,-2.58577 -5.23166,-6.37421 0,-3.81851 2.2851,-6.43434 5.23166,-6.43434 1.41315,0 2.49557,0.66147 3.42765,1.53342 l 0.78174,-0.93208 c -0.96215,-0.90201 -2.25503,-1.77396 -4.23945,-1.77396 -3.51784,0 -6.58468,2.76617 -6.58468,7.60696"
|
||||
id="path4113"
|
||||
style="font-variant:normal;font-weight:300;font-stretch:normal;font-size:30.06702805px;line-height:79.00000215%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 139.44593,-129.37732 c 0,4.78065 3.0067,7.54682 6.46441,7.54682 3.48777,0 6.49448,-2.76617 6.49448,-7.54682 0,-4.84079 -3.00671,-7.60696 -6.49448,-7.60696 -3.45771,0 -6.46441,2.76617 -6.46441,7.60696 m 1.38308,0 c 0,-3.81851 2.16483,-6.43434 5.08133,-6.43434 2.9165,0 5.11139,2.61583 5.11139,6.43434 0,3.78844 -2.19489,6.37421 -5.11139,6.37421 -2.9165,0 -5.08133,-2.58577 -5.08133,-6.37421"
|
||||
id="path4115"
|
||||
style="font-variant:normal;font-weight:300;font-stretch:normal;font-size:30.06702805px;line-height:79.00000215%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 156.7993,-119.365 c 0,-1.02228 0.57128,-2.13476 1.89423,-3.03677 0.75167,0.1804 1.50335,0.24054 1.80402,0.24054 h 3.0969 c 2.16483,0 3.33744,0.60134 3.33744,2.19489 0,1.80402 -2.07463,3.63811 -5.32186,3.63811 -3.06684,0 -4.81073,-1.23275 -4.81073,-3.03677 m -1.26281,0.12027 c 0,2.43543 2.2851,3.99891 5.9232,3.99891 4.14925,0 6.82522,-2.37529 6.82522,-4.87085 0,-2.2851 -1.50336,-3.30738 -4.75059,-3.30738 h -3.09691 c -2.16482,0 -2.76616,-0.84188 -2.76616,-1.89422 0,-0.96214 0.5412,-1.56349 1.17261,-2.07463 0.66148,0.39088 1.59356,0.60135 2.40536,0.60135 2.8263,0 5.0212,-2.13477 5.0212,-5.08133 0,-1.53342 -0.66148,-2.8263 -1.59355,-3.63811 h 3.3675 v -1.11248 h -4.90092 c -0.45101,-0.1804 -1.11248,-0.36081 -1.89423,-0.36081 -2.82629,0 -5.08132,2.1047 -5.08132,5.08133 0,1.74389 0.90201,3.18711 1.80402,3.96885 v 0.12027 c -0.63141,0.451 -1.56349,1.35301 -1.56349,2.64589 0,1.11248 0.54121,1.89423 1.26282,2.31517 v 0.12026 c -1.32295,0.96215 -2.13476,2.22497 -2.13476,3.48778 m 5.71273,-8.59917 c -2.01448,0 -3.75837,-1.62362 -3.75837,-4.05905 0,-2.46549 1.71382,-3.99891 3.75837,-3.99891 2.04456,0 3.72832,1.56348 3.72832,3.99891 0,2.43543 -1.74389,4.05905 -3.72832,4.05905"
|
||||
id="path4117"
|
||||
style="font-variant:normal;font-weight:300;font-stretch:normal;font-size:30.06702805px;line-height:79.00000215%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 171.36161,-122.1913 h 1.32295 v -10.88426 c 1.77395,-1.80402 3.0067,-2.70604 4.72052,-2.70604 2.34522,0 3.30737,1.44322 3.30737,4.51006 v 9.08024 h 1.32295 v -9.26064 c 0,-3.72831 -1.38308,-5.53234 -4.35972,-5.53234 -1.98442,0 -3.48777,1.11248 -4.96106,2.58577 h -0.0902 l -0.12027,-2.22496 h -1.14254 v 14.43217"
|
||||
id="path4119"
|
||||
style="font-variant:normal;font-weight:300;font-stretch:normal;font-size:30.06702805px;line-height:79.00000215%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 188.02626,-140.11125 c 0.66148,0 1.20268,-0.48107 1.20268,-1.17261 0,-0.75168 -0.5412,-1.20268 -1.20268,-1.20268 -0.66147,0 -1.20268,0.451 -1.20268,1.20268 0,0.69154 0.54121,1.17261 1.20268,1.17261 m -0.69154,17.91995 h 1.32295 v -14.43217 h -1.32295 v 14.43217"
|
||||
id="path4121"
|
||||
style="font-variant:normal;font-weight:300;font-stretch:normal;font-size:30.06702805px;line-height:79.00000215%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 194.53623,-126.19021 c 0,2.58576 0.81181,4.35971 3.60804,4.35971 0.60134,0 1.50336,-0.24053 2.34523,-0.5412 l -0.3608,-1.08241 c -0.51114,0.24053 -1.26282,0.451 -1.80402,0.451 -1.98443,0 -2.43543,-1.23275 -2.43543,-3.06684 v -9.41098 h 4.17931 v -1.14254 h -4.17931 v -4.17932 h -1.14255 l -0.1804,4.17932 -2.2851,0.12027 v 1.02227 h 2.25503 v 9.29072"
|
||||
id="path4123"
|
||||
style="font-variant:normal;font-weight:300;font-stretch:normal;font-size:30.06702805px;line-height:79.00000215%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 202.10514,-129.37732 c 0,4.78065 3.0067,7.54682 6.46441,7.54682 3.48777,0 6.49448,-2.76617 6.49448,-7.54682 0,-4.84079 -3.00671,-7.60696 -6.49448,-7.60696 -3.45771,0 -6.46441,2.76617 -6.46441,7.60696 m 1.38308,0 c 0,-3.81851 2.16483,-6.43434 5.08133,-6.43434 2.9165,0 5.11139,2.61583 5.11139,6.43434 0,3.78844 -2.19489,6.37421 -5.11139,6.37421 -2.9165,0 -5.08133,-2.58577 -5.08133,-6.37421"
|
||||
id="path4125"
|
||||
style="font-variant:normal;font-weight:300;font-stretch:normal;font-size:30.06702805px;line-height:79.00000215%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 218.58659,-126.82162 c 0,3.0067 1.02228,4.99112 4.05904,4.99112 0.99222,0 1.74389,-0.15033 2.22496,-0.3608 l -0.5412,-3.27731 c -0.24054,0.0601 -0.36081,0.0601 -0.54121,0.0601 -0.3608,0 -0.78174,-0.30067 -0.78174,-1.23275 v -16.62707 h -4.41985 v 16.44667"
|
||||
id="path4127"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Source Sans Pro Bold';fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 229.35527,-139.29944 c 1.50335,0 2.5557,-0.96214 2.5557,-2.31516 0,-1.35301 -1.05235,-2.28509 -2.5557,-2.28509 -1.47328,0 -2.5557,0.93208 -2.5557,2.28509 0,1.35302 1.08242,2.31516 2.5557,2.31516 m -2.19489,17.10814 h 4.41985 v -14.91325 h -4.41985 v 14.91325"
|
||||
id="path4129"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Source Sans Pro Bold';fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 238.8682,-122.1913 h 5.1114 l 4.87085,-14.91325 H 244.611 l -1.95435,7.03569 c -0.39088,1.47328 -0.78175,3.03677 -1.14255,4.60025 h -0.12027 c -0.39087,-1.56348 -0.78174,-3.12697 -1.17261,-4.60025 l -1.92429,-7.03569 h -4.44992 l 5.02119,14.91325"
|
||||
id="path4131"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Source Sans Pro Bold';fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 250.07191,-129.64792 c 0,4.93099 3.27731,7.81742 7.54683,7.81742 1.77395,0 3.75838,-0.6314 5.29179,-1.68375 l -1.47328,-2.67596 c -1.08241,0.66147 -2.1047,0.99221 -3.21717,0.99221 -1.98443,0 -3.48778,-0.99222 -3.87865,-3.24724 h 8.92991 c 0.0902,-0.36081 0.1804,-1.08242 0.1804,-1.86416 0,-4.05904 -2.1047,-7.15595 -6.34414,-7.15595 -3.57798,0 -7.03569,2.97664 -7.03569,7.81743 m 4.23945,-1.53342 c 0.30067,-1.98442 1.50335,-2.9165 2.88644,-2.9165 1.77395,0 2.49556,1.20268 2.49556,2.9165 h -5.382"
|
||||
id="path4133"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Source Sans Pro Bold';fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 265.51369,-123.81492 c 1.29288,1.08241 3.15704,1.98442 5.29179,1.98442 3.12697,0 4.87086,-1.89422 4.87086,-4.05904 0,-2.8263 -2.4655,-3.57798 -4.72052,-4.41986 -1.71382,-0.6314 -3.39758,-1.26281 -3.39758,-2.9165 0,-1.32295 1.02228,-2.61583 3.24724,-2.61583 1.47329,0 2.49557,0.57127 3.45771,1.29288 l 0.72161,-0.93208 c -1.05235,-0.87194 -2.58577,-1.50335 -4.11918,-1.50335 -3.0067,0 -4.66039,1.74389 -4.66039,3.84858 0,2.4655 2.40536,3.33744 4.60025,4.11919 1.65369,0.60134 3.51784,1.38308 3.51784,3.1871 0,1.53342 -1.17261,2.85637 -3.42764,2.85637 -2.07462,0 -3.36751,-0.81181 -4.60025,-1.83409 l -0.78174,0.99221"
|
||||
id="path4135"
|
||||
style="font-variant:normal;font-weight:300;font-stretch:normal;font-size:30.06702805px;line-height:79.00000215%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 277.72983,-117.0799 -0.30068,1.17261 c 0.39088,0.1804 0.93208,0.30067 1.47329,0.30067 2.58576,0 4.02898,-2.3753 4.84079,-4.78066 l 5.71274,-16.23619 h -1.35302 l -3.0969,9.08024 c -0.39087,1.20268 -0.87195,2.76617 -1.32295,4.02898 h -0.12027 c -0.54121,-1.26281 -1.11248,-2.8263 -1.56349,-4.02898 l -3.48777,-9.08024 h -1.44322 l 5.92321,14.70277 -0.39088,1.26282 c -0.7216,2.19489 -1.92429,3.81851 -3.69824,3.81851 -0.42094,0 -0.87194,-0.12027 -1.17261,-0.24053"
|
||||
id="path4137"
|
||||
style="font-variant:normal;font-weight:300;font-stretch:normal;font-size:30.06702805px;line-height:79.00000215%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 290.7653,-123.81492 c 1.29288,1.08241 3.15704,1.98442 5.2918,1.98442 3.12697,0 4.87086,-1.89422 4.87086,-4.05904 0,-2.8263 -2.4655,-3.57798 -4.72053,-4.41986 -1.71381,-0.6314 -3.39757,-1.26281 -3.39757,-2.9165 0,-1.32295 1.02228,-2.61583 3.24724,-2.61583 1.47328,0 2.49556,0.57127 3.45771,1.29288 l 0.72161,-0.93208 c -1.05235,-0.87194 -2.58577,-1.50335 -4.11919,-1.50335 -3.0067,0 -4.66039,1.74389 -4.66039,3.84858 0,2.4655 2.40537,3.33744 4.60026,4.11919 1.65368,0.60134 3.51784,1.38308 3.51784,3.1871 0,1.53342 -1.17261,2.85637 -3.42764,2.85637 -2.07462,0 -3.36751,-0.81181 -4.60025,-1.83409 l -0.78175,0.99221"
|
||||
id="path4139"
|
||||
style="font-variant:normal;font-weight:300;font-stretch:normal;font-size:30.06702805px;line-height:79.00000215%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 305.05607,-126.19021 c 0,2.58576 0.81181,4.35971 3.60804,4.35971 0.60134,0 1.50335,-0.24053 2.34523,-0.5412 l -0.36081,-1.08241 c -0.51113,0.24053 -1.26281,0.451 -1.80402,0.451 -1.98442,0 -2.43543,-1.23275 -2.43543,-3.06684 v -9.41098 h 4.17932 v -1.14254 h -4.17932 v -4.17932 h -1.14254 l -0.18041,4.17932 -2.28509,0.12027 v 1.02227 h 2.25503 v 9.29072"
|
||||
id="path4141"
|
||||
style="font-variant:normal;font-weight:300;font-stretch:normal;font-size:30.06702805px;line-height:79.00000215%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 312.62497,-129.37732 c 0,4.72052 2.97664,7.54682 6.67488,7.54682 2.10469,0 3.39758,-0.7216 4.54013,-1.41315 l -0.54121,-1.02227 c -1.08241,0.78174 -2.31516,1.29288 -3.87865,1.29288 -3.24723,0 -5.382,-2.61584 -5.44213,-6.25394 h 10.40319 c 0.0601,-0.36081 0.0601,-0.72161 0.0601,-1.08242 0,-4.23944 -2.1047,-6.67488 -5.53234,-6.67488 -3.21717,0 -6.28401,2.88644 -6.28401,7.60696 m 1.35302,-0.87194 c 0.30067,-3.45771 2.49557,-5.59247 4.96106,-5.59247 2.58576,0 4.23945,1.89423 4.23945,5.59247 h -9.20051"
|
||||
id="path4143"
|
||||
style="font-variant:normal;font-weight:300;font-stretch:normal;font-size:30.06702805px;line-height:79.00000215%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 328.33263,-122.1913 h 1.32295 v -10.88426 c 1.59355,-1.80402 3.03677,-2.70604 4.32965,-2.70604 2.22496,0 3.24724,1.44322 3.24724,4.51006 v 9.08024 h 1.32295 v -10.88426 c 1.59355,-1.80402 2.97664,-2.70604 4.32965,-2.70604 2.19489,0 3.21717,1.44322 3.21717,4.51006 v 9.08024 h 1.35302 v -9.26064 c 0,-3.72831 -1.44322,-5.53234 -4.32965,-5.53234 -1.65369,0 -3.24724,1.14255 -4.90093,2.94657 -0.51114,-1.77395 -1.68375,-2.94657 -3.99891,-2.94657 -1.59355,0 -3.24724,1.11248 -4.54012,2.58577 h -0.0902 l -0.12027,-2.22496 h -1.14255 v 14.43217"
|
||||
id="path4145"
|
||||
style="font-variant:normal;font-weight:300;font-stretch:normal;font-size:30.06702805px;line-height:79.00000215%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 68 KiB |
After Width: | Height: | Size: 79 KiB |