Merge branch 'main' of ssh://git.autonomic.zone:2222/ruangrupa/lumbung.space
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Aadil Ayub 2022-06-15 11:45:22 +05:00
commit 2a5bbb9925
10 changed files with 333 additions and 2 deletions

3
.gitignore vendored
View File

@ -10,4 +10,5 @@
resources
/etags/
.gitignore
.todo
.todo
.DS_Store

View File

@ -125,6 +125,25 @@ services:
done
"
timeline:
image: decentral1se/beta.lumbung.space-scripts:latest
volumes:
- content:/src/content/
configs:
- source: feeds_list_timeline
target: /src/feeds_list_timeline.txt
environment:
OUTPUT_DIR: /src/content/timeline
command: |
bash -c "
while true
do
echo 'generating timeline...'
/usr/local/bin/lumbunglib-timeline
sleep 500
done
"
volumes:
content:
@ -139,6 +158,9 @@ configs:
feeds_list_pen:
name: beta_lumbung_space_feeds_list_pen_v1
file: feeds_list_pen.txt
feeds_list_timeline:
name: beta_lumbung_space_feeds_list_timeline_v1
file: feeds_list_timeline.txt
secrets:
masto_key:

View File

@ -21,4 +21,4 @@ unsafe = true
timeline = "timelines"
[permalinks]
timelines = "/timeline/:slug/"
timelines = "/timeline/:slug/"

View File

@ -20,6 +20,13 @@
<ul>
<li><a href="/">home</a></li>
<li><a href="/timeline/">harvest</a></li>
{{/* <li><a href="/about/">about</a></li> */}}
<li class="has-submenu">about
<ul class="submenu">
<li><a href="/about/">about us</a></li>
<li><a href="/contributors/">contributors</a></li>
</ul>
</li>
<li><a href="/calendar/">calendar</a></li>
<li><a href="/tv/">tv</a></li>
<li><a href="/social/">social</a></li>
@ -39,6 +46,12 @@
<ul>
<li><a href="/">home</a></li>
<li><a href="/timeline/">harvest</a></li>
<li class="has-submenu">about
<ul class="submenu">
<li><a href="/about/">about us</a></li>
<li><a href="/contributors/">contributors</a></li>
</ul>
</li>
<li><a href="/calendar/">calendar</a></li>
<li><a href="/tv/">tv</a></li>
<li><a href="/social/">social</a></li>

View File

@ -0,0 +1,10 @@
<div class='timeline-event'>
{{ $postPermalink := .Permalink}}
{{ if .Content }}
<a href="{{ .Permalink }}" class="timeline-url" data-title='{{ replace .Title " " "-" }}'>{{ .Page.Title }}<svg class="link-svg" enable-background="new 0 0 383.3 383.3" version="1.1" viewBox="0 0 383.3 383.3" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path class="link-svg-path" d="m383.3 152.7c-0.3 0.8-0.6 1.6-0.9 2.4-3.4 10.4-13 16.4-23.8 14.9-10.1-1.4-17.8-10.3-17.9-20.9-0.1-22.1 0-44.2 0-66.2v-10c-1.6 1.6-2.7 2.6-3.8 3.7-57.1 57.1-114.2 114.1-171.2 171.2-6.3 6.4-13.6 9.2-22.4 6.8-14.7-4.1-20.3-21.8-10.8-33.7 1.2-1.6 2.7-2.9 4.1-4.4l169.9-169.9c1.1-1.1 2.4-2 3.7-3-0.2-0.4-0.4-0.7-0.6-1.1h-3.9-71.1c-9.8 0-17.8-6-20.6-15-2.8-8.9 0.4-18.6 8.2-23.7 2.5-1.7 5.6-2.6 8.4-3.9h135.5c2 0.9 4.1 1.6 6.1 2.6 6 3.1 9 8.5 11.2 14.6-0.1 45.3-0.1 90.4-0.1 135.6z"/>
<path class="st0" d="m0 212.7c0-35.3-0.1-70.6 0-105.9 0.1-31.1 21.1-56.7 51.5-63 3-0.6 6.2-1.1 9.3-1.1 29.6-0.1 59.1-0.1 88.7-0.1 9 0 16.8 5.8 19.7 14.1 2.9 8.2 0.4 17.4-6.2 23.1-4.6 4-10 5.3-15.9 5.3-26.9 0-53.9 0.4-80.8-0.2-13.7-0.3-23.8 9.9-23.7 23.8 0.3 69.4 0.2 138.7 0.2 208.1 0 15.2 8.4 23.7 23.5 23.7h208.8c11.9 0 20.3-6.2 22.6-16.7 0.5-2.3 0.5-4.7 0.5-7.1v-81.6c0-14.2 11-23.9 24.6-22 9.7 1.3 17.8 9.8 17.9 19.6 0.2 30.3 0.7 60.6-0.2 90.9-0.9 32.4-29.5 59.2-62.2 59.4-44.4 0.2-88.8 0.1-133.2 0.1h-80.5c-31.5-0.1-57.2-21.2-63.3-52-0.9-4.4-1.1-8.9-1.1-13.4-0.2-34.9-0.2-69.9-0.2-105z"/></svg>
</a>
{{ else }}
<span class="timeline-url" data-title='{{ replace .Title " " "-" }}'>{{ .Title }}</span>
{{ end }}
</div>

