misc house keeping

This commit is contained in:
Gamebrary 2021-12-29 15:12:55 -06:00
parent 8a4390c304
commit b320233eb3
33 changed files with 793 additions and 171 deletions

View file

@ -1,15 +1,17 @@
<template lang="html">
<nav class="rounded d-flex flex-column m-2 text-center dock bg-white">
<nav class="rounded d-flex flex-column m-2 text-center dock">
<b-button
title="Dashboard"
variant="transparent"
class="my-2 p-0"
@click="handleLogoClick"
>
<img
<!-- <img
src="/static/gamebrary-logo-dark.png"
width="32"
/>
/> -->
<i class="fas fa-gamepad" />
<!-- TODO: move back button to here when viewing a game that's part of a board -->
</b-button>
<pinned-boards />
@ -19,7 +21,7 @@
<i class="fas fa-cog" />
</b-button>
<global-search class="ml-2" />
<global-search />
</nav>
</template>
@ -89,6 +91,7 @@ export default {
<style lang="scss" rel="stylesheet/scss" scoped>
.dock {
background: rgba(0, 0, 0, 0.5);
z-index: 1;
max-height: calc(100vh - 16px);
}

View file

@ -1,97 +1,94 @@
<template lang="html">
<b-container v-if="game.name" fluid>
<b-row>
<b-col cols="12" md="4" lg="4">
<div class="game">
<aside>
<div class="position-relative">
<b-img
:src="gameCoverUrl"
:alt="game.name"
class="game-cover cursor-pointer"
rounded
class="cursor-pointer game-cover"
fluid-grow
@click="$bvModal.show('game-images')"
/>
<b-skeleton-img
v-if="loading"
width="100px"
height="100px"
/>
<template v-else>
<div class="game-info">
<game-rating :game="game" />
<game-images :game="game" />
<game-videos :videos="game.videos" v-if="game.videos" />
</template>
</div>
</div>
<game-websites :game="game" class="d-none d-md-inline" />
<!-- <pre>{{ game.genres.map(({ id }) => id) }}</pre> -->
<!-- TODO: add bundles to game detail? -->
<!-- {{ game.bundles ? `Found in ${game.bundles.length} compilations.` : null }} -->
</b-col>
<b-skeleton-img
v-if="loading"
width="100px"
height="100px"
/>
<!-- cols="12"
md="7" -->
<b-col
cols="12"
md="7"
lg="8"
<template v-else>
<game-images :game="game" />
<game-videos :videos="game.videos" v-if="game.videos" />
</template>
<game-websites :game="game" class="d-none d-md-inline" />
<!-- <pre>{{ game.genres.map(({ id }) => id) }}</pre> -->
<!-- TODO: add bundles to game detail? -->
<!-- {{ game.bundles ? `Found in ${game.bundles.length} compilations.` : null }} -->
</aside>
<article>
<h3 class="mb-2">{{ game.name }}</h3>
<b-progress
v-if="progress"
:value="progress"
variant="success"
height="8px"
v-b-modal.progress
class="my-1 w-25"
/>
<game-description :game="game" />
<game-news :game="game" />
<game-details :game="game" />
<similar-games
:game="game"
:loading="loading"
class="mb-2"
/>
<game-websites
:game="game"
grid
class="d-md-none"
/>
<b-badge
v-for="({ games, hex, tagTextColor }, name) in tags"
v-if="games.includes(game.id)"
:key="name"
pill
tag="small"
class="mr-1 mb-2"
:style="`background-color: ${hex}; color: ${tagTextColor}`"
v-b-modal.tags
>
<h3 class="mb-2">{{ game.name }}</h3>
<b-progress
v-if="progress"
:value="progress"
variant="success"
height="8px"
v-b-modal.progress
class="my-1 w-25"
/>
<game-description :game="game" />
<game-news :game="game" />
<game-details :game="game" />
{{ name }}
</b-badge>
<similar-games
:game="game"
:loading="loading"
class="mb-2"
/>
<!-- <template v-if="!loading">
<b-skeleton v-for="n in 3" :key="n" />
</template> -->
<game-websites
:game="game"
grid
class="d-md-none"
/>
<game-notes :game="game" />
<!-- <b-form-rating
v-if="rating"
:value="rating"
inline
readonly
variant="warning"
size="lg"
no-border
/>
<b-badge
v-for="({ games, hex, tagTextColor }, name) in tags"
v-if="games.includes(game.id)"
:key="name"
pill
tag="small"
class="mr-1 mb-2"
:style="`background-color: ${hex}; color: ${tagTextColor}`"
v-b-modal.tags
>
{{ name }}
</b-badge>
<!-- <template v-if="!loading">
<b-skeleton v-for="n in 3" :key="n" />
</template> -->
<game-notes :game="game" />
<!-- <b-form-rating
v-if="rating"
:value="rating"
inline
readonly
variant="warning"
size="lg"
no-border
/>
<br /> -->
</b-col>
</b-row>
</b-container>
<br /> -->
</article>
</div>
</template>
<script>
@ -149,8 +146,34 @@ export default {
</script>
<style lang="scss" rel="stylesheet/scss" scoped>
.game {
width: calc(100% - .5rem);
display: grid;
grid-template-columns: 1fr 2fr;
grid-gap: 1rem;
@media(max-width: 1280px) {
grid-template-columns: 360px auto;
}
@media(max-width: 1024px) {
grid-template-columns: 320px auto;
}
@media(max-width: 768px) {
grid-template-columns: 100%;
}
}
.game-cover {
width: 100%;
max-width: 100%;
// position: relative;
height: auto;
}
.game-info {
position: absolute;
bottom: 1rem;
right: 1rem;
}
</style>

View file

@ -43,6 +43,90 @@
</ul>
</div>
<!-- Latest update -->
<vue-timeline-update
:date="new Date('2017-02-26')"
title="v2.2.0 - Initial D"
description="Today I am thrilled to announce the release of Vue.js 2.2.0."
thumbnail="/images/vuetimeline/initial_d.jpg"
category="announcement"
icon="code"
color="red"
/>
<!-- Another update -->
<vue-timeline-update
:date="new Date('2016-11-22')"
title="v2.1.0 - Hunter X Hunter"
description="Today I am thrilled to announce the release of Vue.js 2.1.0."
thumbnail="/images/vuetimeline/hunter_x_hunter.jpg"
category="announcement"
icon="code"
color="turquoise"
/>
<!-- Yet another update -->
<vue-timeline-update
:date="new Date('2016-09-30')"
title="v2.0.0 - Ghost in the Shell"
description="Today I am thrilled to announce the release of Vue.js 2.0.0"
thumbnail="/images/vuetimeline/ghost_in_the_shell.jpg"
category="announcement"
icon="code"
color="white"
is-last
/>
<ul class="list-unstyled">
<b-media tag="li">
<template #aside>
<b-img blank blank-color="#abc" width="64" alt="placeholder"></b-img>
</template>
<h5 class="mt-0 mb-1">List-based media object</h5>
<p class="mb-0">
Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin.
Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc
ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.
</p>
</b-media>
<b-media tag="li" class="my-4">
<template #aside>
<b-img blank blank-color="#cba" width="64" alt="placeholder"></b-img>
</template>
<h5 class="mt-0 mb-1">List-based media object</h5>
<p class="mb-0">
Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin.
Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc
ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.
</p>
</b-media>
<b-media tag="li">
<template #aside>
<b-img blank blank-color="#bac" width="64" alt="placeholder"></b-img>
</template>
<h5 class="mt-0 mb-1">List-based media object</h5>
<p class="mb-0">
Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin.
Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc
ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.
</p>
</b-media>
</ul>
<b-list-group>
<b-list-group-item>Cras justo odio</b-list-group-item>
<b-list-group-item>Dapibus ac facilisis in</b-list-group-item>
<b-list-group-item>Morbi leo risus</b-list-group-item>
<b-list-group-item>Porta ac consectetur ac</b-list-group-item>
<b-list-group-item>Vestibulum at eros</b-list-group-item>
</b-list-group>
<strong>{{ $t('board.gameModal.releaseDate') }}:</strong>
<span class="text-wrap">
<div v-for="releaseDate in releaseDates" :key="releaseDate">

View file

@ -5,7 +5,6 @@
v-for="(thumbnail, index) in thumbnails"
:key="index"
cols="2"
md="4"
class="position-relative thumb"
@click="openModal(index + 1)"
>

View file

@ -1,8 +1,24 @@
<template lang="html">
<div class="game-news">
<pre>{{ articles.length }}</pre>
Latest news about {{ game.name }}
<ul class="list-unstyled">
<b-media tag="li" v-for ="article in articles" :key="article.id">
<template #aside>
<b-img blank blank-color="#abc" width="64" alt="placeholder"></b-img>
</template>
<h5 class="mt-0 mb-1">{{ article.title }}</h5>
<p class="mb-0">
Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin.
Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc
ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.
</p>
</b-media>
</ul>
<b-card v-for ="article in articles" :key="article.id" class="mb-3">
<h5 class="mb-0">
<pre>{{ article }}</pre>
<!-- <h5 class="mb-0">
<pre>{{ article.id }}</pre>
{{ article.title }}
@ -16,7 +32,7 @@
<p v-html="getformattedContent(article)" />
<b-button :href="article.url" variant="info" target="_blank">Read article</b-button>
<b-button :href="article.url" variant="info" target="_blank">Read article</b-button> -->
<!-- TODO: add pc gamer logo /#/game/12597/owlboy -->
<!-- <vue-markdown v-html="parseBBcode(article.contents)" /> -->

View file

@ -1,15 +1,20 @@
<template lang="html">
<div>
<section class="d-flex align-items-end">
<!-- <pre>{{ game.age_ratings }}</pre> -->
<!-- TODO: add CERO images -->
<!-- TODO: add USK images -->
<!-- TODO: add GRAC images -->
<!-- TODO: add CLASS_IND images -->
<!-- TODO: add ACB images -->
<!-- TODO: hook up settings -->
<img
v-for="rating in ageRatings"
:src="`/static/img/age-ratings/${rating}.png`"
:alt="rating"
:key="rating"
class="mr-2 mb-2"
style="height: 60px"
class="ml-2 rating"
/>
</div>
</section>
</template>
<script>
@ -25,6 +30,11 @@ export default {
categories: {
1: 'ESRB',
2: 'PEGI',
3: 'CERO',
4: 'USK',
5: 'GRAC',
6: 'CLASS_IND',
7: 'ACB',
},
values: {
1: '3',
@ -39,12 +49,42 @@ export default {
10: 'T',
11: 'M',
12: 'AO',
13: 'CERO_A',
14: 'CERO_B',
15: 'CERO_C',
16: 'CERO_D',
17: 'CERO_Z',
18: 'USK_0',
19: 'USK_6',
20: 'USK_12',
21: 'USK_18',
22: 'GRAC_ALL',
23: 'GRAC_Twelve',
24: 'GRAC_Fifteen',
25: 'GRAC_Eighteen',
26: 'GRAC_TESTING',
27: 'ClassInd-L',
28: 'ClassInd-10',
29: 'ClassInd-12',
30: 'ClassInd-14',
31: 'ClassInd-16',
32: 'ClassInd-18',
33: 'ACB_G',
34: 'ACB_PG',
35: 'ACB_M',
36: 'ACB_MA15',
37: 'ACB_R18',
38: 'ACB_RC',
},
},
};
},
computed: {
ratings() {
return this.game && this.game.age_ratings;
},
ageRatings() {
return this.game && this.game.age_ratings
? this.game.age_ratings.map(({ rating }) => this.ageRating.values[rating])
@ -55,4 +95,15 @@ export default {
</script>
<style lang="scss" rel="stylesheet/scss" scoped>
.rating {
height: 50px;
@media(max-width: 1024px) {
height: 40px;
}
@media(max-width: 768px) {
height: 30px;
}
}
</style>

View file

@ -1,6 +1,6 @@
<template lang="html">
<header class="my-4 d-flex align-items-center justify-content-between">
<h3>{{ title }}</h3>
<header class="my-3 d-flex align-items-center justify-content-between">
<h3 class="m-0">{{ title }}</h3>
<b-button
v-if="actionText"

View file

@ -1,4 +1,5 @@
<template lang="html">
<!-- TODO: agregar Classificação Indicativa -->
<div>
<b-form-group label="Steam ID:">
<b-form-input

View file

@ -2,6 +2,7 @@ import Vue from 'vue';
import { BootstrapVue } from 'bootstrap-vue';
import 'bootstrap-vue/dist/bootstrap-vue.css';
import VueAxios from 'vue-axios';
import VueTimeline from "@growthbunker/vuetimeline";
import VueShortKey from 'vue-shortkey';
import Dayjs from 'vue-dayjs';
import VueFire from 'vuefire';
@ -30,6 +31,7 @@ Object.defineProperties(Vue.prototype, {
},
});
Vue.use(VueTimeline);
Vue.use(VueShortKey, { prevent: ['input', 'textarea'] });
Vue.use(Dayjs);
Vue.use(PortalVue);

View file

@ -2,7 +2,7 @@
<div class="pt-3 game-page" ref="gamePage">
<!-- <mini-board :board="board" v-if="board" /> -->
<div class="mb-3">
<div class="mb-2">
<b-button
v-if="board && board.id"
variant="primary"

View file

@ -1,7 +1,5 @@
<template lang="html">
<b-container>
<h1>Edit profile</h1>
<div>
<b-button @click="checkUserNameAvailability">
Check availability
</b-button>
@ -46,11 +44,9 @@
placeholder="twitter"
/>
<pre>{{ profile }}</pre>
<pre>{{ user }}</pre>
</b-container>
<!-- <pre>{{ profile }}</pre> -->
<!-- <pre>{{ user }}</pre> -->
</div>
</template>
<script>

View file

@ -2,7 +2,13 @@
<b-container fluid>
<page-title title="Settings" />
<b-row no-gutters>
<game-detail-settings />
<profile-settings-page />
<account-settings-page />
<steam-settings-page />
<general-settings-page />
<!-- <b-row no-gutters>
<b-col cols="2">
<b-list-group>
<b-list-group-item :to="{ name: 'general-settings' }">
@ -47,7 +53,28 @@
<b-col>
<router-view />
</b-col>
</b-col> -->
</b-row>
</b-container>
</template>
<script>
import ProfileSettingsPage from '@/pages/ProfileSettingsPage';
import AccountSettingsPage from '@/pages/AccountSettingsPage';
import SteamSettingsPage from '@/pages/SteamSettingsPage';
import GeneralSettingsPage from '@/pages/GeneralSettingsPage';
import GameDetailSettings from '@/components/settings/GameDetailSettings';
export default {
components: {
ProfileSettingsPage,
AccountSettingsPage,
SteamSettingsPage,
GeneralSettingsPage,
GameDetailSettings,
},
};
</script>
<style lang="scss" rel="stylesheet/scss" scoped>
</style>

View file

@ -1,32 +1,24 @@
// COLORS
// Shared
// Colors
$primary: #3d6692 !default;
$muted: #7d7f8c !default;
$danger: #ad1035 !default;
$warning: #ffc500 !default;
$success: #23cd69 !default;
$white: #f8f8ff !default;
$black: #0b0b18 !default;
$info: #794bc4 !default;
// Light theme
$light: #e2e2e2 !default;
$primary: #3d6692 !default;
// Dark theme
$dark: #7d7f8c !default;
$secondary: #c0c0c0 !default;
$black: #222222 !default;
$info: #0071bc !default;
$light: #dee4e7 !default;
$dark: #37474f !default;
$secondary: #b0bec5 !default;
$theme-colors: () !default;
$theme-colors: map-merge(
(
// "primary": $primary,
$theme-colors: map-merge((
"primary": $primary,
"secondary": $secondary,
// "success": $success,
// "info": $info,
"success": $success,
"info": $info,
"warning": $warning,
// "danger": $danger,
// "light": $light,
// "dark": $dark,
),
$theme-colors
);
"danger": $danger,
"light": $light,
"dark": $dark,
), $theme-colors);

View file

@ -1,23 +1,23 @@
// DROPDOWNS
// $dropdown-min-width: 10rem !default;
$dropdown-padding-y: .25rem !default;
$dropdown-font-size: $font-size-sm !default;
$dropdown-color: $white !default;
$dropdown-bg: $secondary !default;
$dropdown-border-color: lighten($secondary, 10%) !default;
$dropdown-border-radius: $border-radius !default;
$dropdown-border-width: $border-width !default;
// $dropdown-padding-y: .25rem !default;
// $dropdown-font-size: $font-size-sm !default;
// $dropdown-color: $white !default;
// $dropdown-bg: $secondary !default;
// $dropdown-border-color: lighten($secondary, 10%) !default;
// $dropdown-border-radius: $border-radius !default;
// $dropdown-border-width: $border-width !default;
// $dropdown-inner-border-radius: subtract($dropdown-border-radius, $dropdown-border-width) !default;
$dropdown-divider-bg: lighten($secondary, 10%) !default;
$dropdown-divider-margin-y: .25rem !default;
$dropdown-box-shadow: 0 .5rem 1rem red !default;
$dropdown-link-color: $white !default;
$dropdown-link-hover-color: $white !default;
$dropdown-link-hover-bg: lighten($secondary, 5%) !default;
$dropdown-link-active-color: $white !default;
$dropdown-link-active-bg: darken($secondary, 10%) !default;
$dropdown-link-disabled-color: red !default;
$dropdown-item-padding-y: .25rem !default;
$dropdown-item-padding-x: .25rem !default;
$dropdown-header-color: $white !default;
$dropdown-header-padding: $dropdown-padding-y $dropdown-item-padding-x !default;
// $dropdown-divider-bg: lighten($secondary, 10%) !default;
// $dropdown-divider-margin-y: .25rem !default;
// $dropdown-box-shadow: 0 .5rem 1rem red !default;
// $dropdown-link-color: $white !default;
// $dropdown-link-hover-color: $white !default;
// $dropdown-link-hover-bg: lighten($secondary, 5%) !default;
// $dropdown-link-active-color: $white !default;
// $dropdown-link-active-bg: darken($secondary, 10%) !default;
// $dropdown-link-disabled-color: red !default;
// $dropdown-item-padding-y: .25rem !default;
// $dropdown-item-padding-x: .25rem !default;
// $dropdown-header-color: $white !default;
// $dropdown-header-padding: $dropdown-padding-y $dropdown-item-padding-x !default;

View file

@ -45,5 +45,5 @@ $border-radius-sm: .2rem !default;
// //
// // Settings for the `<body>` element.
//
$body-bg: #eeecdd !default;
// $body-color: $secondary !default;
$body-bg: $light !default;
$body-color: $dark !default;

View file

@ -13,26 +13,26 @@
}
/* custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background-color: $dark;
}
::-webkit-scrollbar-thumb {
background-color: $secondary;
border-radius: $border-radius;
padding: 10px;
margin: 10px;
background-clip: content-box;
&:hover {
background-color: $light;
}
}
// ::-webkit-scrollbar {
// width: 8px;
// height: 8px;
// }
//
// ::-webkit-scrollbar-track {
// background-color: $dark;
// }
//
// ::-webkit-scrollbar-thumb {
// background-color: $secondary;
// border-radius: $border-radius;
// padding: 10px;
// margin: 10px;
// background-clip: content-box;
//
// &:hover {
// background-color: $light;
// }
// }
.toast-header {
display: none;

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 902 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

View file

@ -0,0 +1,55 @@
<?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.0"
width="1875"
height="1875"
id="svg2">
<defs
id="defs4" />
<g
transform="matrix(15.293834,0,0,15.293834,18363.696,2924.4945)"
id="layer1">
<g
transform="translate(-27.695315,1.6811913)"
id="g4398">
<rect
width="120.41093"
height="120.41093"
rx="10.629922"
ry="10.629921"
x="-1171.9364"
y="-191.80794"
id="rect3315"
style="fill:#e30613;fill-opacity:0.701961;stroke:#e30613;stroke-width:2.1875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
width="77.257874"
height="77.257874"
rx="6.8203545"
ry="6.820354"
x="-917.79828"
y="654.4267"
transform="rotate(45)"
id="rect3317"
style="fill:#e30613;fill-opacity:1;stroke:#000000;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m -1125.6244,-168.82932 h 1.9696 v 5.28322 c 0,0.8384 0.024,1.38181 0.073,1.63022 0.084,0.39924 0.285,0.71973 0.6022,0.96149 0.3171,0.24176 0.7508,0.36264 1.3008,0.36264 0.5589,0 0.9804,-0.11422 1.2643,-0.34268 0.2839,-0.22845 0.4546,-0.50902 0.5123,-0.84172 0.058,-0.33269 0.087,-0.88497 0.087,-1.65683 v -5.39634 h 1.9696 v 5.12353 c 0,1.17109 -0.053,1.9984 -0.1597,2.48192 -0.1065,0.48352 -0.3028,0.89162 -0.5889,1.22432 -0.2861,0.3327 -0.6687,0.59775 -1.1478,0.79514 -0.4791,0.1974 -1.1045,0.2961 -1.8764,0.2961 -0.9316,0 -1.638,-0.10757 -2.1193,-0.32271 -0.4813,-0.21514 -0.8617,-0.49461 -1.1411,-0.8384 -0.2795,-0.34378 -0.4636,-0.7042 -0.5523,-1.08126 -0.1286,-0.55893 -0.193,-1.38402 -0.193,-2.47526 z m 9.3621,6.58074 1.9164,-0.18631 c 0.1153,0.64322 0.3493,1.11565 0.7019,1.41729 0.3527,0.30164 0.8285,0.45247 1.4273,0.45247 0.6343,0 1.1123,-0.13419 1.4339,-0.40257 0.3216,-0.26837 0.4824,-0.58221 0.4824,-0.94153 0,-0.23067 -0.068,-0.42696 -0.2029,-0.58887 -0.1353,-0.16191 -0.3715,-0.30275 -0.7086,-0.42253 -0.2307,-0.0798 -0.7564,-0.22179 -1.577,-0.42585 -1.0558,-0.26172 -1.7966,-0.58332 -2.2224,-0.96482 -0.5989,-0.53674 -0.8983,-1.19105 -0.8983,-1.96291 0,-0.49682 0.1408,-0.96149 0.4225,-1.394 0.2817,-0.4325 0.6876,-0.76187 1.2177,-0.98811 0.5301,-0.22622 1.17,-0.33934 1.9196,-0.33935 1.2244,1e-5 2.1459,0.26839 2.7647,0.80513 0.6189,0.53676 0.9438,1.25316 0.9748,2.14922 l -1.9695,0.0865 c -0.084,-0.50126 -0.2651,-0.86168 -0.5423,-1.08127 -0.2773,-0.21957 -0.6931,-0.32936 -1.2476,-0.32937 -0.5723,1e-5 -1.0203,0.11757 -1.3441,0.35266 -0.2085,0.15083 -0.3128,0.35267 -0.3128,0.60551 0,0.23068 0.098,0.42808 0.2928,0.5922 0.2484,0.2085 0.8517,0.42586 1.8099,0.65209 0.9581,0.22624 1.6668,0.46023 2.1259,0.70199 0.4591,0.24176 0.8184,0.57224 1.078,0.99143 0.2594,0.4192 0.3892,0.9371 0.3892,1.5537 0,0.55893 -0.1553,1.08237 -0.4658,1.57033 -0.3105,0.48795 -0.7497,0.85059 -1.3174,1.08791 -0.5679,0.23733 -1.2754,0.35599 -2.1227,0.35599 -1.2331,0 -2.1802,-0.28501 -2.8412,-0.85503 -0.6609,-0.57002 -1.0557,-1.40065 -1.1844,-2.4919 z m 9.6283,3.17393 v -9.75467 h 1.9695 v 4.33171 l 3.9791,-4.33171 h 2.6482 l -3.6729,3.7994 3.8726,5.95527 h -2.5485 l -2.6815,-4.57791 -1.597,1.63021 v 2.9477 z"
id="text3321"
style="font-style:normal;font-weight:normal;font-size:14.8661px;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="m -1115.5632,-153.11667 -1.1696,-0.21099 c 0.1315,-0.47091 0.3578,-0.8195 0.6789,-1.04579 0.321,-0.22627 0.798,-0.33941 1.431,-0.33942 0.5749,1e-5 1.003,0.068 1.2843,0.20411 0.2813,0.13608 0.4793,0.30885 0.594,0.51831 0.1147,0.20947 0.172,0.59399 0.172,1.15357 l -0.014,1.50446 c 0,0.4281 0.021,0.74382 0.062,0.94717 0.041,0.20335 0.1185,0.42122 0.2316,0.65361 h -1.2751 c -0.034,-0.0856 -0.075,-0.21252 -0.1239,-0.3807 -0.021,-0.0764 -0.037,-0.1269 -0.046,-0.15136 -0.2202,0.21405 -0.4557,0.37459 -0.7064,0.48161 -0.2507,0.10702 -0.5183,0.16054 -0.8027,0.16054 -0.5015,0 -0.8967,-0.13608 -1.1857,-0.40823 -0.2889,-0.27214 -0.4334,-0.61615 -0.4334,-1.03202 0,-0.2752 0.066,-0.5206 0.1972,-0.73618 0.1315,-0.21557 0.3157,-0.38069 0.5527,-0.49537 0.237,-0.11466 0.5787,-0.21481 1.0252,-0.30043 0.6024,-0.11314 1.0198,-0.21863 1.2522,-0.31649 v -0.12843 c 0,-0.24768 -0.061,-0.42427 -0.1835,-0.52977 -0.1223,-0.10549 -0.3532,-0.15824 -0.6926,-0.15824 -0.2294,0 -0.4082,0.0451 -0.5367,0.13531 -0.1284,0.0902 -0.2324,0.24845 -0.3119,0.47473 z m 1.7247,1.04578 c -0.1652,0.055 -0.4266,0.12079 -0.7844,0.19723 -0.3577,0.0764 -0.5917,0.15137 -0.7018,0.22475 -0.1681,0.11926 -0.2522,0.27063 -0.2522,0.45409 0,0.18042 0.067,0.33637 0.2018,0.46786 0.1345,0.13148 0.3058,0.19723 0.5137,0.19723 0.2324,0 0.4541,-0.0764 0.6651,-0.22934 0.1559,-0.1162 0.2584,-0.25839 0.3073,-0.42657 0.034,-0.11008 0.05,-0.31954 0.05,-0.62839 z m 2.486,2.33925 v -6.7242 h 1.2889 v 2.42182 c 0.3975,-0.45256 0.8684,-0.67884 1.4127,-0.67885 0.5932,1e-5 1.084,0.21482 1.4724,0.64444 0.3883,0.42964 0.5825,1.04656 0.5825,1.85077 0,0.83173 -0.198,1.47235 -0.594,1.92185 -0.396,0.44951 -0.8769,0.67426 -1.4426,0.67426 -0.2782,0 -0.5527,-0.0696 -0.8233,-0.2087 -0.2706,-0.13913 -0.5038,-0.34477 -0.6995,-0.61692 v 0.71553 z m 1.2797,-2.54107 c 0,0.50455 0.079,0.87761 0.2385,1.11918 0.2232,0.34248 0.5198,0.51371 0.8898,0.51371 0.2844,0 0.5268,-0.12154 0.727,-0.36464 0.2003,-0.2431 0.3005,-0.6261 0.3005,-1.14899 0,-0.55652 -0.1009,-0.95787 -0.3027,-1.20403 -0.2019,-0.24615 -0.4603,-0.36923 -0.7752,-0.36923 -0.3089,0 -0.5657,0.12002 -0.7706,0.36006 -0.2049,0.24004 -0.3073,0.60469 -0.3073,1.09394 z"
id="text3325"
style="font-style:normal;font-weight:normal;font-size:15.1574px;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="m -1120.5986,-107.43128 h -6.762 v -25.48391 c -2.4706,2.31018 -5.3823,4.01873 -8.7353,5.12566 v -6.13635 c 1.7647,-0.57752 3.6818,-1.67243 5.7514,-3.28476 2.0695,-1.61226 3.4892,-3.49327 4.2593,-5.64303 h 5.4866 z m 15.9305,-19.03473 c -1.7487,-0.73794 -3.0201,-1.75264 -3.8142,-3.04411 -0.7941,-1.29141 -1.1912,-2.70719 -1.1912,-4.24732 0,-2.63098 0.9185,-4.80477 2.7554,-6.52137 1.8369,-1.71654 4.4478,-2.57483 7.8329,-2.57486 3.3529,3e-5 5.9558,0.85832 7.8088,2.57486 1.8529,1.7166 2.7794,3.89039 2.7794,6.52137 0,1.63639 -0.4252,3.09227 -1.2754,4.36764 -0.8503,1.27542 -2.0455,2.25002 -3.5856,2.92379 1.9572,0.78612 3.4452,1.93317 4.4639,3.44117 1.0187,1.50804 1.5281,3.24867 1.5281,5.22192 0,3.25669 -1.0388,5.90374 -3.1163,7.94116 -2.0776,2.03743 -4.8409,3.05614 -8.2901,3.05615 -3.2086,-1e-5 -5.8797,-0.84225 -8.0134,-2.52674 -2.5187,-1.98929 -3.778,-4.71656 -3.778,-8.1818 0,-1.90908 0.4732,-3.66174 1.4198,-5.25801 0.9465,-1.59624 2.4385,-2.82752 4.4759,-3.69385 z m 1.3957,-6.81014 c 0,1.34761 0.381,2.39841 1.1431,3.1524 0.762,0.75403 1.7767,1.13103 3.0441,1.13101 1.2834,2e-5 2.3101,-0.38099 3.0802,-1.14304 0.77,-0.76201 1.155,-1.81682 1.1551,-3.16444 -10e-5,-1.26735 -0.3811,-2.28205 -1.1431,-3.04411 -0.762,-0.762 -1.7687,-1.14301 -3.02,-1.14304 -1.2995,3e-5 -2.3343,0.38505 -3.1043,1.15507 -0.7701,0.77008 -1.1551,1.7888 -1.1551,3.05615 z m -0.6257,15.11227 c 0,1.86097 0.4773,3.31283 1.4319,4.3556 0.9545,1.04279 2.1457,1.56418 3.5735,1.56417 1.3957,1e-5 2.5508,-0.50133 3.4652,-1.504 0.9144,-1.00267 1.3716,-2.45053 1.3717,-4.34358 -10e-5,-1.65239 -0.4653,-2.97993 -1.3958,-3.98261 -0.9304,-1.00266 -2.1096,-1.50399 -3.5374,-1.50401 -1.6524,2e-5 -2.8837,0.56953 -3.6938,1.70855 -0.8102,1.13905 -1.2153,2.37434 -1.2153,3.70588 z"
id="text3329"
style="font-style:normal;font-weight:normal;font-size:14.785px;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 450 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

View file

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generator: Adobe Illustrator 15.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="740px" height="155px" viewBox="0 0 740 155" enable-background="new 0 0 740 155" xml:space="preserve">
<g>
<g>
<g>
<g>
<path fill="#4C4C4E" d="M386.892,96.116c0.079,1.385,0.396,2.512,0.949,3.377c1.062,1.624,2.926,2.431,5.6,2.431 c1.201,0,2.289-0.176,3.272-0.533c1.902-0.688,2.857-1.92,2.857-3.694c0-1.329-0.404-2.284-1.211-2.848 c-0.814-0.559-2.097-1.041-3.842-1.451l-3.206-0.748c-2.098-0.489-3.584-1.028-4.453-1.613c-1.51-1.025-2.26-2.546-2.26-4.583 c0-2.194,0.739-4.004,2.221-5.41c1.479-1.41,3.573-2.116,6.286-2.116c2.496,0,4.614,0.619,6.359,1.854 c1.746,1.242,2.617,3.221,2.617,5.939h-3.114c-0.157-1.312-0.497-2.313-1.02-3.014c-0.969-1.278-2.611-1.915-4.932-1.915 c-1.876,0-3.222,0.407-4.042,1.234c-0.82,0.819-1.228,1.774-1.228,2.862c0,1.2,0.485,2.078,1.451,2.63 c0.636,0.357,2.07,0.798,4.31,1.335l3.322,0.78c1.604,0.381,2.841,0.896,3.707,1.553c1.506,1.145,2.26,2.8,2.26,4.978 c0,2.707-0.96,4.644-2.88,5.812c-1.921,1.166-4.153,1.744-6.699,1.744c-2.964,0-5.287-0.773-6.968-2.327 c-1.68-1.545-2.501-3.636-2.468-6.275H386.892"/>
<path fill="#4C4C4E" d="M419.338,93.664c-0.117-1.3-0.398-2.336-0.843-3.114c-0.809-1.44-2.171-2.16-4.078-2.16 c-1.361,0-2.509,0.49-3.437,1.487c-0.921,0.991-1.412,2.253-1.465,3.787H419.338 M418.267,86.661 c1.178,0.596,2.08,1.365,2.696,2.31c0.598,0.897,0.994,1.948,1.191,3.148c0.176,0.823,0.267,2.13,0.267,3.927h-12.975 c0.059,1.814,0.479,3.275,1.272,4.369c0.795,1.094,2.023,1.641,3.685,1.641c1.552,0,2.798-0.516,3.724-1.556 c0.514-0.6,0.879-1.298,1.094-2.089h2.953c-0.083,0.655-0.34,1.384-0.775,2.188c-0.44,0.809-0.927,1.462-1.468,1.976 c-0.902,0.887-2.021,1.487-3.355,1.801c-0.715,0.172-1.523,0.262-2.429,0.262c-2.204,0-4.08-0.807-5.612-2.42 c-1.533-1.618-2.299-3.88-2.299-6.788c0-2.864,0.771-5.189,2.314-6.979c1.547-1.787,3.568-2.681,6.058-2.681 C415.866,85.771,417.089,86.067,418.267,86.661z"/>
<rect x="426.473" y="79.546" fill="#4C4C4E" width="2.998" height="24.458"/>
<path fill="#4C4C4E" d="M445.349,99.993c0.807-1.29,1.208-2.983,1.208-5.097c0-1.874-0.401-3.432-1.208-4.662 c-0.808-1.23-1.996-1.845-3.568-1.845c-1.367,0-2.567,0.502-3.601,1.513c-1.029,1.01-1.543,2.674-1.543,4.994 c0,1.678,0.21,3.034,0.633,4.078c0.79,1.968,2.267,2.949,4.428,2.949C443.325,101.924,444.541,101.28,445.349,99.993 M433.887,79.462h2.914v8.874c0.659-0.854,1.446-1.504,2.359-1.956c0.912-0.449,1.903-0.676,2.976-0.676 c2.229,0,4.036,0.765,5.426,2.292c1.384,1.527,2.077,3.776,2.077,6.752c0,2.818-0.687,5.164-2.055,7.028 c-1.371,1.865-3.271,2.797-5.7,2.797c-1.358,0-2.507-0.329-3.444-0.985c-0.559-0.385-1.155-1.008-1.786-1.861v2.277h-2.767 V79.462z"/>
<path fill="#4C4C4E" d="M455.056,98.411c0.093,0.999,0.347,1.764,0.765,2.297c0.771,0.966,2.11,1.451,4.015,1.451 c1.131,0,2.128-0.242,2.99-0.726c0.858-0.483,1.292-1.229,1.292-2.242c0-0.761-0.343-1.346-1.03-1.747 c-0.446-0.246-1.31-0.527-2.61-0.849l-2.417-0.603c-1.546-0.374-2.688-0.799-3.422-1.262c-1.309-0.812-1.963-1.932-1.963-3.366 c0-1.686,0.617-3.051,1.848-4.095c1.231-1.041,2.887-1.566,4.973-1.566c2.722,0,4.687,0.788,5.89,2.364 c0.753,1,1.119,2.079,1.096,3.232h-2.832c-0.056-0.673-0.303-1.287-0.731-1.84c-0.704-0.78-1.927-1.177-3.662-1.177 c-1.161,0-2.039,0.217-2.635,0.649c-0.596,0.434-0.896,1.002-0.896,1.712c0,0.772,0.392,1.392,1.176,1.855 c0.455,0.276,1.118,0.521,2.004,0.731l2.018,0.483c2.194,0.519,3.662,1.027,4.413,1.515c1.164,0.763,1.745,1.968,1.745,3.614 c0,1.586-0.611,2.957-1.829,4.112c-1.22,1.153-3.076,1.733-5.571,1.733c-2.686,0-4.589-0.603-5.708-1.809 c-1.116-1.205-1.714-2.696-1.795-4.471H455.056"/>
<path fill="#4C4C4E" d="M471.098,81.193h3.031v4.98h2.848v2.444h-2.848v11.64c0,0.626,0.21,1.039,0.631,1.251 c0.234,0.125,0.623,0.181,1.168,0.181l0.466-0.011l0.583-0.053v2.378c-0.343,0.106-0.703,0.176-1.072,0.218 c-0.376,0.048-0.776,0.07-1.211,0.07c-1.396,0-2.345-0.36-2.844-1.075c-0.503-0.717-0.752-1.646-0.752-2.791V88.618h-2.414 v-2.444h2.414V81.193"/>
<polyline fill="#4C4C4E" points="480.077,79.544 482.958,79.544 482.958,93.749 490.646,86.174 494.475,86.174 487.617,92.8 494.86,104.004 491.031,104.004 485.418,94.932 482.958,97.316 482.958,104.004 480.077,104.004 480.077,79.544 "/>
<path fill="#4C4C4E" d="M508.433,99.807c0.728-1.502,1.092-3.174,1.092-5.014c0-1.669-0.264-3.021-0.791-4.063 c-0.838-1.638-2.274-2.459-4.315-2.459c-1.81,0-3.127,0.699-3.952,2.095c-0.821,1.397-1.233,3.084-1.233,5.058 c0,1.897,0.412,3.475,1.233,4.74c0.825,1.264,2.132,1.892,3.922,1.892C506.35,102.056,507.698,101.305,508.433,99.807 M510.288,87.951c1.577,1.533,2.367,3.782,2.367,6.758c0,2.87-0.695,5.242-2.085,7.117c-1.388,1.876-3.542,2.812-6.467,2.812 c-2.436,0-4.37-0.829-5.801-2.484c-1.432-1.66-2.149-3.888-2.149-6.68c0-2.995,0.753-5.382,2.263-7.157 c1.511-1.774,3.538-2.662,6.088-2.662C506.785,85.654,508.714,86.421,510.288,87.951z"/>
<path fill="#4C4C4E" d="M516.504,86.174h2.849v2.528c0.843-1.044,1.738-1.792,2.685-2.249c0.943-0.453,1.993-0.683,3.146-0.683 c2.534,0,4.24,0.886,5.127,2.649c0.486,0.967,0.737,2.348,0.737,4.146v11.438h-3.054V92.767c0-1.089-0.155-1.963-0.48-2.63 c-0.535-1.111-1.501-1.666-2.896-1.666c-0.712,0-1.292,0.071-1.747,0.215c-0.823,0.246-1.545,0.731-2.164,1.469 c-0.503,0.585-0.828,1.193-0.979,1.819c-0.147,0.628-0.221,1.523-0.221,2.691v9.339h-3.001V86.174"/>
<path fill="#4C4C4E" d="M536.242,81.193h3.031v4.98h2.85v2.444h-2.85v11.64c0,0.626,0.21,1.039,0.633,1.251 c0.232,0.125,0.623,0.181,1.168,0.181l0.466-0.011l0.583-0.053v2.378c-0.346,0.106-0.703,0.176-1.077,0.218 c-0.371,0.048-0.77,0.07-1.209,0.07c-1.396,0-2.345-0.36-2.845-1.075c-0.501-0.717-0.75-1.646-0.75-2.791V88.618h-2.412v-2.444 h2.412V81.193"/>
<path fill="#4C4C4E" d="M545.372,86.174h2.85v3.081c0.232-0.601,0.802-1.335,1.712-2.188c0.912-0.862,1.963-1.296,3.15-1.296 l0.283,0.018c0.133,0.011,0.36,0.036,0.684,0.067v3.165l-0.494-0.067l-0.492-0.017c-1.506,0-2.667,0.483-3.479,1.458 c-0.811,0.971-1.214,2.091-1.214,3.354v10.255h-2.999V86.174"/>
<path fill="#4C4C4E" d="M567.879,99.807c0.731-1.502,1.094-3.174,1.094-5.014c0-1.669-0.263-3.021-0.789-4.063 c-0.835-1.638-2.272-2.459-4.313-2.459c-1.812,0-3.129,0.699-3.952,2.095c-0.826,1.397-1.233,3.084-1.233,5.058 c0,1.897,0.407,3.475,1.233,4.74c0.823,1.264,2.13,1.892,3.919,1.892C565.803,102.056,567.15,101.305,567.879,99.807 M569.737,87.951c1.58,1.533,2.368,3.782,2.368,6.758c0,2.87-0.698,5.242-2.082,7.117c-1.391,1.876-3.545,2.812-6.468,2.812 c-2.436,0-4.368-0.829-5.805-2.484c-1.431-1.66-2.151-3.888-2.151-6.68c0-2.995,0.756-5.382,2.271-7.157 c1.504-1.774,3.536-2.662,6.082-2.662C566.234,85.654,568.164,86.421,569.737,87.951z"/>
<rect x="576.038" y="79.546" fill="#4C4C4E" width="2.998" height="24.458"/>
<rect x="583.786" y="79.546" fill="#4C4C4E" width="3.001" height="24.458"/>
<path fill="#4C4C4E" d="M603.54,93.664c-0.119-1.3-0.401-2.336-0.843-3.114c-0.814-1.44-2.171-2.16-4.075-2.16 c-1.367,0-2.512,0.49-3.436,1.487c-0.927,0.991-1.416,2.253-1.471,3.787H603.54 M602.466,86.661 c1.181,0.596,2.082,1.365,2.699,2.31c0.598,0.897,0.994,1.948,1.195,3.148c0.172,0.823,0.263,2.13,0.263,3.927h-12.972 c0.052,1.814,0.477,3.275,1.272,4.369c0.787,1.094,2.021,1.641,3.683,1.641c1.554,0,2.791-0.516,3.718-1.556 c0.516-0.6,0.885-1.298,1.103-2.089h2.944c-0.077,0.655-0.335,1.384-0.772,2.188c-0.438,0.809-0.928,1.462-1.469,1.976 c-0.901,0.887-2.021,1.487-3.353,1.801c-0.72,0.172-1.529,0.262-2.431,0.262c-2.206,0-4.078-0.807-5.611-2.42 c-1.53-1.618-2.302-3.88-2.302-6.788c0-2.864,0.778-5.189,2.321-6.979c1.544-1.787,3.562-2.681,6.052-2.681 C600.068,85.771,601.285,86.067,602.466,86.661z"/>
</g>
<g>
<path fill="#4C4C4E" d="M388.299,47.048v15.121c0,1.775,0.338,3.252,1.006,4.43c0.999,1.775,2.676,2.665,5.04,2.665 c2.83,0,4.751-0.961,5.77-2.881c0.551-1.044,0.823-2.448,0.823-4.214V47.048h3.348v13.738c0,3.009-0.405,5.324-1.22,6.945 c-1.49,2.956-4.315,4.427-8.455,4.427c-4.146,0-6.959-1.471-8.438-4.427c-0.814-1.621-1.22-3.936-1.22-6.945V47.048H388.299"/>
<path fill="#4C4C4E" d="M409.119,53.676h2.85v2.531c0.843-1.044,1.737-1.792,2.68-2.247c0.944-0.455,1.994-0.684,3.148-0.684 c2.533,0,4.24,0.884,5.131,2.647c0.485,0.966,0.732,2.349,0.732,4.148V71.51h-3.049V60.271c0-1.089-0.159-1.966-0.482-2.632 c-0.533-1.11-1.5-1.664-2.897-1.664c-0.709,0-1.293,0.071-1.748,0.213c-0.826,0.246-1.546,0.736-2.169,1.467 c-0.496,0.589-0.823,1.197-0.971,1.824c-0.151,0.625-0.226,1.522-0.226,2.689v9.341h-2.999V53.676"/>
<path fill="#4C4C4E" d="M428.856,48.697h3.028v4.979h2.854v2.447h-2.854v11.64c0,0.622,0.215,1.04,0.635,1.249 c0.234,0.125,0.625,0.186,1.166,0.186l0.466-0.011l0.587-0.054v2.378c-0.347,0.102-0.704,0.175-1.077,0.216 c-0.372,0.046-0.773,0.069-1.209,0.069c-1.396,0-2.348-0.361-2.845-1.075c-0.5-0.715-0.751-1.646-0.751-2.789V56.123h-2.414 v-2.447h2.414V48.697"/>
<path fill="#4C4C4E" d="M449.992,61.171c-0.119-1.301-0.398-2.337-0.839-3.115c-0.816-1.44-2.175-2.165-4.079-2.165 c-1.367,0-2.512,0.499-3.433,1.492c-0.927,0.992-1.419,2.255-1.474,3.787H449.992 M448.922,54.168 c1.177,0.594,2.076,1.363,2.695,2.307c0.598,0.897,0.994,1.95,1.191,3.147c0.176,0.823,0.267,2.133,0.267,3.93h-12.972 c0.052,1.814,0.48,3.27,1.27,4.367c0.793,1.098,2.026,1.644,3.688,1.644c1.552,0,2.791-0.518,3.718-1.555 c0.517-0.603,0.885-1.298,1.097-2.092h2.951c-0.08,0.657-0.338,1.386-0.775,2.188c-0.438,0.807-0.928,1.465-1.469,1.977 c-0.904,0.889-2.021,1.486-3.353,1.797c-0.717,0.177-1.529,0.265-2.431,0.265c-2.206,0-4.076-0.806-5.611-2.423 c-1.532-1.616-2.3-3.877-2.3-6.783c0-2.863,0.773-5.191,2.319-6.981c1.546-1.787,3.562-2.681,6.051-2.681 C446.521,53.276,447.74,53.573,448.922,54.168z"/>
<path fill="#4C4C4E" d="M457.125,53.676h2.85v3.079c0.231-0.597,0.804-1.329,1.714-2.189c0.91-0.86,1.96-1.29,3.148-1.29 l0.285,0.016c0.128,0.014,0.357,0.033,0.681,0.068v3.164l-0.491-0.065l-0.491-0.021c-1.51,0-2.671,0.49-3.481,1.461 c-0.812,0.968-1.213,2.089-1.213,3.353V71.51h-3.001V53.676"/>
<path fill="#4C4C4E" d="M468.571,46.965h2.995v9.125c0.71-0.898,1.35-1.533,1.915-1.896c0.969-0.635,2.173-0.952,3.616-0.952 c2.587,0,4.342,0.906,5.261,2.712c0.5,0.992,0.751,2.361,0.751,4.117V71.51h-3.082V60.271c0-1.309-0.165-2.272-0.499-2.882 c-0.542-0.977-1.566-1.466-3.065-1.466c-1.242,0-2.37,0.426-3.38,1.283c-1.011,0.855-1.517,2.47-1.517,4.846v9.458h-2.995 V46.965"/>
<path fill="#4C4C4E" d="M490.956,68.814c0.633,0.499,1.382,0.747,2.247,0.747c1.057,0,2.075-0.243,3.062-0.728 c1.666-0.813,2.5-2.136,2.5-3.977v-2.41c-0.368,0.235-0.836,0.43-1.408,0.586c-0.578,0.155-1.145,0.267-1.701,0.333 l-1.808,0.234c-1.087,0.143-1.904,0.371-2.451,0.68c-0.926,0.521-1.39,1.353-1.39,2.493 C490.007,67.634,490.325,68.317,490.956,68.814 M497.268,60.716c0.688-0.088,1.148-0.377,1.384-0.863 c0.133-0.27,0.195-0.652,0.195-1.156c0-1.026-0.359-1.768-1.086-2.231c-0.726-0.463-1.765-0.692-3.117-0.692 c-1.561,0-2.672,0.423-3.322,1.271c-0.365,0.472-0.604,1.168-0.715,2.092h-2.799c0.055-2.204,0.77-3.736,2.141-4.602 c1.367-0.861,2.955-1.292,4.762-1.292c2.096,0,3.799,0.398,5.107,1.2c1.296,0.797,1.946,2.041,1.946,3.731v10.272 c0,0.311,0.064,0.563,0.19,0.749c0.128,0.191,0.398,0.287,0.809,0.287l0.45-0.027l0.533-0.074v2.214 c-0.47,0.131-0.827,0.215-1.07,0.249c-0.239,0.035-0.574,0.049-0.996,0.049c-1.032,0-1.78-0.363-2.25-1.098 c-0.242-0.389-0.413-0.938-0.514-1.649c-0.61,0.8-1.49,1.492-2.632,2.081c-1.145,0.589-2.403,0.884-3.779,0.884 c-1.655,0-3.007-0.504-4.054-1.508c-1.049-1.002-1.573-2.258-1.573-3.764c0-1.655,0.516-2.935,1.549-3.843 c1.029-0.91,2.384-1.47,4.062-1.682L497.268,60.716z"/>
<rect x="506.931" y="47.05" fill="#4C4C4E" width="2.997" height="24.463"/>
<path fill="#4C4C4E" d="M515.192,48.697h3.029v4.979h2.852v2.447h-2.852v11.64c0,0.622,0.215,1.04,0.633,1.249 c0.238,0.125,0.623,0.186,1.17,0.186l0.464-0.011l0.585-0.054v2.378c-0.345,0.102-0.702,0.175-1.074,0.216 c-0.374,0.046-0.778,0.069-1.205,0.069c-1.402,0-2.351-0.361-2.85-1.075c-0.498-0.715-0.752-1.646-0.752-2.789V56.123h-2.414 v-2.447h2.414V48.697"/>
<path fill="#4C4C4E" d="M527.239,53.676v11.84c0,0.911,0.141,1.655,0.419,2.232c0.518,1.066,1.488,1.598,2.903,1.598 c2.034,0,3.419-0.931,4.151-2.798c0.404-0.997,0.6-2.37,0.6-4.113v-8.758h3.001V71.51h-2.834l0.034-2.631 c-0.381,0.678-0.854,1.249-1.421,1.715c-1.122,0.935-2.485,1.398-4.084,1.398c-2.496,0-4.192-0.848-5.101-2.547 c-0.49-0.908-0.732-2.124-0.732-3.646V53.676H527.239"/>
<path fill="#4C4C4E" d="M543.379,53.676h2.845v2.531c0.846-1.044,1.742-1.792,2.683-2.247c0.943-0.455,1.996-0.684,3.151-0.684 c2.529,0,4.235,0.884,5.128,2.647c0.485,0.966,0.734,2.349,0.734,4.148V71.51h-3.051V60.271c0-1.089-0.162-1.966-0.48-2.632 c-0.536-1.11-1.502-1.664-2.9-1.664c-0.712,0-1.293,0.071-1.745,0.213c-0.823,0.246-1.546,0.736-2.169,1.467 c-0.496,0.589-0.826,1.197-0.974,1.824c-0.148,0.625-0.227,1.522-0.227,2.689v9.341h-2.995V53.676"/>
<path fill="#4C4C4E" d="M572.797,57.604c-0.901-1.063-2.057-1.598-3.461-1.598c-2.097,0-3.533,0.99-4.307,2.965 c-0.41,1.054-0.611,2.438-0.611,4.147c0,2.008,0.405,3.538,1.217,4.587c0.812,1.048,1.903,1.572,3.271,1.572 c2.143,0,3.651-0.969,4.522-2.913c0.486-1.1,0.731-2.381,0.731-3.847C574.159,60.312,573.707,58.673,572.797,57.604 M572.435,54.391c0.563,0.389,1.138,0.955,1.725,1.699v-2.248h2.763v16.221c0,2.264-0.334,4.05-0.996,5.359 c-1.239,2.422-3.58,3.629-7.021,3.629c-1.911,0-3.525-0.428-4.828-1.288c-1.306-0.86-2.038-2.206-2.194-4.039h3.049 c0.143,0.799,0.429,1.416,0.862,1.849c0.676,0.666,1.735,0.998,3.179,0.998c2.286,0,3.783-0.81,4.491-2.43 c0.416-0.955,0.611-2.659,0.578-5.113c-0.598,0.909-1.317,1.587-2.157,2.032c-0.841,0.444-1.952,0.666-3.333,0.666 c-1.926,0-3.607-0.685-5.053-2.058c-1.442-1.369-2.162-3.638-2.162-6.8c0-2.987,0.726-5.319,2.18-6.994 c1.454-1.677,3.209-2.515,5.267-2.515C570.179,53.36,571.391,53.703,572.435,54.391z"/>
<path fill="#4C4C4E" d="M583.438,65.917c0.089,1,0.344,1.762,0.765,2.297c0.768,0.967,2.108,1.45,4.011,1.45 c1.131,0,2.128-0.243,2.996-0.724c0.856-0.483,1.287-1.228,1.287-2.24c0-0.766-0.344-1.35-1.031-1.746 c-0.44-0.247-1.309-0.529-2.609-0.853l-2.417-0.597c-1.543-0.377-2.688-0.799-3.419-1.266c-1.31-0.812-1.966-1.936-1.966-3.365 c0-1.688,0.62-3.055,1.851-4.098c1.23-1.041,2.887-1.564,4.973-1.564c2.724,0,4.683,0.79,5.887,2.364 c0.75,1,1.121,2.078,1.097,3.232h-2.832c-0.055-0.677-0.297-1.286-0.732-1.841c-0.706-0.783-1.927-1.174-3.663-1.174 c-1.158,0-2.035,0.213-2.632,0.646c-0.598,0.431-0.898,1.002-0.898,1.71c0,0.771,0.39,1.393,1.177,1.855 c0.453,0.278,1.117,0.521,2.002,0.735l2.019,0.483c2.193,0.52,3.665,1.026,4.412,1.514c1.165,0.766,1.748,1.969,1.748,3.613 c0,1.587-0.611,2.958-1.828,4.113c-1.22,1.155-3.077,1.731-5.575,1.731c-2.685,0-4.585-0.603-5.707-1.806 c-1.114-1.206-1.714-2.698-1.796-4.473H583.438"/>
<path fill="#4C4C4E" d="M600.658,65.917c0.094,1,0.349,1.762,0.767,2.297c0.771,0.967,2.107,1.45,4.011,1.45 c1.134,0,2.13-0.243,2.99-0.724c0.86-0.483,1.292-1.228,1.292-2.24c0-0.766-0.343-1.35-1.032-1.746 c-0.439-0.247-1.311-0.529-2.604-0.853l-2.424-0.597c-1.543-0.377-2.679-0.799-3.419-1.266 c-1.303-0.812-1.959-1.936-1.959-3.365c0-1.688,0.617-3.055,1.848-4.098c1.231-1.041,2.889-1.564,4.969-1.564 c2.722,0,4.687,0.79,5.892,2.364c0.754,1,1.117,2.078,1.096,3.232h-2.831c-0.057-0.677-0.299-1.286-0.731-1.841 c-0.703-0.783-1.926-1.174-3.665-1.174c-1.158,0-2.037,0.213-2.635,0.646c-0.598,0.431-0.894,1.002-0.894,1.71 c0,0.771,0.391,1.393,1.173,1.855c0.455,0.278,1.122,0.521,2.004,0.735l2.018,0.483c2.197,0.52,3.666,1.026,4.411,1.514 c1.166,0.766,1.749,1.969,1.749,3.613c0,1.587-0.611,2.958-1.824,4.113c-1.227,1.155-3.079,1.731-5.575,1.731 c-2.688,0-4.592-0.603-5.708-1.806c-1.122-1.206-1.714-2.698-1.795-4.473H600.658"/>
<path fill="#4C4C4E" d="M627.166,67.308c0.729-1.5,1.092-3.172,1.092-5.014c0-1.663-0.262-3.016-0.79-4.058 c-0.831-1.642-2.271-2.462-4.313-2.462c-1.812,0-3.129,0.698-3.955,2.096c-0.82,1.397-1.234,3.083-1.234,5.057 c0,1.896,0.414,3.475,1.234,4.738c0.826,1.266,2.133,1.898,3.925,1.898C625.084,69.563,626.433,68.811,627.166,67.308 M629.022,55.455c1.577,1.533,2.368,3.785,2.368,6.758c0,2.873-0.695,5.248-2.084,7.12c-1.389,1.875-3.545,2.812-6.466,2.812 c-2.438,0-4.37-0.83-5.805-2.486c-1.435-1.658-2.151-3.885-2.151-6.681c0-2.995,0.756-5.381,2.264-7.154 c1.513-1.778,3.539-2.663,6.091-2.663C625.52,53.16,627.448,53.925,629.022,55.455z"/>
<path fill="#4C4C4E" d="M636.638,48.232c0.7-1.021,2.049-1.53,4.048-1.53l0.581,0.014l0.686,0.049v2.732 c-0.315-0.022-0.545-0.038-0.684-0.043l-0.394-0.008c-0.924,0-1.474,0.237-1.653,0.709c-0.178,0.472-0.267,1.672-0.267,3.608 h2.997v2.363h-2.997v15.387h-2.965V56.126h-2.482v-2.363h2.482v-2.798C636.032,49.721,636.253,48.809,636.638,48.232"/>
<path fill="#4C4C4E" d="M645.483,48.697h3.033v4.979h2.848v2.447h-2.848v11.64c0,0.622,0.21,1.04,0.632,1.249 c0.232,0.125,0.622,0.186,1.166,0.186l0.467-0.011l0.583-0.054v2.378c-0.343,0.102-0.703,0.175-1.073,0.216 c-0.373,0.046-0.773,0.069-1.207,0.069c-1.401,0-2.351-0.361-2.85-1.075c-0.497-0.715-0.751-1.646-0.751-2.789V56.123h-2.414 v-2.447h2.414V48.697"/>
<polyline fill="#4C4C4E" points="655.923,53.676 659.354,67.731 662.834,53.676 666.194,53.676 669.692,67.648 673.343,53.676 676.339,53.676 671.158,71.51 668.045,71.51 664.416,57.705 660.903,71.51 657.787,71.51 652.643,53.676 655.923,53.676 "/>
<path fill="#4C4C4E" d="M682.579,68.814c0.635,0.499,1.383,0.747,2.247,0.747c1.056,0,2.078-0.243,3.065-0.728 c1.664-0.813,2.499-2.136,2.499-3.977v-2.41c-0.366,0.235-0.839,0.43-1.413,0.586c-0.574,0.155-1.142,0.267-1.696,0.333 l-1.812,0.234c-1.084,0.143-1.902,0.371-2.446,0.68c-0.93,0.521-1.393,1.353-1.393,2.493 C681.631,67.634,681.946,68.317,682.579,68.814 M688.894,60.716c0.687-0.088,1.147-0.377,1.38-0.863 c0.134-0.27,0.201-0.652,0.201-1.156c0-1.026-0.366-1.768-1.087-2.231c-0.729-0.463-1.769-0.692-3.118-0.692 c-1.561,0-2.674,0.423-3.324,1.271c-0.366,0.472-0.603,1.168-0.715,2.092h-2.797c0.054-2.204,0.765-3.736,2.136-4.602 c1.371-0.861,2.96-1.292,4.765-1.292c2.097,0,3.799,0.398,5.105,1.2c1.298,0.797,1.949,2.041,1.949,3.731v10.272 c0,0.311,0.061,0.563,0.191,0.749c0.126,0.191,0.396,0.287,0.808,0.287l0.448-0.027l0.533-0.074v2.214 c-0.466,0.131-0.823,0.215-1.065,0.249c-0.245,0.035-0.578,0.049-1.002,0.049c-1.03,0-1.778-0.363-2.244-1.098 c-0.243-0.389-0.416-0.938-0.514-1.649c-0.611,0.8-1.491,1.492-2.635,2.081c-1.146,0.589-2.407,0.884-3.783,0.884 c-1.649,0-3.003-0.504-4.054-1.508c-1.046-1.002-1.57-2.258-1.57-3.764c0-1.655,0.516-2.935,1.547-3.843 c1.033-0.91,2.386-1.47,4.064-1.682L688.894,60.716z"/>
<path fill="#4C4C4E" d="M698.557,53.676h2.845v3.079c0.238-0.597,0.808-1.329,1.714-2.189c0.913-0.86,1.963-1.29,3.152-1.29 l0.281,0.016c0.131,0.014,0.357,0.033,0.684,0.068v3.164l-0.49-0.065l-0.492-0.021c-1.512,0-2.674,0.49-3.483,1.461 c-0.809,0.968-1.214,2.089-1.214,3.353V71.51h-2.996V53.676"/>
<path fill="#4C4C4E" d="M722.089,61.171c-0.121-1.301-0.402-2.337-0.841-3.115c-0.814-1.44-2.177-2.165-4.081-2.165 c-1.361,0-2.512,0.499-3.436,1.492c-0.925,0.992-1.412,2.255-1.469,3.787H722.089 M721.017,54.168 c1.175,0.594,2.076,1.363,2.693,2.307c0.598,0.897,0.997,1.95,1.191,3.147c0.182,0.823,0.267,2.133,0.267,3.93h-12.97 c0.054,1.814,0.479,3.27,1.27,4.367c0.793,1.098,2.021,1.644,3.683,1.644c1.555,0,2.798-0.518,3.721-1.555 c0.52-0.603,0.885-1.298,1.1-2.092h2.948c-0.078,0.657-0.336,1.386-0.773,2.188c-0.44,0.807-0.927,1.465-1.469,1.977 c-0.901,0.889-2.021,1.486-3.357,1.797c-0.715,0.177-1.521,0.265-2.426,0.265c-2.208,0-4.078-0.806-5.614-2.423 c-1.531-1.616-2.297-3.877-2.297-6.783c0-2.863,0.771-5.191,2.316-6.981c1.547-1.787,3.566-2.681,6.059-2.681 C718.613,53.276,719.836,53.573,721.017,54.168z"/>
</g>
</g>
<path fill="#4C4C4E" d="M162.115,83.583c0,6.384,0.765,22.009,28.753,22.009s28.757-15.625,28.757-22.009V47.057H204.75v32.702 c0,5.583-0.229,14.989-13.881,14.989c-13.651,0-13.88-9.406-13.88-14.989V47.057h-14.874V83.583 M286.717,63.566 c-0.998-16.108-17.712-18.105-28.983-18.105c-17.179,0-27.149,5.185-27.149,17.865c0,11.648,9.204,14.594,18.715,16.11 l13.571,2.152c5.902,0.962,9.277,2.156,9.277,6.539c0,4.945-4.752,7.101-11.734,7.101c-6.439,0-13.954-1.356-14.108-9.179h-16.714 c0.153,17.787,17.48,19.542,30.823,19.542c21.549,0,28.45-8.532,28.45-19.139c0-10.363-7.588-14.277-17.559-15.946l-18.634-3.11 c-3.835-0.638-6.288-2.312-6.288-5.345c0-3.831,3.984-6.7,10.122-6.7c5.981,0,12.805,0.801,13.725,8.215H286.717z M314.316,73.319 V47.057h-14.874v56.942h14.874V76.09l27.066,27.909h19.157l-28.93-29.262l27.01-27.68h-18.956L314.316,73.319z"/>
</g>
<g>
<path fill="#E42528" d="M80.161,64.144c-3.178,3.175-8.329,3.175-11.507,0L51.392,46.879c-3.178-3.178-3.178-8.329,0-11.507 l17.261-17.261c3.178-3.178,8.33-3.178,11.507,0l17.262,17.261c3.182,3.179,3.182,8.33,0,11.507L80.161,64.144"/>
<path fill="#FFD404" d="M114.687,98.665c-3.178,3.174-8.33,3.174-11.507,0L85.917,81.402c-3.178-3.179-3.178-8.326,0-11.504 l17.262-17.262c3.178-3.179,8.329-3.179,11.507,0l17.261,17.262c3.178,3.178,3.178,8.325,0,11.504L114.687,98.665"/>
<path fill="#2984C1" d="M45.639,98.665c-3.179,3.174-8.329,3.174-11.509,0L16.869,81.402c-3.178-3.179-3.178-8.326,0-11.504 L34.13,52.637c3.18-3.179,8.33-3.179,11.509,0l17.261,17.262c3.179,3.178,3.179,8.325,0,11.504L45.639,98.665"/>
<path fill="#32A64C" d="M80.161,133.185c-3.178,3.177-8.329,3.177-11.507,0l-17.261-17.267c-3.178-3.177-3.178-8.324,0-11.503 l17.261-17.262c3.178-3.175,8.33-3.175,11.507,0l17.262,17.262c3.182,3.179,3.182,8.326,0,11.503L80.161,133.185"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 135.08 105.24"><defs><style>.cls-1{fill:#fff;}</style></defs><title>Ресурс 2</title><g id="Слой_2" data-name="Слой 2"><g id="stacked"><path class="cls-1" d="M76.82,0C39.87,0,5.77,23.56.65,52.62s20.67,52.62,57.61,52.62c20.91,0,40.9-7.55,55.25-19.37l-4-2.22a60.26,60.26,0,0,1-15.64,7.82A83.16,83.16,0,0,1,74.18,96.3C41,100.27,11.75,84.38,8.93,60.81s21.83-45.9,55-49.87,62.43,11.92,65.25,35.49C130.44,56.63,126.5,66.61,119,75A44.71,44.71,0,0,1,114.14,80l3.6,2.1c8.73-8.41,14.76-18.56,16.69-29.49C139.55,23.56,113.76,0,76.82,0Z"/><polygon class="cls-1" points="35.45 57.12 42.71 57.12 42.71 50.39 35.45 50.39 35.45 47.91 43.39 47.91 43.39 40.83 25.97 40.83 25.97 66.75 43.67 66.75 43.67 59.67 35.45 59.67 35.45 57.12"/><path class="cls-1" d="M60.55,50.49,58.41,50c-.72-.18-1.89-.31-1.89-1.27s1.21-1.38,2-1.38a9.81,9.81,0,0,1,5.47,2l2.54-6.63a15.39,15.39,0,0,0-8.21-2.27c-5.64,0-11.25,3.43-11.25,9.59,0,4.05,3.1,6.22,6.78,6.87l1.89.35c.86.17,2.09.27,2.09,1.44s-1.47,1.55-2.4,1.55a9.86,9.86,0,0,1-5.88-2.38l-.48-.37-2.89,7.32a23.3,23.3,0,0,0,10,2.37c5.6,0,11.24-3.06,11.24-9.25C67.42,53.51,64.53,51.38,60.55,50.49Z"/><path class="cls-1" d="M89.08,58.33l5.63,8.42H83.85l-4.12-8.32h-.18v8.32H70.34V40.83H81.72c5.84,0,10.79,2.47,10.79,9,0,3.92-1.51,5.57-5,6.74v.21A6.53,6.53,0,0,1,89.08,58.33ZM83.3,50.14c0-2-1.41-2.23-3-2.23h-.73v4.4h.66C81.75,52.31,83.3,52.07,83.3,50.14Z"/><path class="cls-1" d="M118.6,59.6c0,5.32-4.95,7.15-9.49,7.15H96.29V40.83h11c5,0,10.14,1.2,10.14,7.18a5.25,5.25,0,0,1-3.4,5.23v.2C116.81,54.44,118.6,56.5,118.6,59.6ZM105,50.8h.86c1.38,0,2.92-.14,2.92-1.93s-1.75-1.79-3.12-1.79H105Zm4.85,7.59c0-2.16-2.41-2.13-3.92-2.13H105v4.3h1.07C107.64,60.56,109.87,60.53,109.87,58.39Z"/><path class="cls-1" d="M117.6,85.82a3.47,3.47,0,0,1,1.4.28,3.88,3.88,0,0,1,1.14.77,3.64,3.64,0,0,1,.77,1.14,3.69,3.69,0,0,1,0,2.82,3.64,3.64,0,0,1-.77,1.14,3.73,3.73,0,0,1-1.14.78,3.59,3.59,0,0,1-4-.78,3.57,3.57,0,0,1,0-5.1,3.8,3.8,0,0,1,1.15-.77A3.47,3.47,0,0,1,117.6,85.82Zm0,.54a3,3,0,0,0-1.2.23,3,3,0,0,0-1,.66,3.06,3.06,0,0,0-.9,2.17,3.17,3.17,0,0,0,.24,1.2,3,3,0,0,0,1.64,1.63,3.12,3.12,0,0,0,2.4,0,3.24,3.24,0,0,0,1-.65,3.29,3.29,0,0,0,.65-1,3.1,3.1,0,0,0,0-2.39,3.29,3.29,0,0,0-.65-1,3.09,3.09,0,0,0-1-.66A3,3,0,0,0,117.6,86.36Zm-.68,5.14h-.67V87.35h1.65a1.21,1.21,0,0,1,.52.1,1.11,1.11,0,0,1,.36.23A.84.84,0,0,1,119,88a1,1,0,0,1,.07.38.84.84,0,0,1-.25.62,1.14,1.14,0,0,1-.65.34v0a1,1,0,0,1,.32.07.52.52,0,0,1,.22.17.76.76,0,0,1,.13.3,2.3,2.3,0,0,1,0,.51s0,.12,0,.21l0,.3c0,.11,0,.21,0,.32a1,1,0,0,0,.07.25h-.66a1.1,1.1,0,0,1-.13-.59c0-.24,0-.5-.05-.79a.5.5,0,0,0-.09-.26.52.52,0,0,0-.16-.14.76.76,0,0,0-.2-.06h-.84Zm0-2.38h.87a.54.54,0,0,0,.45-.2.75.75,0,0,0,.15-.47.85.85,0,0,0,0-.23.54.54,0,0,0-.1-.2.58.58,0,0,0-.47-.21h-.87Z"/></g></g></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View file

@ -379,6 +379,23 @@
stream-events "^1.0.1"
xdg-basedir "^4.0.0"
"@growthbunker/vuedarkmode@0.5.48":
version "0.5.48"
resolved "https://registry.yarnpkg.com/@growthbunker/vuedarkmode/-/vuedarkmode-0.5.48.tgz#097749d3033c5927e949276f664cc81b618e1ec5"
integrity sha512-lBYDDaI/7LkNmlRhS/hxTNhh5eFiK8tYBfKzpzam4IJeTrGSStFSxWJfc9FmBXSLqtD6CtwjvBlcqIcSuPtp3g==
dependencies:
v-click-outside "2.1.4"
v-hotkey "0.8.0"
"@growthbunker/vuetimeline@^0.1.17":
version "0.1.17"
resolved "https://registry.yarnpkg.com/@growthbunker/vuetimeline/-/vuetimeline-0.1.17.tgz#7596d75e73a76729644093ed0e359c4c4df1bc08"
integrity sha512-HLQfiQRi/+1z1quiVrdlKQ5sCZBP6XPpb4e+VBa9A79XaW5oi8ygd1RtVXdh1M98ldTCesaQgEpaQ6EsR4tv3w==
dependencies:
"@growthbunker/vuedarkmode" "0.5.48"
scrollreveal "4.0.5"
timeago.js "4.0.1"
"@grpc/grpc-js@^1.0.0", "@grpc/grpc-js@~1.1.1":
version "1.1.7"
resolved "https://registry.yarnpkg.com/@grpc/grpc-js/-/grpc-js-1.1.7.tgz#d3d71c6da95397e2d63895ccc4a05e7572f7b7e6"
@ -2944,6 +2961,11 @@ core-js@^2.2.0, core-js@^2.4.0, core-js@^2.5.0:
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c"
integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==
core-js@^2.6.5:
version "2.6.12"
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec"
integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==
core-util-is@1.0.2, core-util-is@~1.0.0:
version "1.0.2"
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
@ -5898,6 +5920,18 @@ is-docker@^2.0.0:
resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.1.1.tgz#4125a88e44e450d384e09047ede71adc2d144156"
integrity sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==
is-dom-node-list@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/is-dom-node-list/-/is-dom-node-list-1.2.1.tgz#141ded0c66de759d0976800d21370bb908f2950f"
integrity sha512-P1H071iT5TGG8pAHslhrLDo/tQLYc8tGuWABVqhGU4l2mm7aDNb9cx2myQ2AujEQO6B2cAujcW4a0/+6UfXInw==
dependencies:
is-dom-node "^1.0.4"
is-dom-node@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/is-dom-node/-/is-dom-node-1.0.4.tgz#abb18af7133f1e687610cfeb274da1ced342f1c5"
integrity sha512-NEnTHKCeyGJTL0cKdzATF8SWzyTMYf5CbNKWBvsXvyMxZG32g+a09qkeCbrfQNLTD85CbPeHb4YjIJCjyzF0yA==
is-dotfile@^1.0.0:
version "1.0.3"
resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
@ -7319,6 +7353,11 @@ minimist@~0.0.1:
resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf"
integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=
miniraf@1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/miniraf/-/miniraf-1.0.0.tgz#5d88e108bbdcb55b4a2ff3da337f24a13a3377e1"
integrity sha512-XpvhtJYzVrpXe+JoAthrT9E40NIrSDDMcdHEYL2M+lR/OCas0nadetcBBq/MWYqlgV5aDWVQ3mfAqd+fG6Y/EQ==
mississippi@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-2.0.0.tgz#3442a508fafc28500486feea99409676e4ee5a6f"
@ -9408,6 +9447,11 @@ relateurl@0.2.x:
resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9"
integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=
rematrix@0.3.0:
version "0.3.0"
resolved "https://registry.yarnpkg.com/rematrix/-/rematrix-0.3.0.tgz#4f3f9156aa80ded8a8ca23785f48c6012b6dea4a"
integrity sha512-xB/9ZvJIKaDgXX0qkvV9/pLD8zK23A6TVV6F8Vhsl+SrxbBeVYutz5uszxgC6Rt3RP9LZiH8OXaYjr+x6WXWmQ==
remove-trailing-separator@^1.0.1:
version "1.1.0"
resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
@ -9723,6 +9767,15 @@ schema-utils@^0.4.0, schema-utils@^0.4.5:
ajv "^6.1.0"
ajv-keywords "^3.1.0"
scrollreveal@4.0.5:
version "4.0.5"
resolved "https://registry.yarnpkg.com/scrollreveal/-/scrollreveal-4.0.5.tgz#cf83cc5d9874dc0d92ef9c89a8894e57f3f8e034"
integrity sha512-dyQ0BPOLuoRzKAEwGgVaZsN4mxErHnuzh3Wq0ygE/PteGHeTCOubBoTzxSoix5UGLOUYMDapNAwajfQCB483aw==
dependencies:
miniraf "1.0.0"
rematrix "0.3.0"
tealight "0.3.6"
scss-tokenizer@^0.2.3:
version "0.2.3"
resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1"
@ -10555,6 +10608,14 @@ tar@^2.0.0:
fstream "^1.0.12"
inherits "2"
tealight@0.3.6:
version "0.3.6"
resolved "https://registry.yarnpkg.com/tealight/-/tealight-0.3.6.tgz#14c8071ce3c188972a5cb7d8a5668ca2820b4292"
integrity sha512-Dys3N8jFBThD9pNVpPCyUiu6DfWcTBdqWQJIvnAuVaFkGEdrPBJ43070vVbn6sTlLvn2IQK2zFW4FrVIrTo8eQ==
dependencies:
is-dom-node "^1.0.4"
is-dom-node-list "^1.2.1"
teeny-request@^7.0.0:
version "7.0.0"
resolved "https://registry.yarnpkg.com/teeny-request/-/teeny-request-7.0.0.tgz#0e5c090bd9102ed559ffc8c9ddb00fbe1256db30"
@ -10617,6 +10678,11 @@ time-stamp@^2.0.0:
resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-2.2.0.tgz#917e0a66905688790ec7bbbde04046259af83f57"
integrity sha512-zxke8goJQpBeEgD82CXABeMh0LSJcj7CXEd0OHOg45HgcofF7pxNwZm9+RknpxpDhwN4gFpySkApKfFYfRQnUA==
timeago.js@4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/timeago.js/-/timeago.js-4.0.1.tgz#4be4aa19565ceaeb0da31fe14e01ce6ca4742da6"
integrity sha512-ePzZuMoJqUc44hJbUYtY1qtzU7IammxooDCcFKogLkS5Nj+iCabR0ZlmNOFX8Dm1r5EpvR5q/PotOJli/mEPew==
timed-out@^4.0.0:
version "4.0.1"
resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f"
@ -11134,6 +11200,18 @@ uuid@^8.3.0:
resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
v-click-outside@2.1.4:
version "2.1.4"
resolved "https://registry.yarnpkg.com/v-click-outside/-/v-click-outside-2.1.4.tgz#7d7813b09a0fd4a9d0fbccc2ca12ca7c5591e087"
integrity sha512-NbQiwRjJjeKptI1qr1co2Ox44fUWEnj08chR1nw3DVrNCQHjb+sqlevzb1zCXMgb7orTFE0wpiecqMlbOZ15EQ==
v-hotkey@0.8.0:
version "0.8.0"
resolved "https://registry.yarnpkg.com/v-hotkey/-/v-hotkey-0.8.0.tgz#134d64b30a3eeeb53bcb00eba81fdf74e21a032a"
integrity sha512-TWxiUbd5DPF/ClnGsa0VHw1jXX6xA8G8jNy/qFeULVz28cq8ZFz+SGNcniXj7WHazoqRUSzL20y/VDiZ+yzprw==
dependencies:
core-js "^2.6.5"
validate-npm-package-license@^3.0.1:
version "3.0.4"
resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"