Compare commits

..

13 Commits

Author SHA1 Message Date
Reynir Björnsson 745cb3c472 Fix gf2021 årstal 2021-03-10 18:54:04 +01:00
reynir 8a883a7ca4 Indkald til generalforsamling 2021 (#25)
Redirect to dokumenter repo directory for /gf2021. Remove gf2020 page. Change link on index.

Co-authored-by: Víðir Valberg Guðmundsson <valberg@orn.li>
Reviewed-on: #25
2021-03-10 17:44:50 +00:00
reynir e1b2c9acd6 Tilføj link til vedtægter og AUP i blivmedlem (#22)
Tilføj link til renderede vedtægter og AUP

Co-authored-by: Thomas Jespersen <t@laumann.xyz>
Co-authored-by: Reynir Björnsson <reynir@reynir.dk>
Reviewed-on: #22
2021-01-15 13:31:10 +00:00
reynir d57322a070 Merge pull request 'Tilføj note om gf2020 password' (#21) from gf2020 into master
Reviewed-on: #21
2020-12-10 19:45:24 +00:00
Reynir Björnsson a477a94974 Tilføj note om gf2020 password 2020-12-10 11:28:38 +01:00
benjaoming 8fbd8eb418 Merge pull request 'Indkaldelse til generalforsamling 2020' (#18) from gf2020 into master
Reviewed-on: #18
2020-12-08 19:26:41 +00:00
Reynir Björnsson e8d8d677ab Remove redundant title
Co-authored-by: Jesper Hess <jesper@graffen.dk>
2020-12-08 17:19:35 +01:00
Reynir Björnsson 5db1a70c49 General assembly is members only 2020-12-08 17:09:51 +01:00
Reynir Björnsson ae75944a3d Update meeting time, add jitsi link 2020-12-08 17:05:33 +01:00
Reynir Björnsson cc6a1789ec
New pages go into _pages I guess 2020-12-05 16:40:29 +01:00
Reynir Björnsson 042ad55563
Indkaldelse til generalforsamling 2020 2020-12-05 16:40:28 +01:00
Jesper Hess c1bee81e11 Merge pull request 'Add pull request condition to drone config' (#20) from fix-drone into master
Reviewed-on: #20
2020-12-05 15:31:40 +00:00
Jesper Hess 5bda28be42
Tweaking drone config to better support PRs 2020-12-05 16:22:33 +01:00
145 changed files with 1802 additions and 3495 deletions

View File

@ -2,30 +2,14 @@ kind: pipeline
name: default
steps:
# stable site
- name: build_stable
image: klakegg/hugo:ext-alpine-ci
environment:
HUGO_SECURITY_HTTP_URLS: none
- name: build
image: ruby
commands:
- hugo --destination _site/
when:
branch:
- main
# staging site
- name: build_staging
image: klakegg/hugo:ext-alpine-ci
environment:
HUGO_SECURITY_HTTP_URLS: none
commands:
- hugo --baseURL "https://staging.data.coop" --destination _site/
when:
branch:
- staging
# stable site
- name: docker_stable
- gem install bundler
- bundle install
- bundle exec jekyll build
- name: docker
image: plugins/docker
settings:
repo: docker.data.coop/data-coop-website
@ -34,47 +18,23 @@ steps:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD
tags:
tags:
- "${DRONE_BUILD_NUMBER}"
- "stable"
- "latest"
when:
branch:
- main
- master
event:
exclude:
- pull_request
# staging site
- name: docker_staging
image: plugins/docker
- name: notify
image: plugins/matrix
settings:
repo: docker.data.coop/data-coop-website
registry: docker.data.coop
homeserver: https://data.coop
roomid: plKSghHbepWeUEtbHE:data.coop
username:
from_secret: DOCKER_USERNAME
from_secret: matrix_username
password:
from_secret: DOCKER_PASSWORD
tags:
- "${DRONE_BUILD_NUMBER}"
- "staging"
when:
branch:
- staging
event:
exclude:
- pull_request
# - name: notify
# image: spotlightkid/drone-matrixchat-notify:latest
# settings:
# homeserver: https://data.coop
# roomid: '!plKSghHbepWeUEtbHE:data.coop'
# userid:
# from_secret: matrix_username
# password:
# from_secret: matrix_password
# markdown: 'yes'
# template: |
# `${DRONE_REPO}` build #${DRONE_BUILD_NUMBER} status: **${DRONE_BUILD_STATUS}**
#
# ${DRONE_PULL_REQUEST_TITLE}](${DRONE_COMMIT_LINK})
from_secret: matrix_password

14
.gitignore vendored
View File

@ -1,11 +1,5 @@
# Vim stuff
.*.swp
.*.swo
# Hugo stuff
public
resources
.hugo_build.lock
# From docker build
_site
.sass-cache
.jekyll-metadata
Gemfile.lock
.bundle/config

26
Gemfile Normal file
View File

@ -0,0 +1,26 @@
source "https://rubygems.org"
ruby RUBY_VERSION
# Hello! This is where you manage which Jekyll version is used to run.
# When you want to use a different version, change it below, save the
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
#
# bundle exec jekyll serve
#
# This will help ensure the proper Jekyll version is running.
# Happy Jekylling!
gem "jekyll", ">= 3.8.5"
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
# uncomment the line below. To upgrade, run `bundle update github-pages`.
# gem "github-pages", group: :jekyll_plugins
# If you have any plugins, put them here!
group :jekyll_plugins do
gem "jekyll-feed", "~> 0.6"
gem "jekyll-sitemap"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

View File

@ -1,63 +1,25 @@
data.coop-website
=================
# The data.coop website
[![Build Status](https://drone.data.coop/api/badges/data.coop/website/status.svg)](https://drone.data.coop/data.coop/website)
This is a [Hugo](https://gohugo.io/) project.
## Building the site
Running with Docker
-------------------
The site is built using [Jekyll](https://jekyllrb.com)
The simplest way to work with the site and code is to use Docker.
In `docker-compose.yml`, we have specified a `serve` target which you can run locally like this:
```bash
docker-compose up serve
```
git clone https://git.data.coop/data.coop/website.git data.coop
cd data.coop
docker-compose up
```
Running without Docker
----------------------
This will fire up the website inside a Docker container and start listening on port 4000.
Simply connect your browser to http://localhost:4000 and you're good to go. In development
mode, the site has the [jekyll:livereload](https://github.com/RobertDeRose/jekyll-livereload) extension enabled, allowing you to see your changes immediately
upon saving files in the source directory.
Go to [Hugo Github release](https://github.com/gohugoio/hugo/releases)
and fetch the latest package for **hugo\_extended** for your system.
If you change anything in `Gemfile` you need to run `docker-compose run jekyll bundle update` to update all your dependencies.
We want to align with the latest version always. If it doesn't work,
file an issue!
Example recipe
```bash
# Fetch .deb from Github
wget https://github.com/gohugoio/hugo/releases/download/v0.80.0/hugo_extended_X.Y.Z_Linux-64bit.deb -O hugo_extended.deb
# Install package
sudo dpkg -i hugo_extended.deb
# Clone repo
git clone https://git.data.coop/data.coop/website.git data.coop-website
# Go to website
cd data.coop-website
# Run development server
hugo server
```
Deploying the site
------------------
Simply pushing to `main` in our main repo at
<https://git.data.coop/data.coop/website/> will trigger a
build-and-deploy of the website.
Multilingual notes
------------------
Our website is made multi-lingual using the following 3 structures:
1. The folder `i18n/` contains translations of strings used in the
theme.
2. Each content article and news text has a language version such
`content/<slug>.en.md`
3. The `config.yaml` contains settings specific to each language, such
as navigation.
## Deploying the site
Simply pushing to `master` in our main repo at https://git.data.coop/data.coop/website/ will trigger a build-and-deploy of the website.

40
_config.yml Normal file
View File

@ -0,0 +1,40 @@
# Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
# Site settings
# These are used to personalize your new site. If you look in the HTML files,
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
name: data.coop
email: kontakt@data.coop
description: > # this means to ignore newlines until "baseurl:"
et datakollektiv der passer på dine data.
baseurl: "" # the subpath of your site, e.g. /blog
url: "" # the base hostname & protocol for your site, e.g. http://example.com
footer-links:
- twitter: datacoopdk
- email: kontakt@data.coop
# Build settings
markdown: kramdown
plugins:
- jekyll-feed
- jekyll-sitemap
exclude:
- Gemfile
- Gemfile.lock
- docker-compose.yml
- build.sh
- .drone.yml
- .gitignre
include: ['_pages']

16
_includes/analytics.html Normal file
View File

@ -0,0 +1,16 @@
{% if site.google_analytics %}
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', '{{ site.google_analytics }}', 'auto');
ga('send', 'pageview', {
'page': '{{ site.baseurl }}{{ page.url }}',
'title': '{{ page.title | replace: "'", "\\'" }}'
});
</script>
<!-- End Google Analytics -->
{% endif %}

17
_includes/disqus.html Normal file
View File

@ -0,0 +1,17 @@
{% if site.disqus %}
<div class="comments">
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_shortname = '{{ site.disqus }}';
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</div>
{% endif %}

18
_includes/meta.html Normal file
View File

@ -0,0 +1,18 @@
<meta charset="utf-8" />
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0'>
{% if page.excerpt %}
<meta name="description" content="{{ page.excerpt| strip_html }}" />
<meta property="og:description" content="{{ page.excerpt| strip_html }}" />
{% else %}
<meta name="description" content="{{ site.description }}">
<meta property="og:description" content="{{ site.description }}" />
{% endif %}
<meta name="author" content="{{ site.name }}" />
{% if page.title %}
<meta property="og:title" content="{{ page.title }}" />
<meta property="twitter:title" content="{{ page.title }}" />
{% endif %}

13
_includes/svg-icons.html Normal file
View File

@ -0,0 +1,13 @@
{% if site.footer-links.dribbble %}<a href="https://dribbble.com/{{ site.footer-links.dribbble }}"><i class="svg-icon dribbble"></i></a>{% endif %}
{% if site.footer-links.email %}<a href="mailto:{{ site.footer-links.email }}"><i class="svg-icon email"></i></a>{% endif %}
{% if site.footer-links.facebook %}<a href="https://www.facebook.com/{{ site.footer-links.facebook }}"><i class="svg-icon facebook"></i></a>{% endif %}
{% if site.footer-links.flickr %}<a href="https://www.flickr.com/{{ site.footer-links.flickr }}"><i class="svg-icon flickr"></i></a>{% endif %}
{% if site.footer-links.github %}<a href="https://github.com/{{ site.footer-links.github }}"><i class="svg-icon github"></i></a>{% endif %}
{% if site.footer-links.instagram %}<a href="https://instagram.com/{{ site.footer-links.instagram }}"><i class="svg-icon instagram"></i></a>{% endif %}
{% if site.footer-links.linkedin %}<a href="https://www.linkedin.com/in/{{ site.footer-links.linkedin }}"><i class="svg-icon linkedin"></i></a>{% endif %}
{% if site.footer-links.pinterest %}<a href="https://www.pinterest.com/{{ site.footer-links.pinterest }}"><i class="svg-icon pinterest"></i></a>{% endif %}
{% if site.footer-links.rss %}<a href="{{ site.baseurl }}/feed.xml"><i class="svg-icon rss"></i></a>{% endif %}
{% if site.footer-links.twitter %}<a href="https://www.twitter.com/{{ site.footer-links.twitter }}"><i class="svg-icon twitter"></i></a>{% endif %}
{% if site.footer-links.stackoverflow %}<a href="http://stackoverflow.com/{{ site.footer-links.stackoverflow }}"><i class="svg-icon stackoverflow"></i></a>{% endif %}
{% if site.footer-links.youtube %}<a href="https://youtube.com/{{ site.footer-links.youtube }}"><i class="svg-icon youtube"></i></a>{% endif %}
{% if site.footer-links.googleplus %}<a href="https://plus.google.com/{{ site.footer-links.googleplus }}"><i class="svg-icon googleplus"></i></a>{% endif %}

51
_layouts/default.html Normal file
View File

@ -0,0 +1,51 @@
<!DOCTYPE html>
<html>
<head>
<title>{% if page.title %}{{ page.title }} {% endif %}{{ site.name }} {{ site.description }}</title>
{% include meta.html %}
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/assets/css/style.css" />
<link rel="alternate" type="application/rss+xml" title="{{ site.name }} - {{ site.description }}" href="{{ site.baseurl }}/feed.xml" />
<!-- Created with Jekyll Now - http://github.com/barryclark/jekyll-now -->
</head>
<body>
<div class="wrapper-masthead">
<div class="container">
<header class="masthead clearfix">
<!-- <a href="{{ site.baseurl }}/" class="site-avatar"><img src="{{ site.baseurl }}/images/datacoop-logo.png" /></a> -->
<div class="site-info">
<h1 class="site-name"><a href="{{ site.baseurl }}/">{{ site.name }}</a></h1>
<p class="site-description">{{ site.description }}</p>
</div>
<nav>
{% for page in site.pages %}
{% unless page.in_menu == false %}
{% if page.title %}
<a href="{{ page.url | relative-url }}">{{ page.title }}</a>
{% endif %}
{% endunless %}
{% endfor %}
</nav>
</header>
</div>
</div>
<div id="main" role="main" class="container">
{{ content }}
</div>
<div class="wrapper-footer">
<div class="container">
<footer class="footer">
Siden blev genereret: {{ "now" | date: "%Y-%m-%d %H:%M" }} UTC med Jekyll {{jekyll.version}}
</footer>
</div>
</div>
<script type="text/javascript" src="/js/datacoop.js"></script>
</body>
</html>

12
_layouts/page.html Normal file
View File

@ -0,0 +1,12 @@
---
layout: default
---
<article class="page">
<h1>{{ page.title }}</h1>
<div class="entry">
{{ content }}
</div>
</article>

17
_layouts/post.html Normal file
View File

@ -0,0 +1,17 @@
---
layout: default
---
<article class="post">
<h1>{{ page.title }}</h1>
<div class="entry">
{{ content }}
</div>
<div class="date">
Written on {{ page.date | date: "%B %e, %Y" }}
</div>
{% include disqus.html %}
</article>

View File

@ -5,7 +5,7 @@ in_menu: false
permalink: /tjenester/badges/
---
På [listen over vores tjenester](/services/) er hver enkelt tjeneste tildelt
På [listen over vores tjenester](/tjenester/) er hver enkelt tjeneste tildelt
en række badges, der deklarerer i hvor høj grad tjenesten lever op til
[kerneprincipperne defineret i formålsparagraffen i vores
vedtægter](/_pages/vedtaegter.html#-2-form%C3%A5l). Her følger en generel

25
_pages/blivmedlem.md Normal file
View File

@ -0,0 +1,25 @@
---
layout: page
title: Bliv medlem
permalink: /medlem/
---
[data.coop](https://data.coop) er en demokratisk forening. Medlemmer bestemmer
over foreningens generelle drift og hvordan data skal forvaltes. Dette sker som
i en helt klassisk forening i henhold til vores vedtægter på den årlige
generalforsamling.
Du bliver medlem ved at overføre penge til vores konto og sende en email til
vores kasserer, [benjaoming@data.coop](mailto:benjaoming@data.coop), med dit navn.
* Reg. 8401 (Merkur)
* Kontonr. 1016866
* Tekst på overførslen: Fornavn+efternavn
Årligt kontingent: **300 kr** (dog gerne mere)<br>
(nedsat kontingent er 50 kr. for studerende/arbejdsløse)
Kontingent-perioden gælder for det år, man melder sig ind i.
Vedtægter og Acceptable Usage Policy, og deres versionshistorik, kan læses i vores [git repository](https://git.data.coop/data.coop/dokumenter).
Læs her vores [vedtægter](https://git.data.coop/data.coop/dokumenter/src/branch/master/Vedtaegter.md) og [AUP](https://git.data.coop/data.coop/dokumenter/src/branch/master/Acceptable%20Usage%20Policy.md).

13
_pages/gf2021.md Normal file
View File

@ -0,0 +1,13 @@
---
layout: page
title: Generalforsamling 2021
permalink: /gf2021/
---
<meta http-equiv="Refresh" content="0; url='https://git.data.coop/data.coop/dokumenter/src/branch/master/generalforsamlinger/2021'" />
# Du bliver nu viderestillet til siden med dokumenter for generalforsamling 2021.
Hvis der ikke sker noget kan du trykke på følgende link:
<a href="https://git.data.coop/data.coop/dokumenter/src/branch/master/generalforsamlinger/2021">https://git.data.coop/data.coop/dokumenter/src/branch/master/generalforsamlinger/2021</a>

31
_pages/om.md Normal file
View File

@ -0,0 +1,31 @@
---
layout: page
title: Om os
permalink: /om/
---
**data.coop** er en forening og et kooperativ, som er nystartet. Visionen
er, at vi medlemmerne i kooperativet ejer vores egne data.
Dette indebærer en del og har som konsekvens, at vi bliver nødt til at eje
vores egen infrastruktur og have indblik i og kontrol over den software,
som vi bruger til at kommunikere på nettet. Ret forsimplet betyder dette:
* At vi ejer vores egen hardware
* At vi kun bruger open source software
Vi går med begge ben på jorden, så for rent faktisk at kunne starte rigtigt
op, kan vi ikke stille urealistiske krav: At køre åben hardware eller
drive services såsom egne søgemaskiner er således ikke inden for rammerne.
Til gengæld regner vi med at drive en række af de fede open source projekter,
som allerede findes til e-mail, kalender, dokumentdeling og SOME.
Vi ønsker pr. 2018 støttemedlemmer til at dække vores omkostninger.
Foreningen råder over 2 rack servere. Vi er ved at opbygge et medlemssystem
og afprøver nogle prototyper til den fremtidige hosting og infrastruktur.
Du kan finde os på:
* Freenode IRC, **#data.coop**.
* Keybase, **datacoop**
* Vores [Gitea server](https://git.data.coop/data.coop/)

195
_pages/tjenester.md Normal file
View File

@ -0,0 +1,195 @@
---
layout: page
title: Tjenester
permalink: /tjenester/
---
Her er en oversigt over de tjenester vi tilbyder. Nogle er [kun for vores
medlemmer](#tjenester-der-kun-er-for-vores-medlemmer), andre er [åbne for
alle](#tjenester-der-er-åbne-for-alle).
Alle tjenester er markeret med nogle badges, der deklarerer i hvor høj grad den
enkelte tjeneste lever op til [kerneprincipperne defineret i formålsparagraffen
i vores vedtægter](/_pages/vedtaegter.html#-2-form%C3%A5l). Vi har også skrevet
en uddybning af [hvad de forskellige badges dækker over](/tjenester/badges/).
## Tjenester der kun er for vores medlemmer
<h3 class="service nextcloud"><a href="https://cloud.data.coop/">Nextcloud</a> filer, kalender, adressebog</h3>
<section class="service-details">
<p>Gem dine filer, din kalender og dine kontakter i skyen og tilgå alt fra alle dine enheder.</p>
<h4>Badges</h4>
<ul class="badges">
<li>
<span class="badge badge-negative badge-stable">Negativ:</span>
<a href="/tjenester/badges/#stabilitet">
Tjenesten er <em>ikke</em> stabil endnu
</a>
</li>
<li>
<span class="badge badge-positive badge-secure-connection">Positiv:</span>
<a href="/tjenester/badges/#sikker-forbindelse">
Sikker forbindelse
</a>
</li>
<li>
<span class="badge badge-negative badge-encrypted-data-storage">Negativ:</span>
<a href="/tjenester/badges/#krypteret-opbevaring-af-data">
Data opbevares <em>ikke</em> krypteret
</a>
</li>
<li>
<span class="badge badge-negative badge-zero-knowledge">Negativ:</span>
<a href="/tjenester/badges/#zero-knowledge">
<em>Ikke</em> omfattet af zero knowledge
</a>
</li>
<li>
<span class="badge badge-negative badge-backup">Negativ:</span>
<a href="/tjenester/badges/#backup">
<em>Ingen</em> backup af data
</a>
</li>
<li>
<span class="badge badge-negative badge-logging">Negativ:</span>
<a href="/tjenester/badges/#logning">
Der foretages logning
</a>
</li>
<li>
<span class="badge badge-partial badge-anonymous-access">Delvis:</span>
<a href="/tjenester/badges/#anonym-adgang">
Delvis anonym adgang
</a>[1]
</li>
</ul>
<p class="badge-notes">
[1] Det kræver login at sende data til skyen. Men det er muligt at dele
dine data med andre (eller dig selv) uden at de skal logge ind.
</p>
</section>
<!--
<h3 class="service"><a href="https://pad.data.coop">CodiMD</a> - markdown baseret noteprogram</h3>
<section class="service-details">
<p>Skriv og del noter.</p>
<h4>Badges</h4>
<p>Klassifikation på vej.</p>
</section>
-->
## Tjenester der er åbne for alle
<h3 class="service gitea"><a href="https://git.data.coop/">Gitea</a> hosting af <a href="https://da.wikipedia.org/wiki/Git">git-versionsstyringssystem</a></h3>
<section class="service-details">
<p>Skriver du kode eller anden tekst som du gerne vil holde under versionsstyring, kan du gemme det her.</p>
<h4>Badges</h4>
<ul class="badges">
<li>
<span class="badge badge-negative badge-stable">Negativ:</span>
<a href="/tjenester/badges/#stabilitet">
Tjenesten er <em>ikke</em> stabil endnu
</a>
</li>
<li>
<span class="badge badge-positive badge-secure-connection">Positiv:</span>
<a href="/tjenester/badges/#sikker-forbindelse">
Sikker forbindelse
</a>
</li>
<li>
<span class="badge badge-negative badge-encrypted-data-storage">Negativ:</span>
<a href="/tjenester/badges/#krypteret-opbevaring-af-data">
Data opbevares <em>ikke</em> krypteret
</a>
</li>
<li>
<span class="badge badge-negative badge-zero-knowledge">Negativ:</span>
<a href="/tjenester/badges/#zero-knowledge">
<em>Ikke</em> omfattet af zero knowledge
</a>
</li>
<li>
<span class="badge badge-negative badge-backup">Negativ:</span>
<a href="/tjenester/badges/#backup">
<em>Ingen</em> backup af data
</a>
</li>
<li>
<span class="badge badge-negative badge-logging">Negativ:</span>
<a href="/tjenester/badges/#logning">
Der foretages logning
</a>
</li>
<li>
<span class="badge badge-partial badge-anonymous-access">Delvis:</span>
<a href="/tjenester/badges/#anonym-adgang">
Delvis anonym adgang
</a>[1]
</li>
</ul>
<p class="badge-notes">
[1] Offentligt tilgængelige repositories kan tilgås af alle, uden at være logget ind.
</p>
</section>
<h3 class="service passit"><a href="https://passit.data.coop/">Passit</a> password manager</h3>
<section class="service-details">
<p>Hjælper dig med at huske stærke, unikke kodeord til alle de sites og apps du benytter dig af.</p>
<h4>Badges</h4>
<ul class="badges">
<li>
<span class="badge badge-negative badge-stable">Negativ:</span>
<a href="/tjenester/badges/#stabilitet">
Tjenesten er <em>ikke</em> stabil endnu
</a>
</li>
<li>
<span class="badge badge-positive badge-secure-connection">Positiv:</span>
<a href="/tjenester/badges/#sikker-forbindelse">
Sikker forbindelse
</a>
</li>
<li>
<span class="badge badge-positive badge-encrypted-data-storage">Positiv:</span>
<a href="/tjenester/badges/#krypteret-opbevaring-af-data">
Data opbevares krypteret
</a>
</li>
<li>
<span class="badge badge-partial badge-zero-knowledge">Delvis:</span>
<a href="/tjenester/badges/#zero-knowledge">
Omfattet af zero knowledge
</a>[1]
</li>
<li>
<span class="badge badge-negative badge-backup">Negativ:</span>
<a href="/tjenester/badges/#backup">
<em>Ingen</em> backup af data
</a>
</li>
<li>
<span class="badge badge-negative badge-logging">Negativ:</span>
<a href="/tjenester/badges/#logning">
Der foretages logning
</a>
</li>
<li>
<span class="badge badge-negative badge-anonymous-access">Negativ:</span>
<a href="/tjenester/badges/#anonym-adgang">
Der er <em>ikke</em> anonym adgang
</a>
</li>
</ul>
<p class="badge-notes">
[1] Al brugerdata (navne, websites, kodeord, noter osv.) er krypteret så det kun er brugerne selv der kan tilgå deres data. Der foretages dog stadig logning af brugen af tjenesten, så helt 100% ZN er det ikke.
</p>
</section>

118
_pages/vedtaegter.md Normal file
View File

@ -0,0 +1,118 @@
---
layout: page
title: Vedtægter
---
# § 1. Navn og tilhørsforhold
Foreningens navn er: data.coop
Foreningens hjemsted er Københavns Kommune, men primært internettet.
# § 2. Formål
Foreningen data.coop ønsker at stille digital infrastruktur til rådighed for
sine medlemmer, på en måde hvor foreningens kerneprincipper --
privatlivsbeskyttelse, kryptering, decentralisering og zero-knowledge for
foreningen som tjenesteudbyder -- er i fokus. Ydermere vil foreningen advokere
for sine kerneprincipper, hjælpe folk til at at agere på nettet på forsvarlig
vis, samt samarbejde med andre datafællesskaber/hjælpe andre i gang med lign.
foreninger.
# § 3. Organisation
Foreningens overordnede ledelse er generalforsamlingen, som består af medlemmer med gyldigt medlemsbevis.
Generalforsamlingen vælger:
- En bestyrelse på 5 personer
- 2 suppleanter for bestyrelsen
- 1 revisor
- Evt. 1 suppleant for revisor
Valg til bestyrelsen sker for en periode på 2 år, således at mindst 2 personer
er på valg hvert år. Revisor og suppleanter er på valg hvert år.
# § 4. Generalforsamlingen
Bestyrelsen indkalder generalforsamlingen med mindst 14 dages varsel via
foreningens hjemmeside og mailinglister. Ordinær generalforsamling afholdes
hvert år inden udgangen af september måned. Dagsorden for ordinær
generalforsamling skal indeholde følgende punkter:
1. Valg af dirigent og referent.
1. Bestyrelsens beretning.
1. Fremlæggelse af regnskab, budget og kontingent.
1. Indkomne forslag. Forslag skal være modtaget af bestyrelsen senest en uge før generalforsamlingen.
1. Godkendelse af vedtægtsændringer og Acceptable Use Policy
1. Valg (Jf. § 3)
1. Eventuelt
## § 4.1. Afholdelse af generalforsamlinger og bestyrelsesmøder
Generalforsamlinger og bestyrelsesmøder kan afholdes på internettet.
# § 5. Foreningens bestyrelse
Foreningens daglige ledelse forestås af bestyrelsen (Jf. § 3). Bestyrelsen
konstituerer sig selv med formand, næstformand og kasserer. Bestyrelsen
uddelegerer den daglige drift til et forretningsudvalg, som består af formand,
næstformand og kasserer.
Bestyrelsen udarbejder regnskab og budget.
Bestyrelsen fastsætter selv sin forretningsorden.
Bestyrelsen kan sammensætte samarbejdsgrupper af medlemmer, der kan fungerer
som idéudviklingsforum for foreningen.
Tegningsret for foreningen har formanden og kassereren, dog ved køb, salg eller
pantsætning af fast ejendom, indgåelse af driftsaftaler samt ved optagelse af
lån, af den samlede bestyrelse.
# § 6. Medlemskab
Som medlem kan enhver fysisk person optages, som har interesse i at støtte
foreningens formål. Medlemskab er bindende for et år ad gangen.
Bestyrelsen kan ekskludere medlemmer fra foreningen, hvis disse har handlet i
uoverenstemmelse med Acceptable Use Policy (AUP).
# § 7. Kontingent/finansiering
De årlige kontingenter fastsættes af generalforsamlingen.
Foreningen kan herudover finansieres ved sponsor- og annoncestøtte samt bidrag
fra offentlige/private virksomheder, fonde, øvrige foreninger/institutioner og
private personer, så længe det ikke stiller krav til foreningens dispositioner.
# § 8. Vedtægtsændringer
Vedtægtsændringer kræver et flertal på ¾ af generalforsamlingens fremmødte
medlemmer.
# § 9. Ekstraordinær generalforsamling
Indkaldelse sker, hvis et flertal af bestyrelsen ønsker det.
Indkaldelse sker, hvis 1/3 af medlemmerne ønsker det.
Indkaldelse sker under samme betingelser, som anført i §4.
Dagsorden skal motiveres.
# § 10. Regnskab
Regnskabsåret for Foreningen er kalenderåret.
# § 11. Opløsning
Opløsning af foreningen kræver et flertal på ¾ af generalforsamlingens eller
den ekstraordinære generalforsamlings fremmødte medlemmer.
Opløsningen skal herefter godkendes på en efterfølgende ekstraordinær
generalforsamling.
Ved opløsning af foreningen skal foreningens midler overdrages til European
Digital Rights (EDRi) og Free Software Foundation Europe (FSFE).
Foreningen data.coop er stiftet den 24 juni 2014.

View File

@ -0,0 +1,10 @@
---
title: Første spadestik
layout: post
---
# Så er vi i gang!
Vi er i gang med, at opbygge en hjemmeside for foreningen. Indtil videre kan du følge med
i foreningens arbejde på vores [GitLab server](https://git.data.coop/data.coop/pm). Har du
lyst til at blive medlem og være med til at opbygge vores datakollektiv så vil du snarest
kunne finde informationer om, hvordan og hvorledes her på siden.

94
_sass/_datacoop.scss Normal file
View File

@ -0,0 +1,94 @@
.badge:before {
font-family: monospace;
border: .1em solid #000;
border-radius: 1.1em;
width: 2em;
height: 2em;
margin-bottom: -.6em;
margin-right: .5em;
overflow: hidden;
display: inline-block;
text-indent: 10em;
background: #ccc center center;
background-size: contain;
content: "";
}
.badge-positive:before {
background-color: #4c4;
}
.badge-partial:before {
background-color: #fd4;
}
.badge-negative:before {
background-color: #f44;
}
.badge-stable:before {
background-image: url(/images/badges/stable.svg);
}
.badge-secure-connection:before {
background-image: url(/images/badges/secure-connection.svg);
}
.badge-encrypted-data-storage:before {
background-image: url(/images/badges/encrypted-data-storage.svg);
}
.badge-zero-knowledge:before {
background-image: url(/images/badges/zero-knowledge.svg);
}
.badge-backup:before {
background-image: url(/images/badges/backup.svg);
}
.badge-logging:before {
background-image: url(/images/badges/logging.svg);
}
.badge-anonymous-access:before {
background-image: url(/images/badges/anonymous-access.svg);
}
.badge-credits,
.badge-notes {
color: #888;
font-size: .75em;
}
.service-details ul.badges {
list-style-type: none;
margin: 0 0 0 .5em;
padding: 0;
}
.service-details ul.badges li {
margin: .5em 0;
}
.hidden {
display: none;
}
.service {
text-indent: 2.25em;
background-size: contain;
background-position: top left;
background-repeat: no-repeat;
}
.service.nextcloud {
background-image: url(/images/logos/nextcloud.png);
}
.service.gitea {
background-image: url(/images/logos/gitea.png);
}
.service.passit {
background-image: url(/images/logos/passit.png);
}

84
_sass/_highlights.scss Normal file
View File

@ -0,0 +1,84 @@
.highlight {
background-color: #efefef;
padding: 7px 7px 7px 10px;
border: 1px solid #ddd;
-moz-box-shadow: 3px 3px rgba(0,0,0,0.1);
-webkit-box-shadow: 3px 3px rgba(0,0,0,0.1);
box-shadow: 3px 3px rgba(0,0,0,0.1);
margin: 20px 0 20px 0;
overflow: scroll;
}
code {
font-family:'Bitstream Vera Sans Mono','Courier', monospace;
}
.highlight .c { color: #586E75 } /* Comment */
.highlight .err { color: #93A1A1 } /* Error */
.highlight .g { color: #93A1A1 } /* Generic */
.highlight .k { color: #859900 } /* Keyword */
.highlight .l { color: #93A1A1 } /* Literal */
.highlight .n { color: #93A1A1 } /* Name */
.highlight .o { color: #859900 } /* Operator */
.highlight .x { color: #CB4B16 } /* Other */
.highlight .p { color: #93A1A1 } /* Punctuation */
.highlight .cm { color: #586E75 } /* Comment.Multiline */
.highlight .cp { color: #859900 } /* Comment.Preproc */
.highlight .c1 { color: #586E75 } /* Comment.Single */
.highlight .cs { color: #859900 } /* Comment.Special */
.highlight .gd { color: #2AA198 } /* Generic.Deleted */
.highlight .ge { color: #93A1A1; font-style: italic } /* Generic.Emph */
.highlight .gr { color: #DC322F } /* Generic.Error */
.highlight .gh { color: #CB4B16 } /* Generic.Heading */
.highlight .gi { color: #859900 } /* Generic.Inserted */
.highlight .go { color: #93A1A1 } /* Generic.Output */
.highlight .gp { color: #93A1A1 } /* Generic.Prompt */
.highlight .gs { color: #93A1A1; font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #CB4B16 } /* Generic.Subheading */
.highlight .gt { color: #93A1A1 } /* Generic.Traceback */
.highlight .kc { color: #CB4B16 } /* Keyword.Constant */
.highlight .kd { color: #268BD2 } /* Keyword.Declaration */
.highlight .kn { color: #859900 } /* Keyword.Namespace */
.highlight .kp { color: #859900 } /* Keyword.Pseudo */
.highlight .kr { color: #268BD2 } /* Keyword.Reserved */
.highlight .kt { color: #DC322F } /* Keyword.Type */
.highlight .ld { color: #93A1A1 } /* Literal.Date */
.highlight .m { color: #2AA198 } /* Literal.Number */
.highlight .s { color: #2AA198 } /* Literal.String */
.highlight .na { color: #93A1A1 } /* Name.Attribute */
.highlight .nb { color: #B58900 } /* Name.Builtin */
.highlight .nc { color: #268BD2 } /* Name.Class */
.highlight .no { color: #CB4B16 } /* Name.Constant */
.highlight .nd { color: #268BD2 } /* Name.Decorator */
.highlight .ni { color: #CB4B16 } /* Name.Entity */
.highlight .ne { color: #CB4B16 } /* Name.Exception */
.highlight .nf { color: #268BD2 } /* Name.Function */
.highlight .nl { color: #93A1A1 } /* Name.Label */
.highlight .nn { color: #93A1A1 } /* Name.Namespace */
.highlight .nx { color: #555 } /* Name.Other */
.highlight .py { color: #93A1A1 } /* Name.Property */
.highlight .nt { color: #268BD2 } /* Name.Tag */
.highlight .nv { color: #268BD2 } /* Name.Variable */
.highlight .ow { color: #859900 } /* Operator.Word */
.highlight .w { color: #93A1A1 } /* Text.Whitespace */
.highlight .mf { color: #2AA198 } /* Literal.Number.Float */
.highlight .mh { color: #2AA198 } /* Literal.Number.Hex */
.highlight .mi { color: #2AA198 } /* Literal.Number.Integer */
.highlight .mo { color: #2AA198 } /* Literal.Number.Oct */
.highlight .sb { color: #586E75 } /* Literal.String.Backtick */
.highlight .sc { color: #2AA198 } /* Literal.String.Char */
.highlight .sd { color: #93A1A1 } /* Literal.String.Doc */
.highlight .s2 { color: #2AA198 } /* Literal.String.Double */
.highlight .se { color: #CB4B16 } /* Literal.String.Escape */
.highlight .sh { color: #93A1A1 } /* Literal.String.Heredoc */
.highlight .si { color: #2AA198 } /* Literal.String.Interpol */
.highlight .sx { color: #2AA198 } /* Literal.String.Other */
.highlight .sr { color: #DC322F } /* Literal.String.Regex */
.highlight .s1 { color: #2AA198 } /* Literal.String.Single */
.highlight .ss { color: #2AA198 } /* Literal.String.Symbol */
.highlight .bp { color: #268BD2 } /* Name.Builtin.Pseudo */
.highlight .vc { color: #268BD2 } /* Name.Variable.Class */
.highlight .vg { color: #268BD2 } /* Name.Variable.Global */
.highlight .vi { color: #268BD2 } /* Name.Variable.Instance */
.highlight .il { color: #2AA198 } /* Literal.Number.Integer.Long */

53
_sass/_reset.scss Normal file
View File

@ -0,0 +1,53 @@
/***************/
/* MEYER RESET */
/***************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
// HTML5 display-role reset for older browsers
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
// Apply a natural box layout model to all elements
// from: http://www.paulirish.com/2012/box-sizing-border-box-ftw/
*, *:before, *:after {
-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

20
_sass/_svg-icons.scss Normal file

File diff suppressed because one or more lines are too long

27
_sass/_variables.scss Normal file
View File

@ -0,0 +1,27 @@
//
// VARIABLES
//
// Colors
$blue: #4183C4;
// Grays
$black: #000;
$darkerGray: #222;
$darkGray: #333;
$gray: #666;
$lightGray: #eee;
$white: #fff;
// Font stacks
$helvetica: Helvetica, Arial, sans-serif;
$helveticaNeue: "Helvetica Neue", Helvetica, Arial, sans-serif;
$georgia: Georgia, serif;
// Mobile breakpoints
@mixin mobile {
@media screen and (max-width: 640px) {
@content;
}
}

304
assets/css/style.scss Normal file
View File

@ -0,0 +1,304 @@
---
---
//
// IMPORTS
//
@import "reset";
@import "variables";
// Syntax highlighting @import is at the bottom of this file
/**************/
/* BASE RULES */
/**************/
html {
font-size: 100%;
}
body {
background: $white;
font: 18px/1.4 $helvetica;
color: $darkGray;
}
.container {
margin: 0 auto;
max-width: 740px;
padding: 0 10px;
width: 100%;
}
h1, h2, h3, h4, h5, h6 {
font-family: $helveticaNeue;
color: $darkerGray;
font-weight: bold;
line-height: 1.7;
margin: 1em 0 15px;
padding: 0;
@include mobile {
line-height: 1.4;
}
}
h1 {
font-size: 30px;
a {
color: inherit;
}
}
h2 {
font-size: 24px;
}
h3 {
font-size: 20px;
}
h4 {
font-size: 18px;
color: $gray;
}
p {
margin: 15px 0;
}
a {
color: $blue;
text-decoration: none;
cursor: pointer;
&:hover, &:active {
color: $blue;
}
}
ul, ol {
margin: 15px 0;
padding-left: 30px;
}
ul {
list-style-type: disc;
}
ol {
list-style-type: decimal;
}
ol ul, ul ol, ul ul, ol ol {
margin: 0;
}
ul ul, ol ul {
list-style-type: circle;
}
em, i {
font-style: italic;
}
strong, b {
font-weight: bold;
}
img {
max-width: 100%;
}
// Fixes images in popup boxes from Google Translate
.gmnoprint img {
max-width: none;
}
.date {
font-style: italic;
color: $gray;
}
// Specify the color of the selection
::-moz-selection {
color: $black;
background: $lightGray;
}
::selection {
color: $black;
background: $lightGray;
}
// Nicolas Gallagher's micro clearfix hack
// http://nicolasgallagher.com/micro-clearfix-hack/
.clearfix:before,
.clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}
/*********************/
/* LAYOUT / SECTIONS */
/*********************/
//
// .masthead
//
.wrapper-masthead {
margin-bottom: 50px;
}
.masthead {
padding: 20px 0;
border-bottom: 1px solid $lightGray;
@include mobile {
text-align: center;
}
}
.site-avatar {
float: left;
width: 70px;
height: 70px;
margin-right: 15px;
@include mobile {
float: none;
display: block;
margin: 0 auto;
}
img {
border-radius: 5px;
}
}
.site-info {
float: left;
@include mobile {
float: none;
display: block;
margin: 0 auto;
}
}
.site-name {
margin: 0;
color: $darkGray;
cursor: pointer;
font-family: $helveticaNeue;
font-weight: 300;
font-size: 28px;
letter-spacing: 1px;
}
.site-description {
margin: -5px 0 0 0;
color: $gray;
font-size: 16px;
@include mobile {
margin: 3px 0;
}
}
nav {
float: right;
margin-top: 23px; // @TODO: Vertically middle align
font-family: $helveticaNeue;
font-size: 18px;
@include mobile {
float: none;
margin-top: 9px;
display: block;
font-size: 16px;
}
a {
margin-left: 20px;
color: $darkGray;
text-align: right;
font-weight: 300;
letter-spacing: 1px;
@include mobile {
margin: 0 10px;
color: $blue;
}
}
}
//
// .main
//
.posts > .post {
padding-bottom: 2em;
border-bottom: 1px solid $lightGray;
}
.posts > .post:last-child {
padding-bottom: 1em;
border-bottom: none;
}
.post {
blockquote {
margin: 1.8em .8em;
border-left: 2px solid $gray;
padding: 0.1em 1em;
color: $gray;
font-size: 22px;
font-style: italic;
}
.comments {
margin-top: 10px;
}
.read-more {
text-transform: uppercase;
font-size: 15px;
}
}
.wrapper-footer {
margin-top: 50px;
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
background-color: $lightGray;
}
footer {
padding: 20px 0;
text-align: center;
font-size: 12px;
}
table th
{
text-align: left;
font-weight: bold;
}
table td,
table th
{
padding: 5px;
border: 1px solid #ccc;
}
// Settled on moving the import of syntax highlighting to the bottom of the CSS
// ... Otherwise it really bloats up the top of the CSS file and makes it difficult to find the start
@import "highlights";
@import "svg-icons";
@import "datacoop";

3
build.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
docker run --rm -v "$(pwd):/srv/jekyll" jekyll/jekyll jekyll build
docker build -t docker.data.coop/data-coop-website .

View File

@ -1,65 +0,0 @@
baseURL: https://data.coop
copyright: CC-BY, see https://creativecommons.org/licenses/by/4.0/
title: data.coop
theme: datacoop2020
defaultContentLanguage: da
enableGitInfo: true
markup:
goldmark:
renderer:
unsafe: true
# See: https://gohugo.io/content-management/multilingual/
languages:
da:
title: data.coop
params:
description: "Et datakollektiv, der passer på dine data."
weight: 1
# First Hugo looks in your post front matter for an images value (images: [""])
# Then Hugo searchs for image page resources with feature, cover or thumbnail in their name. These are images files under a directory that matches the post (e.g. content\posts\first-post)
# If not images are found, Hugo looks for images (images: [""]) in your site config
# If no image if found, then an image-less Twitter summary card is used instead of summary_large_image
# https://digitaldrummerj.me/hugo-preview-when-sharing-twitter/
images: ["/static/img/some_card_preview_large_da.png"]
LanguageName: Dansk
menu:
nav:
- name: "Bliv Medlem"
url: "membership/"
weight: 1
- name: "Om os"
url: "about/"
weight: 2
- name: "Tjenester"
url: "services/"
weight: 3
- name: "Vedtægter"
url: "rights/"
weight: 4
en:
title: data.coop
params:
description: "A data collective that takes care of your data."
weight: 2
images: ["/static/img/some_card_preview_large_en.png"]
LanguageName: English
menu:
nav:
- name: "Membership"
url: "en/membership/"
weight: 1
- name: "About us"
url: "en/about/"
weight: 2
- name: "Services"
url: "en/services/"
weight: 3
- name: "Statutes"
url: "en/rights/"
weight: 4

View File

@ -1,43 +0,0 @@
---
title: Velkommen til data.coop
---
[📣️ Indkaldelse til ekstraordinær generalforsamling 15. maj 2024 📣️](/assembly2024-1)
data.coop er et kooperativ, som ejer og driver en digital infrastruktur for medlemmerne. Vores grundlæggende formål er at passe på medlemmernes data.
Vores kerneprincipper er:
<dl class="principles-list">
<dt>
<img src="/static/img/icons/no-surveillance.svg" />
Privatlivsbeskyttelse
</dt>
<dd>
Vi er fælles om at beskytte vores data. Vi deler dem ikke for profit. Dine data transmitteres krypteret på nettet.
</dd>
<dt>
<img src="/static/img/icons/encrypted.svg" />
Kryptering
</dt>
<dd>
Vi tilbyder løsninger, der er sikre og grundigt deklarerede.
</dd>
<dt>
<img src="/static/img/icons/decentralised.svg" />
Decentralisering
</dt>
<dd>
Vores services snakker gerne sammen med andre decentrale services på nettet.
</dd>
<dt>
<img src="/static/img/icons/zero-knowledge.svg" />
Zero-knowledge
</dt>
<dd>
Når det er muligt, sørger vi for, at systemadministratorer rent teknisk ikke kan tilgå medlemmernes data.
</dd>
</dl>
Ud fra de kerneprincipper vil vi med tiden udbyde onlinetjenester til medlemmerne. Hovedtanken er, at vi som udgangspunkt stoler mere på hinanden end på "de store" som f.eks. Google, Microsoft eller Facebook.

View File

@ -1,45 +0,0 @@
---
title: Welcome to data.coop
---
data.coop is a cooperative, which owns and operates a digital infrastructure for its members. Our fundamental vision is to protect our members' data.
The community consists of members around the Copenhagen-area and is open to inquiries from abroad to start sister infrastructures based on the same principles.
Our core principles are:
<dl class="principles-list">
<dt>
<img src="/static/img/icons/no-surveillance.svg" />
Privacy
</dt>
<dd>
We protect member data together.
We do not share them for profit.
Data is always encrypted in transit.
</dd>
<dt>
<img src="/static/img/icons/encrypted.svg" />
Encryption
</dt>
<dd>
We provide secure services that are thoroughly declared.
</dd>
<dt>
<img src="/static/img/icons/decentralised.svg" />
Decentralization
</dt>
<dd>
Our services exist together with other decentralized counterparts.
</dd>
<dt>
<img src="/static/img/icons/zero-knowledge.svg" />
Zero knowledge
</dt>
<dd>
Whenever possible, we ensure that a system administrator does not have technical ability to access member data.
</dd>
</dl>
From these core principles, we will continue to develop services for members.
The idea is that we trust each other more than any Big Tech operators, such as Google, Microsoft or Facebook.

View File

@ -1,21 +0,0 @@
---
title: "Om os"
---
**[data.coop]({{< ref "/" >}})** er en forening og et kooperativ.
Vi — medlemmerne i kooperativet — ejer vores egne data.
Overordnet betyder dette:
* At vi ejer vores egen hardware
* At vi kun bruger open source software
Foreningen råder over 2 rack-servere, hvoraf den ene pt. er i brug.
Du kan finde os på:
* Matrix: [#data.coop:data.coop](https://matrix.to/#/#data.coop:data.coop)
* IRC (Libera.chat): #data.coop
* Vores [Forgejo server](https://git.data.coop/data.coop/)
* På Fødiverset/Mastodon: <a rel="me" href="https://social.data.coop/@datacoop">@datacoop@data.coop</a>

View File

@ -1,24 +0,0 @@
---
title: "About"
---
**[data.coop]({{< ref "/" >}})** is an association and a cooperative.
The community consists of members around the Copenhagen-area and is open to inquiries from abroad to start sister infrastructures based on the same principles.
If you are interested in becoming a member of data.coop but you are not able to participate in physical meetings in Copenhagen, we encourage that you get in touch with us about a vision you have for your community, rather than signing up as a member.
We — the members of the cooperative — own our own data.
In practice, this means that:
* We own our own hardware.
* We only use Open Source Software.
The cooperative owns 2 rack servers, of which one is in use and one is spare.
You can find us here:
* Matrix: [#data.coop:data.coop](https://matrix.to/#/#data.coop:data.coop)
* IRC (Libera.chat): #data.coop
* Our [Forgejo server](https://git.data.coop/data.coop/)
* In the Fediverse/Mastodon: <a rel="me" href="https://social.data.coop/@datacoop">@datacoop@data.coop</a>

View File

@ -1,32 +0,0 @@
---
title: Ekstraordinær Generalforsamlingen 15. maj 2024
---
Bestyrelsen indkalder hermed til en ekstraordinær generalforsamling, hvor vi ønsker at nå til en beslutning vedrørende den moderationspolitik, som det dertil nedsatte udvalg er nået frem til.
Indkaldelsen til ekstraordinær GF kan måske virke underlig, taget i betragtning at vi har en ordinær generalforsamling blot 2 uger efter. Men vi havde allerede besluttet at tage dette spørgsmål op så hurtigt som muligt. Og vi indser også, at denne vigtige debat næppe får tilstrækkelig tid til en ordinær generalforsamling, og omvendt ville tage uforholdsmæssigt meget tid ved en sådan.
Dagsorden ser således ud:
1. Valg af dirigent og referent.
2. Fremlæggelse og diskussion af Moderationspolitik
3. Beslutning om Moderationspolitik
Mødet finder sted via online videomøde:
*fjernet fra offentlig indkaldelse*
## 1. Valg af dirigent og referent
## 2. Fremlæggelse og diskussion af Moderationspolitik
Forslaget til en Moderationspolitik kan læses her: https://git.data.coop/data.coop/dokumenter/pulls/28
## 3. Beslutning om Moderationspolitik
Evt. ændringsforslag behandles først.
Herefter går vi til afstemning.

View File

@ -1,21 +0,0 @@
---
title: Bliv medlem
---
[data.coop]({{< ref "/" >}}) er en demokratisk forening. Medlemmer bestemmer
over foreningens generelle drift og hvordan data skal forvaltes. Dette sker som i en helt klassisk forening i henhold til vores vedtægter på den årlige
generalforsamling.
Du bør læse vores [vedtægter]({{< ref "/rights.md" >}}) og især vores [Acceptable Usage Policy (AUP)](https://git.data.coop/data.coop/dokumenter/src/branch/main/Acceptable%20Usage%20Policy.md) inden du melder dig ind. Har du spørgsmål, kan du finde os på [Matrix og IRC]({{< ref "/about.md" >}}) eller [sende en e-mail til bestyrelsen](mailto:board@data.coop).
Du bliver medlem ved at overføre penge til vores konto og sende en email til
vores kasserer, [benjaoming@data.coop](mailto:benjaoming@data.coop), med dit navn.
* Reg. 5444 (Arbejdernes Landsbank)
* Kontonr. 0510901
* Tekst på overførslen: Fornavn+efternavn
Årligt kontingent: **300 kr** (dog gerne mere)\
Nedsat kontingent for studerende/arbejdsløse: **50 kr**
Kontingent-perioden gælder for det foreningsår, man melder sig ind i. Dvs. medlemskab er fortløbende fra betaling af kontingent frem til overstået ordinær generalforsamling.

View File

@ -1,32 +0,0 @@
---
title: Become a member
---
[data.coop]({{< ref "/" >}}) is a cooperative established as a democratic association.
The members decide on the association's operations and how data should be governed.
Governance resembles any classic association: We have legal statutes and formal general assemblies.
You need to read our [statutes]({{< relref "/rights.md" >}}) and our
[Acceptable Usage Policy (AUP)](https://git.data.coop/data.coop/dokumenter/src/branch/main/Acceptable%20Usage%20Policy.md)
before becoming a member.
If you have questions, you can find us on [Matrix or IRC]({{< ref "/about.md" >}}) or [send an email to the board](mailto:board@data.coop).
*English speakers:* We would love to have you as a member.
Many parts of this organization are already in English,
but our legal documents are not (yet).
Please write us if you have any questions.
You become a member by paying the annual membership fee to our account *and* sending an email
to our treasurer [benjaoming@data.coop](mailto:benjaoming@data.coop), containing your name.
Currently, the only option is to wire a bank payment to our Danish bank account:
* Reg. 5444 (Arbejdernes Landsbank)
* Kontonr. 0510901
* Text: First name + last name
Annual membership: **DKK 300** (or more)\
Reduced annual membership (students/unemployed): **DKK 50**
The membership period counts from *association year* that you sign up in.
That means that a membership is valid from when it's paid and until and including the next general assembly.

View File

@ -1,140 +0,0 @@
---
title: Vedtægter for datafællesskabet data.coop
---
## § 1. Navn og tilhørsforhold
Foreningens navn er: data.coop
Foreningens hjemsted er Københavns Kommune, men primært internettet.
## § 2. Formål
Foreningens hovedformål er at stille digital infrastruktur til rådighed
for sine medlemmer, på en måde hvor foreningens kerneprincipper --
privatlivsbeskyttelse, kryptering, decentralisering og zero-knowledge for
foreningen som tjenesteudbyder -- er i fokus.
### § 2.1 Sekundære formål
* Foreningen arbejder med at advokere for sine kerneprincipper.
* Foreningen hjælper folk til at at agere på nettet på forsvarlig vis.
* Foreningen samarbejder med andre datafællesskaber og/eller hjælper andre
i gang med lignende foreninger.
* Foreningen kan stille sine tjenester til rådighed for almennyttige foreninger,
græsrodsorganisationer og andre, der uafhængigt af foreningen, og uden at have
profit for øje, arbejder med formål der overlapper med foreningens egne formål
og kerneprincipper.
## § 3. Organisation
Foreningens overordnede ledelse er generalforsamlingen, som består af medlemmer med gyldigt medlemsbevis.
Generalforsamlingen vælger:
- En bestyrelse på 5 personer
- 2 suppleanter for bestyrelsen
- 1 revisor
- Evt. 1 suppleant for revisor
Valg til bestyrelsen sker for en periode på 2 år, således at mindst 2 personer
er på valg hvert år. Revisor og suppleanter er på valg hvert år.
## § 4. Generalforsamlingen
Bestyrelsen indkalder generalforsamlingen med mindst 14 dages varsel via
foreningens hjemmeside og mailinglister. Ordinær generalforsamling afholdes
hvert år inden udgangen af september måned. Dagsorden for ordinær
generalforsamling skal indeholde følgende punkter:
1. Valg af dirigent og referent.
2. Bestyrelsens beretning.
3. Fremlæggelse af regnskab, budget og kontingent.
4. Indkomne forslag.
5. Godkendelse af vedtægtsændringer og Acceptable Use Policy
6. Valg (Jf. § 3)
7. Eventuelt
### § 4.1. Afholdelse af generalforsamlinger og bestyrelsesmøder
Generalforsamlinger og bestyrelsesmøder kan afholdes på internettet.
### § 4.2. Indkomne forslag og vedtægtsændringer
Forslag og vedtægtsændringer skal være modtaget af bestyrelsen senest en uge før generalforsamlingen og fremlægges for medlemmerne senest 4 dage før generalforsamlingen.
### § 4.3. Vedtægtsændringer
Vedtægtsændringer kræver et flertal på 3/4 af generalforsamlingens fremmødte medlemmer.
### § 4.4. Forslag
Forslag kræver et simpelt flertal af generalforsamlingens fremmødte medlemmer.
## § 5. Foreningens bestyrelse
Foreningens daglige ledelse forestås af bestyrelsen (Jf. § 3). Bestyrelsen
konstituerer sig selv med forperson, næstforperson og kasserer. Bestyrelsen
uddelegerer den daglige drift til et forretningsudvalg, som består af forperson,
næstforperson og kasserer.
Bestyrelsen udarbejder regnskab og budget.
Bestyrelsen fastsætter selv sin forretningsorden.
Bestyrelsen kan sammensætte samarbejdsgrupper af medlemmer, der kan fungerer
som idéudviklingsforum for foreningen.
Tegningsret for foreningen har forpersonen og kassereren, dog ved køb, salg eller
pantsætning af fast ejendom, indgåelse af driftsaftaler samt ved optagelse af
lån, af den samlede bestyrelse.
## § 6. Medlemskab
Som medlem kan enhver fysisk person optages, som har interesse i at støtte
foreningens formål. Medlemskab er bindende for et år ad gangen.
Bestyrelsen kan ekskludere medlemmer fra foreningen, hvis disse har handlet i
uoverenstemmelse med Acceptable Use Policy (AUP).
Medlemskab er fortløbende fra betaling af kontingent frem til overstået ordinær generalforsamling.
## § 7. Administratorer
Driften af foreningens services forestås af et Administratorhold. Kun medlemmer
af foreningen kan bestride hvervet som administrator.
Administratorer er de eneste, der har administrativ adgang til foreningens
servere og tjenester.
### § 7.1 Udpegning af administratorer
Bestyrelsen udpeger administratorer.
Udpegning af administratorer skal annonceres til foreningens medlemmer.
### § 7.2 Mistillid til administratorer
Hvis der er mistillid til en eller flere administratorer skal dette behandles
på en ekstraordinær generalforsamling.
Mistillid til administratorer skal meldes til bestyrelsen. Bestyrelsen kan midlertidigt fratage en administrator vedkommendes administrationsrettigheder, indtil mistillidserklæringen mod vedkommende er behandlet.
## § 8. Kontingent/finansiering
De årlige kontingenter fastsættes af generalforsamlingen.
Foreningen kan herudover finansieres ved sponsor- og annoncestøtte samt bidrag
fra offentlige/private virksomheder, fonde, øvrige foreninger/institutioner og
private personer, så længe det ikke stiller krav til foreningens dispositioner.
## § 9. Ekstraordinær generalforsamling
Indkaldelse sker, hvis et flertal af bestyrelsen ønsker det.
Indkaldelse sker, hvis 1/3 af medlemmerne ønsker det.
Indkaldelse sker under samme betingelser, som anført i §4.
Dagsorden skal motiveres.
## § 10. Regnskab
Regnskabsåret for Foreningen er kalenderåret.
## § 11. Opløsning
Opløsning af foreningen kræver et flertal på ¾ af generalforsamlingens eller
den ekstraordinære generalforsamlings fremmødte medlemmer.
Opløsningen skal herefter godkendes på en efterfølgende ekstraordinær
generalforsamling.
Ved opløsning af foreningen skal foreningens midler overdrages til European
Digital Rights (EDRi) og Free Software Foundation Europe (FSFE).
Foreningen data.coop er stiftet den 24 juni 2014.

View File

@ -1,117 +0,0 @@
---
title: Legal statutes of data.coop
---
> This translation is provided solely for the purpose of guidance. The [Danish version](/rights/) remains the official and legally binding version.
## § 1. Name and location
The name of the association is: data.coop
The association is based in the city of Copenhagen but (its activities are) primarily online.
## § 2. Aim
The main aims of the association is to provide digital infrastructure to its members, while keeping the core principles of the association — privacy, encryption, decentralization and zero knowledge — in focus.
### § 2.1 Secondary aims
* The association works to promote its core principles.
* The association helps people act responsibly online.
* The association collaborates with other data cooperatives and/or helps other start up similar initiatives.
* The association may provide its services to other non-profits, grassroots movements and similar, working independently of the association with goals that match the aims and core principles of the association.
## § 3. Governance
Overriding power of the association lies with the General Assembly, consisting of members with a valid proof of membership.
The General Assembly elects:
- A board of 5 members
- 2 alternate board members
- 1 financial auditor
- Optionally, 1 alternate financial auditor
Board members are elected for a period of 2 years, so that at least 2 members are up for election every year. The auditor and alternates are up for election every year.
## § 4. The General Assembly (GA)
The board calls for meetings of the GA no less than 14 days prior through the website of the association and mailing lists. The GA meets every year before the end of September. The agenda of the annual meeting of the GA must include the following items:
1. Election of a meeting chair and notetaker
2. Report from the board
3. Presentation of accounts, budget and membership fee
4. Incoming motions
5. Approval of statute amendments and Acceptable Use Policy
6. Elections (as per §3)
7. Any other business
### § 4.1. Holding of meetings of the GA and the board
Meetings of the GA and the board may take place online.
### § 4.2. Incoming motions and statute amendments
Motions and statute amendments must be received by the board no less than a week before the meeting of the GA and presented to members no less than 4 days before the the meeting of the GA.
### § 4.3. Statute amendments
Passing of statute amendments requires a three-quarters majority of members present at the meeting of the GA.
### § 4.4. Motions
Passing of motions requires a simple majority of members present at the meeting of the GA.
## § 5. The board of the association
The executive power of the association lies with the board (as per §3). The board itself elects its officers including a chair, a vice chair and a treasurer. The board delegates handling of daily business of the association to an executive committee consisting of the chair, vice chair and treasurer.
The board is in charge of drafting the accounts and the budget.
The board itself determines its own rules of procedure.
The board may create ad-hoc working groups consisting of members, functioning as fora for developing ideas for the association.
The chair and treasurer have legal authority, but when it comes to purchasing, selling, or mortgaging real estate, making service agreements, or taking loans, the entire board must agree to bind the association.
## § 6. Membership
Any physical person who supports the aims of the association may become a member. Membership is binding for one year at a time.
The board has the authority to remove members from the association if they act in violation of the Acceptable Use Policy (AUP).
Membership is continuous from the payment of dues until the conclusion of the annual meeting of the GA.
## § 7. Administrators
The services offered by the associated are maintained by a team of administrators. Only members of the association can assume the role of administrator.
Only administrators hold administrative access to the servers and services of the association.
### § 7.1 Appointment of administrators
The board appoints administrators.
The appointment of administrators must be announced to the members of the association.
### § 7.2 Mistrust of administrators
Mistrust towards one or more administrators must be addressed at an extraordinary meeting of the GA.
Mistrust towards administrators must be reported to the board. The board has the authority to temporarily suspend an administrator's administrative rights until the declaration of mistrust against them is addressed
## § 8. Membership fees/funding
Annual membership fees are decided by the GA.
Additionally, the association can receive funding through sponsorships, advertising support, as well as contributions from public/private companies, foundations, other associations/institutions, and private individuals, as long as it does not impose conditions on the association's decisions.
## § 9. Extraordinary General Assembly (GA)
Extraordinary GAs may be called if desired by a majority of the board.
Extraordinary GAs may be called if desired by one-third of the members.
Extraordinary GAs are called following the same terms as in §4.
The agenda must be substantiated.
## § 10. Accounts
The association's financial year is the calendar year.
## § 11. Dissolution
Dissolution of the association requires a majority vote of three-quarters of members present at the GA or extraordinary GA.
The dissolution must then be approved at a subsequent extraordinary GA.
In the event of the dissolution of the association, the association's assets shall be transferred to European Digital Rights (EDRi) and Free Software Foundation Europe (FSFE)
The association data.coop was founded on June 24, 2014.

View File

@ -1,14 +0,0 @@
---
layout: page
title: Tjenester
---
Visse tjenester **data.coop** driver er kun for medlemmer, andre er åbne for alle.
Alle tjenester er benævnt med [badges]({{< ref "/services/#badges" >}}), der deklarerer i hvor høj grad den
enkelte tjeneste lever op til [kerneprincipperne defineret i formålsparagraffen
i vores vedtægter]({{< ref "/rights.md#-2-formål" >}}).
Vi har skrevet en definition af [hvad de forskellige badges dækker over]({{< ref "/services/#badges" >}}).
Klik på hver tjenestes navn for at se detaljer:

View File

@ -1,5 +0,0 @@
---
title: Services
---
## Services of data.coop

View File

@ -1,18 +0,0 @@
---
layout: page
title: Forgejo
service_badges:
stability: positive
secure_connection: positive
anonymity: partial
encrypted_storage: negative
zero_knowledge: negative
backup: positive
logging: negative
---
Skriver du kode eller anden tekst som du gerne vil holde under versionsstyring,
kan du gemme det på denne fantastiske Git-platform.<!--more-->
Platformen er åben for alle data.coops medlemmer,
og du kan forespørge konti til ikke-medlemmer.

View File

@ -1,18 +0,0 @@
---
layout: page
title: Forgejo
service_badges:
stability: positive
secure_connection: positive
anonymity: partial
encrypted_storage: negative
zero_knowledge: negative
backup: positive
logging: negative
---
If you write code or other types of texts that need revisioning,
you can use this fantastic Git platform<!--more-->
The platform is open for all data.coop members,
and you can ask for accounts for non-members.

View File

@ -1,20 +0,0 @@
---
layout: page
title: HedgeDoc
service_badges:
stability: positive
connection_security: positive
connection_anonymous: partial
storage_encrypted: negative
zero_knowledge: partial
storage_backup: positive
logging: negative
---
Tag tilfældige noter eller skriv dokumenter i Markdown: HedgeDoc kan bruges til mange ting.<!--more-->
De fleste bruger HedgeDoc til hurtigt at tage noter eller starte dokumenter.
Man kan skrive samtidig.
Og resultatet er flot.
Der findes også flere udvidelser, bl.a. Mermaid-diagrammer. Læs mere på [HedgeDoc's hjemmeside](https://hedgedoc.org/).

View File

@ -1,22 +0,0 @@
---
layout: page
title: HedgeDoc
service_badges:
stability: positive
connection_security: positive
connection_anonymous: partial
storage_encrypted: negative
zero_knowledge: partial
storage_backup: positive
logging: negative
---
Take random notes or write full documents in Markdown: HedgeDoc can be used for many things.<!--more-->
Most people use HedgeDoc for quickly making notes are bootstrapping documents.
You can collaborate in real-time with others.
And the results are pretty!
There are also several extensions, for instance for Mermaid diagrams.
Read more on the [HedgeDoc website](https://hedgedoc.org/).

View File

@ -1,14 +0,0 @@
---
layout: page
title: Mastodon
service_badges:
stability: positive
connection_security: positive
connection_anonymous: negative
storage_encrypted: negative
zero_knowledge: partial
storage_backup: positive
logging: negative
---
Del kattebilleder og memes og følg med i hvad andre spændende mennesker foretager sig.

View File

@ -1,14 +0,0 @@
---
layout: page
title: Mastodon
service_badges:
stability: positive
connection_security: positive
connection_anonymous: negative
storage_encrypted: negative
zero_knowledge: partial
storage_backup: positive
logging: negative
---
Share cat photos and memes and see what other interesting people are doing.

View File

@ -1,21 +0,0 @@
---
layout: page
title: Matrix
service_badges:
stability: positive
connection_security: positive
connection_anonymous: negative
storage_encrypted: positive
zero_knowledge: partial
storage_backup: positive
logging: negative
---
Matrix er en chat-server, som kan rigtig mange ting. Den kan bruges som alternativ til f.eks. Slack, Discord, IRC og meget andet.
Vi har også vores egen hostede version af reference-klienten Element på [element.data.coop](https://element.data.coop/).<!--more-->
Du kan bruge Matrix til at kommunikere med andre på hele Matrix-netværket,
dvs. ikke bare andre data.coop-medlemmer.
Matrix er en kæmpestor platform, som muliggør en lang række interaktionsformer.
Bl.a. har flere konferencer oprettet rum til live videostream og chat.

View File

@ -1,22 +0,0 @@
---
layout: page
title: Matrix
service_badges:
stability: positive
connection_security: positive
connection_anonymous: negative
storage_encrypted: positive
zero_knowledge: partial
storage_backup: positive
logging: negative
---
Matrix is a chat server that's capable of a lot of things.
It can be used as an alternative for Slack, Discord, IRC and lots more.
We have our own hosted version of its reference client Element available at [element.data.coop](https://element.data.coop/).<!--more-->
You can use Matrix for communicating with the entire Matrix network,
not just data.coop members.
Matrix is a gigantic platform which enables a wide range of communication types.
It supports channels, live videos and chat.

View File

@ -1,14 +0,0 @@
---
layout: page
title: Nextcloud
service_badges:
stability: positive
connection_security: positive
connection_anonymous: partial
storage_encrypted: negative
zero_knowledge: negative
storage_backup: positive
logging: negative
---
Gem dine filer, din kalender og dine kontakter i skyen og tilgå alt fra alle dine enheder.

View File

@ -1,15 +0,0 @@
---
layout: page
title: Nextcloud
service_badges:
stability: positive
connection_security: positive
connection_anonymous: partial
storage_encrypted: negative
zero_knowledge: negative
storage_backup: positive
logging: negative
---
Store your files, calendar, contacts and many other things in the local cloud.
Access from all your devices.

View File

@ -1,14 +0,0 @@
---
layout: page
title: Passit
service_badges:
stability: positive
connection_security: positive
connection_anonymous: positive
storage_encrypted: positive
zero_knowledge: partial
storage_backup: positive
logging: positive
---
Hjælper dig med at huske stærke, unikke kodeord til alle de sites og apps du benytter dig af.

View File

@ -1,14 +0,0 @@
---
layout: page
title: Passit
service_badges:
stability: positive
connection_security: positive
connection_anonymous: positive
storage_encrypted: positive
zero_knowledge: partial
storage_backup: positive
logging: positive
---
Helps you remember your strong, unique passwords for websites and applications.

View File

@ -1,17 +0,0 @@
---
layout: page
title: PrivateBin
service_badges:
stability: positive
connection_security: positive
connection_anonymous: partial
storage_encrypted: positive
zero_knowledge: positive
storage_backup: positive
logging: negative
---
Del en simpel hemmelighed gennem et unikt og hemmeligt link.
Du kan tilsætte password og sørge for, at hemmeligheden slettes automatisk.<!--more-->
Denne service er åben for alle og kræver ikke login.

View File

@ -1,17 +0,0 @@
---
layout: page
title: PrivateBin
service_badges:
stability: positive
connection_security: positive
connection_anonymous: partial
storage_encrypted: positive
zero_knowledge: positive
storage_backup: positive
logging: negative
---
Share a secret through a unique and secret link.
You can add a password and make the secret expire and delete itself.<!--more-->
This service is open and does not require a login.

View File

@ -1,15 +0,0 @@
---
layout: page
title: Rallly
service_badges:
stability: positive
connection_security: positive
connection_anonymous: partial
storage_encrypted: negative
zero_knowledge: negative
storage_backup: positive
logging: negative
---
Rallly gør det nemt at finde en dato med dine venner/familie/gruppe.
Det minder om Doodle, men det er bedre!

View File

@ -1,15 +0,0 @@
---
layout: page
title: Rallly
service_badges:
stability: positive
connection_security: positive
connection_anonymous: partial
storage_encrypted: negative
zero_knowledge: negative
storage_backup: positive
logging: negative
---
Rally makes it easy to find a date for an event with your friends, family or any other group of people.
It's a lot like Doodle, but better!

View File

@ -1,74 +0,0 @@
# This determines which badges are active and the order to display them in
active_badges:
- stability
- secure_connection
- encrypted_storage
- zero_knowledge
- backup
- logging
- anonymity
badges:
stability:
name: Stabilitet
description: |
*Tjenesten er altid tilgængelig.*
Dette badge beskriver hvor stabil tjenesten er, dvs. om der er stor eller lille risiko for nedetid og/eller tab af data. I starten af enhver tjenestes levetid vil den være mindre stabil, da den ikke er testet i brug endnu.
icon: stable.svg
secure_connection:
name: Sikker forbindelse
description: |
*Data kan kun ses af dig og tjenesten.*
Trafikken mellem dig og tjenesten er krypteret. F.eks. viser browsere en hængelås foran adresselinjen, når forbindelsen er krypteret. Det betyder at kun dig og tjenesten kan se indholdet af data.
icon: secure-connection.svg
encrypted_storage:
name: Krypteret opbevaring af data
description: |
Tjenestens data opbevares i krypteret form, eksempelvis på en krypteret
harddisk. Dette er med til at beskytte dataen i tilfælde af fysisk
indbrud, da det kun er systemadministratorerne der har hovednøglen til at
låse op for adgang til dataen.
icon: encrypted-data-storage.svg
zero_knowledge:
name: Zero-knowledge
description: |
*Du har den eneste nøgle.*
I dette tilfælde har data.coops systemadministratorer ikke mulighed for at tilgå data. Der er ingen “hovednøgle”. Det giver mere sikkerhed, men betyder også at data er tabt, hvis man mister sin nøgle.
icon: zero-knowledge.svg
backup:
name: Backup
description: |
Tjenestens data sikkerhedskopieres løbende, for at minimere skadens
omfang i tilfælde af tekniske nedbrud eller cyberangreb.
Sikkerhedskopierne opbevares et andet fysisk sted end serveren som
tjenesten kører på.
icon: backup.svg
# TODO: We should describe how we label logging that isn't fully documented as configured.
logging:
name: Logning
description: |
Teknisk logning handler primært om *metadata*, som også kan kaldes *data om data*. Hvem bruger hvad hvornår? På den ene side er det relevant for systemadministratorerne at se, hvorfor serveren eks. er på overarbejde, men ligesom alle data kan det misbruges. Eks. til at bevise at en bruger har været online på det pågældende tidspunkt.
Bemærk at "positiv" status for logning betyder, at tjenesten laver forventet minimal logning af meta-data, hvilke vi tilstræber at dokumentere for hver enkelt tjeneste. En "negativ" status betyder at der logges mere end nødvendigt.
icon: logging.svg
anonymity:
name: Anonym adgang
description: |
Tjenester med anonym adgang kan benyttes uden at være registreret. Dette
betyder at man kan benytte tjenesten helt anonymt og uden at opgive
personoplysninger. Dog kan nogle tjenester have begrænset adgang hvis man
ikke er registreret. F.eks. kan det være, at man ved en tjeneste kun kan
uploade en fil hvis man har en bruger, men alle kan downloade filen
anonymt uden et login.
icon: anonymous-access.svg

View File

@ -1,26 +0,0 @@
status:
positive:
order: 1
name: positiv
description: Tjenesten lever op til kravene til det badget dækker over.
css_class: "positive"
partial:
order: 2
name: delvis
description: Tjenesten lever delvist op til det badget dækker over. Dog i en sådan grad at vi mener det er værd at fremhæve.
css_class: "partial"
negative:
order: 3
name: negativ
description: Tjenesten lever ikke op til det badget dækker over.
css_class: "negative"
none:
order: 4
name: uoplyst
description: Dette badge er udefineret for denne tjeneste. Dette skyldes sansynligvis, at vi mangler en klar redegørelse.
css_class: "none"

View File

@ -1,75 +0,0 @@
# This determines which badges are active and the order to display them in
active_badges:
- stability
- secure_connection
- encrypted_storage
- zero_knowledge
- backup
- logging
- anonymity
badges:
stability:
name: Stability
description: |
*Service is always available.*
This badge describes how stable the service is. For instance if there is a big or small risk that the service may suffer from outages or loss of data. Immediately after launching a service, it might be considered less stable than after it has matured through long-time tests and usage.
icon: stable.svg
secure_connection:
name: Secure connection
description: |
*Data can only be seen by you and the service.*
The traffic between you and the service is encrypted. For instance, the browser will display a padlock in the address bar when the connection is encrypted. This means that it's only you and the service that can see transferred data.
icon: secure-connection.svg
encrypted_storage:
name: Encrypted storage
description: |
The service stores data in an ecrypted way, for instance on an encrypted storage media.
This ensures that the data is protected in case of a physical breach of security,
since it's only the system administrator who has the encryption key that can decrypt storage media.
icon: encrypted-data-storage.svg
zero_knowledge:
name: Zero knowledge
description: |
*You have the only key.*
In this case, data.coop's system administrator cannot access data.
There is no "main key". This provides more security, but it also means that data will be lost if you lose the key.
icon: zero-knowledge.svg
backup:
name: Backup
description: |
The service's data is backed up frequently in order to minimize damages from technical outages or cyber attacks.
Backups are stored in another physical location than the server.
icon: backup.svg
# TODO: We should describe how we label logging that isn't fully documented as configured.
logging:
name: Logging
description: |
Technical logging is primarily about *meta data*, which can be understood as *data about data*.
Who does what and when? On one side, it's relevant for system administrators to see why a server is overloaded, but as with all data this can be abused.
For instance, it can be used to prove that what a user was doing at a specific time.
Note that "positive" status for logging means that the service is performing an expected amount of *minimal* logging of meta data.
We strive to document this data for every service. A "negative" status means that unnecessary amounts of logging take place.
icon: logging.svg
anonymity:
name: Anonymous access
description: |
Services with anonymous access can be used without registration and authentication.
This means that the service can be used anonymously without sharing personal information.
Some services may have limited access for unregistered users.
This may be relevant for instance for a service where a registered user can upload a file
and an unregistered user can download the file.
icon: anonymous-access.svg

View File

@ -1,26 +0,0 @@
status:
positive:
order: 1
name: positive
description: Service satisfies the requirements of the badge.
css_class: "positive"
partial:
order: 2
name: partial
description: Service partially satisfies the requirements of the badge. But to an extend that we find worth noting.
css_class: "partial"
negative:
order: 3
name: negative
description: Service does not live up to badge requirements.
css_class: "negative"
none:
order: 4
name: undefined
description: The requirements of the badge are currently undefined. This is likely due to a lack of analysis and full understanding.
css_class: "none"

View File

@ -1,10 +1,8 @@
version: "3"
services:
server:
image: klakegg/hugo:ext-alpine
command: server
volumes:
- ".:/src"
jekyll:
image: jekyll/jekyll
command: jekyll serve --livereload --livereload-port 35729
ports:
- "1313:1313"
- 4000:4000
- 35729:35729
volumes:
- .:/srv/jekyll

View File

@ -1,24 +0,0 @@
[home]
other = "Home"
[generated_date]
other = "Generateret med Hugo d. {{ . }}"
[badges_headline]
other = "Badges"
[status_headline]
other = "Status"
[tagline]
other = "<u>vores</u> data i <u>vores</u> hænder"
[service_badge_stability]
other = "Stabilitet"
[service_badges_status_positive]
other = "positiv"
[service_badges_status_negative]
other = "negativ"
[service_badges_status_partial]
other = "delvis"

View File

@ -1,14 +0,0 @@
[home]
other = "Home"
[generated_date]
other = "Generated by Hugo on {{ . }}"
[services_status]
other = "Services Status"
[service_badges_stability_negative]
other = "Negative"
[tagline]
other = "our data in our hands"

View File

@ -0,0 +1,61 @@
<?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"
x="0px"
y="0px"
viewBox="0 0 100 100"
enable-background="new 0 0 100 100"
xml:space="preserve"
id="svg12"
sodipodi:docname="noun_anonymous_1916559.svg"
width="100"
height="100"
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
id="metadata18"><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="defs16" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1016"
id="namedview14"
showgrid="false"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="2.5544923"
inkscape:cx="-3.7853107"
inkscape:cy="62.5"
inkscape:window-x="3840"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg12"><sodipodi:guide
position="49.716337,200.82268"
orientation="1,0"
id="guide828"
inkscape:locked="false" /><sodipodi:guide
position="-35.23205,50.499271"
orientation="0,1"
id="guide830"
inkscape:locked="false" /></sodipodi:namedview><g
id="g6"
transform="matrix(1.0527147,0,0,1.0527147,-4.245818,-1.9550033)"><path
d="m 32.06,46.283 c 7.612,0 13.857,-5.909 14.42,-13.377 0.035,-0.157 0.056,-0.32 0.056,-0.488 0,-2.549 2.074,-4.624 4.623,-4.624 2.55,0 4.623,2.074 4.623,4.624 0,0.105 0.019,0.205 0.031,0.306 0.476,7.554 6.755,13.56 14.428,13.56 7.981,0 14.474,-6.493 14.474,-14.474 0,-7.981 -6.492,-14.474 -14.474,-14.474 -5.739,0 -10.694,3.367 -13.034,8.221 -1.615,-1.426 -3.729,-2.299 -6.048,-2.299 -2.324,0 -4.442,0.877 -6.06,2.309 -2.338,-4.859 -7.296,-8.23 -13.04,-8.23 -7.981,0 -14.474,6.493 -14.474,14.474 0,7.981 6.494,14.472 14.475,14.472 z m 38.181,-24.41 c 5.479,0 9.937,4.458 9.937,9.937 0,5.479 -4.458,9.937 -9.937,9.937 -5.479,0 -9.937,-4.458 -9.937,-9.937 0,-5.479 4.458,-9.937 9.937,-9.937 z m -38.181,0 c 5.48,0 9.939,4.458 9.939,9.937 0,5.479 -4.459,9.937 -9.939,9.937 -5.479,0 -9.937,-4.458 -9.937,-9.937 0,-5.479 4.458,-9.937 9.937,-9.937 z"
id="path2"
inkscape:connector-curvature="0" /><path
d="m 84.635,65.092 c -0.019,0.005 -1.839,0.356 -4.214,0.356 -2.833,0 -5.264,-0.498 -7.025,-1.441 -1.141,-0.612 -2.265,-1.409 -3.455,-2.255 -0.884,-0.628 -1.811,-1.274 -2.787,-1.88 1.361,-1.338 2.21,-3.196 2.21,-5.252 0,-0.768 -0.119,-1.532 -0.356,-2.27 -0.383,-1.192 -1.665,-1.854 -2.853,-1.467 -1.193,0.384 -1.851,1.659 -1.468,2.854 0.093,0.288 0.14,0.586 0.14,0.883 0,1.562 -1.271,2.832 -2.836,2.832 -0.881,0 -1.697,-0.4 -2.234,-1.092 -0.175,-0.228 -0.313,-0.472 -0.408,-0.722 -0.448,-1.172 -1.76,-1.757 -2.928,-1.312 -1.172,0.445 -1.76,1.757 -1.313,2.927 0.028,0.072 0.069,0.139 0.099,0.21 -0.971,1.117 -2.383,1.77 -3.885,1.77 -2.837,0 -5.146,-2.31 -5.146,-5.148 0,-1.163 0.378,-2.26 1.09,-3.17 0.198,-0.253 0.409,-0.499 0.62,-0.748 1.284,-1.506 3.042,-3.569 3.042,-7.61 0,-1.253 -1.017,-2.269 -2.269,-2.269 -1.253,0 -2.269,1.016 -2.269,2.269 0,2.37 -0.82,3.333 -1.957,4.667 -0.253,0.296 -0.502,0.59 -0.74,0.893 -1.344,1.718 -2.055,3.781 -2.055,5.968 0,1.035 0.167,2.03 0.469,2.967 -0.436,0.26 -0.929,0.4 -1.448,0.4 -1.562,0 -2.833,-1.271 -2.833,-2.832 0,-0.297 0.046,-0.595 0.14,-0.883 0.383,-1.194 -0.275,-2.47 -1.468,-2.854 -1.189,-0.384 -2.469,0.274 -2.853,1.467 -0.237,0.737 -0.357,1.502 -0.357,2.27 0,2.054 0.847,3.912 2.207,5.25 -0.977,0.604 -1.905,1.253 -2.791,1.881 -1.19,0.847 -2.314,1.644 -3.453,2.256 -1.764,0.943 -4.194,1.441 -7.029,1.441 -2.375,0 -4.196,-0.352 -4.21,-0.355 l -4.764,-0.952 2.326,4.264 c 0.318,0.583 7.934,14.261 21.059,14.261 4.887,0 9.841,-1.93 14.745,-5.735 5.071,3.633 10.103,5.475 14.976,5.475 13.334,0 20.442,-13.473 20.738,-14.047 l 2.15,-4.172 z M 66.354,77.866 c -4.301,0 -8.889,-1.885 -13.634,-5.603 l -1.46,-1.143 -1.41,1.202 c -4.521,3.851 -8.968,5.805 -13.217,5.805 -6.545,0 -11.584,-4.654 -14.439,-8.142 0.01,0 0.019,0 0.029,0 3.63,0 6.715,-0.667 9.171,-1.98 1.391,-0.747 2.687,-1.667 3.938,-2.555 2.573,-1.828 5.005,-3.554 7.926,-3.554 3.961,0 6.137,2.88 6.216,2.988 l 1.846,2.587 1.848,-2.587 c 0.021,-0.028 2.245,-2.988 6.218,-2.988 2.924,0 5.355,1.726 7.93,3.555 1.252,0.889 2.545,1.807 3.939,2.554 2.482,1.329 5.597,2 9.297,1.98 -2.717,3.391 -7.568,7.881 -14.198,7.881 z"
id="path4"
inkscape:connector-curvature="0" /></g></svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

76
images/badges/backup.svg Normal file
View File

@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/"
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"
x="0px"
y="0px"
viewBox="0 0 100 100"
xml:space="preserve"
id="svg26"
sodipodi:docname="noun_backup_2120922.svg"
width="100"
height="100"
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
id="metadata32"><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="defs30" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1016"
id="namedview28"
showgrid="false"
inkscape:zoom="2.5544923"
inkscape:cx="-9.657319"
inkscape:cy="62.5"
inkscape:window-x="3840"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg26" /><switch
id="switch20"
transform="matrix(0.84210526,0,0,0.84210526,8.0657101,7.9606056)"><foreignObject
requiredExtensions="http://ns.adobe.com/AdobeIllustrator/10.0/"
x="0"
y="0"
width="1"
height="1" /><g
i:extraneous="self"
id="g18"><g
id="g16"><path
d="m 71,66.9 c -0.4,-1 -1.4,-1.7 -2.5,-1.7 H 58.1 l -2.6,4 c -1.2,1.8 -3.3,3 -5.5,3 -2.2,0 -4.3,-1.1 -5.5,-3 l -2.6,-4 H 31.5 c -1.1,0 -2.2,0.7 -2.5,1.7 0,0 -5.4,15.3 -5.6,16.1 -0.2,0.8 -0.4,1.7 -0.4,2.3 V 91 c 0,3.6 2.9,6.5 6.5,6.5 h 41.2 c 3.6,0 6.5,-2.9 6.5,-6.5 v -5.8 c 0,-0.6 -0.1,-1.6 -0.4,-2.3 C 76.5,82.4 71,66.9 71,66.9 Z M 73.5,91 c 0,1.6 -1.3,2.9 -2.9,2.9 H 29.4 c -1.6,0 -2.9,-1.3 -2.9,-2.9 v -5.8 c 0,-1.6 1.3,-2.9 2.9,-2.9 h 41.2 c 1.6,0 2.9,1.3 2.9,2.9 z"
id="path2"
inkscape:connector-curvature="0" /><circle
cx="33.599998"
cy="88.099998"
r="2.9000001"
id="circle4" /><path
d="m 51.3,86.4 h -9.5 c -1,0 -1.8,0.8 -1.8,1.8 0,1 0.8,1.8 1.8,1.8 h 9.5 c 1,0 1.8,-0.8 1.8,-1.8 0,-1 -0.8,-1.8 -1.8,-1.8 z"
id="path6"
inkscape:connector-curvature="0" /><path
d="M 76.7,20.3 C 76.5,19.7 71,4.2 71,4.2 70.6,3.2 69.6,2.5 68.5,2.5 h -37 c -1.1,0 -2.2,0.7 -2.5,1.7 0,0 -5.4,15.3 -5.6,16.1 C 23.1,21.1 23,22 23,22.6 v 5.8 c 0,3.6 2.9,6.5 6.5,6.5 h 41.2 c 3.6,0 6.5,-2.9 6.5,-6.5 V 22.6 C 77.1,22 76.9,21 76.7,20.3 Z m -3.2,8.1 c 0,1.6 -1.3,2.9 -2.9,2.9 H 29.4 c -1.6,0 -2.9,-1.3 -2.9,-2.9 v -5.8 c 0,-1.6 1.3,-2.9 2.9,-2.9 h 41.2 c 1.6,0 2.9,1.3 2.9,2.9 z"
id="path8"
inkscape:connector-curvature="0" /><circle
cx="33.599998"
cy="25.5"
r="2.9000001"
id="circle10" /><path
d="m 51.3,23.7 h -9.5 c -1,0 -1.8,0.8 -1.8,1.8 0,1 0.8,1.8 1.8,1.8 h 9.5 c 1,0 1.8,-0.8 1.8,-1.8 0,-1 -0.8,-1.8 -1.8,-1.8 z"
id="path12"
inkscape:connector-curvature="0" /><path
d="m 53.3,38.4 h -6.5 c -1,0 -1.8,0.8 -1.8,1.8 v 11.5 h -2.1 c -1.1,0 -2.1,0.6 -2.6,1.5 -0.5,1 -0.5,2.1 0.1,3 l 7.1,10.9 c 0.5,0.8 1.5,1.3 2.5,1.3 v 0 c 1,0 1.9,-0.5 2.5,-1.3 l 7.1,-10.9 c 0.6,-0.9 0.6,-2.1 0.1,-3 -0.5,-1 -1.5,-1.5 -2.6,-1.5 H 55 V 40.2 c 0,-1 -0.8,-1.8 -1.7,-1.8 z"
id="path14"
inkscape:connector-curvature="0" /></g></g></switch></svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1,63 @@
<?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"
x="0px"
y="0px"
viewBox="0 0 100 100"
enable-background="new 0 0 100 100"
xml:space="preserve"
id="svg20"
sodipodi:docname="noun_safe_821403.svg"
width="100"
height="100"
inkscape:version="0.92.3 (2405546, 2018-03-11)"><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" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1016"
id="namedview22"
showgrid="false"
inkscape:zoom="2.5544923"
inkscape:cx="-3.7853107"
inkscape:cy="62.5"
inkscape:window-x="3840"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg20" /><g
id="g14"
transform="matrix(0.88889876,0,0,0.88889876,5.7299078,7.0141118)"><path
d="m 35.965,29.457 c -10.07,0 -18.262,8.192 -18.262,18.262 v 0.885 c 0,10.07 8.192,18.262 18.262,18.262 v 0 c 10.07,0 18.262,-8.192 18.262,-18.262 V 47.719 C 54.228,37.649 46.035,29.457 35.965,29.457 Z m 16.263,19.148 c 0,8.944 -7.318,16.262 -16.262,16.262 v 0 c -8.944,0 -16.262,-7.318 -16.262,-16.262 V 47.72 c 0,-8.944 7.318,-16.262 16.262,-16.262 v 0 c 8.944,0 16.262,7.318 16.262,16.262 z"
id="path2"
inkscape:connector-curvature="0" /><path
d="m 82.148,39.82 c 0,-2.666 -2.169,-4.834 -4.834,-4.834 -1.775,0 -3.33,0.962 -4.171,2.392 -0.841,-1.43 -2.396,-2.392 -4.171,-2.392 -1.775,0 -3.33,0.962 -4.171,2.392 -0.841,-1.43 -2.396,-2.392 -4.171,-2.392 -2.666,0 -4.834,2.169 -4.834,4.834 0,1.775 0.962,3.33 2.392,4.171 -1.43,0.841 -2.392,2.396 -2.392,4.171 0,1.775 0.962,3.33 2.392,4.171 -1.43,0.841 -2.392,2.395 -2.392,4.171 0,2.666 2.169,4.834 4.834,4.834 v 0 c 1.775,0 3.33,-0.962 4.171,-2.392 0.841,1.43 2.395,2.392 4.171,2.392 v 0 c 1.775,0 3.33,-0.962 4.171,-2.392 0.841,1.43 2.396,2.392 4.171,2.392 v 0 c 2.666,0 4.834,-2.169 4.834,-4.834 0,-1.775 -0.962,-3.33 -2.392,-4.171 1.43,-0.841 2.392,-2.396 2.392,-4.171 0,-1.775 -0.962,-3.33 -2.392,-4.171 1.43,-0.84 2.392,-2.395 2.392,-4.171 z m -9.005,2.443 c 0.419,0.713 1.016,1.31 1.729,1.729 -0.713,0.419 -1.31,1.016 -1.729,1.729 -0.419,-0.713 -1.016,-1.31 -1.729,-1.729 0.714,-0.42 1.31,-1.016 1.729,-1.729 z m -1.336,5.899 v 0 c 0,1.565 -1.269,2.834 -2.834,2.834 v 0 c -1.565,0 -2.834,-1.269 -2.834,-2.834 v 0 c 0,-1.565 1.269,-2.834 2.834,-2.834 v 0 c 1.565,0 2.834,1.269 2.834,2.834 z M 68.973,36.986 v 0 c 1.565,0 2.834,1.269 2.834,2.834 0,1.565 -1.269,2.834 -2.834,2.834 v 0 c -1.565,0 -2.834,-1.269 -2.834,-2.834 0,-1.565 1.268,-2.834 2.834,-2.834 z m -4.171,5.277 c 0.419,0.713 1.016,1.31 1.729,1.729 -0.713,0.419 -1.31,1.016 -1.729,1.729 -0.419,-0.713 -1.016,-1.31 -1.729,-1.729 0.713,-0.42 1.31,-1.016 1.729,-1.729 z M 57.797,39.82 c 0,-1.565 1.269,-2.834 2.834,-2.834 v 0 c 1.565,0 2.834,1.269 2.834,2.834 0,1.565 -1.269,2.834 -2.834,2.834 v 0 c -1.565,10e-4 -2.834,-1.268 -2.834,-2.834 z m 0,8.342 v 0 c 0,-1.565 1.269,-2.834 2.834,-2.834 v 0 c 1.565,0 2.834,1.269 2.834,2.834 v 0 c 0,1.565 -1.269,2.834 -2.834,2.834 v 0 c -1.565,0 -2.834,-1.269 -2.834,-2.834 z m 2.834,11.176 v 0 c -1.565,0 -2.834,-1.269 -2.834,-2.834 0,-1.565 1.269,-2.834 2.834,-2.834 v 0 c 1.565,0 2.834,1.269 2.834,2.834 0,1.565 -1.269,2.834 -2.834,2.834 z m 4.171,-5.276 c -0.419,-0.713 -1.016,-1.31 -1.729,-1.729 0.713,-0.419 1.31,-1.016 1.729,-1.729 0.419,0.713 1.016,1.31 1.729,1.729 -0.713,0.419 -1.31,1.016 -1.729,1.729 z m 4.171,5.276 v 0 c -1.565,0 -2.834,-1.269 -2.834,-2.834 0,-1.565 1.269,-2.834 2.834,-2.834 v 0 c 1.565,0 2.834,1.269 2.834,2.834 0,1.565 -1.269,2.834 -2.834,2.834 z m 4.17,-5.276 c -0.419,-0.713 -1.016,-1.31 -1.729,-1.729 0.713,-0.419 1.31,-1.016 1.729,-1.729 0.419,0.713 1.016,1.31 1.729,1.729 -0.713,0.419 -1.309,1.016 -1.729,1.729 z m 7.005,2.442 c 0,1.565 -1.269,2.834 -2.834,2.834 v 0 c -1.565,0 -2.834,-1.269 -2.834,-2.834 0,-1.565 1.269,-2.834 2.834,-2.834 v 0 c 1.566,0 2.834,1.268 2.834,2.834 z m 0,-8.342 v 0 c 0,1.565 -1.269,2.834 -2.834,2.834 v 0 c -1.565,0 -2.834,-1.269 -2.834,-2.834 v 0 c 0,-1.565 1.269,-2.834 2.834,-2.834 v 0 c 1.566,0 2.834,1.269 2.834,2.834 z m -2.834,-5.507 v 0 c -1.565,0 -2.834,-1.269 -2.834,-2.834 0,-1.565 1.269,-2.834 2.834,-2.834 v 0 c 1.565,0 2.834,1.269 2.834,2.834 0,1.565 -1.268,2.834 -2.834,2.834 z"
id="path4"
inkscape:connector-curvature="0" /><path
d="M 79.91,24.994 H 20.09 c -3.659,0 -6.625,2.966 -6.625,6.625 v 33.087 c 0,3.659 2.966,6.625 6.625,6.625 h 59.82 c 3.659,0 6.625,-2.966 6.625,-6.625 V 31.619 c 0,-3.659 -2.967,-6.625 -6.625,-6.625 z m 4.625,39.711 c 0,2.55 -2.075,4.625 -4.625,4.625 H 20.09 c -2.55,0 -4.625,-2.075 -4.625,-4.625 V 31.619 c 0,-2.55 2.075,-4.625 4.625,-4.625 h 59.82 c 2.55,0 4.625,2.075 4.625,4.625 z"
id="path6"
inkscape:connector-curvature="0" /><path
d="M 82.97,16.528 H 17.03 C 10.397,16.528 5,21.925 5,28.558 v 39.208 c 0,6.634 5.397,12.03 12.03,12.03 h 2.748 v 0.933 c 0,1.515 1.228,2.743 2.743,2.743 h 1.939 c 1.515,0 2.743,-1.228 2.743,-2.743 v -0.933 h 45.594 v 0.933 c 0,1.515 1.228,2.743 2.743,2.743 h 1.939 c 1.515,0 2.743,-1.228 2.743,-2.743 v -0.933 h 2.747 c 6.633,0 12.03,-5.396 12.03,-12.03 V 28.558 C 95,21.925 89.603,16.528 82.97,16.528 Z m 9.357,51.238 c 0,5.159 -4.197,9.356 -9.356,9.356 H 17.03 c -5.159,0 -9.356,-4.197 -9.356,-9.356 V 28.558 c 0,-5.159 4.197,-9.356 9.356,-9.356 h 65.94 c 5.159,0 9.356,4.197 9.356,9.356 v 39.208 z"
id="path8"
inkscape:connector-curvature="0" /><path
d="m 45.659,41.909 c -0.231,-0.356 -0.482,-0.701 -0.753,-1.032 l 0.882,-1.214 c 0.156,-0.215 0.22,-0.482 0.179,-0.744 -0.042,-0.263 -0.186,-0.497 -0.4,-0.653 L 42.41,35.973 c -0.446,-0.324 -1.072,-0.225 -1.396,0.222 l -0.879,1.21 C 39.738,37.252 39.331,37.12 38.918,37.01 v -1.497 c 0,-0.553 -0.448,-1 -1,-1 h -3.902 c -0.552,0 -1,0.447 -1,1 v 1.497 c -0.414,0.109 -0.82,0.241 -1.217,0.395 l -0.879,-1.21 c -0.324,-0.447 -0.949,-0.546 -1.396,-0.222 l -3.157,2.293 c -0.447,0.325 -0.546,0.95 -0.222,1.397 l 0.881,1.214 c -0.27,0.331 -0.521,0.676 -0.752,1.032 L 24.85,41.446 c -0.526,-0.171 -1.089,0.117 -1.26,0.643 L 22.381,45.8 c -0.17,0.524 0.117,1.089 0.642,1.26 l 1.426,0.464 c -0.013,0.216 -0.019,0.43 -0.019,0.639 0,0.209 0.006,0.423 0.019,0.639 l -1.426,0.464 c -0.525,0.171 -0.812,0.735 -0.642,1.26 l 1.206,3.711 c 0.171,0.525 0.734,0.813 1.26,0.643 l 1.424,-0.463 c 0.231,0.356 0.482,0.701 0.752,1.032 l -0.881,1.214 c -0.325,0.447 -0.226,1.072 0.222,1.397 l 3.157,2.293 c 0.448,0.325 1.072,0.226 1.396,-0.222 l 0.879,-1.21 c 0.397,0.153 0.804,0.285 1.217,0.395 v 1.497 c 0,0.553 0.448,1 1,1 h 3.902 c 0.552,0 1,-0.447 1,-1 v -1.497 c 0.414,-0.109 0.82,-0.241 1.217,-0.395 l 0.879,1.21 c 0.325,0.447 0.95,0.546 1.396,0.222 l 3.157,-2.293 c 0.215,-0.156 0.359,-0.391 0.4,-0.653 0.042,-0.262 -0.023,-0.529 -0.179,-0.744 l -0.882,-1.214 c 0.271,-0.331 0.522,-0.676 0.753,-1.032 l 1.424,0.463 c 0.528,0.17 1.089,-0.117 1.26,-0.643 l 1.206,-3.711 c 0.17,-0.524 -0.117,-1.089 -0.642,-1.26 l -1.426,-0.464 c 0.013,-0.216 0.019,-0.429 0.019,-0.639 0,-0.21 -0.006,-0.423 -0.019,-0.639 l 1.426,-0.464 c 0.525,-0.171 0.813,-0.735 0.642,-1.26 L 48.34,42.089 c -0.171,-0.525 -0.734,-0.813 -1.26,-0.643 z m -0.158,6.253 c 0,0.39 -0.027,0.799 -0.08,1.216 -0.061,0.477 0.226,0.93 0.683,1.078 l 1.235,0.401 -0.588,1.81 -1.231,-0.4 c -0.455,-0.148 -0.955,0.05 -1.186,0.471 -0.388,0.707 -0.87,1.368 -1.433,1.965 -0.33,0.35 -0.365,0.885 -0.082,1.274 l 0.764,1.051 -1.539,1.118 -0.761,-1.048 C 41,56.709 40.48,56.577 40.045,56.783 c -0.73,0.347 -1.508,0.599 -2.312,0.749 -0.473,0.089 -0.816,0.502 -0.816,0.983 v 1.297 h -1.902 v -1.297 c 0,-0.481 -0.343,-0.895 -0.816,-0.983 -0.804,-0.15 -1.582,-0.402 -2.312,-0.749 -0.436,-0.207 -0.956,-0.073 -1.238,0.315 l -0.761,1.048 -1.539,-1.118 0.763,-1.051 c 0.283,-0.39 0.248,-0.925 -0.082,-1.274 -0.562,-0.596 -1.044,-1.257 -1.433,-1.966 -0.23,-0.42 -0.729,-0.619 -1.186,-0.47 l -1.231,0.4 -0.588,-1.81 1.235,-0.401 c 0.456,-0.148 0.743,-0.601 0.683,-1.077 -0.053,-0.419 -0.08,-0.828 -0.08,-1.217 0,-0.389 0.027,-0.798 0.08,-1.217 0.06,-0.477 -0.227,-0.929 -0.683,-1.077 l -1.235,-0.401 0.588,-1.81 1.231,0.4 c 0.457,0.149 0.955,-0.049 1.186,-0.47 0.389,-0.709 0.872,-1.37 1.433,-1.966 0.33,-0.35 0.365,-0.885 0.082,-1.274 l -0.763,-1.051 1.539,-1.118 0.761,1.048 c 0.283,0.389 0.803,0.522 1.238,0.315 0.73,-0.347 1.508,-0.599 2.312,-0.749 0.473,-0.089 0.816,-0.502 0.816,-0.983 v -1.297 h 1.902 v 1.297 c 0,0.481 0.343,0.895 0.816,0.983 0.804,0.15 1.582,0.402 2.312,0.749 0.435,0.206 0.956,0.073 1.238,-0.315 l 0.761,-1.048 1.539,1.118 -0.764,1.051 c -0.283,0.39 -0.248,0.925 0.082,1.274 0.563,0.596 1.045,1.258 1.434,1.966 0.231,0.421 0.729,0.619 1.186,0.47 l 1.231,-0.4 0.588,1.81 -1.235,0.401 c -0.457,0.148 -0.744,0.602 -0.683,1.078 0.052,0.417 0.079,0.826 0.079,1.216 z"
id="path10"
inkscape:connector-curvature="0" /><path
d="m 35.965,40.528 c -4.209,0 -7.634,3.425 -7.634,7.634 0,4.209 3.424,7.634 7.634,7.634 4.209,0 7.633,-3.425 7.633,-7.634 0,-4.209 -3.424,-7.634 -7.633,-7.634 z m 0,13.268 c -3.106,0 -5.634,-2.527 -5.634,-5.634 0,-3.107 2.527,-5.634 5.634,-5.634 3.107,0 5.633,2.527 5.633,5.634 0,3.107 -2.526,5.634 -5.633,5.634 z"
id="path12"
inkscape:connector-curvature="0" /></g></svg>

After

Width:  |  Height:  |  Size: 9.8 KiB

162
images/badges/logging.svg Normal file
View File

@ -0,0 +1,162 @@
<?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"
xml:space="preserve"
style="clip-rule:evenodd;fill-rule:evenodd;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
viewBox="0 0 100 100"
x="0px"
y="0px"
version="1.1"
id="svg42"
sodipodi:docname="noun_Dog Paws_1677273.svg"
width="100"
height="100"
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
id="metadata46"><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><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1016"
id="namedview44"
showgrid="false"
inkscape:zoom="1.3444696"
inkscape:cx="-45.19209"
inkscape:cy="118.75"
inkscape:window-x="3840"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg42" /><defs
id="defs4"><style
type="text/css"
id="style2">
.fil0 {fill:black}
</style></defs><g
id="g36"
transform="matrix(0.4194049,0,0,0.4194049,24.738894,9.9818847)"><path
class="fil0"
d="m 40,172 c 14,12 -1,28 -19,12 -22,4 -23,-20 -8,-21 9,-15 29,-8 27,8 z"
id="path6"
inkscape:connector-curvature="0"
style="fill:#000000" /><ellipse
class="fil0"
transform="matrix(0.355134,0.107547,-0.107547,0.355134,6.43746,148.191)"
rx="17"
ry="21"
id="ellipse8"
cx="0"
cy="0"
style="fill:#000000" /><ellipse
class="fil0"
transform="matrix(0.355134,0.107547,-0.107547,0.355134,24.9162,138.303)"
rx="20"
ry="29"
id="ellipse10"
cx="0"
cy="0"
style="fill:#000000" /><ellipse
class="fil0"
transform="matrix(0.355134,0.107547,-0.107547,0.355134,45.4811,144.531)"
rx="20"
ry="29"
id="ellipse12"
cx="0"
cy="0"
style="fill:#000000" /><ellipse
class="fil0"
transform="matrix(0.355134,0.107547,-0.107547,0.355134,55.7231,163.117)"
rx="17"
ry="21"
id="ellipse14"
cx="0"
cy="0"
style="fill:#000000" /><path
class="fil0"
d="m 92,116 c 14,12 -1,28 -19,12 -22,4 -23,-20 -8,-21 9,-15 29,-8 27,8 z"
id="path16"
inkscape:connector-curvature="0"
style="fill:#000000" /><path
class="fil0"
d="M 81,44 C 95,56 80,72 62,56 40,60 39,36 54,35 63,20 83,27 81,43 Z"
id="path18"
inkscape:connector-curvature="0"
style="fill:#000000" /><ellipse
class="fil0"
transform="matrix(0.355134,0.107547,-0.107547,0.355134,58.5461,93.1409)"
rx="17"
ry="21"
id="ellipse20"
cx="0"
cy="0"
style="fill:#000000" /><ellipse
class="fil0"
transform="matrix(0.355134,0.107547,-0.107547,0.355134,47.4291,20.395)"
rx="17"
ry="21"
id="ellipse22"
cx="0"
cy="0"
style="fill:#000000" /><ellipse
class="fil0"
transform="matrix(0.355134,0.107547,-0.107547,0.355134,77.0249,83.2526)"
rx="20"
ry="29"
id="ellipse24"
cx="0"
cy="0"
style="fill:#000000" /><ellipse
class="fil0"
transform="matrix(0.355134,0.107547,-0.107547,0.355134,65.9078,10.5067)"
rx="20"
ry="29"
id="ellipse26"
cx="0"
cy="0"
style="fill:#000000" /><ellipse
class="fil0"
transform="matrix(0.355134,0.107547,-0.107547,0.355134,97.5898,89.4804)"
rx="20"
ry="29"
id="ellipse28"
cx="0"
cy="0"
style="fill:#000000" /><ellipse
class="fil0"
transform="matrix(0.355134,0.107547,-0.107547,0.355134,86.4728,16.7345)"
rx="20"
ry="29"
id="ellipse30"
cx="0"
cy="0"
style="fill:#000000" /><ellipse
class="fil0"
transform="matrix(0.355134,0.107547,-0.107547,0.355134,107.832,108.066)"
rx="17"
ry="21"
id="ellipse32"
cx="0"
cy="0"
style="fill:#000000" /><ellipse
class="fil0"
transform="matrix(0.355134,0.107547,-0.107547,0.355134,96.7147,35.3203)"
rx="17"
ry="21"
id="ellipse34"
cx="0"
cy="0"
style="fill:#000000" /></g></svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -0,0 +1,63 @@
<?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 99.999997 99.999997"
version="1.1"
x="0px"
y="0px"
id="svg10"
sodipodi:docname="noun_transfer_370308.svg"
width="100"
height="100"
inkscape:version="0.92.3 (2405546, 2018-03-11)">
<metadata
id="metadata16">
<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="defs14" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1016"
id="namedview12"
showgrid="false"
inkscape:zoom="2.5544923"
inkscape:cx="-3.7853107"
inkscape:cy="62.5"
inkscape:window-x="3840"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg10" />
<g
transform="matrix(0.86444616,0,0,0.86444616,6.8966962,-816.07577)"
id="g4">
<path
style="fill:none;stroke:#000000;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50,1024.2002 19.852781,-10e-5 v 10.9189 l 22.146438,-21.8378 -22.146438,-21.83775 v 10.91885 l -39.706471,-10e-5 v 10.9189 L 7.9998727,991.44334 30.14631,969.60551 v 10.91891 L 50,980.52423"
stroke-miterlimit="4"
id="path2"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

46
images/badges/stable.svg Normal file
View File

@ -0,0 +1,46 @@
<?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"
x="0px"
y="0px"
viewBox="0 0 100 100"
xml:space="preserve"
id="svg8"
sodipodi:docname="stable.svg"
width="100"
height="100"
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
id="metadata14"><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="defs12" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1016"
id="namedview10"
showgrid="false"
inkscape:zoom="2.3041776"
inkscape:cx="-34.192742"
inkscape:cy="10"
inkscape:window-x="3840"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" /><path
d="M 85,42 H 70 v -5 c 8.285,0 15,-6.715 15,-15 H 70 c 0,-2.76 -2.24,-5 -5,-5 H 35 c -2.76,0 -5,2.24 -5,5 H 15 c 0,8.285 6.715,15 15,15 v 5 H 15 c 0,8.285 6.715,15 15,15 v 5 H 15 c 0,8.285 6.715,15 15,15 V 87 H 70 V 77 c 8.285,0 15,-6.715 15,-15 H 70 v -5 c 8.285,0 15,-6.715 15,-15 z M 50,77 c -4.14,0 -7.5,-3.36 -7.5,-7.5 0,-4.14 3.36,-7.5 7.5,-7.5 4.14,0 7.5,3.36 7.5,7.5 0,4.14 -3.36,7.5 -7.5,7.5 z m 0,-20 c -4.14,0 -7.5,-3.36 -7.5,-7.5 0,-4.14 3.36,-7.5 7.5,-7.5 4.14,0 7.5,3.36 7.5,7.5 0,4.14 -3.36,7.5 -7.5,7.5 z m 0,-20 c -4.14,0 -7.5,-3.36 -7.5,-7.5 0,-4.14 3.36,-7.5 7.5,-7.5 4.14,0 7.5,3.36 7.5,7.5 0,4.14 -3.36,7.5 -7.5,7.5 z"
id="path2"
inkscape:connector-curvature="0"
style="stroke-width:5" /></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,62 @@
<?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 100 100"
version="1.1"
x="0px"
y="0px"
id="svg10"
sodipodi:docname="noun_Shrug_1221199.svg"
width="100"
height="100"
inkscape:version="0.92.3 (2405546, 2018-03-11)">
<metadata
id="metadata16">
<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="defs14" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1016"
id="namedview12"
showgrid="false"
inkscape:zoom="2.5544923"
inkscape:cx="-3.7853107"
inkscape:cy="62.5"
inkscape:window-x="3840"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg10" />
<g
transform="matrix(1.7884766,0,0,1.7884766,-39.789233,-1703.1827)"
id="g4">
<path
style="fill:#000000"
d="m 49.980707,957.36219 c -4.04468,0 -7.334293,3.2896 -7.334293,7.33429 0.0011,4.06992 3.290698,7.33429 7.334293,7.33429 4.069926,0 7.368565,-3.26437 7.368565,-7.33429 0,-4.04469 -3.298639,-7.33429 -7.368565,-7.33429 z m -8.634505,14.21662 a 2.8791691,2.8791691 0 0 0 -2.60899,1.81643 l -2.953842,7.14152 -2.666831,-5.66352 a 2.8794027,2.8794027 0 0 0 -5.209404,2.45476 l 5.442895,11.55408 a 2.8791691,2.8791691 0 0 0 5.265095,-0.12638 l 1.426587,-3.44866 v 24.04636 33.8375 a 4.1130987,4.1130987 0 1 0 8.225375,0 v -33.8375 h 3.461512 v 33.8375 a 4.1130987,4.1130987 0 1 0 8.225375,0 v -36.3115 -21.57236 l 1.426587,3.44866 a 2.8791691,2.8791691 0 0 0 5.265095,0.12638 L 72.08854,977.328 a 2.8794027,2.8794027 0 1 0 -5.209404,-2.45476 l -2.66682,5.66352 -2.953853,-7.14152 a 2.8791691,2.8791691 0 0 0 -2.696804,-1.81643 c -1.388509,0 -2.142589,0.31414 -2.962429,0.81183 -1.579733,1.14662 -3.51773,1.83357 -5.62495,1.83357 -1.959328,0 -3.77639,-0.59705 -5.290802,-1.61294 l 0.0022,0.011 c -0.987396,-0.63883 -1.739173,-1.03844 -3.337276,-1.03888 h -0.0022 v -0.004 z m 8.446001,9.9347 c 0.487655,-0.0142 0.980903,0.0259 1.482289,0.1221 0.508252,0.0888 0.995951,0.23556 1.462998,0.43484 0.467048,0.19225 0.903541,0.43899 1.308778,0.74114 0.412102,0.30225 0.772648,0.65897 1.081725,1.07101 0.309065,0.41203 0.553995,0.87884 0.732574,1.40088 0.185443,0.52192 0.283994,1.09883 0.297736,1.73076 0.01371,0.67305 -0.07929,1.32979 -0.278467,1.96852 -0.199186,0.63883 -0.510215,1.225 -0.936059,1.76074 -0.425844,0.52884 -0.968587,0.99009 -1.627944,1.38161 -0.652492,0.39153 -1.432465,0.67623 -2.339088,0.85466 l 0.04069,2.51688 c -0.0066,0.17175 -0.09191,0.3159 -0.257038,0.4327 -0.157971,0.1168 -0.357244,0.20209 -0.597633,0.25704 -0.233524,0.0559 -0.491658,0.0805 -0.773262,0.0728 -0.274739,-0.011 -0.532884,-0.0452 -0.773273,-0.11352 -0.233524,-0.0691 -0.428948,-0.16938 -0.586919,-0.29989 -0.157982,-0.13742 -0.239468,-0.30801 -0.246334,-0.51408 l -0.08357,-3.51507 v -0.002 c -0.0066,-0.26793 0.02577,-0.48811 0.09421,-0.65974 0.07556,-0.17175 0.174104,-0.30829 0.297737,-0.41127 0.130498,-0.10989 0.282394,-0.18962 0.454107,-0.23777 0.178578,-0.0548 0.370163,-0.095 0.576214,-0.1221 0.542579,-0.0625 1.030289,-0.17227 1.462999,-0.32987 0.432709,-0.16484 0.80477,-0.37565 1.113847,-0.62976 0.309066,-0.2541 0.551857,-0.55578 0.730435,-0.90607 0.178579,-0.35029 0.280979,-0.74498 0.308452,-1.18454 0.02062,-0.34338 -0.03608,-0.67541 -0.173501,-0.99818 -0.137364,-0.32967 -0.336626,-0.61807 -0.597634,-0.86538 -0.25412,-0.24731 -0.557921,-0.44484 -0.908213,-0.58906 -0.35028,-0.15112 -0.724063,-0.22325 -1.122423,-0.21634 -0.446441,0.011 -0.844966,0.0912 -1.195246,0.24847 -0.35028,0.15113 -0.648105,0.35423 -0.89537,0.60834 -0.247255,0.24731 -0.440979,0.53191 -0.578343,0.85467 -0.130509,0.32276 -0.204307,0.65303 -0.224915,0.98961 -0.0066,0.15113 -0.0941,0.27996 -0.259187,0.38985 -0.157971,0.10309 -0.357233,0.18281 -0.597623,0.23776 -0.233523,0.0548 -0.487819,0.0845 -0.762558,0.0921 -0.274727,0.011 -0.530745,-0.011 -0.771134,-0.0514 -0.233524,-0.0406 -0.428926,-0.10551 -0.586908,-0.19492 -0.151105,-0.0888 -0.227053,-0.20707 -0.227053,-0.35129 0,-0.64564 0.076,-1.23572 0.227053,-1.77146 0.157982,-0.54255 0.374299,-1.03415 0.649026,-1.47371 0.274739,-0.43957 0.597316,-0.82274 0.968203,-1.15241 0.377765,-0.33658 0.785655,-0.61941 1.22523,-0.8461 0.446441,-0.23349 0.913236,-0.408 1.400891,-0.5248 0.487655,-0.1236 0.983031,-0.19192 1.484417,-0.20563 z m -0.37057,16.19158 c 0.473914,-0.0139 0.864762,0.0774 1.173827,0.26989 0.315964,0.18542 0.553184,0.4205 0.711155,0.709 0.164848,0.28844 0.246334,0.60551 0.246334,0.94893 0.0066,0.34343 -0.06547,0.66209 -0.216339,0.95749 -0.151105,0.2953 -0.380659,0.5441 -0.689736,0.7432 -0.3022,0.1992 -0.683671,0.2978 -1.143842,0.2978 -0.418979,0 -0.771826,-0.093 -1.060306,-0.2785 -0.288458,-0.1923 -0.512474,-0.4335 -0.670445,-0.7218 -0.151105,-0.2886 -0.232602,-0.5956 -0.246333,-0.92536 -0.0066,-0.33647 0.05396,-0.64971 0.184215,-0.93821 0.137375,-0.29531 0.348153,-0.54191 0.629746,-0.74114 0.281604,-0.1991 0.642149,-0.30748 1.081724,-0.3213 z"
id="path2"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.7 KiB

BIN
images/datacoop-logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

BIN
images/logos/gitea.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
images/logos/nextcloud.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 170 KiB

BIN
images/logos/passit.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

22
index.md Normal file
View File

@ -0,0 +1,22 @@
---
layout: page
---
# Velkommen til data.coop
Vi er en forening som har formålet, at passe på medlemmernes data. Vores kerneprincipper er
- Privatlivsbeskyttelse
- Kryptering
- Decentralisering
- Zero-knowledge
Ud fra de kerneprincipper vil vi med tiden udbyde onlinetjenester til medlemmerne. Hovedtanken er,
at vi som udgangspunkt stoler mere på hinanden end på "de store" som f.eks. Google, Microsoft eller Facebook.
Foreningen holdt stiftende generalforsamling i 2014 og blev genstartet i 2016.
Foreningen arbejder nu på, at få gang i aktiviteterne. Inden længe vil du her på siden kunne læse om,
hvad du kan få ud af et medlemsskab samt detaljer om, hvordan du kan melde dig ind og være med til at opbygge noget fedt.
| Næste arrangement | Bliv medlem |
|---------------------------------------------------------------------------------------------------------|-----------------------------------------------------|
| Vi har generalforsamling online d. 24. marts 2021 kl. 20.00. Læs mere [her](/gf2021) | Vi har brug for medlemmer. [Læs mere her](/medlem). |

16
js/datacoop.js Normal file
View File

@ -0,0 +1,16 @@
window.onload = function(e) {
var details = document.querySelectorAll("section.service-details");
for (var detail of details) {
var toggle = document.createElement("a");
var service_name = detail.previousElementSibling.querySelector("a").text;
toggle.text = "Læs mere om " + service_name;
toggle.onclick = function(e) {
e.preventDefault();
var service_name = e.target.previousElementSibling.previousElementSibling.querySelector("a").text;
var hide = e.target.previousElementSibling.classList.toggle("hidden");
e.target.text = (hide ? "Læs mere om " : "Skjul detaljer om ") + service_name;
}
detail.insertAdjacentElement('afterend', toggle);
detail.classList.add("hidden");
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

View File

@ -1,19 +0,0 @@
{
"name": "",
"short_name": "",
"icons": [
{
"src": "/static/img/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/static/img/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#4b3aba",
"background_color": "#4b3aba",
"display": "standalone"
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="78" height="78" viewBox="0 0 78 78"><path class="a" d="M58.919,26.006,55.749,55.58l-24.79-1.611-1.29,1.291,27.3,1.77,3.49-32.564Zm-10.73-1.29,1.27-1.271-29.02-2.49L17.549,54.47l.84.05,1.28-1.281-.64-.04,2.66-30.764Z"/><path class="a" d="M38.995,0A39,39,0,1,0,78,39,39,39,0,0,0,38.995,0ZM5.732,39A33.25,33.25,0,0,1,60.894,13.974L13.972,60.9A33.185,33.185,0,0,1,5.732,39ZM38.995,72.277a33.06,33.06,0,0,1-20.888-7.4L64.867,18.11A33.253,33.253,0,0,1,38.995,72.277Z"/><circle class="a" cx="30.528" cy="30.308" r="3.66"/><path class="a" d="M34.879,38.027,31.109,41.8l-6.59-.43c.24-3.681,2.94-6.5,6.04-6.3A5.375,5.375,0,0,1,34.879,38.027Z"/><path class="a" d="M23.389,24.6l-1.16,18.022,7.57.49.95-.95-7.46-.48,1.04-16.012,13.44.87-.6,9.2,1.08-1.08.58-9.061Z"/><polygon class="a" points="54.297 51.689 54.186 53.064 34.188 51.396 35.462 50.122 54.297 51.689"/><polygon class="a" points="51.062 47.038 50.95 48.413 38.161 47.412 39.455 46.128 51.062 47.038"/><polygon class="a" points="47.816 42.376 47.725 43.761 42.185 43.387 43.489 42.093 47.816 42.376"/></svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="78" height="78" viewBox="0 0 78 78"><path class="a" d="M38.969,5.731a33.266,33.266,0,0,1,15.14,62.9A33.237,33.237,0,0,1,9.369,54.109,33.3,33.3,0,0,1,23.891,9.369,32.9,32.9,0,0,1,38.969,5.731m0-5.731A39,39,0,1,0,73.736,21.287,38.825,38.825,0,0,0,38.969,0Z"/><path class="a" d="M26.02,23.661c-5.388,0-9.755,1.637-9.755,3.669V50.671c0,2.022,4.367,3.67,9.755,3.67s9.744-1.648,9.744-3.67V27.33C35.764,25.3,31.4,23.661,26.02,23.661Zm0,6.449c-5.419,0-8.876-1.648-8.876-2.78s3.457-2.78,8.876-2.78,8.865,1.648,8.865,2.78S31.428,30.11,26.02,30.11Z"/><path class="a" d="M52.305,54.843l-.012-1.011c.477-.006.946-.023,1.4-.056l.07,1.009C53.29,54.817,52.8,54.837,52.305,54.843Zm-1.461-.021c-.5-.021-.986-.057-1.459-.105l.1-1c.453.046.921.08,1.4.1Zm4.377-.178-.129-1c.478-.061.939-.136,1.38-.225l.2.991Q55.975,54.547,55.221,54.644Zm-7.289-.121c-.5-.084-.986-.183-1.442-.3l.245-.981c.431.107.887.2,1.364.281Zm10.173-.467-.283-.969a11.4,11.4,0,0,0,1.293-.458l.4.93A12.719,12.719,0,0,1,58.105,54.056ZM45.07,53.8a9.752,9.752,0,0,1-1.382-.612l.487-.887a8.629,8.629,0,0,0,1.236.547Zm15.791-.97L60.284,52a2.566,2.566,0,0,0,.822-.845l.893.472A3.509,3.509,0,0,1,60.861,52.829Zm-18.443-.587a2.274,2.274,0,0,1-.693-1.572l1.01-.049v.049a1.309,1.309,0,0,0,.418.879Zm19.827-2.25H61.234V48.56h1.011Zm-19.51-.8h-1.01V47.755h1.01Zm19.51-2.061H61.234V45.694h1.011Zm-19.51-.8h-1.01V44.889h1.01Zm19.51-2.06H61.234V42.829h1.011Zm-19.51-.8h-1.01V42.024h1.01ZM62.245,41.4H61.234V39.963h1.011Zm-19.51-.8h-1.01V39.159h1.01Zm19.51-2.06H61.234V37.1h1.011Zm-19.51-.806h-1.01V36.293h1.01Zm19.51-2.06H61.234V34.233h1.011Zm-19.51-.8h-1.01V33.427h1.01ZM62.245,32.8H61.234V31.367h1.011ZM42.735,32h-1.01V30.562h1.01Zm19.51-2.06H61.234V28.5h1.011Zm-19.51-.806h-1.01V27.7h1.01Zm18.484-1.965a1.654,1.654,0,0,0-.594-.9l.668-.758a2.625,2.625,0,0,1,.92,1.469Zm-18.228-.516-.813-.6A4.262,4.262,0,0,1,43.4,24.987l.528.861A3.281,3.281,0,0,0,42.991,26.648Zm16.544-1.08a9.827,9.827,0,0,0-1.263-.511l.32-.96a11.145,11.145,0,0,1,1.392.565Zm-14.4-.307-.37-.94a13.508,13.508,0,0,1,1.415-.463l.264.976A12.582,12.582,0,0,0,45.132,25.261Zm11.807-.574c-.435-.1-.893-.188-1.371-.261l.153-1c.5.077.986.169,1.444.275ZM47.8,24.529l-.184-.993q.7-.13,1.451-.218l.116,1C48.7,24.378,48.242,24.448,47.8,24.529Zm6.376-.269c-.455-.04-.923-.069-1.4-.083l.031-1.011q.747.024,1.46.087Zm-3.6-.056L50.525,23.2c.476-.027.964-.04,1.46-.04v1.01C51.508,24.165,51.039,24.179,50.58,24.2Z"/><path class="a" d="M51.611,30.865c-.5-.007-.985-.028-1.461-.062l.072-1.009c.457.034.926.053,1.4.06Zm1.461-.019-.041-1.011q.717-.029,1.4-.1l.1,1Q53.82,30.813,53.072,30.846ZM48.7,30.658c-.5-.066-.987-.147-1.449-.241l.2-.991q.66.135,1.378.229Zm7.288-.105-.164-1c.476-.078.933-.171,1.366-.277l.24.981C56.97,30.371,56.488,30.47,55.984,30.553Zm-10.172-.491a12.491,12.491,0,0,1-1.405-.505l.4-.927a11.728,11.728,0,0,0,1.291.463Zm13.036-.224-.338-.954a8.677,8.677,0,0,0,1.241-.54l.48.891A10.012,10.012,0,0,1,58.848,29.838Z"/></svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="78" height="78" viewBox="0 0 78 78"><path class="a" d="M53.817,30.456h-.531v-8.7A7.873,7.873,0,0,0,45.421,13.9H32.579a7.873,7.873,0,0,0-7.865,7.864v8.7h-.531a3.311,3.311,0,0,0-3.311,3.311V57.276a3.311,3.311,0,0,0,3.311,3.312H53.817a3.311,3.311,0,0,0,3.311-3.312V33.767A3.311,3.311,0,0,0,53.817,30.456Zm-23.37-8.7a2.134,2.134,0,0,1,2.132-2.132H45.421a2.134,2.134,0,0,1,2.132,2.132v8.7H30.447Z"/><rect class="b" x="28.033" y="39" width="1.713" height="13.044"/><rect class="b" x="33.088" y="39" width="1.713" height="13.044"/><rect class="b" x="38.144" y="39" width="1.713" height="13.044"/><rect class="b" x="43.199" y="39" width="1.713" height="13.044"/><rect class="b" x="48.254" y="39" width="1.713" height="13.044"/><path class="a" d="M39,5.732A33.268,33.268,0,1,1,5.732,39,33.306,33.306,0,0,1,39,5.732M39,0A39,39,0,1,0,78,39,39,39,0,0,0,39,0Z"/></svg>

Before

Width:  |  Height:  |  Size: 903 B

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="78" height="78" viewBox="0 0 78 78"><path class="a" d="M55.262,29.734,53.351,59.185,28.005,57l-1.274,1.274,27.914,2.416,2.093-32.433Zm-2.74-9.413L24.234,17.288,21.292,51.552l1.517-1.517,2.679-31.22,25.781,2.76Z"/><polygon class="a" points="50.814 54.595 50.703 55.97 30.705 54.302 31.978 53.028 50.814 54.595"/><polygon class="a" points="47.578 49.944 47.467 51.319 34.678 50.318 35.972 49.034 47.578 49.944"/><polygon class="a" points="44.333 45.283 44.242 46.669 38.702 46.294 40.006 45 44.333 45.283"/><polygon class="a" points="40.724 32.12 39.49 33.353 34.486 32.706 34.658 31.331 40.724 32.12"/><polygon class="a" points="44.636 28.207 43.393 29.451 31.261 28.046 31.412 26.681 44.636 28.207"/><polygon class="a" points="48.579 24.264 47.326 25.518 28.025 23.395 28.177 22.02 48.579 24.264"/><path class="a" d="M38.995,0A39,39,0,1,0,78,38.995,39,39,0,0,0,38.995,0ZM5.732,38.995A33.251,33.251,0,0,1,60.894,13.972L13.972,60.894A33.181,33.181,0,0,1,5.732,38.995ZM38.995,72.267a33.064,33.064,0,0,1-20.888-7.4l46.76-46.76a33.248,33.248,0,0,1-25.872,54.16Z"/></svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="78" height="78" viewBox="0 0 78 78"><path class="a" d="M65.937,28.586a15.327,15.327,0,0,0-2.478-.192A14.588,14.588,0,0,0,55.33,30.72a50.047,50.047,0,0,0-13.467-2.265V62.377a2.867,2.867,0,1,1-5.733,0V28.455A50.048,50.048,0,0,0,22.662,30.72a14.612,14.612,0,0,0-8.129-2.326,15.288,15.288,0,0,0-2.467.192A28.845,28.845,0,0,1,38.981,10.1a28.964,28.964,0,0,1,21.475,9.555A28.608,28.608,0,0,1,65.937,28.586Z"/><path class="a" d="M39,5.732A33.268,33.268,0,1,1,5.732,39,33.306,33.306,0,0,1,39,5.732M39,0A39,39,0,1,0,78,39,39,39,0,0,0,39,0Z"/></svg>

Before

Width:  |  Height:  |  Size: 587 B

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="78" height="78" viewBox="0 0 78 78"><path class="a" d="M39,5.732A33.268,33.268,0,1,1,5.732,39,33.306,33.306,0,0,1,39,5.732M39,0A39,39,0,1,0,78,39,39,39,0,0,0,39,0Z"/><path class="a" d="M65.135,26.48V31.6h-5.42V53.345H49.928V42.465a10.88,10.88,0,0,0-21.759,0v10.88H18.786V31.6H13.367V26.48Z"/></svg>

Before

Width:  |  Height:  |  Size: 346 B

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="78" height="78" viewBox="0 0 78 78"><polygon class="a" points="69.356 31.015 59.205 28.555 60.186 31.891 53.448 33.872 54.433 37.223 61.171 35.241 62.152 38.577 69.356 31.015"/><polygon class="a" points="54.64 56.93 31.1 60.56 22.94 62.07 48 37.01 52.15 50.78 49.47 35.54 50.67 34.34 54.64 56.93"/><polygon class="a" points="48.85 24 47.65 25.2 46.58 19.13 16.41 23.15 16.74 25.33 43.4 21.79 45.18 27.67 18.83 54.02 11.87 25.98 15.37 25.51 14.82 21.96 47.72 17.59 48.85 24"/><path class="a" d="M39,0A39,39,0,1,0,78,39,39,39,0,0,0,39,0Zm0,5.732a33.119,33.119,0,0,1,21.891,8.249l-46.91,46.91A33.242,33.242,0,0,1,39,5.732Zm0,66.536a33.1,33.1,0,0,1-20.888-7.4L64.867,18.112A33.244,33.244,0,0,1,39,72.268Z"/></svg>

Before

Width:  |  Height:  |  Size: 757 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1,37 +0,0 @@
<svg viewBox="0 0 212 212" xmlns="http://www.w3.org/2000/svg">
<metadata
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/"
>
<rdf:RDF>
<cc:Work rdf:about="https://codeberg.org/forgejo/governance/src/branch/main/branding#logo">
<dc:title>Forgejo logo</dc:title>
<cc:creator rdf:resource="https://caesarschinas.com/"><cc:attributionName>Caesar Schinas</cc:attributionName></cc:creator>
<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
</cc:Work>
</rdf:RDF>
</metadata>
<style type="text/css">
:root, svg {
color-scheme: dark light;
}
circle {
fill: none;
stroke: #4b3aba;
stroke-width: 15;
}
path {
fill: none;
stroke: #4b3aba;
stroke-width: 25;
}
</style>
<g transform="translate(6,6)">
<path d="M58 168 v-98 a50 50 0 0 1 50-50 h20" />
<path d="M58 168 v-30 a50 50 0 0 1 50-50 h20" />
<circle cx="142" cy="20" r="18" />
<circle cx="142" cy="88" r="18" />
<circle cx="58" cy="180" r="18" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1 +0,0 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><defs><style>.cls-1{fill:#4b3aba;}</style></defs><title>DataCoop_Cross_Purple</title><rect class="cls-1" x="9" width="2" height="20" transform="translate(-4.14 10) rotate(-45)"/><rect class="cls-1" x="9" width="2" height="20" transform="translate(10 24.14) rotate(-135)"/></svg>

Before

Width:  |  Height:  |  Size: 371 B

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="78" height="78" viewBox="0 0 78 78"><defs><style>.a{fill:#4b3aba;}</style></defs><path class="a" d="M61.415,32.179a6.635,6.635,0,0,0-5.325,2.677l-14.834-8.2a6.652,6.652,0,1,0-11.243,1.221L20.5,39.641a6.656,6.656,0,1,0,2.816,8.712l11.966,3.238c-.015.181-.027.363-.027.548a6.653,6.653,0,1,0,12.69-2.784l8.565-6.035a6.65,6.65,0,1,0,4.9-11.141Zm-6.638,6.36L40.121,40.782,37.277,30.13a6.642,6.642,0,0,0,2.556-1.517l15.187,8.4A6.634,6.634,0,0,0,54.777,38.539ZM23.6,43.309a6.628,6.628,0,0,0-1.236-2.153l9.443-11.682a6.618,6.618,0,0,0,3.057.95l2.864,10.723Zm.344,2.725c.01-.115.014-.232.018-.349l14.39-2.2.708,2.651a6.665,6.665,0,0,0-3.15,3.139ZM46.566,47.39a6.626,6.626,0,0,0-4.655-1.9c-.178,0-.352.013-.527.027l-.639-2.4L55.1,40.92c.041.122.086.243.133.363Z"/><path class="a" d="M39,5.732A33.268,33.268,0,1,1,5.732,39,33.306,33.306,0,0,1,39,5.732M39,0A39,39,0,1,0,78,39,39,39,0,0,0,39,0Z"/></svg>

Before

Width:  |  Height:  |  Size: 937 B

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="78" height="78" viewBox="0 0 78 78"><defs><style>.a{fill:#4b3aba;}.b{fill:#fff;}</style></defs><path class="a" d="M53.817,30.456h-.531v-8.7A7.873,7.873,0,0,0,45.421,13.9H32.579a7.873,7.873,0,0,0-7.865,7.864v8.7h-.531a3.311,3.311,0,0,0-3.311,3.311V57.276a3.311,3.311,0,0,0,3.311,3.312H53.817a3.311,3.311,0,0,0,3.311-3.312V33.767A3.311,3.311,0,0,0,53.817,30.456Zm-23.37-8.7a2.134,2.134,0,0,1,2.132-2.132H45.421a2.134,2.134,0,0,1,2.132,2.132v8.7H30.447Z"/><rect class="b" x="28.033" y="39" width="1.713" height="13.044"/><rect class="b" x="33.088" y="39" width="1.713" height="13.044"/><rect class="b" x="38.144" y="39" width="1.713" height="13.044"/><rect class="b" x="43.199" y="39" width="1.713" height="13.044"/><rect class="b" x="48.254" y="39" width="1.713" height="13.044"/><path class="a" d="M39,5.732A33.268,33.268,0,1,1,5.732,39,33.306,33.306,0,0,1,39,5.732M39,0A39,39,0,1,0,78,39,39,39,0,0,0,39,0Z"/></svg>

Before

Width:  |  Height:  |  Size: 961 B

View File

@ -1 +0,0 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><defs><style>.cls-1{fill:#4b3aba;}</style></defs><title>DataCoop_Plus_Purple</title><rect class="cls-1" x="9" y="2" width="2" height="16"/><rect class="cls-1" x="9" y="2" width="2" height="16" transform="translate(0 20) rotate(-90)"/></svg>

Before

Width:  |  Height:  |  Size: 333 B

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="78" height="78" viewBox="0 0 78 78"><defs><style>.a{fill:#4b3aba;}</style></defs><path class="a" d="M14.158,34.581,32.1,40.354,24.4,48.048,12.227,44.136a2.28,2.28,0,0,1-1.476-2.882L13.076,34A3.6,3.6,0,0,0,14.158,34.581Z"/><path class="a" d="M66.553,43.984,63.651,53a1.563,1.563,0,0,1-1.962,1.011L58.7,53.053a1.558,1.558,0,0,1-1.011-1.931l-2.791-.9-1.527,4.732a2.3,2.3,0,0,1-2.892,1.486L33.6,51.011l7.7-7.705,6.3,2.033a3.452,3.452,0,0,0,2.649-.223l7.694-3.943,2.66.849a1.563,1.563,0,0,1,1.951-.97l2.993.96A1.568,1.568,0,0,1,66.553,43.984Z"/><path class="a" d="M44.926,27.523,32.843,39.606l-18.4-5.925A2.534,2.534,0,0,1,12.8,30.486L15.9,20.86a2.538,2.538,0,0,1,3.195-1.638Z"/><path class="a" d="M62.559,37.745l-12.73,6.542a2.538,2.538,0,0,1-1.941.152l-5.834-1.881L54.127,30.486l8.048,2.588a2.539,2.539,0,0,1,.384,4.671Z"/><path class="a" d="M39,0A39,39,0,1,0,78,39,39,39,0,0,0,39,0Zm0,5.732A33.11,33.11,0,0,1,60.68,13.8L13.8,60.68A33.24,33.24,0,0,1,39,5.732Zm0,66.536a33.112,33.112,0,0,1-21.108-7.574l46.8-46.8A33.25,33.25,0,0,1,39,72.268Z"/></svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="78" height="78" viewBox="0 0 78 78"><defs><style>.a{fill:#4b3aba;}</style></defs><polygon class="a" points="69.356 31.015 59.205 28.555 60.186 31.891 53.448 33.872 54.433 37.223 61.171 35.241 62.152 38.577 69.356 31.015"/><polygon class="a" points="54.64 56.93 31.1 60.56 22.94 62.07 48 37.01 52.15 50.78 49.47 35.54 50.67 34.34 54.64 56.93"/><polygon class="a" points="48.85 24 47.65 25.2 46.58 19.13 16.41 23.15 16.74 25.33 43.4 21.79 45.18 27.67 18.83 54.02 11.87 25.98 15.37 25.51 14.82 21.96 47.72 17.59 48.85 24"/><path class="a" d="M39,0A39,39,0,1,0,78,39,39,39,0,0,0,39,0Zm0,5.732a33.119,33.119,0,0,1,21.891,8.249l-46.91,46.91A33.242,33.242,0,0,1,39,5.732Zm0,66.536a33.1,33.1,0,0,1-20.888-7.4L64.867,18.112A33.244,33.244,0,0,1,39,72.268Z"/></svg>

Before

Width:  |  Height:  |  Size: 801 B

View File

@ -1,162 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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"
viewBox="0 0 104 64" style="enable-background:new 0 0 104 64;" xml:space="preserve">
<style type="text/css">
.st0{fill:#483AAA;}
.st1{fill:#AFA7E9;}
</style>
<g>
<g>
<path class="st0" d="M12.1,29h-1.8v-2.1H9.9c-0.7,1.2-1.9,2.4-4.3,2.4c-3.1,0-5.6-2.5-5.6-6.2s2.5-6.2,5.6-6.2
c2.4,0,3.7,1.2,4.3,2.4h0.3V13h1.8V29z M1.9,23.1c0,2.8,1.7,4.6,4.1,4.6c2.5,0,4.2-1.8,4.2-4.6c0-2.8-1.8-4.6-4.2-4.6
C3.6,18.5,1.9,20.3,1.9,23.1z"/>
<path class="st0" d="M20.6,16.9c3.1,0,5,1.8,5,4.6V29h-1.8v-2h-0.3c-0.7,1.2-2,2.3-4.5,2.3c-2.6,0-4.4-1.4-4.4-3.5
c0-2.1,1.6-3.2,4-3.4l5.2-0.5v-0.5c0-1.8-1.2-3-3.3-3c-2.1,0-3.3,1.2-4,2.7l-1.6-0.9C15.8,18.7,17.4,16.9,20.6,16.9z M19.3,27.8
c2.6,0,4.5-1.5,4.5-4.1v-0.2l-4.8,0.5c-1.5,0.1-2.4,0.8-2.4,1.9C16.5,27,17.6,27.8,19.3,27.8z"/>
<path class="st0" d="M28.3,13h1.8v4.2h3.5v1.6h-3.5v7.9c0,0.5,0.2,0.7,0.7,0.7h2V29h-2.7c-1.1,0-1.8-0.7-1.8-1.9V13z"/>
<path class="st0" d="M41.2,16.9c3.1,0,5,1.8,5,4.6V29h-1.8v-2h-0.3c-0.7,1.2-2,2.3-4.5,2.3c-2.6,0-4.4-1.4-4.4-3.5
c0-2.1,1.6-3.2,4-3.4l5.2-0.5v-0.5c0-1.8-1.2-3-3.3-3c-2.1,0-3.3,1.2-4,2.7l-1.6-0.9C36.4,18.7,38.1,16.9,41.2,16.9z M39.9,27.8
c2.6,0,4.5-1.5,4.5-4.1v-0.2l-4.8,0.5c-1.5,0.1-2.4,0.8-2.4,1.9C37.1,27,38.3,27.8,39.9,27.8z"/>
</g>
<g>
<path class="st0" d="M6.1,31.6c3.1,0,5.2,2,5.7,4.5l-1.8,0.4c-0.2-1.9-1.6-3.2-3.8-3.2c-2.4,0-4.2,1.9-4.2,4.6
c0,2.7,1.8,4.6,4.3,4.6c2.3,0,3.5-1.4,3.8-3.2l1.8,0.4c-0.5,2.6-2.5,4.5-5.7,4.5c-3.4,0-6.1-2.6-6.1-6.2C0,34.2,2.7,31.6,6.1,31.6
z"/>
<path class="st0" d="M19.9,31.6c3.6,0,6,2.6,6,6.2c0,3.7-2.5,6.2-6,6.2c-3.6,0-6-2.6-6-6.2C13.9,34.2,16.4,31.6,19.9,31.6z
M19.9,42.5c2.5,0,4.2-1.9,4.2-4.6c0-2.7-1.6-4.6-4.2-4.6s-4.2,1.9-4.2,4.6C15.7,40.6,17.4,42.5,19.9,42.5z"/>
<path class="st0" d="M34,31.6c3.6,0,6,2.6,6,6.2c0,3.7-2.5,6.2-6,6.2c-3.6,0-6-2.6-6-6.2C28,34.2,30.4,31.6,34,31.6z M34,42.5
c2.5,0,4.2-1.9,4.2-4.6c0-2.7-1.6-4.6-4.2-4.6c-2.5,0-4.2,1.9-4.2,4.6C29.8,40.6,31.5,42.5,34,42.5z"/>
<path class="st0" d="M42.6,32h1.8V34h0.3c0.7-1.2,1.9-2.4,4.4-2.4c3.1,0,5.6,2.5,5.6,6.2c0,3.7-2.5,6.2-5.6,6.2
c-2.5,0-3.7-1.2-4.4-2.4h-0.3V48h-1.9V32z M52.9,37.9c0-2.9-1.7-4.6-4.2-4.6c-2.5,0-4.2,1.8-4.2,4.6c0,2.8,1.7,4.6,4.2,4.6
C51.2,42.5,52.9,40.7,52.9,37.9z"/>
</g>
<g>
<g>
<g>
<rect x="84.3" y="15" class="st0" width="9" height="1"/>
</g>
<g>
<rect x="83.3" y="17" class="st0" width="10" height="1"/>
</g>
<g>
<rect x="85.3" y="13" class="st0" width="7" height="1"/>
</g>
<g>
<rect x="86.3" y="11" class="st0" width="6" height="1"/>
</g>
<g>
<rect x="87.3" y="9" class="st0" width="4" height="1"/>
</g>
<g>
<rect x="87.3" y="7" class="st0" width="3" height="1"/>
</g>
<g>
<rect x="87.3" y="5" class="st0" width="2" height="1"/>
</g>
<g>
<rect x="82.3" y="19" class="st0" width="11" height="1"/>
</g>
<g>
<rect x="80.3" y="21" class="st0" width="12" height="1"/>
</g>
<g>
<rect x="79.3" y="23" class="st0" width="13" height="1"/>
</g>
<g>
<rect x="69.3" y="25" class="st0" width="29" height="1"/>
</g>
<g>
<rect x="68.3" y="27" class="st0" width="32" height="1"/>
</g>
<g>
<rect x="68.3" y="29" class="st0" width="28" height="1"/>
</g>
<g>
<rect x="78.3" y="31" class="st0" width="13" height="1"/>
</g>
<g>
<rect x="79.3" y="33" class="st0" width="11" height="1"/>
</g>
<g>
<rect x="79.3" y="35" class="st0" width="10" height="1"/>
</g>
<g>
<rect x="79.3" y="37" class="st0" width="9" height="1"/>
</g>
<g>
<rect x="79.3" y="39" class="st0" width="8" height="1"/>
</g>
<g>
<rect x="79.3" y="41" class="st0" width="7" height="1"/>
</g>
<g>
<rect x="79.3" y="43" class="st0" width="6" height="1"/>
</g>
<g>
<rect x="79.3" y="45" class="st0" width="4" height="1"/>
</g>
<g>
<rect x="78.3" y="47" class="st0" width="2" height="1"/>
</g>
<g>
<rect x="68.3" y="23" class="st0" width="5" height="1"/>
</g>
<g>
<rect x="67.3" y="21" class="st0" width="4" height="1"/>
</g>
<g>
<rect x="66.3" y="31" class="st0" width="3" height="1"/>
</g>
</g>
<g>
<rect x="73.3" class="st1" width="13" height="1"/>
<rect x="69.3" y="2" class="st1" width="6" height="1"/>
<rect x="77.8" y="2" class="st1" width="12.5" height="1"/>
<rect x="79.3" y="4" class="st1" width="14" height="1"/>
<rect x="66.3" y="4" class="st1" width="10" height="1"/>
<rect x="64.3" y="6" class="st1" width="12" height="1"/>
<rect x="81.3" y="6" class="st1" width="14" height="1"/>
<rect x="82.3" y="8" class="st1" width="15" height="1"/>
<rect x="62.3" y="8" class="st1" width="14" height="1"/>
<rect x="84.3" y="10" class="st1" width="15" height="1"/>
<rect x="60.3" y="10" class="st1" width="16" height="1"/>
<rect x="85.3" y="12" class="st1" width="15" height="1"/>
<rect x="59.3" y="12" class="st1" width="17" height="1"/>
<rect x="58.3" y="14" class="st1" width="18" height="1"/>
<rect x="87.3" y="14" class="st1" width="14" height="1"/>
<rect x="87.3" y="16" class="st1" width="15" height="1"/>
<rect x="57.3" y="16" class="st1" width="18" height="1"/>
<rect x="63.3" y="18" class="st1" width="11" height="1"/>
<rect x="85.3" y="18" class="st1" width="17" height="1"/>
<rect x="57.3" y="18" class="st1" width="4" height="1"/>
<rect x="56.3" y="20" class="st1" width="6" height="1"/>
<rect x="89.3" y="20" class="st1" width="14" height="1"/>
<rect x="56.3" y="22" class="st1" width="6" height="1"/>
<rect x="93.3" y="22" class="st1" width="10" height="1"/>
<rect x="73.3" y="44" class="st1" width="13" height="1"/>
<rect x="69.3" y="42" class="st1" width="3" height="1"/>
<rect x="74.3" y="42" class="st1" width="16" height="1"/>
<rect x="66.3" y="40" class="st1" width="6" height="1"/>
<rect x="76.3" y="40" class="st1" width="17" height="1"/>
<rect x="78.3" y="38" class="st1" width="17" height="1"/>
<rect x="64.3" y="38" class="st1" width="9" height="1"/>
<rect x="62.3" y="36" class="st1" width="11" height="1"/>
<rect x="79.3" y="36" class="st1" width="18" height="1"/>
<rect x="60.3" y="34" class="st1" width="13" height="1"/>
<rect x="81.3" y="34" class="st1" width="18" height="1"/>
<rect x="59.3" y="32" class="st1" width="14" height="1"/>
<rect x="82.3" y="32" class="st1" width="18" height="1"/>
<rect x="58.3" y="30" class="st1" width="15" height="1"/>
<rect x="83.3" y="30" class="st1" width="18" height="1"/>
<rect x="84.3" y="28" class="st1" width="18" height="1"/>
<rect x="57.3" y="28" class="st1" width="16" height="1"/>
<rect x="64.3" y="26" class="st1" width="9" height="1"/>
<rect x="57.3" y="26" class="st1" width="3" height="1"/>
<rect x="85.3" y="26" class="st1" width="17" height="1"/>
<rect x="90.3" y="24" class="st1" width="13" height="1"/>
<rect x="56.3" y="24" class="st1" width="5" height="1"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 7.1 KiB

View File

@ -1,220 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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"
viewBox="0 0 104 64" style="enable-background:new 0 0 104 64;" xml:space="preserve">
<style type="text/css">
.st0{fill:#483AAA;}
.st1{fill:#AFA7E9;}
</style>
<g>
<g>
<path class="st0" d="M0.9,56.8l1.2,3.4h0.1l1.2-3.4h0.9L2.7,61H1.5L0,56.8H0.9z"/>
<path class="st0" d="M6.7,56.7c1.2,0,2.2,0.9,2.2,2.2c0,1.3-0.9,2.2-2.2,2.2c-1.2,0-2.1-0.9-2.1-2.2C4.6,57.6,5.5,56.7,6.7,56.7z
M6.7,60.4c0.8,0,1.4-0.6,1.4-1.5c0-0.9-0.5-1.5-1.4-1.5c-0.8,0-1.3,0.6-1.3,1.5C5.4,59.8,5.9,60.4,6.7,60.4z"/>
<path class="st0" d="M10.5,57.4h0.1c0.2-0.4,0.5-0.6,1-0.6h0.5v0.7h-0.7c-0.6,0-1,0.3-1,1V61H9.7v-4.2h0.8V57.4z"/>
<path class="st0" d="M14.5,56.7c1.2,0,2,0.8,2,2.1v0.4h-3.3c0,0.7,0.5,1.3,1.3,1.3c0.7,0,1-0.4,1.2-0.8l0.7,0.4
c-0.3,0.5-0.8,1.1-1.9,1.1c-1.3,0-2.1-0.9-2.1-2.2C12.4,57.6,13.3,56.7,14.5,56.7z M15.7,58.5c0-0.7-0.5-1.1-1.2-1.1
c-0.7,0-1.2,0.4-1.3,1.1H15.7z"/>
<path class="st0" d="M18.8,56.7c0.9,0,1.6,0.4,2.1,1l-0.5,0.5c-0.5-0.6-1-0.8-1.5-0.8c-0.5,0-0.8,0.2-0.8,0.5
c0,0.3,0.3,0.5,0.8,0.6l0.5,0.1c0.9,0.1,1.6,0.4,1.6,1.2s-0.7,1.3-1.7,1.3c-1,0-1.8-0.5-2.2-1.3l0.6-0.4c0.4,0.8,1,1,1.6,1
c0.6,0,0.9-0.2,0.9-0.6s-0.3-0.5-0.9-0.6l-0.5-0.1c-0.9-0.2-1.5-0.5-1.5-1.2C17.2,57.2,17.8,56.7,18.8,56.7z"/>
<path class="st0" d="M28.3,61h-0.8v-0.7h-0.1c-0.2,0.4-0.6,0.8-1.5,0.8c-1.1,0-2-0.9-2-2.2s0.9-2.2,2-2.2c0.8,0,1.2,0.4,1.5,0.8
h0.1v-2.4h0.8V61z M24.8,58.9c0,0.9,0.6,1.5,1.3,1.5c0.8,0,1.4-0.6,1.4-1.5c0-0.9-0.6-1.5-1.4-1.5C25.3,57.4,24.8,58,24.8,58.9z"
/>
<path class="st0" d="M31.3,56.7c1.1,0,1.8,0.6,1.8,1.6V61h-0.8v-0.7h-0.1c-0.2,0.4-0.6,0.8-1.5,0.8c-0.9,0-1.6-0.5-1.6-1.3
c0-0.8,0.6-1.2,1.4-1.2l1.8-0.2v-0.1c0-0.5-0.4-0.9-1.1-0.9c-0.7,0-1.1,0.4-1.3,0.9l-0.7-0.4C29.6,57.4,30.1,56.7,31.3,56.7z
M30.8,60.4c0.8,0,1.4-0.5,1.4-1.3v-0.1l-1.6,0.2c-0.5,0.1-0.8,0.2-0.8,0.6C30,60.2,30.3,60.4,30.8,60.4z"/>
<path class="st0" d="M34.8,56.8v-1.4h0.8v1.4h1.3v0.7h-1.3v2.5c0,0.2,0.1,0.3,0.2,0.3h0.8V61h-1.1c-0.4,0-0.7-0.3-0.7-0.7v-2.8
h-1.2v-0.7H34.8z"/>
<path class="st0" d="M39.5,56.7c1.1,0,1.8,0.6,1.8,1.6V61h-0.8v-0.7h-0.1c-0.2,0.4-0.6,0.8-1.5,0.8c-0.9,0-1.6-0.5-1.6-1.3
c0-0.8,0.6-1.2,1.4-1.2l1.8-0.2v-0.1c0-0.5-0.4-0.9-1.1-0.9c-0.7,0-1.1,0.4-1.3,0.9l-0.7-0.4C37.8,57.4,38.4,56.7,39.5,56.7z
M39.1,60.4c0.8,0,1.4-0.5,1.4-1.3v-0.1L39,59.3c-0.5,0.1-0.8,0.2-0.8,0.6C38.2,60.2,38.6,60.4,39.1,60.4z"/>
<path class="st0" d="M45.3,55c0.4,0,0.6,0.3,0.6,0.6c0,0.3-0.3,0.6-0.6,0.6c-0.3,0-0.6-0.3-0.6-0.6C44.7,55.2,45,55,45.3,55z
M45.7,61H45v-4.2h0.8V61z"/>
<path class="st0" d="M49.8,56.8l1.2,3.4h0.1l1.2-3.4h0.9L51.6,61h-1.2l-1.5-4.2H49.8z"/>
<path class="st0" d="M55.7,56.7c1.2,0,2.2,0.9,2.2,2.2c0,1.3-0.9,2.2-2.2,2.2c-1.2,0-2.1-0.9-2.1-2.2
C53.5,57.6,54.4,56.7,55.7,56.7z M55.7,60.4c0.8,0,1.4-0.6,1.4-1.5c0-0.9-0.5-1.5-1.4-1.5c-0.8,0-1.3,0.6-1.3,1.5
C54.3,59.8,54.9,60.4,55.7,60.4z"/>
<path class="st0" d="M59.5,57.4h0.1c0.2-0.4,0.5-0.6,1-0.6h0.5v0.7h-0.7c-0.6,0-1,0.3-1,1V61h-0.8v-4.2h0.8V57.4z"/>
<path class="st0" d="M63.4,56.7c1.2,0,2,0.8,2,2.1v0.4h-3.3c0,0.7,0.5,1.3,1.3,1.3c0.7,0,1-0.4,1.2-0.8l0.7,0.4
c-0.3,0.5-0.8,1.1-1.9,1.1c-1.3,0-2.1-0.9-2.1-2.2C61.4,57.6,62.2,56.7,63.4,56.7z M64.6,58.5c0-0.7-0.5-1.1-1.2-1.1
c-0.7,0-1.2,0.4-1.3,1.1H64.6z"/>
<path class="st0" d="M67.7,56.7c0.9,0,1.6,0.4,2.1,1l-0.5,0.5c-0.5-0.6-1-0.8-1.5-0.8c-0.5,0-0.8,0.2-0.8,0.5
c0,0.3,0.3,0.5,0.8,0.6l0.5,0.1c0.9,0.1,1.6,0.4,1.6,1.2s-0.7,1.3-1.7,1.3c-1,0-1.8-0.5-2.2-1.3l0.6-0.4c0.4,0.8,1,1,1.6,1
c0.6,0,0.9-0.2,0.9-0.6s-0.3-0.5-0.9-0.6l-0.5-0.1c-0.9-0.2-1.5-0.5-1.5-1.2C66.1,57.2,66.8,56.7,67.7,56.7z"/>
<path class="st0" d="M74,55.1v2.5h0.1c0.2-0.4,0.6-0.8,1.4-0.8c0.9,0,1.6,0.6,1.6,1.7V61h-0.8v-2.4c0-0.7-0.4-1.1-1.1-1.1
c-0.8,0-1.3,0.5-1.3,1.4V61h-0.8v-5.9H74z"/>
<path class="st0" d="M79.3,58.6l1.8-0.1v-0.2c0-0.5-0.4-0.9-1.1-0.9c-0.7,0-1.1,0.4-1.3,0.9L78,57.9c0.3-0.5,0.9-1.2,2-1.2
c0.7,0,1.2,0.3,1.5,0.8h0.1c0.3-0.5,0.9-0.8,1.6-0.8c1.2,0,2,0.8,2,2.1v0.4h-3.3c0.1,0.7,0.6,1.3,1.3,1.3c0.7,0,1-0.4,1.2-0.8
l0.7,0.4c-0.3,0.5-0.8,1.1-1.8,1.1c-0.8,0-1.4-0.4-1.7-1h-0.1c-0.3,0.6-0.9,1-1.8,1c-1,0-1.7-0.5-1.7-1.3
C77.9,59.1,78.5,58.7,79.3,58.6z M79.7,60.4c0.9,0,1.4-0.5,1.4-1.2v-0.1l-1.6,0.1c-0.5,0-0.8,0.2-0.8,0.6
C78.7,60.2,79.1,60.4,79.7,60.4z M84.4,58.5c0-0.7-0.5-1.1-1.2-1.1c-0.7,0-1.2,0.4-1.2,1.1H84.4z"/>
<path class="st0" d="M86.8,56.8v0.7h0.1c0.2-0.4,0.6-0.8,1.4-0.8c0.9,0,1.6,0.6,1.6,1.7V61h-0.8v-2.4c0-0.7-0.4-1.1-1.1-1.1
c-0.8,0-1.3,0.5-1.3,1.4V61H86v-4.2H86.8z"/>
<path class="st0" d="M95.1,61h-0.8v-0.7h-0.1c-0.2,0.4-0.6,0.8-1.5,0.8c-1.1,0-2-0.9-2-2.2s0.9-2.2,2-2.2c0.8,0,1.2,0.4,1.5,0.8
h0.1v-2.4h0.8V61z M91.6,58.9c0,0.9,0.6,1.5,1.3,1.5c0.8,0,1.4-0.6,1.4-1.5c0-0.9-0.6-1.5-1.4-1.5C92.2,57.4,91.6,58,91.6,58.9z"
/>
<path class="st0" d="M98.1,56.7c1.2,0,2,0.8,2,2.1v0.4h-3.3c0,0.7,0.5,1.3,1.3,1.3c0.7,0,1-0.4,1.2-0.8L100,60
c-0.3,0.5-0.8,1.1-1.9,1.1c-1.3,0-2.1-0.9-2.1-2.2C96,57.6,96.8,56.7,98.1,56.7z M99.2,58.5c0-0.7-0.5-1.1-1.2-1.1
c-0.7,0-1.2,0.4-1.3,1.1H99.2z"/>
<path class="st0" d="M101.7,57.4h0.1c0.2-0.4,0.5-0.6,1-0.6h0.5v0.7h-0.7c-0.6,0-1,0.3-1,1V61h-0.8v-4.2h0.8V57.4z"/>
</g>
<g>
<rect x="0.4" y="62" class="st1" width="20.5" height="0.5"/>
</g>
<g>
<rect x="49.4" y="62" class="st1" width="20.5" height="0.5"/>
</g>
<g>
<path class="st0" d="M12.2,29h-1.8v-2.1h-0.3c-0.7,1.2-1.9,2.4-4.3,2.4c-3.1,0-5.6-2.5-5.6-6.2s2.5-6.2,5.6-6.2
c2.4,0,3.7,1.2,4.3,2.4h0.3V13h1.8V29z M2,23.1c0,2.8,1.7,4.6,4.1,4.6c2.5,0,4.2-1.8,4.2-4.6c0-2.8-1.8-4.6-4.2-4.6
C3.7,18.5,2,20.3,2,23.1z"/>
<path class="st0" d="M20.7,16.9c3.1,0,5,1.8,5,4.6V29h-1.8v-2h-0.3c-0.7,1.2-2,2.3-4.5,2.3c-2.6,0-4.4-1.4-4.4-3.5
c0-2.1,1.6-3.2,4-3.4l5.2-0.5v-0.5c0-1.8-1.2-3-3.3-3c-2.1,0-3.3,1.2-4,2.7L15,20.3C15.9,18.7,17.6,16.9,20.7,16.9z M19.4,27.8
c2.6,0,4.5-1.5,4.5-4.1v-0.2L19,23.9c-1.5,0.1-2.4,0.8-2.4,1.9C16.6,27,17.7,27.8,19.4,27.8z"/>
<path class="st0" d="M28.4,13h1.8v4.2h3.5v1.6h-3.5v7.9c0,0.5,0.2,0.7,0.7,0.7h2V29h-2.7c-1.1,0-1.8-0.7-1.8-1.9V13z"/>
<path class="st0" d="M41.4,16.9c3.1,0,5,1.8,5,4.6V29h-1.8v-2h-0.3c-0.7,1.2-2,2.3-4.5,2.3c-2.6,0-4.4-1.4-4.4-3.5
c0-2.1,1.6-3.2,4-3.4l5.2-0.5v-0.5c0-1.8-1.2-3-3.3-3c-2.1,0-3.3,1.2-4,2.7l-1.6-0.9C36.5,18.7,38.2,16.9,41.4,16.9z M40.1,27.8
c2.6,0,4.5-1.5,4.5-4.1v-0.2l-4.8,0.5c-1.5,0.1-2.4,0.8-2.4,1.9C37.2,27,38.4,27.8,40.1,27.8z"/>
</g>
<g>
<path class="st0" d="M6.2,31.6c3.1,0,5.2,2,5.7,4.5L10,36.6c-0.2-1.9-1.6-3.2-3.8-3.2c-2.4,0-4.2,1.9-4.2,4.6
c0,2.7,1.8,4.6,4.3,4.6c2.3,0,3.5-1.4,3.8-3.2l1.8,0.4c-0.5,2.6-2.5,4.5-5.7,4.5c-3.4,0-6.1-2.6-6.1-6.2
C0.1,34.2,2.8,31.6,6.2,31.6z"/>
<path class="st0" d="M20,31.6c3.6,0,6,2.6,6,6.2c0,3.7-2.5,6.2-6,6.2c-3.6,0-6-2.6-6-6.2C14,34.2,16.5,31.6,20,31.6z M20,42.5
c2.5,0,4.2-1.9,4.2-4.6c0-2.7-1.6-4.6-4.2-4.6s-4.2,1.9-4.2,4.6C15.9,40.6,17.5,42.5,20,42.5z"/>
<path class="st0" d="M34.1,31.6c3.6,0,6,2.6,6,6.2c0,3.7-2.5,6.2-6,6.2c-3.6,0-6-2.6-6-6.2C28.1,34.2,30.6,31.6,34.1,31.6z
M34.1,42.5c2.5,0,4.2-1.9,4.2-4.6c0-2.7-1.6-4.6-4.2-4.6s-4.2,1.9-4.2,4.6C29.9,40.6,31.6,42.5,34.1,42.5z"/>
<path class="st0" d="M42.8,32h1.8V34h0.3c0.7-1.2,1.9-2.4,4.4-2.4c3.1,0,5.6,2.5,5.6,6.2c0,3.7-2.5,6.2-5.6,6.2
c-2.5,0-3.7-1.2-4.4-2.4h-0.3V48h-1.9V32z M53,37.9c0-2.9-1.7-4.6-4.2-4.6c-2.5,0-4.2,1.8-4.2,4.6c0,2.8,1.7,4.6,4.2,4.6
C51.3,42.5,53,40.7,53,37.9z"/>
</g>
<g>
<g>
<g>
<rect x="84.4" y="15" class="st0" width="9" height="1"/>
</g>
<g>
<rect x="83.4" y="17" class="st0" width="10" height="1"/>
</g>
<g>
<rect x="85.4" y="13" class="st0" width="7" height="1"/>
</g>
<g>
<rect x="86.4" y="11" class="st0" width="6" height="1"/>
</g>
<g>
<rect x="87.4" y="9" class="st0" width="4" height="1"/>
</g>
<g>
<rect x="87.4" y="7" class="st0" width="3" height="1"/>
</g>
<g>
<rect x="87.4" y="5" class="st0" width="2" height="1"/>
</g>
<g>
<rect x="82.4" y="19" class="st0" width="11" height="1"/>
</g>
<g>
<rect x="80.4" y="21" class="st0" width="12" height="1"/>
</g>
<g>
<rect x="79.4" y="23" class="st0" width="13" height="1"/>
</g>
<g>
<rect x="69.4" y="25" class="st0" width="29" height="1"/>
</g>
<g>
<rect x="68.4" y="27" class="st0" width="32" height="1"/>
</g>
<g>
<rect x="68.4" y="29" class="st0" width="28" height="1"/>
</g>
<g>
<rect x="78.4" y="31" class="st0" width="13" height="1"/>
</g>
<g>
<rect x="79.4" y="33" class="st0" width="11" height="1"/>
</g>
<g>
<rect x="79.4" y="35" class="st0" width="10" height="1"/>
</g>
<g>
<rect x="79.4" y="37" class="st0" width="9" height="1"/>
</g>
<g>
<rect x="79.4" y="39" class="st0" width="8" height="1"/>
</g>
<g>
<rect x="79.4" y="41" class="st0" width="7" height="1"/>
</g>
<g>
<rect x="79.4" y="43" class="st0" width="6" height="1"/>
</g>
<g>
<rect x="79.4" y="45" class="st0" width="4" height="1"/>
</g>
<g>
<rect x="78.4" y="47" class="st0" width="2" height="1"/>
</g>
<g>
<rect x="68.4" y="23" class="st0" width="5" height="1"/>
</g>
<g>
<rect x="67.4" y="21" class="st0" width="4" height="1"/>
</g>
<g>
<rect x="66.4" y="31" class="st0" width="3" height="1"/>
</g>
</g>
<g>
<rect x="73.4" class="st1" width="13" height="1"/>
<rect x="69.4" y="2" class="st1" width="6" height="1"/>
<rect x="77.9" y="2" class="st1" width="12.5" height="1"/>
<rect x="79.4" y="4" class="st1" width="14" height="1"/>
<rect x="66.4" y="4" class="st1" width="10" height="1"/>
<rect x="64.4" y="6" class="st1" width="12" height="1"/>
<rect x="81.4" y="6" class="st1" width="14" height="1"/>
<rect x="82.4" y="8" class="st1" width="15" height="1"/>
<rect x="62.4" y="8" class="st1" width="14" height="1"/>
<rect x="84.4" y="10" class="st1" width="15" height="1"/>
<rect x="60.4" y="10" class="st1" width="16" height="1"/>
<rect x="85.4" y="12" class="st1" width="15" height="1"/>
<rect x="59.4" y="12" class="st1" width="17" height="1"/>
<rect x="58.4" y="14" class="st1" width="18" height="1"/>
<rect x="87.4" y="14" class="st1" width="14" height="1"/>
<rect x="87.4" y="16" class="st1" width="15" height="1"/>
<rect x="57.4" y="16" class="st1" width="18" height="1"/>
<rect x="63.4" y="18" class="st1" width="11" height="1"/>
<rect x="85.4" y="18" class="st1" width="17" height="1"/>
<rect x="57.4" y="18" class="st1" width="4" height="1"/>
<rect x="56.4" y="20" class="st1" width="6" height="1"/>
<rect x="89.4" y="20" class="st1" width="14" height="1"/>
<rect x="56.4" y="22" class="st1" width="6" height="1"/>
<rect x="93.4" y="22" class="st1" width="10" height="1"/>
<rect x="73.4" y="44" class="st1" width="13" height="1"/>
<rect x="69.4" y="42" class="st1" width="3" height="1"/>
<rect x="74.4" y="42" class="st1" width="16" height="1"/>
<rect x="66.4" y="40" class="st1" width="6" height="1"/>
<rect x="76.4" y="40" class="st1" width="17" height="1"/>
<rect x="78.4" y="38" class="st1" width="17" height="1"/>
<rect x="64.4" y="38" class="st1" width="9" height="1"/>
<rect x="62.4" y="36" class="st1" width="11" height="1"/>
<rect x="79.4" y="36" class="st1" width="18" height="1"/>
<rect x="60.4" y="34" class="st1" width="13" height="1"/>
<rect x="81.4" y="34" class="st1" width="18" height="1"/>
<rect x="59.4" y="32" class="st1" width="14" height="1"/>
<rect x="82.4" y="32" class="st1" width="18" height="1"/>
<rect x="58.4" y="30" class="st1" width="15" height="1"/>
<rect x="83.4" y="30" class="st1" width="18" height="1"/>
<rect x="84.4" y="28" class="st1" width="18" height="1"/>
<rect x="57.4" y="28" class="st1" width="16" height="1"/>
<rect x="64.4" y="26" class="st1" width="9" height="1"/>
<rect x="57.4" y="26" class="st1" width="3" height="1"/>
<rect x="85.4" y="26" class="st1" width="17" height="1"/>
<rect x="90.4" y="24" class="st1" width="13" height="1"/>
<rect x="56.4" y="24" class="st1" width="5" height="1"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

View File

@ -1,208 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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"
viewBox="0 0 104 64" style="enable-background:new 0 0 104 64;" xml:space="preserve">
<style type="text/css">
.st0{fill:#483AAA;}
.st1{fill:#AFA7E9;}
</style>
<g>
<g>
<path class="st0" d="M2.4,56.7c1.2,0,2.2,0.9,2.2,2.2c0,1.3-0.9,2.2-2.2,2.2c-1.2,0-2.1-0.9-2.1-2.2C0.3,57.6,1.2,56.7,2.4,56.7z
M2.4,60.4c0.8,0,1.4-0.6,1.4-1.5c0-0.9-0.5-1.5-1.4-1.5c-0.8,0-1.3,0.6-1.3,1.5C1.1,59.8,1.6,60.4,2.4,60.4z"/>
<path class="st0" d="M8.6,61v-0.7H8.5c-0.2,0.4-0.6,0.8-1.4,0.8c-0.9,0-1.6-0.6-1.6-1.7v-2.5h0.8v2.4c0,0.7,0.4,1.1,1.1,1.1
c0.8,0,1.3-0.5,1.3-1.4v-2.1h0.8V61H8.6z"/>
<path class="st0" d="M11.3,57.4h0.1c0.2-0.4,0.5-0.6,1-0.6h0.5v0.7h-0.7c-0.6,0-1,0.3-1,1V61h-0.8v-4.2h0.8V57.4z"/>
<path class="st0" d="M20.2,61h-0.8v-0.7h-0.1c-0.2,0.4-0.6,0.8-1.5,0.8c-1.1,0-2-0.9-2-2.2s0.9-2.2,2-2.2c0.8,0,1.2,0.4,1.5,0.8
h0.1v-2.4h0.8V61z M16.7,58.9c0,0.9,0.6,1.5,1.3,1.5c0.8,0,1.4-0.6,1.4-1.5c0-0.9-0.6-1.5-1.4-1.5C17.2,57.4,16.7,58,16.7,58.9z"
/>
<path class="st0" d="M23.1,56.7c1.1,0,1.8,0.6,1.8,1.6V61h-0.8v-0.7h-0.1c-0.2,0.4-0.6,0.8-1.5,0.8c-0.9,0-1.6-0.5-1.6-1.3
c0-0.8,0.6-1.2,1.4-1.2l1.8-0.2v-0.1c0-0.5-0.4-0.9-1.1-0.9c-0.7,0-1.1,0.4-1.3,0.9l-0.7-0.4C21.4,57.4,22,56.7,23.1,56.7z
M22.7,60.4c0.8,0,1.4-0.5,1.4-1.3v-0.1l-1.6,0.2c-0.5,0.1-0.8,0.2-0.8,0.6C21.8,60.2,22.2,60.4,22.7,60.4z"/>
<path class="st0" d="M26.7,56.8v-1.4h0.8v1.4h1.3v0.7h-1.3v2.5c0,0.2,0.1,0.3,0.2,0.3h0.8V61h-1.1c-0.4,0-0.7-0.3-0.7-0.7v-2.8
h-1.2v-0.7H26.7z"/>
<path class="st0" d="M31.4,56.7c1.1,0,1.8,0.6,1.8,1.6V61h-0.8v-0.7h-0.1c-0.2,0.4-0.6,0.8-1.5,0.8c-0.9,0-1.6-0.5-1.6-1.3
c0-0.8,0.6-1.2,1.4-1.2l1.8-0.2v-0.1c0-0.5-0.4-0.9-1.1-0.9c-0.7,0-1.1,0.4-1.3,0.9l-0.7-0.4C29.7,57.4,30.3,56.7,31.4,56.7z
M31,60.4c0.8,0,1.4-0.5,1.4-1.3v-0.1l-1.6,0.2c-0.5,0.1-0.8,0.2-0.8,0.6C30.1,60.2,30.5,60.4,31,60.4z"/>
<path class="st0" d="M37.2,55c0.4,0,0.6,0.3,0.6,0.6c0,0.3-0.3,0.6-0.6,0.6c-0.3,0-0.6-0.3-0.6-0.6C36.6,55.2,36.9,55,37.2,55z
M37.6,61h-0.8v-4.2h0.8V61z"/>
<path class="st0" d="M39.6,56.8v0.7h0.1c0.2-0.4,0.6-0.8,1.4-0.8c0.9,0,1.6,0.6,1.6,1.7V61h-0.8v-2.4c0-0.7-0.4-1.1-1.1-1.1
c-0.8,0-1.3,0.5-1.3,1.4V61h-0.8v-4.2H39.6z"/>
<path class="st0" d="M48.2,56.7c1.2,0,2.2,0.9,2.2,2.2c0,1.3-0.9,2.2-2.2,2.2c-1.2,0-2.1-0.9-2.1-2.2C46,57.6,47,56.7,48.2,56.7z
M48.2,60.4c0.8,0,1.4-0.6,1.4-1.5c0-0.9-0.5-1.5-1.4-1.5c-0.8,0-1.3,0.6-1.3,1.5C46.8,59.8,47.4,60.4,48.2,60.4z"/>
<path class="st0" d="M54.3,61v-0.7h-0.1c-0.2,0.4-0.6,0.8-1.4,0.8c-0.9,0-1.6-0.6-1.6-1.7v-2.5H52v2.4c0,0.7,0.4,1.1,1.1,1.1
c0.8,0,1.3-0.5,1.3-1.4v-2.1h0.8V61H54.3z"/>
<path class="st0" d="M57,57.4h0.1c0.2-0.4,0.5-0.6,1-0.6h0.5v0.7H58c-0.6,0-1,0.3-1,1V61h-0.8v-4.2H57V57.4z"/>
<path class="st0" d="M62.7,55.1v2.5h0.1c0.2-0.4,0.6-0.8,1.4-0.8c0.9,0,1.6,0.6,1.6,1.7V61H65v-2.4c0-0.7-0.4-1.1-1.1-1.1
c-0.8,0-1.3,0.5-1.3,1.4V61h-0.8v-5.9H62.7z"/>
<path class="st0" d="M68.7,56.7c1.1,0,1.8,0.6,1.8,1.6V61h-0.8v-0.7h-0.1c-0.2,0.4-0.6,0.8-1.5,0.8c-0.9,0-1.6-0.5-1.6-1.3
c0-0.8,0.6-1.2,1.4-1.2l1.8-0.2v-0.1c0-0.5-0.4-0.9-1-0.9s-1.1,0.4-1.3,0.9l-0.7-0.4C67,57.4,67.6,56.7,68.7,56.7z M68.3,60.4
c0.8,0,1.4-0.5,1.4-1.3v-0.1l-1.6,0.2c-0.5,0.1-0.8,0.2-0.8,0.6C67.4,60.2,67.8,60.4,68.3,60.4z"/>
<path class="st0" d="M72.4,56.8v0.7h0.1c0.2-0.4,0.6-0.8,1.4-0.8c0.9,0,1.6,0.6,1.6,1.7V61h-0.8v-2.4c0-0.7-0.4-1.1-1.1-1.1
c-0.8,0-1.3,0.5-1.3,1.4V61h-0.8v-4.2H72.4z"/>
<path class="st0" d="M80.7,61h-0.8v-0.7h-0.1c-0.2,0.4-0.6,0.8-1.5,0.8c-1.1,0-2-0.9-2-2.2s0.9-2.2,2-2.2c0.8,0,1.2,0.4,1.5,0.8
h0.1v-2.4h0.8V61z M77.2,58.9c0,0.9,0.6,1.5,1.3,1.5c0.8,0,1.4-0.6,1.4-1.5c0-0.9-0.6-1.5-1.4-1.5C77.8,57.4,77.2,58,77.2,58.9z"
/>
<path class="st0" d="M83.3,56.7c0.9,0,1.6,0.4,2.1,1l-0.5,0.5c-0.5-0.6-1-0.8-1.5-0.8c-0.5,0-0.8,0.2-0.8,0.5
c0,0.3,0.3,0.5,0.8,0.6l0.5,0.1c0.9,0.1,1.6,0.4,1.6,1.2s-0.7,1.3-1.7,1.3c-1,0-1.8-0.5-2.2-1.3l0.6-0.4c0.4,0.8,1,1,1.6,1
c0.6,0,0.9-0.2,0.9-0.6s-0.3-0.5-0.9-0.6l-0.5-0.1c-0.9-0.2-1.5-0.5-1.5-1.2C81.7,57.2,82.4,56.7,83.3,56.7z"/>
</g>
<g>
<rect x="0.5" y="62" class="st1" width="12.5" height="0.5"/>
</g>
<g>
<rect x="46.2" y="62" class="st1" width="12.5" height="0.5"/>
</g>
<g>
<path class="st0" d="M12.3,29h-1.8v-2.1h-0.3c-0.7,1.2-1.9,2.4-4.3,2.4c-3.1,0-5.6-2.5-5.6-6.2s2.5-6.2,5.6-6.2
c2.4,0,3.7,1.2,4.3,2.4h0.3V13h1.8V29z M2.1,23.1c0,2.8,1.7,4.6,4.1,4.6c2.5,0,4.2-1.8,4.2-4.6c0-2.8-1.8-4.6-4.2-4.6
C3.8,18.5,2.1,20.3,2.1,23.1z"/>
<path class="st0" d="M20.8,16.9c3.1,0,5,1.8,5,4.6V29h-1.8v-2h-0.3c-0.7,1.2-2,2.3-4.5,2.3c-2.6,0-4.4-1.4-4.4-3.5
c0-2.1,1.6-3.2,4-3.4l5.2-0.5v-0.5c0-1.8-1.2-3-3.3-3c-2.1,0-3.3,1.2-4,2.7l-1.6-0.9C16,18.7,17.7,16.9,20.8,16.9z M19.5,27.8
c2.6,0,4.5-1.5,4.5-4.1v-0.2l-4.8,0.5c-1.5,0.1-2.4,0.8-2.4,1.9C16.7,27,17.9,27.8,19.5,27.8z"/>
<path class="st0" d="M28.5,13h1.8v4.2h3.5v1.6h-3.5v7.9c0,0.5,0.2,0.7,0.7,0.7h2V29h-2.7c-1.1,0-1.8-0.7-1.8-1.9V13z"/>
<path class="st0" d="M41.5,16.9c3.1,0,5,1.8,5,4.6V29h-1.8v-2h-0.3c-0.7,1.2-2,2.3-4.5,2.3c-2.6,0-4.4-1.4-4.4-3.5
c0-2.1,1.6-3.2,4-3.4l5.2-0.5v-0.5c0-1.8-1.2-3-3.3-3c-2.1,0-3.3,1.2-4,2.7l-1.6-0.9C36.7,18.7,38.3,16.9,41.5,16.9z M40.2,27.8
c2.6,0,4.5-1.5,4.5-4.1v-0.2l-4.8,0.5c-1.5,0.1-2.4,0.8-2.4,1.9C37.4,27,38.5,27.8,40.2,27.8z"/>
</g>
<g>
<path class="st0" d="M6.3,31.6c3.1,0,5.2,2,5.7,4.5l-1.8,0.4c-0.2-1.9-1.6-3.2-3.8-3.2c-2.4,0-4.2,1.9-4.2,4.6
c0,2.7,1.8,4.6,4.3,4.6c2.3,0,3.5-1.4,3.8-3.2l1.8,0.4c-0.5,2.6-2.5,4.5-5.7,4.5c-3.4,0-6.1-2.6-6.1-6.2
C0.2,34.2,2.9,31.6,6.3,31.6z"/>
<path class="st0" d="M20.2,31.6c3.6,0,6,2.6,6,6.2c0,3.7-2.5,6.2-6,6.2c-3.6,0-6-2.6-6-6.2C14.1,34.2,16.6,31.6,20.2,31.6z
M20.2,42.5c2.5,0,4.2-1.9,4.2-4.6c0-2.7-1.6-4.6-4.2-4.6S16,35.3,16,37.9C16,40.6,17.6,42.5,20.2,42.5z"/>
<path class="st0" d="M34.2,31.6c3.6,0,6,2.6,6,6.2c0,3.7-2.5,6.2-6,6.2c-3.6,0-6-2.6-6-6.2C28.2,34.2,30.7,31.6,34.2,31.6z
M34.2,42.5c2.5,0,4.2-1.9,4.2-4.6c0-2.7-1.6-4.6-4.2-4.6s-4.2,1.9-4.2,4.6C30.1,40.6,31.7,42.5,34.2,42.5z"/>
<path class="st0" d="M42.9,32h1.8V34H45c0.7-1.2,1.9-2.4,4.4-2.4c3.1,0,5.6,2.5,5.6,6.2c0,3.7-2.5,6.2-5.6,6.2
c-2.5,0-3.7-1.2-4.4-2.4h-0.3V48h-1.9V32z M53.1,37.9c0-2.9-1.7-4.6-4.2-4.6c-2.5,0-4.2,1.8-4.2,4.6c0,2.8,1.7,4.6,4.2,4.6
C51.4,42.5,53.1,40.7,53.1,37.9z"/>
</g>
<g>
<g>
<g>
<rect x="84.5" y="15" class="st0" width="9" height="1"/>
</g>
<g>
<rect x="83.5" y="17" class="st0" width="10" height="1"/>
</g>
<g>
<rect x="85.5" y="13" class="st0" width="7" height="1"/>
</g>
<g>
<rect x="86.5" y="11" class="st0" width="6" height="1"/>
</g>
<g>
<rect x="87.5" y="9" class="st0" width="4" height="1"/>
</g>
<g>
<rect x="87.5" y="7" class="st0" width="3" height="1"/>
</g>
<g>
<rect x="87.5" y="5" class="st0" width="2" height="1"/>
</g>
<g>
<rect x="82.5" y="19" class="st0" width="11" height="1"/>
</g>
<g>
<rect x="80.5" y="21" class="st0" width="12" height="1"/>
</g>
<g>
<rect x="79.5" y="23" class="st0" width="13" height="1"/>
</g>
<g>
<rect x="69.5" y="25" class="st0" width="29" height="1"/>
</g>
<g>
<rect x="68.5" y="27" class="st0" width="32" height="1"/>
</g>
<g>
<rect x="68.5" y="29" class="st0" width="28" height="1"/>
</g>
<g>
<rect x="78.5" y="31" class="st0" width="13" height="1"/>
</g>
<g>
<rect x="79.5" y="33" class="st0" width="11" height="1"/>
</g>
<g>
<rect x="79.5" y="35" class="st0" width="10" height="1"/>
</g>
<g>
<rect x="79.5" y="37" class="st0" width="9" height="1"/>
</g>
<g>
<rect x="79.5" y="39" class="st0" width="8" height="1"/>
</g>
<g>
<rect x="79.5" y="41" class="st0" width="7" height="1"/>
</g>
<g>
<rect x="79.5" y="43" class="st0" width="6" height="1"/>
</g>
<g>
<rect x="79.5" y="45" class="st0" width="4" height="1"/>
</g>
<g>
<rect x="78.5" y="47" class="st0" width="2" height="1"/>
</g>
<g>
<rect x="68.5" y="23" class="st0" width="5" height="1"/>
</g>
<g>
<rect x="67.5" y="21" class="st0" width="4" height="1"/>
</g>
<g>
<rect x="66.5" y="31" class="st0" width="3" height="1"/>
</g>
</g>
<g>
<rect x="73.5" class="st1" width="13" height="1"/>
<rect x="69.5" y="2" class="st1" width="6" height="1"/>
<rect x="78" y="2" class="st1" width="12.5" height="1"/>
<rect x="79.5" y="4" class="st1" width="14" height="1"/>
<rect x="66.5" y="4" class="st1" width="10" height="1"/>
<rect x="64.5" y="6" class="st1" width="12" height="1"/>
<rect x="81.5" y="6" class="st1" width="14" height="1"/>
<rect x="82.5" y="8" class="st1" width="15" height="1"/>
<rect x="62.5" y="8" class="st1" width="14" height="1"/>
<rect x="84.5" y="10" class="st1" width="15" height="1"/>
<rect x="60.5" y="10" class="st1" width="16" height="1"/>
<rect x="85.5" y="12" class="st1" width="15" height="1"/>
<rect x="59.5" y="12" class="st1" width="17" height="1"/>
<rect x="58.5" y="14" class="st1" width="18" height="1"/>
<rect x="87.5" y="14" class="st1" width="14" height="1"/>
<rect x="87.5" y="16" class="st1" width="15" height="1"/>
<rect x="57.5" y="16" class="st1" width="18" height="1"/>
<rect x="63.5" y="18" class="st1" width="11" height="1"/>
<rect x="85.5" y="18" class="st1" width="17" height="1"/>
<rect x="57.5" y="18" class="st1" width="4" height="1"/>
<rect x="56.5" y="20" class="st1" width="6" height="1"/>
<rect x="89.5" y="20" class="st1" width="14" height="1"/>
<rect x="56.5" y="22" class="st1" width="6" height="1"/>
<rect x="93.5" y="22" class="st1" width="10" height="1"/>
<rect x="73.5" y="44" class="st1" width="13" height="1"/>
<rect x="69.5" y="42" class="st1" width="3" height="1"/>
<rect x="74.5" y="42" class="st1" width="16" height="1"/>
<rect x="66.5" y="40" class="st1" width="6" height="1"/>
<rect x="76.5" y="40" class="st1" width="17" height="1"/>
<rect x="78.5" y="38" class="st1" width="17" height="1"/>
<rect x="64.5" y="38" class="st1" width="9" height="1"/>
<rect x="62.5" y="36" class="st1" width="11" height="1"/>
<rect x="79.5" y="36" class="st1" width="18" height="1"/>
<rect x="60.5" y="34" class="st1" width="13" height="1"/>
<rect x="81.5" y="34" class="st1" width="18" height="1"/>
<rect x="59.5" y="32" class="st1" width="14" height="1"/>
<rect x="82.5" y="32" class="st1" width="18" height="1"/>
<rect x="58.5" y="30" class="st1" width="15" height="1"/>
<rect x="83.5" y="30" class="st1" width="18" height="1"/>
<rect x="84.5" y="28" class="st1" width="18" height="1"/>
<rect x="57.5" y="28" class="st1" width="16" height="1"/>
<rect x="64.5" y="26" class="st1" width="9" height="1"/>
<rect x="57.5" y="26" class="st1" width="3" height="1"/>
<rect x="85.5" y="26" class="st1" width="17" height="1"/>
<rect x="90.5" y="24" class="st1" width="13" height="1"/>
<rect x="56.5" y="24" class="st1" width="5" height="1"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 11 KiB

View File

@ -1,625 +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"
id="Layer_1"
data-name="Layer 1"
viewBox="0 0 51 51"
version="1.1"
sodipodi:docname="mark.svg"
width="51"
height="51"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata153">
<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>DataCoop_Mark</dc:title>
</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="870"
inkscape:window-height="679"
id="namedview151"
showgrid="false"
inkscape:zoom="5.5416667"
inkscape:cx="25"
inkscape:cy="24"
inkscape:window-x="72"
inkscape:window-y="27"
inkscape:window-maximized="0"
inkscape:current-layer="Layer_1" />
<defs
id="defs4">
<style
id="style2">.cls-1{fill:#483aaa;}.cls-2{fill:#afa7e9;}</style>
</defs>
<title
id="title6">DataCoop_Mark</title>
<rect
class="cls-1"
x="30"
y="17"
width="9"
height="1"
id="rect8"
style="fill:#483aaa" />
<rect
class="cls-1"
x="29"
y="19"
width="10"
height="1"
id="rect10"
style="fill:#483aaa" />
<rect
class="cls-1"
x="31"
y="15"
width="7"
height="1"
id="rect12"
style="fill:#483aaa" />
<rect
class="cls-1"
x="32"
y="13"
width="6"
height="1"
id="rect14"
style="fill:#483aaa" />
<rect
class="cls-1"
x="33"
y="11"
width="4"
height="1"
id="rect16"
style="fill:#483aaa" />
<rect
class="cls-1"
x="33"
y="9"
width="3"
height="1"
id="rect18"
style="fill:#483aaa" />
<rect
class="cls-1"
x="33"
y="7"
width="2"
height="1"
id="rect20"
style="fill:#483aaa" />
<rect
class="cls-1"
x="28.009998"
y="21"
width="10.99"
height="1"
id="rect22"
style="fill:#483aaa" />
<rect
class="cls-1"
x="26"
y="23"
width="12"
height="1"
id="rect24"
style="fill:#483aaa" />
<rect
class="cls-1"
x="25"
y="25"
width="13"
height="1"
id="rect26"
style="fill:#483aaa" />
<rect
class="cls-1"
x="15"
y="27"
width="29"
height="1"
id="rect28"
style="fill:#483aaa" />
<rect
class="cls-1"
x="14"
y="29"
width="32"
height="1"
id="rect30"
style="fill:#483aaa" />
<rect
class="cls-1"
x="14"
y="31"
width="28"
height="1"
id="rect32"
style="fill:#483aaa" />
<rect
class="cls-1"
x="24"
y="33"
width="13"
height="1"
id="rect34"
style="fill:#483aaa" />
<rect
class="cls-1"
x="25"
y="35"
width="11"
height="1"
id="rect36"
style="fill:#483aaa" />
<rect
class="cls-1"
x="25"
y="37"
width="10"
height="1"
id="rect38"
style="fill:#483aaa" />
<rect
class="cls-1"
x="25"
y="39"
width="9"
height="1"
id="rect40"
style="fill:#483aaa" />
<rect
class="cls-1"
x="25"
y="41"
width="8"
height="1"
id="rect42"
style="fill:#483aaa" />
<rect
class="cls-1"
x="25"
y="43"
width="7"
height="1"
id="rect44"
style="fill:#483aaa" />
<rect
class="cls-1"
x="25"
y="45"
width="6"
height="1"
id="rect46"
style="fill:#483aaa" />
<rect
class="cls-1"
x="25"
y="47"
width="4"
height="1"
id="rect48"
style="fill:#483aaa" />
<rect
class="cls-1"
x="24"
y="49"
width="2"
height="1"
id="rect50"
style="fill:#483aaa" />
<rect
class="cls-1"
x="14"
y="25"
width="5"
height="1"
id="rect52"
style="fill:#483aaa" />
<rect
class="cls-1"
x="13"
y="23"
width="4"
height="1"
id="rect54"
style="fill:#483aaa" />
<rect
class="cls-1"
x="12"
y="33"
width="3"
height="1"
id="rect56"
style="fill:#483aaa" />
<rect
class="cls-2"
x="19"
y="2"
width="13"
height="1"
id="rect58"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="15"
y="4"
width="6"
height="1"
id="rect60"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="23.5"
y="4"
width="12.5"
height="1"
id="rect62"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="25"
y="6"
width="14"
height="1"
id="rect64"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="12"
y="6"
width="10"
height="1"
id="rect66"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="10"
y="8"
width="12"
height="1"
id="rect68"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="27"
y="8"
width="14"
height="1"
id="rect70"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="28"
y="10"
width="15"
height="1"
id="rect72"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="8"
y="10"
width="14"
height="1"
id="rect74"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="30"
y="12"
width="15"
height="1"
id="rect76"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="6"
y="12"
width="16"
height="1"
id="rect78"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="31"
y="14"
width="15"
height="1"
id="rect80"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="5"
y="14"
width="17"
height="1"
id="rect82"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="4"
y="16"
width="18"
height="1"
id="rect84"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="33"
y="16"
width="14"
height="1"
id="rect86"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="33"
y="18"
width="15"
height="1"
id="rect88"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="3"
y="18"
width="18"
height="1"
id="rect90"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="9"
y="20"
width="11"
height="1"
id="rect92"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="31"
y="20"
width="17"
height="1"
id="rect94"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="3"
y="20"
width="4"
height="1"
id="rect96"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="2"
y="22"
width="6"
height="1"
id="rect98"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="35"
y="22"
width="14"
height="1"
id="rect100"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="2"
y="24"
width="6"
height="1"
id="rect102"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="39"
y="24"
width="10"
height="1"
id="rect104"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="19"
y="46"
width="13"
height="1"
id="rect106"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="15"
y="44"
width="3"
height="1"
id="rect108"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="20"
y="44"
width="16"
height="1"
id="rect110"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="12"
y="42"
width="6"
height="1"
id="rect112"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="22"
y="42"
width="17"
height="1"
id="rect114"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="24"
y="40"
width="17"
height="1"
id="rect116"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="10"
y="40"
width="9"
height="1"
id="rect118"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="8"
y="38"
width="11"
height="1"
id="rect120"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="25"
y="38"
width="18"
height="1"
id="rect122"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="6"
y="36"
width="13"
height="1"
id="rect124"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="27"
y="36"
width="18"
height="1"
id="rect126"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="5"
y="34"
width="14"
height="1"
id="rect128"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="28"
y="34"
width="18"
height="1"
id="rect130"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="4"
y="32"
width="15"
height="1"
id="rect132"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="29"
y="32"
width="18"
height="1"
id="rect134"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="30"
y="30"
width="18"
height="1"
id="rect136"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="3"
y="30"
width="16"
height="1"
id="rect138"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="10"
y="28"
width="9"
height="1"
id="rect140"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="3"
y="28"
width="3"
height="1"
id="rect142"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="31"
y="28"
width="17"
height="1"
id="rect144"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="36"
y="26"
width="13"
height="1"
id="rect146"
style="fill:#afa7e9" />
<rect
class="cls-2"
x="2"
y="26"
width="5"
height="1"
id="rect148"
style="fill:#afa7e9" />
</svg>

Before

Width:  |  Height:  |  Size: 10 KiB

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