View File

@ -0,0 +1,42 @@
{{ define "main" }}
{{/*-- post count */}}
{{ $posts := (where .Site.RegularPages "Section" "==" "posts") }}
{{ $postCount := len $posts }}
{{/*-- page count */}}
{{ $pages := (where .Site.RegularPages "Section" "==" "page") }}
{{ $pageCount := len $pages }}
<div style="overflow: auto;">
<table>
<thead>
<tr>
<td style="text-align:center;font-weight: bold;width: 10em;">Description</td>
<td style="text-align:center;font-weight: bold;">Value</td>
</tr>
</thead>
<tbody>
<tr><td>Pages</td><td>{{ $pageCount }}</td></tr>
<tr><td>Posts</td><td>{{ $postCount }}</td></tr>
<tr><td>Post by Categories</td>
<td>
{{ range $name, $taxonomy := .Site.Taxonomies.categories }}
<a href="/categories/{{ $name | urlize }}">{{ $name | humanize }} ({{ $taxonomy.Count }})</a>
&nbsp;
{{end}}
</td>
</tr>
<tr><td>Post by Tags</td>
<td>
{{ range $name, $taxonomy := .Site.Taxonomies.tags }}
<a href="/tags/{{ $name | urlize }}">#{{ $name | humanize }} ({{ $taxonomy.Count }})</a>
&nbsp;
{{end}}
</td>
</tr>
</tbody>
</table>
{{end}}

View File

@ -0,0 +1,94 @@
{{ define "main" }}
<main>
<section class='entries'>
<div class="timeline-feed">
<div class="timeline-tags">
<div class="timeline-tags-headline">Hashtags:</div>
<ul><li class="timeline-tag"><a href="/timeline">all</a></li>{{ range .Site.Taxonomies.timelines }}<li class="timeline-tag"><a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a></li>{{ end }}
</ul>
</div>
<div class="timeline-container">
<div class="timeline-start"><span>Digital Harvest Timeline</span></div>
<div class="timeline-events">
{{ range .Pages.ByDate }}
{{- partial "timeline_event.html" . -}}
{{ end }}
</div>
<div class="timeline-end"></div>
<div class="timeline-line">
<div class="timeline-line-head"></div>
<div class="timeline-line-body"></div>
</div>
</div>
</div>
<script>
function scrollToEvent(){
var anchor = document.body.querySelector('.timeline-url[data-title="meydan-I"]');
if (typeof(anchor) != 'undefined' && anchor != null) {
anchor.scrollIntoView({
block: 'center',
inline: 'center',
behavior: 'smooth'
});
}
}
setTimeout(function(){
if (window.performance && window.performance.navigation.type !== window.performance.navigation.TYPE_BACK_FORWARD) {
scrollToEvent();
}
}, 800);
var events = document.querySelectorAll(".timeline-event");
window.addEventListener('scroll', fadeIn );
function fadeIn() {
for (var i = 0; i < events.length; i++) {
var event = events[i]
var distInView = event.getBoundingClientRect().top - window.innerHeight + 20;
if (distInView < 0) {
event.classList.add("inView");
} else {
event.classList.remove("inView");
}
}
}
fadeIn();
function popupOpen() {
var popup = document.getElementById("popup");
popup.classList.add("view");
}
function popupClose() {
var popup = document.getElementById("popup");
popup.classList.remove("view");
}
setTimeout(function(){
if (window.performance && window.performance.navigation.type !== window.performance.navigation.TYPE_BACK_FORWARD) {
popupOpen();
}
}, 2200);
</script>
<div id="popup" class="popup-container">
<div class="popup">
<div class="popup-header">
<h3>Welcome to the Digital Harvest Timeline</h3>
<button class="popup-close" onclick="popupClose()"></buttonv>
</div>
<div class="popup-content">
<p>Harvest refers to artistic recordings of discussions and meetings. Harvesters listen, reflect, and depict this process from their own perspectives, forms, and artistic practices. Harvesting can be seen as a way of collective writing that enables continuous collective learning, from different sensory experiences.</p>
<p>Here you can find a timeline of harvests to inform our continuous collective learning process.</p>
</div>
<div class="popup-footer"><svg width="11" height="11" viewBox="0 0 11 11" xmlns="http://www.w3.org/2000/svg">
<path d="M10.2172 3.892C9.86979 3.02585 9.33722 2.34509 8.61023 1.77874C8.23826 1.49028 7.72957 1.04191 7.21547 0.839212C7.21382 0.703503 7.14487 0.575079 6.97767 0.503871C5.42624 -0.162284 3.69503 0.311299 2.52647 1.51482C1.94635 2.11223 1.51951 2.8478 1.21108 3.62501C0.914861 4.3676 0.507572 5.32483 0.948415 6.07996C1.00646 6.17836 1.09356 6.24193 1.1908 6.27306C1.2735 7.35573 1.57765 8.46801 2.37847 9.21874C3.2325 10.0162 4.43613 10.3053 5.5673 10.1773C6.72371 10.0468 7.96432 9.57061 8.8816 8.82474C9.01086 8.71974 9.1274 8.60844 9.23337 8.49296C9.27968 8.4924 9.32805 8.4875 9.37839 8.4718C11.3643 7.82491 10.8101 5.37347 10.2172 3.892Z"></path>
</svg></div>
</div>
<div class="popup-bg" onclick="popupClose()"></div>
</div>
</main>
{{ end }}

