Added Evil Angel channels with logos.

This commit is contained in:
DebaucheryLibrarian 2020-09-10 03:17:19 +02:00
parent d081b88af2
commit 0d4893b13c
115 changed files with 434 additions and 4 deletions

View File

@ -195,6 +195,11 @@ function initActorActions(store, router) {
mode,
});
if (!actor) {
router.replace('/not-found');
return null;
}
return {
actor: curateActor(actor, null, curateRelease),
releases: actor.scenesConnection.releases.map(release => curateRelease(release)),

View File

@ -4,7 +4,7 @@ import { releaseFields } from '../fragments';
import { curateEntity } from '../curate';
import getDateRange from '../get-date-range';
function initEntitiesActions(store, _router) {
function initEntitiesActions(store, router) {
async function fetchEntityBySlugAndType({ _commit }, {
entitySlug,
entityType,
@ -161,6 +161,11 @@ function initEntitiesActions(store, _router) {
exclude: store.state.ui.filter,
});
if (!entity) {
router.replace('/not-found');
return null;
}
return {
entity: curateEntity(entity, null, releases),
totalCount,

View File

@ -3,7 +3,7 @@ import { releasesFragment, releaseFragment, releaseFields } from '../fragments';
import { curateRelease } from '../curate';
import getDateRange from '../get-date-range';
function initReleasesActions(store, _router) {
function initReleasesActions(store, router) {
async function fetchReleases({ _commit }, { limit = 10, pageNumber = 1, range = 'latest' }) {
const { before, after, orderBy } = getDateRange(range);
@ -44,6 +44,11 @@ function initReleasesActions(store, _router) {
releaseId: Number(releaseId),
});
if (!release) {
router.replace('/not-found');
return null;
}
return curateRelease(release);
}
@ -196,6 +201,11 @@ function initReleasesActions(store, _router) {
movieId: Number(movieId),
});
if (!movie) {
router.replace('/not-found');
return null;
}
return curateRelease(movie);
}

View File

@ -179,9 +179,16 @@ const routes = [
name: 'stats',
},
{
path: '*',
path: '/not-found',
name: 'not-found',
component: NotFound,
},
{
path: '*',
redirect: {
name: 'not-found',
},
},
];
const router = new VueRouter({

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 126 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 126 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 95 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 210 KiB

View File

@ -0,0 +1,175 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, 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 680 88" style="enable-background:new 0 0 680 88;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;}
.st1{fill:#FFFFFF;}
</style>
<g>
<polygon class="st0" points="70.7,46.8 71.1,47.4 71.2,47.4 70.7,46.7 "/>
<path class="st1" d="M265.3,77.7c0-0.9-0.3-1.8-0.9-2.5c-0.6-0.7-1.5-1.1-2.4-1c-1.8,0.1-3.2,1.5-3.2,3.3c0,1.9,1.5,3.4,3.3,3.4
c0.6,0,1.2-0.1,1.7-0.3c0.5-0.3,0.9-0.6,1.2-1.1l-1.3-0.6c-0.4,0.4-0.9,0.6-1.5,0.6c-0.4,0-0.9-0.1-1.2-0.4
c-0.3-0.3-0.5-0.7-0.6-1.1h5.1L265.3,77.7z M260.4,76.8c0.1-0.3,0.4-0.6,0.6-0.8c0.3-0.3,0.8-0.4,1.2-0.4c0.4,0,0.8,0.1,1.1,0.3
c0.3,0.2,0.5,0.5,0.6,0.9H260.4z"/>
<path class="st1" d="M247.2,74.5c-0.5-0.3-1.1-0.4-1.7-0.4c-0.8,0-1.6,0.2-2.2,0.7c-0.7,0.6-1.1,1.5-1.1,2.5c0,0.9,0.4,1.8,1,2.4
c0.6,0.7,1.4,1,2.3,1c0.6,0,1.2-0.1,1.7-0.4c0.5-0.3,0.9-0.7,1.2-1.2c0.5-1.1,0.5-2.3,0-3.4C248.1,75.3,247.7,74.8,247.2,74.5z
M246.7,78.8c-0.7,0.7-1.7,0.7-2.4,0c0,0,0,0,0,0c-0.3-0.3-0.5-0.8-0.5-1.3c0-0.5,0.2-0.9,0.5-1.3c0.7-0.7,1.7-0.7,2.4,0
c0,0,0,0,0,0C247.4,76.9,247.4,78,246.7,78.8z"/>
<path class="st1" d="M238.5,74.3c-0.4,0-0.7,0.1-1.1,0.2c-0.3,0.1-0.7,0.3-0.9,0.6v-0.7h-1.6v8.8h1.7v-3c0.2,0.3,0.6,0.5,0.9,0.6
c0.3,0.1,0.7,0.2,1,0.2c0.8,0,1.6-0.4,2.1-1c0.6-0.7,0.9-1.5,0.9-2.4c0-0.9-0.3-1.8-0.9-2.4C240.1,74.6,239.3,74.2,238.5,74.3z
M239.4,78.8c-0.3,0.3-0.7,0.5-1.2,0.5c-0.5,0.1-0.9-0.1-1.2-0.5c-0.3-0.4-0.5-0.9-0.5-1.4c0-0.5,0.2-0.9,0.5-1.3
c0.7-0.7,1.7-0.7,2.4,0c0,0,0,0,0,0c0.3,0.4,0.5,0.8,0.5,1.3C239.9,78,239.7,78.5,239.4,78.8z"/>
<polygon class="st1" points="255.7,78 254.4,74.3 253.4,74.3 252,78 250.7,74.3 249.1,74.3 251.4,80.7 252.4,80.7 253.8,77
255.2,80.7 256.2,80.7 258.5,74.3 256.9,74.3 "/>
<polygon class="st1" points="284.1,25.7 297.1,6.8 284.1,6.8 277.9,17.3 271.7,6.8 258.7,6.8 271.7,25.7 255.8,47.4 268.5,47.4
277.9,34.2 286.4,47.4 299.1,47.4 "/>
<path class="st1" d="M282.1,74.8c-0.3-0.2-0.6-0.4-0.9-0.6c-0.4-0.1-0.7-0.2-1.1-0.2c-0.8,0-1.6,0.3-2.1,0.9
c-1.2,1.4-1.2,3.4,0,4.8c0.5,0.6,1.3,1,2.1,1c0.3,0,0.7-0.1,1-0.2c0.3-0.1,0.7-0.3,0.9-0.6v0.7h1.6v-8.8h-1.5V74.8z M281.5,78.8
c-0.3,0.3-0.7,0.5-1.2,0.5c-0.5,0.1-0.9-0.1-1.2-0.5c-0.3-0.4-0.5-0.9-0.5-1.4c0-0.5,0.2-0.9,0.5-1.3c0.3-0.3,0.7-0.5,1.2-0.5
c0.5,0,0.9,0.2,1.2,0.5c0.3,0.3,0.5,0.8,0.5,1.3C282,78,281.8,78.5,281.5,78.8z"/>
<path class="st1" d="M276.1,77.7c0-0.9-0.3-1.8-0.9-2.5c-0.6-0.7-1.5-1.1-2.4-1c-1.8,0.1-3.2,1.5-3.2,3.3c0,1.9,1.5,3.4,3.3,3.4
c0.6,0,1.2-0.1,1.7-0.3c0.5-0.3,0.9-0.6,1.2-1.1l-1.3-0.6c-0.4,0.4-0.9,0.6-1.5,0.6c-0.4,0-0.9-0.1-1.2-0.4
c-0.3-0.3-0.5-0.7-0.6-1.1h5.1L276.1,77.7z M271.2,76.8L271.2,76.8c0.1-0.3,0.4-0.6,0.6-0.8c0.3-0.3,0.8-0.4,1.2-0.4
c0.4,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.5,0.6,0.9H271.2z"/>
<polygon class="st1" points="70.4,47.4 71.1,47.4 70.7,46.8 "/>
<polygon class="st1" points="5.6,15.7 14.3,15.7 14.3,47.4 24.9,47.4 24.9,15.7 33.6,15.7 33.6,6.8 5.6,6.8 "/>
<polygon class="st1" points="70.7,46.8 70.7,46.7 70.6,46.6 70.6,46.7 "/>
<path class="st1" d="M70.6,46.7L70.6,46.7L58.4,30.8c5.4-1,9.2-5.9,8.9-11.4c0-8.7-6.1-12.5-14.1-12.5H37.4v40.6H48V31.8l10.1,15.6
h12.3L70.6,46.7L70.6,46.7z M49,25h-1V14.9h1c3.5,0,7.3,0.6,7.3,5.2C56.3,24.7,52.6,25,49,25z"/>
<path class="st1" d="M339.4,67.9L339.4,67.9c0.3-0.2,0.5-0.3,0.7-0.5c0-0.1,0.1,0,0.1,0c0.4,0.3,0.8,0.7,1.2,1
c0.2,0.1,0.3,0.1,0.5,0c0.3-0.3,0.6-0.5,0.9-0.8c0.3-0.4,0.7-0.7,1.1-1c0.2-0.2,0.2-0.2,0-0.4v-0.1c0-0.1-0.1,0-0.1,0
c-0.2,0.2-0.4,0.3-0.6,0.5c0,0,0,0,0,0c-0.1,0.1-0.1,0.1-0.2,0c-0.3-0.3-0.7-0.6-1.1-0.9c-0.2-0.1-0.3-0.1-0.5,0
c-0.4,0.3-0.9,0.7-1.3,1c-0.3,0.3-0.7,0.6-1.1,0.9C339.2,67.7,339.3,67.8,339.4,67.9z"/>
<polygon class="st1" points="409.4,38.5 396.8,38.5 396.8,6.8 386.2,6.8 386.2,47.4 409.4,47.4 "/>
<path class="st1" d="M181.8,22.6L181.8,22.6l-2.7-0.8c-1.8-0.6-4.7-1.5-4.7-3.9c0-2.4,2.6-3.4,4.6-3.4c2.6,0.1,5.1,1,7,2.7l4.2-8.2
c-3.9-2.1-8.3-3.3-12.7-3.3c-7.2-0.5-13.5,5-14,12.2c0,0,0,0.1,0,0.1v1.4c0,7.9,4.4,9.6,11,11.4c2.3,0.6,6.4,1.7,6.4,4.6
c0,2.9-2.6,4.1-5.1,4.1c-3.5-0.2-6.9-1.7-9.4-4.2l-4.6,8.5c4.2,2.9,9.2,4.5,14.3,4.6c4.2,0.1,8.2-1.2,11.5-3.8
c2.9-2.8,4.4-6.8,4.2-10.8C191.8,27.2,187.4,24.3,181.8,22.6z"/>
<polygon class="st1" points="146.2,31.6 146.1,31.6 126.7,6.8 116.1,6.8 116.1,47.4 126.7,47.4 126.7,22.5 126.8,22.5 146.2,47.4
156.7,47.4 156.7,6.8 146.2,6.8 "/>
<polygon class="st1" points="253.1,38.5 240.6,38.5 240.6,31.5 252.5,31.5 252.5,22.5 240.6,22.5 240.6,15.7 253.1,15.7 253.1,6.8
230,6.8 230,47.4 253.1,47.4 "/>
<path class="st1" d="M215,22.6l-2.7-0.8c-1.8-0.6-4.7-1.5-4.7-3.9c0-2.4,2.6-3.4,4.6-3.4c2.6,0.1,5,1,7,2.7l4.2-8.2
c-3.9-2.1-8.3-3.3-12.7-3.3c-7.2-0.5-13.5,5-14,12.2c0,0,0,0.1,0,0.1v1.4c0,7.9,4.4,9.6,11,11.4c2.3,0.6,6.4,1.7,6.4,4.6
c0,2.9-2.6,4.1-5.1,4.1c-3.5-0.2-6.9-1.7-9.4-4.2l-4.6,8.5c4.2,2.9,9.2,4.5,14.3,4.6c4.2,0.1,8.2-1.2,11.5-3.8
c2.9-2.8,4.5-6.8,4.2-10.8C225,27.2,220.6,24.3,215,22.6z"/>
<path class="st1" d="M291.5,74.3c-0.4,0-0.7,0.1-1.1,0.2c-0.3,0.1-0.7,0.3-0.9,0.6v-3H288v8.8h1.6v-0.7c0.2,0.3,0.6,0.5,0.9,0.6
c0.3,0.1,0.7,0.2,1,0.2c0.8,0,1.6-0.4,2.1-1c0.6-0.7,0.9-1.5,0.9-2.4c0-0.9-0.3-1.8-0.9-2.4C293.1,74.6,292.3,74.2,291.5,74.3z
M292.4,78.8c-0.7,0.7-1.7,0.7-2.4,0c0,0,0,0,0,0c-0.3-0.4-0.5-0.9-0.5-1.4c0-0.5,0.2-0.9,0.5-1.3c0.7-0.7,1.7-0.7,2.4,0
c0,0,0,0,0,0c0.3,0.4,0.5,0.8,0.5,1.3C292.9,78,292.7,78.5,292.4,78.8z"/>
<path class="st1" d="M86,6.8L70.6,46.6l0.1,0.1l0.5,0.7h10.3l2.9-7.1H99l2.5,7.1h11.3L97.5,6.8H86z M87.3,32.3l4.4-12.9L96,32.3
H87.3z"/>
<path class="st1" d="M268.1,74.5c-0.3,0.1-0.5,0.4-0.6,0.7v-0.8H266V81h1.6V78c0-0.6,0.1-1.2,0.3-1.8c0.1-0.3,0.3-0.5,0.6-0.5
c0.2,0,0.3,0,0.5,0.1l0.5-1.4c-0.2-0.1-0.4-0.2-0.6-0.2C268.6,74.2,268.3,74.3,268.1,74.5z"/>
<polygon class="st1" points="482.4,42.3 448.3,6.3 448.3,47.4 450.9,47.4 450.9,12.5 485,48.8 485,6.8 482.4,6.8 "/>
<path class="st1" d="M514.8,28.1l-0.1,2.2h14.6c0,2-0.4,4-1.2,5.9c-0.9,1.9-2.1,3.6-3.7,4.9c-1.7,1.4-3.6,2.5-5.6,3.3
c-2,0.8-4.2,1.2-6.4,1.2c-2.4,0-4.9-0.5-7.1-1.5c-2.2-1-4.2-2.3-5.9-4c-1.7-1.7-3-3.7-4-5.8c-2-4.5-2-9.7,0-14.2
c1-2.2,2.3-4.2,4-5.9c1.7-1.7,3.7-3.1,5.9-4c2.2-1,4.7-1.5,7.1-1.5c3.1-0.1,6.2,0.7,8.9,2.3c2.7,1.6,5,3.8,6.8,6.4l2.1-1.7
c-2-2.8-4.6-5.1-7.6-6.8c-3.1-1.7-6.6-2.6-10.1-2.4c-11.6-0.1-21.1,9.2-21.2,20.7c0,0.1,0,0.1,0,0.2c0,2.7,0.6,5.4,1.7,7.9
c1.1,2.5,2.6,4.7,4.6,6.6c1.9,1.9,4.2,3.5,6.7,4.6c2.5,1.1,5.2,1.7,8,1.7c2.9,0,5.7-0.6,8.4-1.7c2.7-1.1,5.1-2.8,7-4.9
c1.7-1.8,2.9-3.9,3.5-6.3c0.6-2.4,0.8-4.8,0.7-7.2H514.8z"/>
<path class="st1" d="M444,79.7h-6.4c0,0-0.1,0-0.1,0c-0.1,0-0.1-0.1-0.1-0.2V65c0-0.2,0.1-0.4,0.3-0.6h-2.9l0.1,0.1
c0.1,0.2,0.2,0.5,0.2,0.7v15.3c0,0.2,0,0.3-0.1,0.5c-0.1,0.1-0.1,0.2-0.2,0.3H446v-1.9h-0.1C445.3,79.6,444.6,79.7,444,79.7z"/>
<path class="st1" d="M431.6,64.3H420c0.3,0.3,0.4,0.6,0.4,1v14.8c0,0.4-0.1,0.9-0.4,1.2h11.7c0.1,0,0.1,0,0.1-0.1v-1.7
c-0.4,0.1-0.9,0.2-1.3,0.2h-7.7c0,0-0.1,0-0.1,0c-0.1,0-0.1-0.1-0.1-0.2v-5.7c0,0,0-0.1,0-0.1c0-0.1,0.1-0.1,0.2-0.1
c1.7,0,3.4-0.1,5.1,0c0.5,0,0.9,0.1,1.4,0.2c0.1,0,0.1,0,0.1-0.1v-2c-0.5,0.2-1,0.3-1.5,0.3h-5.3c-0.1,0-0.1,0-0.1-0.1v-5.7
c0,0,0-0.1,0-0.1c0-0.1,0.1-0.1,0.2-0.1h8.1c0.3,0,0.6,0,0.9,0.1c0.1,0.1,0.1,0,0.1-0.1v-1.5c0,0,0-0.1,0-0.1
C431.8,64.3,431.7,64.3,431.6,64.3z"/>
<polygon class="st1" points="540.8,26.4 557.2,26.4 557.2,24 540.8,24 540.8,9.2 557.6,9.2 557.6,6.8 538.2,6.8 538.2,47.4
557.6,47.4 557.6,45 540.8,45 "/>
<path class="st1" d="M441,47.4h2.6l-16.9-42l-17,42h2.6l5.5-13.4h17.8L441,47.4z M418.8,31.6l8-19.6l7.9,19.6H418.8z"/>
<path class="st1" d="M584.9,42.6L584.9,42.6c-1.4-0.1-2.6,1.1-2.7,2.5c0,0,0,0.1,0,0.1c0,0.7,0.3,1.5,0.8,2
c0.5,0.5,1.2,0.8,1.9,0.8c1.5,0,2.7-1.2,2.7-2.7c0,0,0,0,0,0C587.6,43.8,586.4,42.6,584.9,42.6z"/>
<polygon class="st1" points="568.1,6.8 565.5,6.8 565.5,47.4 578.4,47.4 578.4,45 568.1,45 "/>
<path class="st1" d="M674.3,27.5c-0.6-0.9-1.5-1.7-2.5-2.2c-1.1-0.5-2.3-0.8-3.5-0.8c-2.7-0.1-5.2,1.3-6.5,3.7
c-1.1-2.3-3.5-3.8-6.1-3.7c-2.2,0-4.3,1.1-5.5,2.9v-2.3h-3.8v22.3h3.8V35.3c-0.1-1.6,0.2-3.3,0.8-4.8c0.4-0.7,0.9-1.3,1.6-1.8
c0.7-0.4,1.5-0.6,2.3-0.7c2.8,0,4.1,2.1,4.1,6.2v13.3h3.8V35c0-4.7,1.6-7,4.8-7c1.3-0.1,2.6,0.6,3.3,1.7c0.6,1.3,0.8,2.7,0.7,4.1
v13.7h3.9V33.2C675.6,31.2,675.2,29.3,674.3,27.5z"/>
<path class="st1" d="M628.7,24.6c-3.1-0.1-6.1,1.1-8.4,3.2c-2.4,2.2-3.7,5.3-3.7,8.5c-0.1,2.9,0.9,5.6,2.8,7.8
c2.3,2.7,5.6,4.2,9.1,4.2c6.5,0,11.8-5.4,11.8-11.9c0-2.9-1-5.7-3-7.9C635.1,26,632,24.6,628.7,24.6z M634.7,41.8
c-2.9,3.4-7.9,3.8-11.3,1c-0.1-0.1-0.2-0.2-0.4-0.3c-1.6-1.6-2.4-3.8-2.3-6.1c-0.1-2,0.6-3.9,1.8-5.4c1.4-1.9,3.6-3,6-2.9
c2.1-0.1,4.2,0.8,5.7,2.3c1.6,1.6,2.4,3.8,2.3,6C636.4,38.3,635.8,40.2,634.7,41.8z"/>
<path class="st1" d="M415.9,72.1c0-0.2,0-0.2-0.2-0.2h-7.1c-0.4,0-0.9-0.1-1.3-0.2c-0.1,0-0.1,0-0.1,0.1v1.9
c0.4-0.1,0.8-0.2,1.2-0.2h5.1c0.1,0,0.1,0,0.1,0.1v5.2c0,0.1,0,0.2-0.1,0.2c-0.2,0.1-0.4,0.1-0.6,0.2c-0.6,0.2-1.2,0.3-1.8,0.4
c-0.5,0.1-1,0.2-1.5,0.2c-0.8,0-1.5,0-2.3-0.1c-0.3-0.1-0.7-0.1-1.1-0.2c-0.5-0.1-1.1-0.3-1.6-0.5c-0.6-0.2-1.1-0.5-1.6-0.8
c-0.7-0.4-1.3-0.9-1.8-1.5c-0.4-0.3-0.7-0.7-0.9-1.2c-0.4-0.7-0.6-1.4-0.7-2.2c0-0.7,0-1.4,0.2-2.1c0.3-1,0.8-1.9,1.5-2.7
c0.3-0.3,0.7-0.5,1-0.8c0.7-0.5,1.4-0.9,2.2-1.2c1.1-0.5,2.2-0.7,3.4-0.8c0.9,0,1.7,0,2.6,0.1c0.4,0.1,0.9,0.1,1.3,0.2
c0.7,0.1,1.3,0.3,1.9,0.6c0.1,0,0.1,0,0.1-0.1v-2.3c-0.1,0.1-0.3,0.1-0.3,0.1c0,0,0,0,0,0c0,0,0,0,0,0c-0.3,0-0.5-0.1-0.8-0.1
c-0.4,0-0.7,0-1.1-0.1c-0.4,0-0.8-0.1-1.2-0.1h-1.8c-0.4,0-0.9,0-1.3,0.1c-0.3,0.1-0.7,0.1-1,0.2c-0.4,0.1-0.7,0.2-1.1,0.3
c-0.7,0.2-1.5,0.5-2.2,0.8c-0.5,0.2-0.9,0.4-1.3,0.7c-0.5,0.3-1,0.7-1.5,1.1c-0.3,0.4-0.7,0.7-1,1.1c-0.4,0.4-0.7,0.9-0.9,1.4
c-0.2,0.4-0.4,0.8-0.5,1.2c-0.1,0.5-0.2,1-0.2,1.5v0.9c0,0.3,0,0.7,0.1,1c0.1,0.5,0.3,1,0.5,1.5c0.3,0.8,0.8,1.5,1.3,2.1
c0.6,0.6,1.2,1.1,1.8,1.6c0.7,0.5,1.5,0.9,2.3,1.2c0.5,0.2,1.1,0.4,1.6,0.5c0.5,0.1,1.1,0.2,1.7,0.3c0.5,0,0.9,0.1,1.4,0.1
c0.8,0,1.5,0,2.3-0.1c0.4-0.1,0.8-0.1,1.2-0.2c1.4-0.3,2.8-0.7,4.1-1.2c0.1,0,0.1-0.1,0.1-0.2c-0.1-0.3-0.1-0.5-0.1-0.8V72.1z"/>
<polygon class="st1" points="298,78.3 296.4,74.3 294.8,74.3 297.2,80.3 295.9,83 297.4,83 301.4,74.3 299.8,74.3 "/>
<path class="st1" d="M609.8,43c-1.4,1-3.1,1.6-4.8,1.6c-2.1,0.1-4.2-0.7-5.6-2.3c-3-3.3-3.1-8.2-0.2-11.6c1.5-1.7,3.6-2.7,5.9-2.7
c1.4,0,2.7,0.4,3.9,1c1.2,0.7,2.2,1.6,3.1,2.7v-5.2c-2-1.4-4.4-2.1-6.8-2.1c-3.1-0.1-6.1,1.1-8.3,3.2c-2.4,2.2-3.7,5.3-3.6,8.6
c0,6.4,5.2,11.7,11.6,11.7c0.1,0,0.1,0,0.2,0c2.6,0,5-0.8,7.1-2.3v-5.2C611.6,41.4,610.8,42.3,609.8,43z"/>
<path class="st1" d="M413.5,64.3C413.5,64.3,413.5,64.3,413.5,64.3C413.5,64.3,413.5,64.3,413.5,64.3z"/>
<path class="st1" d="M336.6,71.1c0,0.1-0.1,0.2-0.2,0.2c-0.2,0.2-0.4,0.3-0.7,0.2c-0.8-0.3-1.6-0.7-2.3-1.2h-0.2
c-0.2,0.1-0.5,0.3-0.7,0.4l-2.1,1.2c-0.2,0.2-0.2,0.2-0.1,0.4c0,0.1,0,0.1,0.1,0.1c0.3-0.1,0.5-0.2,0.8-0.3
c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.5,0.2l1.2,0.6c0.1,0.1,0.2,0.2,0.2,0.3v5.8c0,0.1,0,0.1-0.1,0.1h-0.1
c-0.5,0.1-0.9,0.2-1.4,0.4c-0.1,0.1-0.3,0.1-0.4,0c-0.6-0.4-1.3-0.8-2-1.1c-0.1,0-0.1-0.1-0.1-0.2v-5c0-0.3-0.2-0.6-0.5-0.7
l-1.5-0.6l-0.1-0.1c0,0-0.1-0.1-0.1-0.1c-0.4-0.4-0.5-1-0.1-1.4c0.3-0.3,0.6-0.5,1-0.7c0-0.1,0-0.1,0.1-0.1h-0.1
c-0.6,0.2-1.1,0.6-1.6,1c-0.4,0.4-0.6,1-0.4,1.5c0.2,0.5,0.5,0.9,0.9,1.2c0.2,0.1,0.3,0.3,0.3,0.5v4.8c0.1,0.1,0,0.2-0.1,0.3
c-0.5,0.3-1,0.7-1.5,1c-0.1,0.1-0.1,0.1,0,0.2l0.2,0.2c0.1,0.1,0.1,0,0.2,0c0.5-0.3,1.1-0.4,1.6-0.1c0.5,0.3,1,0.7,1.5,1.1
c0.1,0.2,0.3,0.3,0.5,0.3c0.2,0.1,0.5,0,0.6-0.2c0.1-0.1,0.2-0.1,0.3-0.2c0.4-0.3,0.8-0.5,1.3-0.7c0.5-0.2,1.1-0.3,1.6-0.4
c0.6-0.1,1.1-0.1,1.7-0.2c0.4-0.1,0.8-0.1,1.2-0.1c0,0,0.1,0.1,0.1,0c0,0,0,0,0,0c0.1-0.2,0-0.4-0.2-0.5h-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3v-5.5c0-0.1,0-0.2,0.1-0.3c0.1,0,0.1-0.1,0.2-0.1l1.2-0.9h0c-0.3-0.3-0.5-0.6-0.7-0.9
C336.7,71,336.7,71,336.6,71.1z"/>
<path class="st1" d="M310.9,77.6c-0.1,0-0.2,0.1-0.3,0.2c0.1,0.1,0.1,0.2,0.2,0.3c0,0.1,0,0.1,0.1,0.1l0.6-0.3
c0.4-0.2,0.8-0.4,1.2-0.7c0.6-0.5,1-1.2,1-2v-7.4c0.1-0.5,0.4-0.9,0.8-1.2c0,0,0,0,0,0c0.1-0.1,0.1-0.1,0-0.2c0,0,0-0.1-0.2-0.1
c-0.2,0-0.4,0.1-0.5,0.2c-0.7,0.3-1.4,0.7-1.9,1.3c-0.3,0.3-0.5,0.8-0.5,1.2v0.9h0l0.2,0.9c0,0.3,0,0.3-0.3,0.3
c-0.4-0.1-0.9-0.1-1.3,0c-0.6,0.1-1.1,0.5-1.2,1.1c-0.2,0.5-0.3,1.1-0.3,1.7c0,0.3,0,0.3,0.3,0.3c0.1,0.1,0.2,0,0.2-0.1
c0-0.2,0.1-0.4,0.2-0.5c0.3-0.3,0.7-0.4,1.1-0.4h1c0.1,0,0.1,0,0.1,0.1v1.2c0.1,0.7,0.1,1.5,0,2.2
C311.4,77.1,311.2,77.4,310.9,77.6z"/>
<path class="st1" d="M333.2,43.9c4-3.9,4.3-9.1,4.3-14.3V6.8h-10.6v21.4c0,5.3-0.4,11-7.2,11c-6.8,0-7.2-5.8-7.2-11V6.8H302v22.8
c0,5.2,0.2,10.4,4.3,14.3C314.3,49.9,325.2,49.9,333.2,43.9z"/>
<path class="st1" d="M307.2,65.1c0.4-0.1,0.8-0.1,1.2,0c0.6,0.1,1.1,0.3,1.6,0.4c0.4,0.1,0.9,0.2,1.3,0.2c0.6,0.1,1.2,0,1.8-0.1
c0.8-0.1,1.5-0.5,2.1-1c0.4-0.4,0.8-0.8,1.1-1.3c0,0,0.1-0.1,0-0.1s-0.2-0.2-0.3-0.1c-0.1,0.1-0.3,0.2-0.4,0.3
c-0.5,0.3-1,0.4-1.6,0.4c-0.6-0.1-1.1-0.2-1.7-0.4c-0.5-0.1-0.9-0.2-1.4-0.3c-0.2,0-0.3,0-0.5-0.1l-0.9,0.1c0,0.1-0.1,0.1-0.2,0.1
c-0.4,0.1-0.8,0.2-1.2,0.4c-0.4,0.1-0.9,0.4-1.2,0.7c-0.4,0.2-0.7,0.6-0.8,1c-0.1,0.2-0.2,0.3-0.2,0.5v0.8c0.1,0.1,0.2,0.3,0.2,0.5
c0.2,0.4,0.5,0.8,0.8,1.1c0.3,0.2,0.3,0.2,0.5-0.1c0.1,0,0-0.1,0-0.1c-0.2-0.1-0.4-0.2-0.5-0.4c-0.4-0.4-0.6-1-0.5-1.6
C306.5,65.6,306.8,65.3,307.2,65.1z"/>
<path class="st1" d="M344.7,79.4c-0.2,0.1-0.4,0.3-0.6,0.4c-0.2,0.1-0.3,0.1-0.5,0c-0.3-0.2-0.5-0.4-0.7-0.6
c-0.2-0.2-0.3-0.4-0.3-0.7v-5l0.1-0.1c0.2-0.2,0.4-0.3,0.6-0.5l1.2-0.9c0-0.1,0.1-0.1,0-0.2c-0.1-0.1-0.1-0.2-0.2-0.3h-0.1
c-0.1,0.2-0.3,0.3-0.5,0.4c-0.3,0.2-0.6,0.2-0.9,0c-0.4-0.3-0.8-0.6-1.1-0.9l-0.1-0.1c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.3,0-0.4,0.1
c-0.3,0.1-0.6,0.3-0.8,0.5c-0.6,0.5-1.2,0.9-1.8,1.3c0,0-0.1,0,0,0.1l0.2,0.2c0,0,0,0,0,0c0.1,0.1,0.1,0.1,0.2,0
c0.3-0.1,0.5-0.2,0.7-0.4h0.1c0.2,0.2,0.5,0.4,0.7,0.6c0.1,0,0.1,0.1,0.1,0.2v3.2h0c0,1.1,0,2.1,0.1,3.4c0,0.2,0,0.3,0.1,0.5
c0.2,0.4,0.5,0.7,0.9,1c0.3,0.2,0.7,0.2,1,0c0.7-0.6,1.5-1.1,2.2-1.6c0.1,0,0.2-0.1,0.3-0.2c-0.1-0.1-0.1-0.2-0.2-0.3
C344.8,79.3,344.8,79.3,344.7,79.4z"/>
<path class="st1" d="M324.8,63.7c-0.3,0.2-0.5,0.3-0.8,0.5h-0.1c-0.3-0.2-0.6-0.3-0.9-0.5c-0.5-0.2-1.1-0.4-1.6-0.6
c-0.2,0-0.4,0-0.6-0.1h-1c-0.2,0-0.5,0-0.7,0.1c-0.5,0.1-1,0.3-1.4,0.6c-0.7,0.4-1.3,1-1.7,1.7c-0.3,0.7-0.5,1.4-0.5,2.2v10.2
c0.1,0.1,0.1,0.1,0,0.1c-0.3,0-0.6,0.1-0.9,0.1c-0.4,0-0.8,0.1-1.2,0.2c-0.6,0.2-1.3,0.4-1.9,0.7c-1,0.4-1.9,1.1-2.6,1.9
c-0.5,0.6-0.8,1.4-0.9,2.2h0c0.1-0.1,0.2-0.1,0.3-0.1c0.2-1,0.9-1.8,1.8-2.3c0.6-0.3,1.2-0.5,1.8-0.6c0.6-0.1,1.2-0.1,1.8-0.1
c0.3,0,0.7,0,1,0c0.3,0,0.6,0.1,0.9,0.1c0.6,0.1,1.2,0.2,1.8,0.4c0.9,0.2,1.7,0.6,2.5,1.1c0.3,0.3,0.8,0.4,1.2,0.4
c0.1,0,0.1,0,0.2-0.1c0.1-0.2,0.3-0.3,0.5-0.4c0.7-0.5,1.5-1.1,2.2-1.6l0.2-0.2c0-0.1-0.1-0.2-0.2-0.2c-0.1,0-0.1,0-0.1-0.1h-0.1
l-0.9,0.6h-0.1c-0.2-0.1-0.5-0.3-0.7-0.4c-0.7-0.3-1.4-0.6-2.1-0.9c-0.4-0.2-0.9-0.3-1.4-0.3c-0.5-0.1-1-0.2-1.5-0.2H316
c-0.1,0-0.1,0-0.1-0.1v-6.3c0-0.1,0-0.2,0.1-0.2c0.4-0.3,1-0.4,1.5-0.3c0.6,0.1,1.2,0.4,1.6,0.8c0.4,0.3,0.7,0.8,0.8,1.3l0.1-0.1
c1.2-0.8,2.3-1.5,3.4-2.2l0.3-0.3c-0.1-0.2-0.2-0.3-0.3-0.4c-0.1-0.1-0.1-0.1-0.2,0l-0.9,0.6c0,0-0.2,0-0.2-0.1
c-0.3-0.4-0.7-0.7-1.1-0.9c-0.6-0.3-1.4-0.5-2.1-0.4c-0.5,0-1,0.2-1.5,0.4c-0.5,0.2-1,0.5-1.4,0.8v-0.1c0-1.2-0.1-2.5,0-3.8
c0.1-0.3,0.2-0.6,0.3-0.9c0.4-0.7,1.2-1.2,2-1.2c0.3,0,0.5,0.1,0.8,0.1c0.6,0.1,1.1,0.3,1.6,0.7c0.4,0.3,0.7,0.6,1.1,0.9
c0,0.1,0,0,0.1,0c0.5-0.4,1-0.7,1.5-1.1c0.6-0.4,1.1-0.8,1.7-1.2V64l-0.2-0.3H324.8z"/>
<path class="st1" d="M352.4,79.3c-0.2,0.2-0.4,0.3-0.6,0.4h-0.1c-0.4-0.2-0.7-0.5-1.1-0.7c-0.1,0-0.1-0.1-0.1-0.2V67.2
c0-0.4,0.1-0.7,0.2-1.1c0.1-0.6,0.4-1.2,0.7-1.7c0.1,0,0.1-0.1,0.2-0.2c0.1-0.2,0-0.4-0.2-0.4c0,0,0-0.1-0.1,0
c-0.3,0.2-0.6,0.4-0.8,0.7c-0.4,0.5-0.9,1-1.3,1.5c-0.1,0.1-0.1,0.1-0.2,0c-0.1-0.4-0.3-0.8-0.5-1.1c0-0.1,0-0.1-0.1-0.1
c-0.2,0.1-0.3,0.3-0.3,0.5c0.1,0.5,0.2,1.1,0.2,1.6v12.2c0,0.1-0.1,0.2-0.2,0.2l-1.8,0.9c-0.1,0-0.1,0,0,0.1l0.3,0.3h0.1l0.6-0.3
c0.3-0.2,0.8-0.2,1.1,0c0.5,0.3,0.9,0.6,1.2,1c0.1,0.2,0.2,0.2,0.4,0.2c0.2,0.1,0.3,0,0.5-0.2c0.1-0.2,0.3-0.3,0.5-0.4
c0.5-0.4,1.1-0.8,1.6-1.2c0-0.1,0.1-0.2,0.2-0.2l-0.2-0.2C352.5,79.2,352.5,79.2,352.4,79.3z"/>
<path class="st1" d="M391.2,65.4v11.3c0,0.1,0,0.1-0.1,0.1c0-0.1-0.1-0.1-0.1-0.2l-0.9-0.9c-0.4-0.5-0.9-1-1.4-1.5l-1.4-1.5
l-1.4-1.5l-1.4-1.5l-1.4-1.5l-1.4-1.5c-0.4-0.5-0.9-1-1.4-1.5c-0.3-0.4-0.7-0.7-1-1.1c-0.2-0.1-0.3-0.2-0.4-0.4l-0.3-0.3v16.8
c0,0.4-0.1,0.8-0.4,1.1h3c-0.1-0.3-0.3-0.5-0.6-0.7V68.8c-0.1,0,0-0.1,0-0.1c0.1-0.1,0.1,0,0.1,0c0.1,0.2,0.2,0.3,0.3,0.4
c0.5,0.6,1.1,1.1,1.6,1.7l1.6,1.6c0.5,0.6,1.1,1.1,1.6,1.7l0.8,0.8c0.5,0.6,1.1,1.2,1.6,1.7s1.1,1,1.6,1.6c0.5,0.6,1.1,1.1,1.6,1.7
l1.4,1.4c0.1,0,0.2,0.1,0.2,0.2l0.4,0.4V65.7c0-0.4,0.1-0.9,0.4-1.2h-3C391.1,64.7,391.2,65.1,391.2,65.4z"/>
<path class="st1" d="M374.2,78.6l-0.9-1.5l-0.9-1.5l-0.9-1.5l-0.9-1.5l-0.9-1.5c-0.2-0.4-0.5-0.9-0.7-1.3c-0.3-0.5-0.6-1-0.9-1.6
c-0.2-0.4-0.5-0.8-0.7-1.2l-0.9-1.5c-0.3-0.4-0.5-0.9-0.8-1.3c-0.1-0.1-0.1-0.1-0.1,0c-0.3,0.5-0.5,1-0.8,1.5s-0.5,1-0.8,1.5
c-0.4,0.7-0.7,1.4-1.1,2.1c-0.3,0.5-0.5,1-0.8,1.5c-0.4,0.7-0.7,1.4-1.1,2.1c-0.3,0.5-0.5,1-0.8,1.5c-0.5,0.9-1,1.8-1.4,2.7
c-0.3,0.5-0.5,1-0.8,1.5c-0.4,0.7-0.8,1.5-1.2,2.2c-0.1,0.3-0.4,0.6-0.7,0.7h3.4l-0.1-0.1c0,0,0,0,0,0c-0.1-0.1-0.2-0.3-0.1-0.5
c0.3-0.5,0.5-1,0.8-1.5l1.2-2.4c0-0.1,0.1-0.2,0.2-0.1h8.8c0.2,0,0.3,0.1,0.4,0.2l0.9,1.8c0.4,0.7,0.7,1.4,1.1,2.1
c0.1,0.1,0.1,0.3-0.1,0.3h3.4c-0.4-0.3-0.7-0.7-0.9-1.2L374.2,78.6z M363.4,75h-1.1c-0.1,0-0.1,0-0.1-0.1c0.4-0.8,0.8-1.6,1.3-2.4
c0.2-0.3,0.4-0.7,0.5-1c0.4-0.8,0.8-1.5,1.2-2.3c0.2-0.4,0.5-0.9,0.7-1.3c0-0.1,0-0.1,0.1-0.1s0.1,0,0.1,0.1
c0.4,0.8,0.9,1.6,1.3,2.4c0.3,0.5,0.6,1,0.8,1.6c0.5,0.9,1,1.9,1.5,2.8c0,0.1,0,0.1,0.1,0.2L363.4,75z"/>
<path class="st1" d="M371.6,47.4h11.3L367.6,6.8h-11.5l-15.6,40.6h11.2l2.8-7.1H369L371.6,47.4z M357.4,32.3L357.4,32.3L357.4,32.3
l4.4-12.9l4.3,12.9H357.4z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.0 KiB

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.0 KiB

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

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