slidev-theme-neversink 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/deploy.yml +67 -0
- package/.prettierrc +15 -0
- package/.vscode/settings.json +4 -0
- package/LICENSE +21 -0
- package/README.md +112 -0
- package/assets/nyu_long_black_on_white.svg +41 -0
- package/components/Admonition.vue +80 -0
- package/components/AdmonitionType.vue +56 -0
- package/components/CreditScroll.vue +94 -0
- package/components/SpeechBubble.vue +294 -0
- package/components/StickyNote.vue +71 -0
- package/components/vue3-kawaii/README.md +5 -0
- package/components/vue3-kawaii/components/backpack/BackPack.vue +123 -0
- package/components/vue3-kawaii/components/backpack/backpackpaths.js +17 -0
- package/components/vue3-kawaii/components/browser/Browser.vue +56 -0
- package/components/vue3-kawaii/components/browser/browserpaths.js +9 -0
- package/components/vue3-kawaii/components/cat/Cat.vue +89 -0
- package/components/vue3-kawaii/components/cat/catpaths.js +8 -0
- package/components/vue3-kawaii/components/common/face/Face.vue +95 -0
- package/components/vue3-kawaii/components/common/face/facepaths.js +24 -0
- package/components/vue3-kawaii/components/common/wrapper/Wrapper.vue +24 -0
- package/components/vue3-kawaii/components/creditCard/CreditCard.vue +47 -0
- package/components/vue3-kawaii/components/creditCard/creditcardpaths.js +8 -0
- package/components/vue3-kawaii/components/ghost/Ghost.vue +48 -0
- package/components/vue3-kawaii/components/ghost/ghostpaths.js +8 -0
- package/components/vue3-kawaii/components/iceCream/IceCream.vue +49 -0
- package/components/vue3-kawaii/components/iceCream/icecreampaths.js +9 -0
- package/components/vue3-kawaii/components/mug/Mug.vue +48 -0
- package/components/vue3-kawaii/components/mug/mugpaths.js +7 -0
- package/components/vue3-kawaii/components/planet/Planet.vue +58 -0
- package/components/vue3-kawaii/components/planet/planetpaths.js +7 -0
- package/components/vue3-kawaii/components/speechBubble/SpeechBubbleGuy.vue +63 -0
- package/components/vue3-kawaii/components/speechBubble/speechbubblepaths.js +8 -0
- package/components/vue3-kawaii/utils/getUniqueId.js +10 -0
- package/docs/.vitepress/config.js +75 -0
- package/docs/.vitepress/theme/index.js +50 -0
- package/docs/.vitepress/theme/style.css +145 -0
- package/docs/api-examples.md +49 -0
- package/docs/branding.md +43 -0
- package/docs/colors.md +108 -0
- package/docs/components/admonitions.md +106 -0
- package/docs/components/creditscroll.md +1 -0
- package/docs/components/kawaii.md +26 -0
- package/docs/components/qrcode.md +24 -0
- package/docs/components/speechbubble.md +69 -0
- package/docs/components/stickynote.md +54 -0
- package/docs/components.md +19 -0
- package/docs/contributing.md +5 -0
- package/docs/customizing.md +38 -0
- package/docs/getting-started.md +32 -0
- package/docs/index.md +19 -0
- package/docs/layouts/cover.md +69 -0
- package/docs/layouts/credits.md +111 -0
- package/docs/layouts/default.md +88 -0
- package/docs/layouts/full.md +131 -0
- package/docs/layouts/intro.md +63 -0
- package/docs/layouts/quote.md +51 -0
- package/docs/layouts/section.md +67 -0
- package/docs/layouts/side-title.md +180 -0
- package/docs/layouts/top-title-two-cols.md +171 -0
- package/docs/layouts/top-title.md +103 -0
- package/docs/layouts/two-cols-title.md +273 -0
- package/docs/layouts.md +92 -0
- package/docs/markdown-examples.md +85 -0
- package/docs/markdown.md +87 -0
- package/docs/parts/columnsystem.md +18 -0
- package/docs/parts/layoutpicker.md +73 -0
- package/docs/public/deck.png +0 -0
- package/docs/public/layouts/side-title-12row.svg +27 -0
- package/docs/public/layouts/side-title-is-3.svg +7 -0
- package/docs/public/layouts/side-title-is-6.svg +7 -0
- package/docs/public/layouts/side-title-side.svg +13 -0
- package/docs/public/layouts/two-col-title-12row.svg +31 -0
- package/docs/public/layouts/two-col-title-align.svg +13 -0
- package/docs/public/layouts/two-col-title-is-4.svg +23 -0
- package/docs/public/layouts/two-col-title-is-6.svg +23 -0
- package/docs/public/layouts/two-col-title-titlepos.svg +31 -0
- package/docs/public/screenshots/1.png +0 -0
- package/docs/public/screenshots/10.png +0 -0
- package/docs/public/screenshots/11.png +0 -0
- package/docs/public/screenshots/12.png +0 -0
- package/docs/public/screenshots/13.png +0 -0
- package/docs/public/screenshots/14.png +0 -0
- package/docs/public/screenshots/15.png +0 -0
- package/docs/public/screenshots/16.png +0 -0
- package/docs/public/screenshots/17.png +0 -0
- package/docs/public/screenshots/18.png +0 -0
- package/docs/public/screenshots/19.png +0 -0
- package/docs/public/screenshots/2.png +0 -0
- package/docs/public/screenshots/20.png +0 -0
- package/docs/public/screenshots/21.png +0 -0
- package/docs/public/screenshots/22.png +0 -0
- package/docs/public/screenshots/23.png +0 -0
- package/docs/public/screenshots/24.png +0 -0
- package/docs/public/screenshots/25.png +0 -0
- package/docs/public/screenshots/26.png +0 -0
- package/docs/public/screenshots/27.png +0 -0
- package/docs/public/screenshots/28.png +0 -0
- package/docs/public/screenshots/29.png +0 -0
- package/docs/public/screenshots/3.png +0 -0
- package/docs/public/screenshots/30.png +0 -0
- package/docs/public/screenshots/31.png +0 -0
- package/docs/public/screenshots/32.png +0 -0
- package/docs/public/screenshots/33.png +0 -0
- package/docs/public/screenshots/34.png +0 -0
- package/docs/public/screenshots/35.png +0 -0
- package/docs/public/screenshots/36.png +0 -0
- package/docs/public/screenshots/37.png +0 -0
- package/docs/public/screenshots/38.png +0 -0
- package/docs/public/screenshots/4.png +0 -0
- package/docs/public/screenshots/5.png +0 -0
- package/docs/public/screenshots/6.png +0 -0
- package/docs/public/screenshots/7.png +0 -0
- package/docs/public/screenshots/8.png +0 -0
- package/docs/public/screenshots/9.png +0 -0
- package/example.md +1503 -0
- package/layoutHelper.ts +118 -0
- package/layouts/cover.vue +93 -0
- package/layouts/credits.vue +35 -0
- package/layouts/default.vue +18 -0
- package/layouts/four-cell.vue +210 -0
- package/layouts/full.vue +22 -0
- package/layouts/intro.vue +75 -0
- package/layouts/quote.vue +62 -0
- package/layouts/section.vue +84 -0
- package/layouts/side-title.vue +142 -0
- package/layouts/top-title-two-cols.vue +131 -0
- package/layouts/top-title.vue +63 -0
- package/layouts/two-cols-title.vue +176 -0
- package/layouts/two-cols.vue +141 -0
- package/package.json +54 -0
- package/public/images/photo.png +0 -0
- package/public/images/photo2.png +0 -0
- package/public/images/scatter1.png +0 -0
- package/public/images/scatter1.svg +20 -0
- package/screenshot.md +874 -0
- package/setup/main.ts +45 -0
- package/setup/shiki.ts +14 -0
- package/slide-bottom.vue +107 -0
- package/styles/base.css +240 -0
- package/styles/bubbles.css +4 -0
- package/styles/colors.css +12 -0
- package/styles/index.ts +11 -0
- package/styles/layouts.css +76 -0
- package/styles/stickynote.css +4 -0
- package/uno.config.ts +222 -0
- package/vite.config.ts +16 -0
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import { computed, useSlots } from 'vue'
|
|
3
|
+
import { compute_alignment, compute_column_size } from '../layoutHelper'
|
|
4
|
+
|
|
5
|
+
const slots = useSlots()
|
|
6
|
+
|
|
7
|
+
const props = defineProps({
|
|
8
|
+
columns: {
|
|
9
|
+
default: 'is-one-half',
|
|
10
|
+
},
|
|
11
|
+
align: {
|
|
12
|
+
default: 'lt-lt',
|
|
13
|
+
},
|
|
14
|
+
color: {
|
|
15
|
+
default: 'white',
|
|
16
|
+
},
|
|
17
|
+
})
|
|
18
|
+
|
|
19
|
+
const alignment = computed(() => {
|
|
20
|
+
const parts = props.align.split('-')
|
|
21
|
+
|
|
22
|
+
return { l: compute_alignment(parts[0]), r: compute_alignment(parts[1]) }
|
|
23
|
+
})
|
|
24
|
+
|
|
25
|
+
const colwidth = computed(() => compute_column_size(props.columns))
|
|
26
|
+
|
|
27
|
+
const colorscheme = computed(() => {
|
|
28
|
+
return `neversink-${props.color}-scheme`
|
|
29
|
+
})
|
|
30
|
+
</script>
|
|
31
|
+
|
|
32
|
+
<!-- default.vue -->
|
|
33
|
+
<template>
|
|
34
|
+
<div
|
|
35
|
+
v-if="colwidth == 'error' || alignment.l == 'error' || alignment.r == 'error'"
|
|
36
|
+
class="slidev-layout default error"
|
|
37
|
+
>
|
|
38
|
+
<span class="warning"><b>Error</b>: invalid layout params.</span>
|
|
39
|
+
<hr />
|
|
40
|
+
<p>
|
|
41
|
+
There are two parameters: <code>columns</code> and <code>align</code>. Currently:
|
|
42
|
+
<code>columns: {{ props.columns }}</code> and <code>align: {{ props.align }}</code
|
|
43
|
+
>.
|
|
44
|
+
</p>
|
|
45
|
+
<p>
|
|
46
|
+
Options for <code>columns</code> are divided into 12 column units. So with <code>columns: is-1-11</code> the left
|
|
47
|
+
column is 1/12 wide and the the right columns is 11/12 wide. The component admits a short had of only specifying
|
|
48
|
+
the left column (<code>columns: is-1</code> does the same thing). In addition there are short hands like
|
|
49
|
+
<code>columns: is-one-quarter</code> which resolves to <code>is-3-9</code>, etc...
|
|
50
|
+
</p>
|
|
51
|
+
<p>
|
|
52
|
+
Here are a bunch of examples:
|
|
53
|
+
<code>
|
|
54
|
+
is-1, is-2, is-3, is-4, is-5, is-6, is-7, is-8, is-9, is-10, is-11, is-1-11, is-2-10, is-3-9, is-4-8, is-5-7,
|
|
55
|
+
is-6-6, is-7-5, is-8-4, is-9-3, is-10-2, is-11-1, is-one-quarter, is-one-third, is-one-half, is-two-thirds,
|
|
56
|
+
is-three-quarters
|
|
57
|
+
</code>
|
|
58
|
+
</p>
|
|
59
|
+
<p>In addition you can specify "slots" of the page with <code>:: left ::</code>, and <code>:: right::</code>.</p>
|
|
60
|
+
<p>
|
|
61
|
+
The <code>align</code> parameter determines how the columns look. The notation is for example
|
|
62
|
+
<code>align: cm-cm</code>. The first part is for the left column, and the second part is for the right column. The
|
|
63
|
+
first letter is (<code>c</code> for center, <code>l</code> for left, <code>r</code> for right). The second letter
|
|
64
|
+
is vertical alignment (<code>t</code> for top, <code>m</code> for middle, <code>b</code> for bottom).
|
|
65
|
+
</p>
|
|
66
|
+
</div>
|
|
67
|
+
<div v-else class="slidev-layout default two-cols slidecolor" :class="colorscheme">
|
|
68
|
+
<div v-if="$slots.left" class="left-col" :class="alignment.l">
|
|
69
|
+
<slot name="left" />
|
|
70
|
+
</div>
|
|
71
|
+
|
|
72
|
+
<div v-if="$slots.right" class="right-col" :class="alignment.r">
|
|
73
|
+
<slot name="right" />
|
|
74
|
+
</div>
|
|
75
|
+
|
|
76
|
+
<div v-if="$slots.default" class="end-footer">
|
|
77
|
+
<slot name="default" />
|
|
78
|
+
</div>
|
|
79
|
+
</div>
|
|
80
|
+
</template>
|
|
81
|
+
|
|
82
|
+
<style scoped>
|
|
83
|
+
.two-cols {
|
|
84
|
+
display: grid;
|
|
85
|
+
grid-template-columns: repeat(12, 1fr); /* 12 columns */
|
|
86
|
+
grid-template-rows: 1fr; /* no footer and content */
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.end-footer {
|
|
90
|
+
grid-area: 4 / 1 / 5 / span 12; /* full width */
|
|
91
|
+
margin-bottom: 1rem;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.footer {
|
|
95
|
+
grid-area: 3 / 1 / 4 / span 12; /* full width */
|
|
96
|
+
margin-bottom: 1rem;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.two-cols-footer .left-col {
|
|
100
|
+
margin-right: 2rem;
|
|
101
|
+
display: flex;
|
|
102
|
+
flex-direction: column;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.two-cols-footer .right-col {
|
|
106
|
+
display: flex;
|
|
107
|
+
flex-direction: column;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.two-cols .left-col {
|
|
111
|
+
margin-right: 2rem;
|
|
112
|
+
display: flex;
|
|
113
|
+
flex-direction: column;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.two-cols .right-col {
|
|
117
|
+
display: flex;
|
|
118
|
+
flex-direction: column;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
/* 1-11 */
|
|
122
|
+
.two-cols-footer .left-col {
|
|
123
|
+
grid-area: 2 / 1 / 3 / span v-bind(colwidth.l);
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.two-cols-footer .right-col {
|
|
127
|
+
grid-area: 2 / v-bind(colwidth.l + 1) / 3 / span v-bind(colwidth.r);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.two-cols .left-col {
|
|
131
|
+
grid-area: 1 / 1 / 2 / span v-bind(colwidth.l);
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.two-cols .right-col {
|
|
135
|
+
grid-area: 1 / v-bind(colwidth.l + 1) / 2 / span v-bind(colwidth.r);
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.footnotes-sep {
|
|
139
|
+
visibility: hidden;
|
|
140
|
+
}
|
|
141
|
+
</style>
|
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "slidev-theme-neversink",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"author": "gureckis",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"slidev-theme",
|
|
8
|
+
"slidev"
|
|
9
|
+
],
|
|
10
|
+
"engines": {
|
|
11
|
+
"node": ">=18.0.0",
|
|
12
|
+
"slidev": ">=0.49.16"
|
|
13
|
+
},
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"@iconify-json/logos": "^1.1.42",
|
|
16
|
+
"@iconify-json/mdi": "^1.1.66",
|
|
17
|
+
"@iconify-json/twemoji": "^1.1.15",
|
|
18
|
+
"@iconify-json/uim": "^1.1.9",
|
|
19
|
+
"@iconify/json": "^2.2.221",
|
|
20
|
+
"@iconify/vue": "^4.1.2",
|
|
21
|
+
"@mdit/plugin-sub": "^0.12.0",
|
|
22
|
+
"@slidev/types": "^0.49.16",
|
|
23
|
+
"markdown-it-mark": "^4.0.0",
|
|
24
|
+
"playwright-chromium": "^1.45.0",
|
|
25
|
+
"qrcode.vue": "^3.4.1"
|
|
26
|
+
},
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "git+https://github.com/gureckis/slidev-theme-neversink.git"
|
|
30
|
+
},
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/gureckis/slidev-theme-neversink/issues"
|
|
33
|
+
},
|
|
34
|
+
"homepage": "https://github.com/gureckis/slidev-theme-neversink#readme",
|
|
35
|
+
"slidev": {
|
|
36
|
+
"colorSchema": "light",
|
|
37
|
+
"highlighter": "all"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@slidev/cli": "^0.49.15",
|
|
41
|
+
"pnpm": "^9.4.0",
|
|
42
|
+
"vitepress": "^1.2.3"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "slidev build example.md -o docs/public/example --base /slidev-theme-neversink/example/",
|
|
46
|
+
"dev": "slidev example.md",
|
|
47
|
+
"export": "slidev export example.md",
|
|
48
|
+
"screenshot": "slidev export screenshot.md --format png --output docs/public/screenshots/",
|
|
49
|
+
"screenshot:dev": "slidev screenshot.md",
|
|
50
|
+
"docs:dev": "vitepress dev docs",
|
|
51
|
+
"docs:build": "vitepress build docs",
|
|
52
|
+
"docs:preview": "vitepress preview docs"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<svg width="355" height="329" viewBox="0 0 355 329" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="355" height="329" fill="white"/>
|
|
3
|
+
<path d="M64.7395 26.2901C64.3474 25.9011 63.7143 25.9036 63.3253 26.2957L56.9862 32.6844C56.5972 33.0765 56.5997 33.7096 56.9918 34.0986C57.3838 34.4876 58.017 34.4852 58.406 34.0931L64.0407 28.4142L69.7196 34.0489C70.1116 34.4379 70.7448 34.4354 71.1338 34.0434C71.5228 33.6514 71.5203 33.0182 71.1283 32.6292L64.7395 26.2901ZM66 273.996L65.0351 26.9961L63.0352 27.0039L64 274.004L66 273.996Z" fill="black"/>
|
|
4
|
+
<path d="M311.704 274.694C312.096 274.305 312.099 273.672 311.71 273.28L305.371 266.891C304.982 266.499 304.349 266.496 303.957 266.885C303.565 267.274 303.563 267.907 303.952 268.299L309.586 273.979L303.907 279.613C303.514 280.002 303.512 280.635 303.901 281.027C304.29 281.419 304.923 281.422 305.315 281.033L311.704 274.694ZM63.996 274L310.996 274.984L311.004 272.984L64.004 272L63.996 274Z" fill="black"/>
|
|
5
|
+
<circle cx="105.5" cy="81.5002" r="3.5" fill="#040404"/>
|
|
6
|
+
<circle cx="172.5" cy="170.5" r="3.5" fill="#040404"/>
|
|
7
|
+
<circle cx="169.5" cy="118.5" r="3.5" fill="#040404"/>
|
|
8
|
+
<circle cx="121.5" cy="174.5" r="3.5" fill="#040404"/>
|
|
9
|
+
<circle cx="187.5" cy="218.5" r="3.5" fill="#040404"/>
|
|
10
|
+
<circle cx="225.5" cy="163.5" r="3.5" fill="#040404"/>
|
|
11
|
+
<circle cx="229.5" cy="222.5" r="3.5" fill="#040404"/>
|
|
12
|
+
<circle cx="270.5" cy="181.5" r="3.5" fill="#040404"/>
|
|
13
|
+
<circle cx="270.5" cy="230.5" r="3.5" fill="#040404"/>
|
|
14
|
+
<circle cx="125.5" cy="125.5" r="3.5" fill="#040404"/>
|
|
15
|
+
<circle cx="157.5" cy="234.5" r="3.5" fill="#040404"/>
|
|
16
|
+
<circle cx="225.5" cy="104.5" r="3.5" fill="#040404"/>
|
|
17
|
+
<circle cx="132.5" cy="88.5002" r="3.5" fill="#040404"/>
|
|
18
|
+
<path d="M132.493 302.783C132.459 302.439 132.313 302.172 132.054 301.982C131.795 301.791 131.445 301.696 131.001 301.696C130.7 301.696 130.446 301.739 130.239 301.824C130.031 301.906 129.872 302.021 129.761 302.169C129.653 302.317 129.599 302.485 129.599 302.672C129.594 302.828 129.626 302.965 129.697 303.081C129.771 303.198 129.872 303.298 130 303.384C130.128 303.466 130.276 303.539 130.443 303.601C130.611 303.661 130.79 303.712 130.98 303.754L131.764 303.942C132.145 304.027 132.494 304.141 132.812 304.283C133.131 304.425 133.406 304.6 133.639 304.807C133.872 305.014 134.053 305.259 134.18 305.54C134.311 305.821 134.378 306.144 134.381 306.507C134.378 307.041 134.241 307.504 133.972 307.896C133.705 308.286 133.318 308.588 132.812 308.804C132.31 309.017 131.703 309.124 130.993 309.124C130.288 309.124 129.675 309.016 129.152 308.8C128.632 308.584 128.226 308.264 127.933 307.841C127.643 307.415 127.491 306.888 127.477 306.26H129.263C129.283 306.553 129.366 306.797 129.514 306.993C129.665 307.186 129.865 307.333 130.115 307.432C130.368 307.529 130.653 307.577 130.972 307.577C131.284 307.577 131.555 307.531 131.786 307.44C132.018 307.35 132.199 307.223 132.327 307.061C132.455 306.899 132.518 306.713 132.518 306.503C132.518 306.307 132.46 306.142 132.344 306.009C132.23 305.875 132.063 305.762 131.841 305.668C131.622 305.574 131.354 305.489 131.036 305.412L130.085 305.173C129.349 304.994 128.768 304.715 128.342 304.334C127.916 303.953 127.705 303.44 127.707 302.796C127.705 302.267 127.845 301.806 128.129 301.411C128.416 301.016 128.81 300.708 129.31 300.486C129.81 300.264 130.378 300.154 131.014 300.154C131.662 300.154 132.227 300.264 132.71 300.486C133.196 300.708 133.574 301.016 133.844 301.411C134.114 301.806 134.253 302.263 134.261 302.783H132.493ZM138.545 309.128C137.883 309.128 137.311 308.987 136.828 308.706C136.348 308.422 135.977 308.027 135.716 307.521C135.454 307.013 135.324 306.423 135.324 305.753C135.324 305.077 135.454 304.486 135.716 303.98C135.977 303.472 136.348 303.077 136.828 302.796C137.311 302.512 137.883 302.369 138.545 302.369C139.207 302.369 139.778 302.512 140.258 302.796C140.741 303.077 141.113 303.472 141.375 303.98C141.636 304.486 141.767 305.077 141.767 305.753C141.767 306.423 141.636 307.013 141.375 307.521C141.113 308.027 140.741 308.422 140.258 308.706C139.778 308.987 139.207 309.128 138.545 309.128ZM138.554 307.722C138.855 307.722 139.106 307.637 139.308 307.466C139.51 307.293 139.662 307.057 139.764 306.759C139.869 306.46 139.922 306.121 139.922 305.74C139.922 305.36 139.869 305.02 139.764 304.722C139.662 304.423 139.51 304.188 139.308 304.014C139.106 303.841 138.855 303.754 138.554 303.754C138.25 303.754 137.994 303.841 137.787 304.014C137.582 304.188 137.427 304.423 137.322 304.722C137.22 305.02 137.169 305.36 137.169 305.74C137.169 306.121 137.22 306.46 137.322 306.759C137.427 307.057 137.582 307.293 137.787 307.466C137.994 307.637 138.25 307.722 138.554 307.722ZM142.947 309V302.455H144.677V303.61H144.754C144.89 303.226 145.118 302.923 145.436 302.702C145.754 302.48 146.135 302.369 146.578 302.369C147.027 302.369 147.409 302.482 147.724 302.706C148.039 302.928 148.25 303.229 148.355 303.61H148.423C148.556 303.235 148.798 302.935 149.147 302.71C149.5 302.483 149.916 302.369 150.396 302.369C151.007 302.369 151.502 302.564 151.883 302.953C152.267 303.34 152.458 303.888 152.458 304.598V309H150.647V304.956C150.647 304.592 150.551 304.32 150.358 304.138C150.164 303.956 149.923 303.865 149.633 303.865C149.304 303.865 149.047 303.97 148.862 304.181C148.677 304.388 148.585 304.662 148.585 305.003V309H146.825V304.918C146.825 304.597 146.733 304.341 146.548 304.151C146.366 303.96 146.126 303.865 145.828 303.865C145.626 303.865 145.444 303.916 145.282 304.019C145.123 304.118 144.997 304.259 144.903 304.44C144.809 304.619 144.762 304.83 144.762 305.071V309H142.947ZM156.875 309.128C156.202 309.128 155.623 308.992 155.137 308.719C154.654 308.443 154.282 308.054 154.02 307.551C153.759 307.046 153.628 306.448 153.628 305.757C153.628 305.084 153.759 304.493 154.02 303.985C154.282 303.476 154.65 303.08 155.124 302.796C155.601 302.512 156.161 302.369 156.803 302.369C157.235 302.369 157.637 302.439 158.009 302.578C158.384 302.715 158.711 302.921 158.989 303.196C159.27 303.472 159.489 303.818 159.645 304.236C159.801 304.651 159.88 305.137 159.88 305.693V306.192H154.353V305.067H158.171C158.171 304.806 158.114 304.574 158 304.372C157.887 304.171 157.729 304.013 157.527 303.899C157.328 303.783 157.097 303.725 156.833 303.725C156.557 303.725 156.313 303.789 156.1 303.916C155.89 304.041 155.725 304.21 155.605 304.423C155.486 304.634 155.425 304.868 155.422 305.127V306.196C155.422 306.52 155.482 306.8 155.601 307.036C155.723 307.271 155.895 307.453 156.117 307.581C156.338 307.709 156.601 307.773 156.905 307.773C157.107 307.773 157.292 307.744 157.459 307.688C157.627 307.631 157.77 307.546 157.89 307.432C158.009 307.318 158.1 307.179 158.162 307.014L159.841 307.125C159.756 307.529 159.581 307.881 159.317 308.182C159.056 308.48 158.718 308.713 158.303 308.881C157.891 309.046 157.415 309.128 156.875 309.128ZM164.546 302.455V303.818H160.604V302.455H164.546ZM161.499 300.887H163.314V306.989C163.314 307.156 163.34 307.287 163.391 307.381C163.442 307.472 163.513 307.536 163.604 307.573C163.698 307.61 163.806 307.628 163.928 307.628C164.013 307.628 164.098 307.621 164.184 307.607C164.269 307.59 164.334 307.577 164.38 307.568L164.665 308.919C164.574 308.948 164.446 308.98 164.282 309.017C164.117 309.057 163.917 309.081 163.681 309.09C163.243 309.107 162.86 309.048 162.53 308.915C162.203 308.781 161.949 308.574 161.767 308.293C161.586 308.012 161.496 307.656 161.499 307.227V300.887ZM167.684 305.216V309H165.869V300.273H167.633V303.61H167.71C167.858 303.223 168.096 302.921 168.426 302.702C168.755 302.48 169.169 302.369 169.666 302.369C170.12 302.369 170.517 302.469 170.855 302.668C171.196 302.864 171.46 303.146 171.647 303.516C171.838 303.882 171.931 304.321 171.929 304.833V309H170.113V305.156C170.116 304.753 170.014 304.439 169.806 304.215C169.602 303.99 169.315 303.878 168.946 303.878C168.699 303.878 168.48 303.931 168.289 304.036C168.102 304.141 167.954 304.294 167.846 304.496C167.741 304.695 167.687 304.935 167.684 305.216ZM173.357 309V302.455H175.173V309H173.357ZM174.269 301.611C173.999 301.611 173.768 301.521 173.575 301.342C173.384 301.161 173.289 300.943 173.289 300.69C173.289 300.44 173.384 300.226 173.575 300.047C173.768 299.865 173.999 299.774 174.269 299.774C174.539 299.774 174.769 299.865 174.96 300.047C175.153 300.226 175.249 300.44 175.249 300.69C175.249 300.943 175.153 301.161 174.96 301.342C174.769 301.521 174.539 301.611 174.269 301.611ZM178.442 305.216V309H176.627V302.455H178.357V303.61H178.434C178.578 303.229 178.821 302.928 179.162 302.706C179.503 302.482 179.917 302.369 180.402 302.369C180.857 302.369 181.253 302.469 181.591 302.668C181.929 302.867 182.192 303.151 182.38 303.52C182.567 303.887 182.661 304.324 182.661 304.833V309H180.846V305.156C180.848 304.756 180.746 304.443 180.539 304.219C180.331 303.992 180.046 303.878 179.682 303.878C179.438 303.878 179.222 303.931 179.034 304.036C178.85 304.141 178.705 304.294 178.6 304.496C178.498 304.695 178.445 304.935 178.442 305.216ZM187.04 311.591C186.452 311.591 185.948 311.51 185.528 311.348C185.11 311.189 184.778 310.972 184.531 310.696C184.283 310.421 184.123 310.111 184.049 309.767L185.728 309.541C185.779 309.672 185.86 309.794 185.971 309.908C186.082 310.021 186.228 310.112 186.41 310.181C186.594 310.252 186.819 310.287 187.083 310.287C187.478 310.287 187.803 310.19 188.059 309.997C188.317 309.807 188.447 309.487 188.447 309.039V307.841H188.37C188.29 308.023 188.171 308.195 188.012 308.357C187.853 308.519 187.648 308.651 187.398 308.753C187.148 308.855 186.85 308.906 186.504 308.906C186.012 308.906 185.565 308.793 185.161 308.565C184.761 308.335 184.441 307.985 184.202 307.513C183.967 307.039 183.849 306.439 183.849 305.715C183.849 304.973 183.969 304.354 184.211 303.857C184.452 303.36 184.773 302.987 185.174 302.74C185.577 302.493 186.019 302.369 186.499 302.369C186.866 302.369 187.173 302.432 187.42 302.557C187.667 302.679 187.866 302.833 188.016 303.017C188.17 303.199 188.288 303.378 188.37 303.554H188.438V302.455H190.241V309.064C190.241 309.621 190.104 310.087 189.832 310.462C189.559 310.837 189.181 311.118 188.698 311.306C188.218 311.496 187.665 311.591 187.04 311.591ZM187.079 307.543C187.371 307.543 187.619 307.47 187.82 307.325C188.025 307.178 188.181 306.967 188.289 306.695C188.4 306.419 188.455 306.09 188.455 305.706C188.455 305.323 188.401 304.99 188.293 304.709C188.185 304.425 188.029 304.205 187.825 304.048C187.62 303.892 187.371 303.814 187.079 303.814C186.781 303.814 186.529 303.895 186.325 304.057C186.12 304.216 185.965 304.438 185.86 304.722C185.755 305.006 185.702 305.334 185.702 305.706C185.702 306.084 185.755 306.411 185.86 306.686C185.968 306.959 186.123 307.171 186.325 307.321C186.529 307.469 186.781 307.543 187.079 307.543ZM197.412 311.591C196.824 311.591 196.319 311.51 195.899 311.348C195.481 311.189 195.149 310.972 194.902 310.696C194.654 310.421 194.494 310.111 194.42 309.767L196.099 309.541C196.15 309.672 196.231 309.794 196.342 309.908C196.453 310.021 196.599 310.112 196.781 310.181C196.966 310.252 197.19 310.287 197.454 310.287C197.849 310.287 198.174 310.19 198.43 309.997C198.689 309.807 198.818 309.487 198.818 309.039V307.841H198.741C198.662 308.023 198.542 308.195 198.383 308.357C198.224 308.519 198.02 308.651 197.77 308.753C197.52 308.855 197.221 308.906 196.875 308.906C196.383 308.906 195.936 308.793 195.532 308.565C195.132 308.335 194.812 307.985 194.574 307.513C194.338 307.039 194.22 306.439 194.22 305.715C194.22 304.973 194.341 304.354 194.582 303.857C194.824 303.36 195.145 302.987 195.545 302.74C195.949 302.493 196.39 302.369 196.87 302.369C197.237 302.369 197.544 302.432 197.791 302.557C198.038 302.679 198.237 302.833 198.387 303.017C198.541 303.199 198.659 303.378 198.741 303.554H198.809V302.455H200.612V309.064C200.612 309.621 200.475 310.087 200.203 310.462C199.93 310.837 199.552 311.118 199.069 311.306C198.589 311.496 198.037 311.591 197.412 311.591ZM197.45 307.543C197.743 307.543 197.99 307.47 198.191 307.325C198.396 307.178 198.552 306.967 198.66 306.695C198.771 306.419 198.826 306.09 198.826 305.706C198.826 305.323 198.772 304.99 198.664 304.709C198.556 304.425 198.4 304.205 198.196 304.048C197.991 303.892 197.743 303.814 197.45 303.814C197.152 303.814 196.9 303.895 196.696 304.057C196.491 304.216 196.336 304.438 196.231 304.722C196.126 305.006 196.074 305.334 196.074 305.706C196.074 306.084 196.126 306.411 196.231 306.686C196.339 306.959 196.494 307.171 196.696 307.321C196.9 307.469 197.152 307.543 197.45 307.543ZM205.014 309.128C204.352 309.128 203.779 308.987 203.297 308.706C202.816 308.422 202.446 308.027 202.184 307.521C201.923 307.013 201.792 306.423 201.792 305.753C201.792 305.077 201.923 304.486 202.184 303.98C202.446 303.472 202.816 303.077 203.297 302.796C203.779 302.512 204.352 302.369 205.014 302.369C205.676 302.369 206.247 302.512 206.727 302.796C207.21 303.077 207.582 303.472 207.843 303.98C208.105 304.486 208.235 305.077 208.235 305.753C208.235 306.423 208.105 307.013 207.843 307.521C207.582 308.027 207.21 308.422 206.727 308.706C206.247 308.987 205.676 309.128 205.014 309.128ZM205.022 307.722C205.324 307.722 205.575 307.637 205.777 307.466C205.978 307.293 206.13 307.057 206.233 306.759C206.338 306.46 206.39 306.121 206.39 305.74C206.39 305.36 206.338 305.02 206.233 304.722C206.13 304.423 205.978 304.188 205.777 304.014C205.575 303.841 205.324 303.754 205.022 303.754C204.718 303.754 204.463 303.841 204.255 304.014C204.051 304.188 203.896 304.423 203.791 304.722C203.689 305.02 203.637 305.36 203.637 305.74C203.637 306.121 203.689 306.46 203.791 306.759C203.896 307.057 204.051 307.293 204.255 307.466C204.463 307.637 204.718 307.722 205.022 307.722ZM212.373 309.128C211.711 309.128 211.139 308.987 210.656 308.706C210.176 308.422 209.805 308.027 209.544 307.521C209.282 307.013 209.152 306.423 209.152 305.753C209.152 305.077 209.282 304.486 209.544 303.98C209.805 303.472 210.176 303.077 210.656 302.796C211.139 302.512 211.711 302.369 212.373 302.369C213.035 302.369 213.606 302.512 214.086 302.796C214.569 303.077 214.941 303.472 215.203 303.98C215.464 304.486 215.595 305.077 215.595 305.753C215.595 306.423 215.464 307.013 215.203 307.521C214.941 308.027 214.569 308.422 214.086 308.706C213.606 308.987 213.035 309.128 212.373 309.128ZM212.382 307.722C212.683 307.722 212.934 307.637 213.136 307.466C213.338 307.293 213.49 307.057 213.592 306.759C213.697 306.46 213.75 306.121 213.75 305.74C213.75 305.36 213.697 305.02 213.592 304.722C213.49 304.423 213.338 304.188 213.136 304.014C212.934 303.841 212.683 303.754 212.382 303.754C212.078 303.754 211.822 303.841 211.615 304.014C211.41 304.188 211.255 304.423 211.15 304.722C211.048 305.02 210.997 305.36 210.997 305.74C210.997 306.121 211.048 306.46 211.15 306.759C211.255 307.057 211.41 307.293 211.615 307.466C211.822 307.637 212.078 307.722 212.382 307.722ZM219.187 309.107C218.69 309.107 218.24 308.979 217.836 308.723C217.436 308.465 217.118 308.085 216.882 307.585C216.649 307.083 216.532 306.466 216.532 305.736C216.532 304.986 216.653 304.362 216.895 303.865C217.136 303.365 217.457 302.992 217.858 302.744C218.261 302.494 218.703 302.369 219.183 302.369C219.549 302.369 219.855 302.432 220.099 302.557C220.346 302.679 220.545 302.833 220.696 303.017C220.849 303.199 220.966 303.378 221.045 303.554H221.1V300.273H222.912V309H221.122V307.952H221.045C220.96 308.134 220.839 308.314 220.683 308.493C220.529 308.669 220.329 308.815 220.082 308.932C219.838 309.048 219.539 309.107 219.187 309.107ZM219.762 307.662C220.055 307.662 220.302 307.583 220.504 307.423C220.708 307.262 220.865 307.036 220.973 306.746C221.083 306.456 221.139 306.117 221.139 305.727C221.139 305.338 221.085 305 220.977 304.713C220.869 304.426 220.713 304.205 220.508 304.048C220.304 303.892 220.055 303.814 219.762 303.814C219.464 303.814 219.213 303.895 219.008 304.057C218.804 304.219 218.649 304.443 218.544 304.73C218.439 305.017 218.386 305.35 218.386 305.727C218.386 306.108 218.439 306.445 218.544 306.737C218.652 307.027 218.806 307.254 219.008 307.419C219.213 307.581 219.464 307.662 219.762 307.662Z" fill="black"/>
|
|
19
|
+
<path d="M28.7827 201.507C28.4389 201.541 28.1719 201.688 27.9815 201.946C27.7912 202.205 27.696 202.556 27.696 202.999C27.696 203.3 27.7386 203.554 27.8239 203.761C27.9062 203.969 28.0213 204.128 28.169 204.239C28.3168 204.347 28.4844 204.401 28.6719 204.401C28.8281 204.406 28.9645 204.374 29.081 204.303C29.1974 204.229 29.2983 204.128 29.3835 204C29.4659 203.872 29.5384 203.725 29.6009 203.557C29.6605 203.389 29.7116 203.21 29.7543 203.02L29.9418 202.236C30.027 201.855 30.1406 201.506 30.2827 201.188C30.4247 200.869 30.5994 200.594 30.8068 200.361C31.0142 200.128 31.2585 199.948 31.5398 199.82C31.821 199.689 32.1435 199.622 32.5071 199.619C33.0412 199.622 33.5043 199.759 33.8963 200.029C34.2855 200.296 34.5881 200.682 34.804 201.188C35.017 201.69 35.1236 202.297 35.1236 203.007C35.1236 203.712 35.0156 204.325 34.7997 204.848C34.5838 205.368 34.2642 205.774 33.8409 206.067C33.4148 206.357 32.8878 206.509 32.2599 206.523V204.737C32.5526 204.717 32.7969 204.634 32.9929 204.486C33.1861 204.335 33.3324 204.135 33.4318 203.885C33.5284 203.632 33.5767 203.347 33.5767 203.029C33.5767 202.716 33.5312 202.445 33.4403 202.215C33.3494 201.982 33.223 201.801 33.0611 201.673C32.8991 201.546 32.7131 201.482 32.5028 201.482C32.3068 201.482 32.142 201.54 32.0085 201.656C31.875 201.77 31.7614 201.938 31.6676 202.159C31.5739 202.378 31.4886 202.646 31.4119 202.965L31.1733 203.915C30.9943 204.651 30.7145 205.232 30.3338 205.658C29.9531 206.084 29.4403 206.296 28.7955 206.293C28.267 206.296 27.8054 206.155 27.4105 205.871C27.0156 205.584 26.7074 205.19 26.4858 204.69C26.2642 204.19 26.1534 203.622 26.1534 202.986C26.1534 202.338 26.2642 201.773 26.4858 201.29C26.7074 200.804 27.0156 200.426 27.4105 200.156C27.8054 199.886 28.2628 199.747 28.7827 199.739V201.507ZM35.1278 195.455C35.1278 196.117 34.9872 196.689 34.706 197.172C34.4219 197.652 34.027 198.023 33.5213 198.285C33.0128 198.546 32.4233 198.677 31.7528 198.677C31.0767 198.677 30.4858 198.546 29.9801 198.285C29.4716 198.023 29.0767 197.652 28.7955 197.172C28.5114 196.689 28.3693 196.117 28.3693 195.455C28.3693 194.793 28.5114 194.222 28.7955 193.742C29.0767 193.259 29.4716 192.887 29.9801 192.625C30.4858 192.364 31.0767 192.233 31.7528 192.233C32.4233 192.233 33.0128 192.364 33.5213 192.625C34.027 192.887 34.4219 193.259 34.706 193.742C34.9872 194.222 35.1278 194.793 35.1278 195.455ZM33.7216 195.446C33.7216 195.145 33.6364 194.894 33.4659 194.692C33.2926 194.491 33.0568 194.339 32.7585 194.236C32.4602 194.131 32.1207 194.079 31.7401 194.079C31.3594 194.079 31.0199 194.131 30.7216 194.236C30.4233 194.339 30.1875 194.491 30.0142 194.692C29.8409 194.894 29.7543 195.145 29.7543 195.446C29.7543 195.75 29.8409 196.006 30.0142 196.214C30.1875 196.418 30.4233 196.573 30.7216 196.678C31.0199 196.78 31.3594 196.831 31.7401 196.831C32.1207 196.831 32.4602 196.78 32.7585 196.678C33.0568 196.573 33.2926 196.418 33.4659 196.214C33.6364 196.006 33.7216 195.75 33.7216 195.446ZM35 191.053H28.4545V189.323H29.6094V189.246C29.2259 189.11 28.9233 188.883 28.7017 188.564C28.4801 188.246 28.3693 187.866 28.3693 187.422C28.3693 186.973 28.4815 186.591 28.706 186.276C28.9276 185.961 29.2287 185.75 29.6094 185.645V185.577C29.2344 185.444 28.9347 185.202 28.7102 184.853C28.483 184.5 28.3693 184.084 28.3693 183.604C28.3693 182.993 28.5639 182.498 28.9531 182.117C29.3395 181.733 29.8878 181.542 30.598 181.542H35V183.353H30.956C30.5923 183.353 30.3196 183.449 30.1378 183.643C29.956 183.836 29.8651 184.077 29.8651 184.367C29.8651 184.696 29.9702 184.954 30.1804 185.138C30.3878 185.323 30.6619 185.415 31.0028 185.415H35V187.175H30.9176C30.5966 187.175 30.3409 187.268 30.1506 187.452C29.9602 187.634 29.8651 187.874 29.8651 188.172C29.8651 188.374 29.9162 188.556 30.0185 188.718C30.1179 188.877 30.2585 189.003 30.4403 189.097C30.6193 189.191 30.8295 189.238 31.071 189.238H35V191.053ZM35.1278 177.125C35.1278 177.798 34.9915 178.378 34.7188 178.863C34.4432 179.346 34.054 179.719 33.5511 179.98C33.0455 180.241 32.4474 180.372 31.7571 180.372C31.0838 180.372 30.4929 180.241 29.9844 179.98C29.4759 179.719 29.0795 179.351 28.7955 178.876C28.5114 178.399 28.3693 177.839 28.3693 177.197C28.3693 176.765 28.4389 176.363 28.5781 175.991C28.7145 175.616 28.9205 175.29 29.196 175.011C29.4716 174.73 29.8182 174.511 30.2358 174.355C30.6506 174.199 31.1364 174.121 31.6932 174.121H32.1918V179.647H31.0668V175.829C30.8054 175.829 30.5739 175.886 30.3722 176C30.1705 176.113 30.0128 176.271 29.8991 176.473C29.7827 176.672 29.7244 176.903 29.7244 177.167C29.7244 177.443 29.7884 177.687 29.9162 177.9C30.0412 178.111 30.2102 178.275 30.4233 178.395C30.6335 178.514 30.8679 178.575 31.1264 178.578H32.196C32.5199 178.578 32.7997 178.518 33.0355 178.399C33.2713 178.277 33.4531 178.105 33.581 177.883C33.7088 177.662 33.7727 177.399 33.7727 177.095C33.7727 176.893 33.7443 176.709 33.6875 176.541C33.6307 176.373 33.5455 176.23 33.4318 176.111C33.3182 175.991 33.179 175.9 33.0142 175.838L33.125 174.159C33.5284 174.244 33.8807 174.419 34.1818 174.683C34.4801 174.944 34.7131 175.282 34.8807 175.697C35.0455 176.109 35.1278 176.585 35.1278 177.125ZM28.4545 169.454H29.8182V173.396H28.4545V169.454ZM26.8864 172.501V170.686H32.9886C33.1562 170.686 33.2869 170.66 33.3807 170.609C33.4716 170.558 33.5355 170.487 33.5724 170.396C33.6094 170.302 33.6278 170.194 33.6278 170.072C33.6278 169.987 33.6207 169.902 33.6065 169.817C33.5895 169.731 33.5767 169.666 33.5682 169.621L34.919 169.335C34.9474 169.426 34.9801 169.554 35.017 169.719C35.0568 169.883 35.081 170.084 35.0895 170.319C35.1065 170.757 35.0483 171.14 34.9148 171.47C34.7812 171.797 34.5739 172.051 34.2926 172.233C34.0114 172.415 33.6562 172.504 33.2273 172.501H26.8864ZM31.2159 166.316H35V168.131H26.2727V166.367H29.6094V166.29C29.223 166.143 28.9205 165.904 28.7017 165.574C28.4801 165.245 28.3693 164.831 28.3693 164.334C28.3693 163.88 28.4688 163.483 28.6676 163.145C28.8636 162.804 29.1463 162.54 29.5156 162.353C29.8821 162.162 30.321 162.069 30.8324 162.071H35V163.887H31.1562C30.7528 163.884 30.4389 163.986 30.2145 164.194C29.9901 164.398 29.8778 164.685 29.8778 165.054C29.8778 165.302 29.9304 165.52 30.0355 165.711C30.1406 165.898 30.294 166.046 30.4957 166.154C30.6946 166.259 30.9347 166.313 31.2159 166.316ZM35 160.643H28.4545V158.828H35V160.643ZM27.6108 159.731C27.6108 160.001 27.5213 160.232 27.3423 160.426C27.1605 160.616 26.9432 160.711 26.6903 160.711C26.4403 160.711 26.2259 160.616 26.0469 160.426C25.8651 160.232 25.7741 160.001 25.7741 159.731C25.7741 159.461 25.8651 159.231 26.0469 159.041C26.2259 158.847 26.4403 158.751 26.6903 158.751C26.9432 158.751 27.1605 158.847 27.3423 159.041C27.5213 159.231 27.6108 159.461 27.6108 159.731ZM31.2159 155.558H35V157.373H28.4545V155.643H29.6094V155.567C29.2287 155.422 28.9276 155.179 28.706 154.838C28.4815 154.497 28.3693 154.084 28.3693 153.598C28.3693 153.143 28.4688 152.747 28.6676 152.409C28.8665 152.071 29.1506 151.808 29.5199 151.621C29.8864 151.433 30.3239 151.339 30.8324 151.339H35V153.155H31.1562C30.7557 153.152 30.4432 153.254 30.2188 153.461C29.9915 153.669 29.8778 153.954 29.8778 154.318C29.8778 154.562 29.9304 154.778 30.0355 154.966C30.1406 155.15 30.294 155.295 30.4957 155.4C30.6946 155.503 30.9347 155.555 31.2159 155.558ZM37.5909 146.96C37.5909 147.548 37.5099 148.052 37.348 148.472C37.1889 148.89 36.9716 149.222 36.696 149.47C36.4205 149.717 36.1108 149.877 35.767 149.951L35.5412 148.272C35.6719 148.221 35.794 148.14 35.9077 148.029C36.0213 147.918 36.1122 147.772 36.1804 147.59C36.2514 147.406 36.2869 147.181 36.2869 146.917C36.2869 146.522 36.1903 146.197 35.9972 145.941C35.8068 145.683 35.4872 145.553 35.0384 145.553H33.8409V145.63C34.0227 145.71 34.1946 145.829 34.3565 145.988C34.5185 146.147 34.6506 146.352 34.7528 146.602C34.8551 146.852 34.9062 147.15 34.9062 147.497C34.9062 147.988 34.7926 148.435 34.5653 148.839C34.3352 149.239 33.9844 149.559 33.5128 149.798C33.0384 150.034 32.4389 150.151 31.7145 150.151C30.973 150.151 30.3537 150.031 29.8565 149.789C29.3594 149.548 28.9872 149.227 28.7401 148.826C28.4929 148.423 28.3693 147.981 28.3693 147.501C28.3693 147.134 28.4318 146.828 28.5568 146.58C28.679 146.333 28.8324 146.134 29.017 145.984C29.1989 145.83 29.3778 145.712 29.554 145.63V145.562H28.4545V143.759H35.0639C35.6207 143.759 36.0866 143.896 36.4616 144.168C36.8366 144.441 37.1179 144.819 37.3054 145.302C37.4957 145.782 37.5909 146.335 37.5909 146.96ZM33.5426 146.921C33.5426 146.629 33.4702 146.382 33.3253 146.18C33.1776 145.975 32.9673 145.819 32.6946 145.711C32.419 145.6 32.0895 145.545 31.706 145.545C31.3224 145.545 30.9901 145.599 30.7088 145.707C30.4247 145.815 30.2045 145.971 30.0483 146.176C29.892 146.38 29.8139 146.629 29.8139 146.921C29.8139 147.22 29.8949 147.471 30.0568 147.676C30.2159 147.88 30.4375 148.035 30.7216 148.14C31.0057 148.245 31.3338 148.298 31.706 148.298C32.0838 148.298 32.4105 148.245 32.6861 148.14C32.9588 148.032 33.1705 147.877 33.321 147.676C33.4687 147.471 33.5426 147.22 33.5426 146.921ZM37.5909 136.589C37.5909 137.177 37.5099 137.681 37.348 138.101C37.1889 138.519 36.9716 138.851 36.696 139.098C36.4205 139.346 36.1108 139.506 35.767 139.58L35.5412 137.901C35.6719 137.85 35.794 137.769 35.9077 137.658C36.0213 137.547 36.1122 137.401 36.1804 137.219C36.2514 137.035 36.2869 136.81 36.2869 136.546C36.2869 136.151 36.1903 135.826 35.9972 135.57C35.8068 135.312 35.4872 135.182 35.0384 135.182H33.8409V135.259C34.0227 135.339 34.1946 135.458 34.3565 135.617C34.5185 135.776 34.6506 135.981 34.7528 136.231C34.8551 136.481 34.9062 136.779 34.9062 137.125C34.9062 137.617 34.7926 138.064 34.5653 138.468C34.3352 138.868 33.9844 139.188 33.5128 139.427C33.0384 139.662 32.4389 139.78 31.7145 139.78C30.973 139.78 30.3537 139.66 29.8565 139.418C29.3594 139.177 28.9872 138.856 28.7401 138.455C28.4929 138.052 28.3693 137.61 28.3693 137.13C28.3693 136.763 28.4318 136.456 28.5568 136.209C28.679 135.962 28.8324 135.763 29.017 135.613C29.1989 135.459 29.3778 135.341 29.554 135.259V135.191H28.4545V133.388H35.0639C35.6207 133.388 36.0866 133.525 36.4616 133.797C36.8366 134.07 37.1179 134.448 37.3054 134.931C37.4957 135.411 37.5909 135.964 37.5909 136.589ZM33.5426 136.55C33.5426 136.258 33.4702 136.01 33.3253 135.809C33.1776 135.604 32.9673 135.448 32.6946 135.34C32.419 135.229 32.0895 135.174 31.706 135.174C31.3224 135.174 30.9901 135.228 30.7088 135.336C30.4247 135.444 30.2045 135.6 30.0483 135.804C29.892 136.009 29.8139 136.258 29.8139 136.55C29.8139 136.848 29.8949 137.1 30.0568 137.304C30.2159 137.509 30.4375 137.664 30.7216 137.769C31.0057 137.874 31.3338 137.927 31.706 137.927C32.0838 137.927 32.4105 137.874 32.6861 137.769C32.9588 137.661 33.1705 137.506 33.321 137.304C33.4687 137.1 33.5426 136.848 33.5426 136.55ZM35.1278 128.986C35.1278 129.648 34.9872 130.221 34.706 130.704C34.4219 131.184 34.027 131.554 33.5213 131.816C33.0128 132.077 32.4233 132.208 31.7528 132.208C31.0767 132.208 30.4858 132.077 29.9801 131.816C29.4716 131.554 29.0767 131.184 28.7955 130.704C28.5114 130.221 28.3693 129.648 28.3693 128.986C28.3693 128.324 28.5114 127.753 28.7955 127.273C29.0767 126.79 29.4716 126.418 29.9801 126.157C30.4858 125.895 31.0767 125.765 31.7528 125.765C32.4233 125.765 33.0128 125.895 33.5213 126.157C34.027 126.418 34.4219 126.79 34.706 127.273C34.9872 127.753 35.1278 128.324 35.1278 128.986ZM33.7216 128.978C33.7216 128.677 33.6364 128.425 33.4659 128.223C33.2926 128.022 33.0568 127.87 32.7585 127.768C32.4602 127.662 32.1207 127.61 31.7401 127.61C31.3594 127.61 31.0199 127.662 30.7216 127.768C30.4233 127.87 30.1875 128.022 30.0142 128.223C29.8409 128.425 29.7543 128.677 29.7543 128.978C29.7543 129.282 29.8409 129.537 30.0142 129.745C30.1875 129.949 30.4233 130.104 30.7216 130.209C31.0199 130.312 31.3594 130.363 31.7401 130.363C32.1207 130.363 32.4602 130.312 32.7585 130.209C33.0568 130.104 33.2926 129.949 33.4659 129.745C33.6364 129.537 33.7216 129.282 33.7216 128.978ZM35.1278 121.627C35.1278 122.289 34.9872 122.861 34.706 123.344C34.4219 123.824 34.027 124.195 33.5213 124.456C33.0128 124.718 32.4233 124.848 31.7528 124.848C31.0767 124.848 30.4858 124.718 29.9801 124.456C29.4716 124.195 29.0767 123.824 28.7955 123.344C28.5114 122.861 28.3693 122.289 28.3693 121.627C28.3693 120.965 28.5114 120.394 28.7955 119.914C29.0767 119.431 29.4716 119.059 29.9801 118.797C30.4858 118.536 31.0767 118.405 31.7528 118.405C32.4233 118.405 33.0128 118.536 33.5213 118.797C34.027 119.059 34.4219 119.431 34.706 119.914C34.9872 120.394 35.1278 120.965 35.1278 121.627ZM33.7216 121.618C33.7216 121.317 33.6364 121.066 33.4659 120.864C33.2926 120.662 33.0568 120.51 32.7585 120.408C32.4602 120.303 32.1207 120.25 31.7401 120.25C31.3594 120.25 31.0199 120.303 30.7216 120.408C30.4233 120.51 30.1875 120.662 30.0142 120.864C29.8409 121.066 29.7543 121.317 29.7543 121.618C29.7543 121.922 29.8409 122.178 30.0142 122.385C30.1875 122.59 30.4233 122.745 30.7216 122.85C31.0199 122.952 31.3594 123.003 31.7401 123.003C32.1207 123.003 32.4602 122.952 32.7585 122.85C33.0568 122.745 33.2926 122.59 33.4659 122.385C33.6364 122.178 33.7216 121.922 33.7216 121.618ZM35.1065 114.813C35.1065 115.31 34.9787 115.76 34.723 116.164C34.4645 116.564 34.0852 116.883 33.5852 117.118C33.0824 117.351 32.4659 117.468 31.7358 117.468C30.9858 117.468 30.3622 117.347 29.8651 117.106C29.3651 116.864 28.9915 116.543 28.7443 116.143C28.4943 115.739 28.3693 115.297 28.3693 114.817C28.3693 114.451 28.4318 114.145 28.5568 113.901C28.679 113.654 28.8324 113.455 29.017 113.304C29.1989 113.151 29.3778 113.035 29.554 112.955V112.9H26.2727V111.089H35V112.878H33.9517V112.955C34.1335 113.04 34.3139 113.161 34.4929 113.317C34.669 113.471 34.8153 113.671 34.9318 113.918C35.0483 114.162 35.1065 114.461 35.1065 114.813ZM33.6619 114.238C33.6619 113.945 33.5824 113.698 33.4233 113.496C33.2614 113.292 33.0355 113.135 32.7457 113.027C32.456 112.917 32.1165 112.861 31.7273 112.861C31.3381 112.861 31 112.915 30.7131 113.023C30.4261 113.131 30.2045 113.287 30.0483 113.492C29.892 113.696 29.8139 113.945 29.8139 114.238C29.8139 114.536 29.8949 114.787 30.0568 114.992C30.2187 115.196 30.4432 115.351 30.7301 115.456C31.017 115.562 31.3494 115.614 31.7273 115.614C32.108 115.614 32.4446 115.562 32.7372 115.456C33.027 115.348 33.2543 115.194 33.419 114.992C33.581 114.787 33.6619 114.536 33.6619 114.238Z" fill="black"/>
|
|
20
|
+
</svg>
|