View File

@ -0,0 +1,13 @@
{{ define "main" }}
<main class="main single">
<article class="h-entry">
<header>
<button class="back-button" onclick="history.back()">back to timeline</button>
<h1 class="p-name">{{ .Title }}</h1>
</header>
<div class="e-content">
{{ .Content }}
</div>
</article>
</main>
{{ end }}

View File

@ -0,0 +1,115 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 338.2 3095.4" style="enable-background:new 0 0 338.2 3095.4;" xml:space="preserve">
<style type="text/css">
.st0{fill:#F67D18;}
.st1{fill:#AB15F4;}
.st2{fill:#AB16F3;}
</style>
<g>
<path class="st0" d="M270.3,3095.5c0,0,1.8-18.6-9.6-26.1c-9-5.9-16.6-21.1-16.7-29.9c-0.7-20.6-10.1-26.5-19.3-47
c-5.5-12.3-19.2-23.8-20-37.4c-0.7-11.9-3.2-23.7-5.9-35.3c-4.8-20.4-6.8-41.2-5.5-62c1.4-22.5-2.7-43.6-12.7-63.6
c-5.5-11.1-8.9-23-8.7-35c0.5-25.1-8.5-46.8-20.5-68c-8.7-15.5-13.7-32.6-16.2-49.9c-4.7-33.5-17.9-62.5-41.1-87
c-16.8-17.7-27.6-38.6-33.3-62.2c-3.1-13-10.7-24.1-16.5-36c-3-6.1-5.5-12.3-6.1-18.8c-1.7-17.5-5.8-34.9-6.3-52.4
c-0.9-27.8,11.2-49.3,34.8-64.5c9-5.8,18-11.7,27.4-17c7-4,11.9-10.4,17.4-16.2c12-12.6,24.6-24.5,40.9-31.6
c9.4-4.1,19.4-5.7,29.7-5.3c12.8,0.5,25.2-1,37.1-6c8.7-3.7,15.8-10.1,23.9-15c7.2-4.4,14.8-7.6,23.2-8.5c7-0.7,12.1-3.9,15.7-9.9
c4.9-8.4,10.2-16.7,14.8-25.2c6.6-12.3,3.6-24-2.7-35.5c-5.5-10.1-14.2-17.1-23.1-23.5c-6.5-4.7-12.6-9.6-17.5-15.9
c-5.4-6.9-12.4-10.1-21.1-10.5c-12.9-0.6-25.9-1.2-38.3-5.8c-30.9-11.6-43.6-37.2-37.8-68.6c1.9-10.2,3.7-20.3,2.6-30.7
c-1.5-14.8,2.1-28.3,10.8-40.4c12.3-17.1,17.8-36.1,15.3-57.3c-1.4-11.5,0.3-22.8,3.6-34c1.5-5.1,1.5-10.5,1-15.9
c-0.9-11.5-0.6-22.9,3.6-33.9c5.1-13.4,17.1-15.7,26.6-5c2.3,2.6,4.1,5.6,5.2,8.9c0.9,2.7,2,5.3,2.7,8
c3.5,12.3,11.3,21.8,21.7,28.1c19.2,11.9,29.1,29.6,35.6,50.2c1.5,4.9,3.6,9.6,5.5,14.4c1.8,4.4,5.1,6.6,10,6.9
c4.9,0.2,7.5-2.5,9.7-6.4c3.7-6.7,5.1-14.1,6.2-21.4c1.6-10.8,5.5-20.8,9.1-31c3.7-10.5,2.7-21,0.7-31.5c-2-10.3-7-19.7-9.6-29.7
c-2.1-8.1-4.5-16.3-3.6-24.6c2.8-25.9-8.3-46.1-24.7-64.7c-10.9-12.3-22.7-24.2-29.8-39.4c-5.6-12-11.8-23.7-13.8-37
c-1.8-11.9-0.4-23.3,3.5-34.4c7.1-20.3,7.3-40.1-1.7-60.1c-6.5-14.5-10.8-29.7-11.7-46c-1-19.4-7.6-37-20.6-52.1
c-15.8-18.3-24.3-40.2-23.8-64.4c0.3-16.3-4.1-29.8-14.8-41.9c-6.4-7.2-8.4-16.8-12.2-25.4c-0.7-1.7-1.4-3.5-2.5-4.9
c-9.6-12.1-15.5-25.7-16.9-41.3c-0.9-10-7.2-18-11.6-26.7c-4.2-8.3-6.9-16.9-6.9-26.2c0-19.1,0.7-38.2,3.6-57.1
c1.8-11.8,8-21.8,16-30.3c7.5-8,12.1-17.1,13.7-27.6c1.3-8.5,4.1-16.2,10.1-22.3c8.8-9,11.5-20.5,14.4-32.1
c4.1-17,10.3-32.9,25.8-43.2c4.5-3,9.3-5.3,14.4-6.7c9.6-2.7,17.2-7.8,22.4-16.2c6.3-10.1,14.9-17,26.2-20.8
c12.9-4.3,17.1-15.2,18.7-26.9c2.3-17.1,7.2-32.5,20-44.9c5.6-5.4,6.4-13.3,5.4-21c-1.6-11.7-7.2-22-11.9-32.6
c-8.4-19.1-19.8-36.7-26-56.8c-4.2-13.3-7.2-27-10.1-40.6c-3.9-18.1-12.8-33.5-22.6-48.8c-8.5-13.2-16.8-26.7-21-42
c-1.8-6.6-2.7-13.3-3.9-20c-2.3-13.2-9.1-24.2-18.1-33.7c-12.3-13-24.1-26.3-33.6-41.6c-7.5-12.1-18.2-21.1-30.7-28.4
c-9.9-5.8-19.8-10.2-31-12.5c-14.4-2.9-25.8-11.6-36-21.9c-10.6-10.6-22.3-19.1-36.6-24c-13.7-4.7-21.1-15.9-27.1-28.2
c-3.7-7.5-5.9-15.5-7.2-23.7c-0.8-4.8-0.1-9.6,2.1-13.6c7.6-13.9,13.3-28.3,18-43.4c4.6-15.2,14.9-27.6,24.1-40.3
c9.8-13.5,14.5-28.8,16.8-45.2c2-14.3,4.5-28.5,11.3-41.6c3.5-6.8,8.7-10.5,16.4-9.6c7.4,0.9,11.6,5.6,14.2,12.3
c2.5,6.6,2.9,13.4,2.3,20.2c-1.3,14.2,1.9,27.3,8.3,39.9c4.1,8.1,6.5,16.7,6.9,25.8c0.3,6.6,3,12.3,7,17.2
c6,7.2,9.1,15.7,11.3,24.6c0.2,0.8,0.2,1.7,0.5,2.4c1.8,3.8,3,8.4,8,9.3c4.9,0.9,8-2.4,10.9-5.7c7.2-8.1,10-18.2,12.8-28.2
c5.5-19.6,8.3-40,17.8-58.4c4.6-8.9,9.9-17.2,15.7-25.3c10.6-14.8,19.3-30.6,23.6-48.4c1.6-6.4,2.2-13.1,2.6-19.8
c0.7-11,1.1-21.9,2-32.9c1.1-13.2,5.5-24.8,13.3-35.3c8-10.8,13.4-22.4,13.1-36.2c-0.1-3.6,0.7-7.3,1.2-10.9c1-7.9,5.5-14.5,7.8-22
c0.9-2.9,1.8-5.8,1.6-8.8c-0.7-15.2-1.4-23.3,0.4-38.4l10.9,0c-0.6,8.5-2.2,13.2-1.9,25.7c2.1,13.4-1.6,25.3-6.9,37.1
c-2.1,4.6-3.5,9.5-3.4,14.4c0.4,16.7-5.4,31.2-14.9,44.5c-7.4,10.1-10.9,21.4-11.5,33.9c-0.7,13.5-1.5,26.9-2.8,40.4
c-1.7,17.6-9.4,33-17.9,48.1c-6.5,11.5-15,21.8-21.5,33.4c-8,14.4-11.9,30.1-15.7,45.9c-4,16.4-7,33.2-17.9,47
c-3.9,5-8.5,9-14.9,10c-11.1,1.8-19.8-4.4-22.9-16.5c-2.6-10.2-6.1-19.8-13-28c-3-3.6-5-8.3-5.3-13.2c-0.8-12.8-4.3-24.7-10-36.1
c-4.9-9.9-6.1-20.5-5.7-31.5c0.3-7.1,1.1-14.3-1.9-21.2c-1.2-2.9-2.6-5.4-6.2-5.6c-3.7-0.3-5.1,2.1-6.6,4.9
c-5.6,10.6-8,22.3-9.3,33.9c-2.5,22-9.9,41.7-23.5,59.3c-11.1,14.4-20.1,29.8-23.2,48.2c-1.2,6.9-4.7,13.1-8.6,18.9
c-6.6,9.8-6.6,19.9-2.3,30.3c2,4.9,4.4,9.6,7,14.2c4.7,8.1,11.4,13.5,20.3,16.6c13.4,4.6,25.2,11.9,34.9,22.1
c12.6,13.2,27.4,22.2,45.4,25.7c4.9,0.9,9.5,2.9,13.5,6c15.2,11.6,32.3,21.1,42.7,37.9c10.5,17,25.5,30.3,37.9,45.7
c8.7,10.8,14.1,23,15.8,37c2,16.9,9.8,31.4,18.5,45.7c6.4,10.6,13.7,20.7,19.2,31.8c6.9,13.8,10.2,28.7,13.6,43.6
c5.2,22.1,13.3,42.9,23.8,63c7.7,14.8,15.3,29.8,19.5,46.1c3.7,14.5,2.3,28.1-9.1,39.1c-8.6,8.3-12,18.9-13.8,30.2
c-1.1,6.9-2.8,13.6-5.1,20.3c-3.5,10.3-10.7,17.2-20.5,21c-9.6,3.7-17.2,9.1-22.9,17.9c-6.5,10-16.1,16.6-27.5,20.1
c-17.1,5.2-25.3,18-30.4,34c-3.2,10.1-4.8,20.6-9.3,30.3c-2.7,5.9-7.1,10.4-11.2,15.1c-4.3,4.9-5.9,10.7-7.1,16.7
c-2.2,10.7-6,20.5-13.6,28.8c-11.3,12.5-17.8,27.1-17.1,44.3c0.5,11.8-1.7,23.5-1.6,35.3c0.1,10.9,3.1,20.7,8.5,29.8
c6.4,10.6,10.8,21.8,10.6,34.2c-0.1,7.9,2.8,14.4,7.2,20.2c5.6,7.3,10.2,15,12.7,24c2.2,7.8,7,14.2,11.8,20.5
c7.7,10.1,11.8,21.3,11.7,34.1c-0.2,26.8,9.1,50.2,26.3,70.7c10.2,12.2,15.4,26.7,17.2,42.2c2.1,18.1,4.8,35.9,12.6,52.5
c7.4,15.6,9.4,31.8,6.7,48.6c-1.1,7.3-3.6,14.5-5.6,21.6c-4.8,17.1-2.1,33.3,5,49.4c7.4,16.8,18.4,30.8,30,44.7
c8.9,10.6,18.8,20.6,24.1,33.8c4.3,10.8,7.6,21.8,7.3,33.8c-0.3,17.1,4.1,33.6,10.2,49.4c6.5,16.9,7.7,33.6,1.3,50.5
c-4.9,12.8-6.7,26.3-9.8,39.5c-2,8.6-5.2,17-13.1,22.2c-11.6,7.6-27.1,1.2-32.6-13.3c-3.5-9.1-6.5-18.4-9.9-27.6
c-4.2-11.4-11.8-20-22-26.7c-11.2-7.3-21-16.2-26.9-28.6c-2.8-6-4.7-12.4-7-18.5c-0.5-1.2-1.2-2.4-2-3.4c-2.9-3.5-5.4-3.2-6.8,1.1
c-2.5,7.5-4.4,15.2-3.1,23c1.9,11.7,0.1,22.9-3.1,34c-2,7-2.7,14.2-1.8,21.3c2.9,25.2-5,47.2-18.6,67.6c-6.3,9.5-8.6,19.9-7.6,31.2
c0.9,9.2-0.2,18.3-2.2,27.3c-1.6,7.3-2.3,14.7-2,22.2c1,20.4,16.1,35.2,33.5,40.8c8.5,2.7,17.1,3.9,26,4.2
c10.7,0.4,21.2,2.1,29.6,9.7c1.3,1.2,2.8,2.4,3.8,3.9c6.1,9.1,14.2,16,23.2,22.1c13.8,9.4,23.2,21.9,27.5,38.2
c2.6,9.9,0.9,19.3-3.7,28c-4.9,9.2-10.4,18-16,26.8c-5.2,8.2-12.9,13-22.4,14c-10.1,1-18.5,5.7-26.1,11.4
c-17.6,13.1-37,18.5-58.7,17.8c-16.1-0.5-30.1,5.1-43.1,15.1c-12.4,9.6-22.8,21-34.5,31.2c-8,7-18,10.9-26.5,17.3
c-9,6.8-18.3,13-25.6,21.9c-12.5,15.3-13.6,32.7-9.5,50.9c2.3,10,3.7,20,4.3,30.1c0.9,13.9,6.2,26,12.6,37.9
c6,11.2,9.5,23.3,13,35.4c5.4,19,16,35,28.9,49.7c13.3,15.1,23.9,32.1,32.8,50.1c5,10.3,7.7,21.3,8.9,32.5
c3,25.7,12.4,48.9,25.4,71.1c8.5,14.5,13.7,30.1,13.7,47.3s5.2,33.2,12.1,48.9c7.4,16.6,10,34.4,9.2,52.6
c-1.1,25.4,1.3,50.5,7.8,75.2c2.3,8.7,3.2,17.7,3.8,26.6c1.1,15.7,14.1,23.4,20.7,37.4c8.7,18.7,19.2,26.9,19.6,46.6
c0.3,11.7,10.2,20.5,16,26.9c6.2,6.9,8.8,14.9,9.4,18.1c0.7,3.2,0.1,12.3,0.1,12.3"/>
</g>
<g>
<path class="st1" d="M287.7,1198c-1.3-22.3,0.4-44.3,5.9-65.9c6.5-25.2,4.6-50.2-2.1-75c-3-10.9-5.5-21.9-7.6-33.1
c-2.2-11.7-7.1-22.1-15-31.1c-2.4-2.7-7.5-9.1-9.9-11.8c0.9-0.9,3-3,3-3s5-4,5.4-3.9c15,14.9,26.9,35.6,30.2,56.4
c2.1,13.4,6.3,26.6,8.7,40c3.8,21,4.4,42-0.8,63c-5.5,22.3-7.7,45-6.2,67.9c2.6,38.7-5.1,74.8-25.8,107.9
c-6.3,10.1-10.7,21-13.8,32.5c-1.8,6.4-4.4,12.6-7.7,18.3c-9.3,15.9-16.4,32.5-20.2,50.7c-2.6,12.7-9.4,23.8-19.4,32.5
c-8.8,7.7-15.3,16.9-19.2,28.1c-2.6,7.6-6.5,14.7-12.1,20.5c-10.2,10.5-16.9,22.6-20.6,37c-3.9,15.2-9.2,29.9-7.6,46
c1.1,11.5,3.8,22.7,7.5,33.6c5,14.5,4.4,28.4-2.7,42c-9.8,18.7-11.1,38.8-9,59.4c1.7,17.4-0.8,34.1-5.9,50.7
c-9.4,30.4-12.1,61.3-4.9,92.6c1.6,6.8,4.3,13.3,7.3,19.6c4.9,10.4,9.3,21,11.4,32.4c2.6,13.9,10.9,29.2,18,41.1
c-0.4,0.6-2.9,4.8-2.9,4.8l-2.4,3.1c-7.5-12-16.7-26.8-19.6-40.8c-3.1-14.8-8.9-28.4-15.2-42.1c-12.4-26.7-13.4-54.9-9.3-83.6
c1.8-12.7,7.2-24.2,9.9-36.6c2.8-12.8,4.3-25.8,2.6-38.7c-2.7-21.8-0.1-42.6,10.2-62.1c7.9-14.9,6.9-29.5,1.4-44.8
c-5.5-15.2-8.2-30.9-6.6-47.1c0.6-5.8,2-11.5,3.6-17.1c2.7-9.3,5.4-18.5,8.3-27.8c3.2-10.3,9.7-18.5,16.8-26.3
c5.9-6.5,10-14.1,13-22.3c3.6-9.9,9.4-18.2,17.2-25.3c9.8-8.9,17.7-19.4,19.9-32.6c3.2-18.8,11.2-35.4,20.3-51.8
c5.3-9.4,7.3-20,11.1-29.9c4.9-13.1,12.3-25.1,19.1-37.3c13.3-24,16.6-50,16.3-76.8C288.3,1207,287.9,1202.5,287.7,1198z"/>
<path class="st1" d="M171.2,820.1c-0.9-12-4.7-23.5-7.3-35.1c-5.1-22.8-5-45.2,4.4-67.1c4.7-11.1,6.9-22.9,8.8-34.8
c2.5-15.4,10.8-27.7,20.5-39.3c6.1-7.3,11.8-14.9,19-21.1c15-13,23.4-30,29.3-48.5c5.5-16.9,8.3-34.2,8.9-52
c0.7-20.2,6.3-39.4,12.4-58.5c2.5-7.9,4.7-16,6.8-24c4.5-17,0-33.1-4.4-49.1c-3.6-13-7.1-26.1-8.4-39.5
c-1.4-15.4-6.5-29.5-14.4-42.6c-8.5-14.1-14.8-29-18.4-45.1c-0.8-3.4-5.6-15.5-7.5-18.3c-0.3-0.4,1.8-2.7,5.7-10.4
c4.4,6.6,8.6,14.6,10.4,22.4c4.5,19.2,12.8,36.7,22.7,53.6c5.9,10.2,9.5,21.3,10.7,33c1.9,18.5,6.5,36.4,11.8,54.1
c6.5,21.6,3.9,42.4-3.2,63.2c-6.8,20.1-11.7,40.5-13.6,61.8c-2.3,26-5.8,51.9-17.2,76c-6.2,13.2-14.8,24.2-25.4,34.1
c-11.9,11.2-22.4,23.7-30.1,38.3c-2.3,4.5-3.8,9.3-4.6,14.2c-2.2,13.5-5.6,26.8-10.7,39.4c-7.6,18.6-7.1,37.6-2.7,56.5
c4.7,20.2,7.8,40.2,6.9,61.2c-1.1,26.2,7.5,49.7,26.4,68.9c7.6,7.8,15.5,15,24.5,21.2c11.3,7.8,21.6,20.1,28.3,32.1l-6.2,4.8
c0,0-1.4,1.3-2,1.7c-8.6-12.3-21.1-25.7-33.3-34.4c-13.3-9.5-25.7-20.4-33.8-34.9c-11-19.5-16.6-40.6-15.3-63.2
c0.3-4.8,0.6-9.6,1-14.4c0.1,3.2-0.5,6.5,0.6,11.1c0-7.2,0-13.1,0-19c-0.2,0-0.4,0-0.6,0C171.2,817.6,171.2,818.9,171.2,820.1z"/>
<path class="st1" d="M160.5,3095.5c0,0,5.6-56.7-49.8-93.3C59,2968,68.3,2951.6,72,2928.8c1.3-8.1,5.2-15.4,9.1-22.6
c5.1-9.4,9.7-18.9,12.2-29.4c0.7-2.8,0.8-5.6,0.8-8.4c0.2-16.5,0.2-32.9,3.7-49.2c5-23.2,15.1-44.1,31.7-60.7
c21.2-21.3,35.7-46.2,46.3-73.8c3.5-9.2,8.1-17.9,12.9-26.5c5.9-10.6,10.1-22,11-34c1.5-20.3,7.9-39.5,11.6-59.2
c3.4-18.2,8.1-36,12.4-54c4.5-18.5,3.7-37.7,4.8-56.7c1-16.6-1.5-32.9-2.5-49.4c-0.7-12.7-0.3-25.3,3.5-37.6
c1.9-6.1,1.5-12.6,2-18.8c1.1-14.9,5.9-29,7.8-43.7c2.2-16.8-0.1-40.8-6.7-56.7c0,0,2.2-1.1,8.7-5.8c13.1,26.7,11.4,54.7,4.5,82.3
c-3.1,12.2-4.7,24.5-5.7,37c-0.3,3.5-1,6.9-1.8,10.3c-3.1,12.8-3.2,25.8-0.8,38.7c3.8,20.8,0.6,41.5,0.4,62.3
c-0.2,20.6-3.2,40.7-9.2,60.5c-5,16.7-5.7,34.5-10.6,51.3c-3.6,12.2-5.7,24.6-7,37.2c-1.5,14.2-5.5,27.7-12.7,40.2
c-10.7,18.4-18.8,38.2-28.1,57.3c-7.5,15.5-17.3,29.2-29.2,41.4c-20.4,20.9-31.8,46-35.2,74.9c-0.9,7.9-2.3,15.9-1.7,23.9
c1.4,18.7-4.6,35.5-13.5,51.4c-6,10.7-9.1,21.9-10.8,34c2.7,37.6,24.8,29.2,67.9,76.8c25.6,28.3,23.2,73.7,23.2,73.7 M229.3,2456.1
c0.1,0,0.3,0,0.4,0c0-7.9,0-15.8,0-23.7c-0.1,0-0.3,0-0.4,0C229.3,2440.3,229.3,2448.2,229.3,2456.1z"/>
<path class="st2" d="M171.1-0.1c-2.4,26-3.3,61.5,6.6,85.8c9.8,24.1,16.4,48.8,19.5,74.5c2.5,20.7,12,47,23.3,64.5
c0,0.1-0.8,2.5-5.7,11.2c-10.6-17.7-19.8-36.4-24.6-56.5c-3.1-12.8-4.7-25.9-6.7-38.9c-3.1-19.8-11.6-37.8-17.9-56.5
c-7.4-21.8-8.8-61-5.2-84.1"/>
<path class="st1" d="M228.4,2238.7c-1.8-4.3-0.7-8.2-0.6-12.2c0.3-8.3-0.8-16.3-3-24.2c-6.1-22.6-4.6-44.8,2.4-66.9
c2.9-9.2,6-18.4,4.7-28.3c-1-7.6-3.5-14.6-8.6-20.4c-11.7-13.3-20.5-28.3-25.8-45.2c-3.8-12.2-5.6-25-7.4-37.7
c-1.6-11.5-8.7-29.1-13.8-39.5c0,0,2.1-2.9,5.2-8c10.1,13.7,15.8,29.6,18.5,46.2c3.2,20.1,6.9,40,17.7,57.8
c3.4,5.6,7.1,10.9,11.4,15.8c15.5,17.6,17.3,37.5,10,58.8c-3.1,9-4.9,18.3-7,27.5c-3,13.4-1.1,26.5,2.4,39.5
c2.6,9.8,3.1,20.5,3.1,30.5C237.6,2232.5,231.5,2236.8,228.4,2238.7z"/>
<path class="st2" d="M171.2,820.1c0-1.3,0-2.5,0-3.8c0.2,0,0.4,0,0.6,0c0,5.9,0,11.7,0,19c-1.1-4.6-0.6-7.9-0.6-11.1
C171.2,822.9,171.2,821.5,171.2,820.1z"/>
<path class="st2" d="M229.3,2456.1c0-7.9,0-15.8,0-23.7c0.1,0,0.3,0,0.4,0c0,7.9,0,15.8,0,23.7
C229.6,2456.1,229.5,2456.1,229.3,2456.1z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 339.3 248" style="enable-background:new 0 0 339.3 248;" xml:space="preserve">
<style type="text/css">
.st0{fill:#F67D18;}
.st1{fill:#AB16F3;}
</style>
<g>
<path class="st0" d="M270.9,248c1.1-9.8-1.2-26.4-5.5-34.9c-7.4-14.5-14.2-29.1-19.6-44.4c-2.3-6.3-5.6-12.1-10.4-16.7
c-11.6-11.2-19.8-24.8-27.4-38.8c-4.7-8.7-10.5-16.7-18.1-22.9c-26.3-21.4-43.6-48.9-56-80c-0.7-1.8-1.5-3.7-2.2-5.5
c-0.4-1.6-0.4-3.7,0-4.1s0.9-0.5,1.5-0.4s2.3,3.2,4.4,6.7c5.7,9.9,11.6,19.6,17.1,29.6c8.9,16.3,21.7,29.4,35.4,41.4
c12.4,11.1,22.6,24.1,30.7,39.1c5.4,10.1,12,19.4,20.3,27.4c7.6,7.3,12.2,16.6,15.5,26.2c4,11.7,9.3,22.7,15.2,33.4
c8.5,15.3,10.8,24.9,10.3,43.9"/>
</g>
<g>
<path class="st1" d="M160.3,248c3.4-21.9,3.6-27.5,4.7-49.6c1-19.8,10.1-37.4,16-55.9c7.3-22.8,18.9-43.6,27.7-65.7
c6.8-16.9,10-34.8,11.3-53c0.4-4.9,1.1-9.7,3.4-14.3c2.2,1.6,1.8,3.4,1.8,4.9c0,33.1-6,64.8-21,94.6c-8.7,17.3-12.6,36.5-20.1,54.2
c-7.4,17.3-10.2,35.5-10,54.1c0.2,13.6-0.5,17.5-2.9,30.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB