DevSculptor 1.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.
Files changed (86) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +711 -0
  4. data/_config.yml +142 -0
  5. data/_data/blogroll.yml +34 -0
  6. data/_data/locales.yml +280 -0
  7. data/_data/page-list.yml +28 -0
  8. data/_data/projects.yml +50 -0
  9. data/_data/social.yml +149 -0
  10. data/_includes/about.html +19 -0
  11. data/_includes/anchor_headings.html +174 -0
  12. data/_includes/archives.html +28 -0
  13. data/_includes/categories.html +21 -0
  14. data/_includes/comments.html +35 -0
  15. data/_includes/footer/code-block-lang.html +12 -0
  16. data/_includes/footer/color_theme_toggler.html +92 -0
  17. data/_includes/footer/copyright.html +14 -0
  18. data/_includes/footer/create-toc.html +51 -0
  19. data/_includes/footer/page_pagination.html +24 -0
  20. data/_includes/footer/reading-time.html +11 -0
  21. data/_includes/footer/scripts.html +10 -0
  22. data/_includes/footer/toggle-toc.html +12 -0
  23. data/_includes/footer.html +50 -0
  24. data/_includes/head/ban.html +7 -0
  25. data/_includes/head/google_analytics.html +9 -0
  26. data/_includes/head/icons.html +5 -0
  27. data/_includes/head/scripts.html +6 -0
  28. data/_includes/head/stylesheets.html +2 -0
  29. data/_includes/head.html +20 -0
  30. data/_includes/home/post_card.html +56 -0
  31. data/_includes/home.html +28 -0
  32. data/_includes/navigation/color-theme-switcher.html +50 -0
  33. data/_includes/navigation/svg.html +20 -0
  34. data/_includes/navigation.html +48 -0
  35. data/_includes/page_pagination.html +29 -0
  36. data/_includes/projects/project-card.html +73 -0
  37. data/_includes/projects.html +8 -0
  38. data/_includes/search/algolia.html +165 -0
  39. data/_includes/sidebar/aboutme.html +61 -0
  40. data/_includes/sidebar/blogroll.html +7 -0
  41. data/_includes/sidebar.html +6 -0
  42. data/_includes/tags.html +21 -0
  43. data/_includes/toc.html +7 -0
  44. data/_layouts/default.html +21 -0
  45. data/_layouts/home.html +2 -0
  46. data/_layouts/page.html +11 -0
  47. data/_layouts/plain.html +14 -0
  48. data/_layouts/post.html +78 -0
  49. data/_sass/_base.scss +250 -0
  50. data/_sass/_navigation.scss +24 -0
  51. data/_sass/_syntax-highlighting.scss +160 -0
  52. data/assets/JustinSunday_Resume_2023-09-14.pdf +0 -0
  53. data/assets/branding/branding-colors-and-fonts/BrandBoard.pdf +0 -0
  54. data/assets/branding/branding-colors-and-fonts/fonts/Fira Mono Bold.ttf +0 -0
  55. data/assets/branding/logo/eps-pdf-png-formats.zip +0 -0
  56. data/assets/branding/logo/svg/logo-black.svg +1 -0
  57. data/assets/branding/logo/svg/logo-color.svg +1 -0
  58. data/assets/branding/logo/svg/logo-no-background-black-letters.svg +1 -0
  59. data/assets/branding/logo/svg/logo-no-background.svg +1 -0
  60. data/assets/branding/logo/svg/logo-white.svg +1 -0
  61. data/assets/fonts/CascadiaCode-WebFont/caskaydia_cove_nerd_font_complete-demo.html +517 -0
  62. data/assets/fonts/CascadiaCode-WebFont/caskaydia_cove_nerd_font_complete-webfont.woff +0 -0
  63. data/assets/fonts/CascadiaCode-WebFont/caskaydia_cove_nerd_font_complete-webfont.woff2 +0 -0
  64. data/assets/fonts/CascadiaCode-WebFont/generator_config.txt +5 -0
  65. data/assets/fonts/CascadiaCode-WebFont/specimen_files/grid_12-825-55-15.css +129 -0
  66. data/assets/fonts/CascadiaCode-WebFont/specimen_files/specimen_stylesheet.css +396 -0
  67. data/assets/fonts/CascadiaCode-WebFont/stylesheet.css +12 -0
  68. data/assets/images/projects/desvsculptor/20230926-localhost-iphone14promax-homepage-fotor-bg-remover-20231002163813.png +0 -0
  69. data/assets/images/projects/desvsculptor/20230926-localhost-iphone14promax-homepage.PNG +0 -0
  70. data/assets/images/projects/desvsculptor/home-page-example.png +0 -0
  71. data/assets/images/projects/dummy_project/ilya-pavlov-OqtafYT5kTw-unsplash.jpg +0 -0
  72. data/assets/images/site-shots/blogroll-20231010.png +0 -0
  73. data/assets/images/site-shots/blogroll-to-datayml-20201010.png +0 -0
  74. data/assets/images/topbutton.png +0 -0
  75. data/assets/js/jquery-1.9.1.min.js +5 -0
  76. data/assets/js/totop.js +26 -0
  77. data/assets/scss/main.scss +120 -0
  78. data/pages/about.md +8 -0
  79. data/pages/archives.md +7 -0
  80. data/pages/categories.md +8 -0
  81. data/pages/home.md +6 -0
  82. data/pages/projects.md +8 -0
  83. data/pages/search.md +11 -0
  84. data/pages/subscribe.md +12 -0
  85. data/pages/tags.md +7 -0
  86. metadata +241 -0
@@ -0,0 +1,78 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {%- assign locales = site.data.locales -%}
6
+
7
+ <div class="post" itemscope itemtype="https://schema.org/BlogPosting">
8
+ <header class="post-header text-center">
9
+ <h1 itemprop="name" class="post-title">{{ page.title }}</h1>
10
+ <meta itemprop="keywords" content="{{ page.tags | join: ',' }}"/>
11
+ <p class="post-meta">
12
+ <span class="post-meta">
13
+ <i class="bi bi-archive" title="{{ locales[site.default_locale].Categories }}"></i>
14
+ </span>
15
+ {%- for cat in page.categories -%}
16
+ <a href="{{ site.baseurl }}/categories/#{{ cat }}">{{ cat }}</a>
17
+ {%- unless page.categories.last == cat -%}, {%- endunless -%}
18
+ {%- endfor -%}
19
+ {%- if page.tags != empty -%}
20
+ <span class="post-meta">
21
+ <i class="bi bi-tags" title="{{ locales[site.default_locale].Tags }}"></i>
22
+ </span>
23
+ {%- for tag in page.tags -%}
24
+ <a href="{{ site.baseurl }}/tags/#{{ tag }}" title="{{ tag }}"> {{ tag }}</a>
25
+ {%- unless page.tags.last == tag -%}, {%- endunless -%}
26
+ {%- endfor -%}
27
+ {%- endif -%}
28
+ <time itemprop="datePublished" datetime="{{ page.date | date: '%Y-%m-%d' }}">
29
+ <span class="post-meta">
30
+ <i class="bi bi-calendar-event" title="{{ locales[site.default_locale].PostDate }}"></i>
31
+ </span> {{ page.date | date: "%b %-d,%Y" }}
32
+ </time>
33
+ {%- if page.last_modified_at -%}
34
+ <time itemprop="dateModified" datetime="{{ page.last_modified_at }}">
35
+ <span class="post-meta">
36
+ <i class="bi bi-pencil-square" title="{{ locales[site.default_locale].EditDate }}"></i>
37
+ </span> {{ page.last_modified_at | date: "%b %-d, %Y" }}
38
+ </time>
39
+ {%- endif -%}
40
+ </p>
41
+ <p>
42
+ <i class="far fa-clock"></i> Reading time: About
43
+ <span id="reading-time"></span>.
44
+ </p>
45
+ </header>
46
+
47
+ <hr/>
48
+
49
+ <div class="row container">
50
+ {%- if page.include_TOC -%}
51
+ {% include toc.html %}
52
+ {%- endif -%}
53
+ <div class="col-md-8">
54
+ <article class="post-content" id="article" itemprop="articleBody">
55
+ {%- include anchor_headings.html html=content anchorBody="<svg
56
+ class='octicon'
57
+ viewBox='0 0 16 16'
58
+ version='1.1'
59
+ width='16'
60
+ height='32'
61
+ aria-hidden='true'
62
+ >
63
+ <path
64
+ fill-rule='evenodd'
65
+ d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'
66
+ ></path></svg
67
+ >" -%}
68
+ </article>
69
+ </div>
70
+ </div>
71
+ </div>
72
+
73
+ <hr/>
74
+
75
+ {%- include page_pagination.html -%}
76
+ {%- if site.comment_box -%}
77
+ {%- include comments.html -%}
78
+ {%- endif -%}
data/_sass/_base.scss ADDED
@@ -0,0 +1,250 @@
1
+ html,
2
+ body {
3
+ height: 100%;
4
+ }
5
+
6
+ footer {
7
+ text-align: center;
8
+ }
9
+
10
+ a {
11
+ text-decoration: none;
12
+
13
+ &:hover {
14
+ text-decoration: underline;
15
+ }
16
+ }
17
+
18
+ #rss-button {
19
+ text-align: center;
20
+ }
21
+
22
+ .post-meta > i {
23
+ margin: 0 5px;
24
+ }
25
+
26
+ .post {
27
+ padding-bottom: 20px;
28
+ font-family: $monospace-font-family;
29
+ font-size: $base-font-size;
30
+
31
+ #toc-sidebar {
32
+ overflow-x: hidden;
33
+ height: fit-content;
34
+ position: -webkit-sticky; // Safari
35
+ position: sticky;
36
+ top: 0;
37
+ transition: all ease-in 0.5s;
38
+ padding: 0;
39
+
40
+ #toc-contents {
41
+ font-size: $small-font-size;
42
+ width: 100%;
43
+ padding: 0;
44
+ margin-left: 0;
45
+
46
+ ul {
47
+ padding-left: 1rem;
48
+
49
+ li {
50
+ padding-top: 10px;
51
+ position: relative;
52
+ list-style-type: inherit;
53
+ }
54
+ }
55
+
56
+ }
57
+
58
+ .toc-header {
59
+ font-weight: 700;
60
+ font-size: 1.5rem;
61
+ }
62
+ }
63
+
64
+ #tocOpenBtn {
65
+ cursor: pointer;
66
+ height: fit-content;
67
+ width: fit-content;
68
+ position: -webkit-sticky; // Safari
69
+ position: sticky;
70
+ top: 0;
71
+ transition: all ease-in .5s;
72
+
73
+ #chevron {
74
+ transition: all ease-in .5s;
75
+ font-size: 20px;
76
+ display: inline-block;
77
+ }
78
+ }
79
+
80
+ @media (max-width: 768px) {
81
+ #toc-sidebar {
82
+ position: relative;
83
+ }
84
+
85
+ #tocOpenBtn {
86
+ display: none;
87
+ }
88
+
89
+ #toc-sidebar,
90
+ #tocOpenBtn {
91
+ transition: none;
92
+ }
93
+ }
94
+ }
95
+
96
+ h1,
97
+ h2,
98
+ h3,
99
+ h4,
100
+ h5,
101
+ h6 {
102
+ .octicon {
103
+ visibility: hidden;
104
+ }
105
+
106
+ &:hover {
107
+ .octicon {
108
+ visibility: visible;
109
+ fill: currentColor;
110
+ vertical-align: middle;
111
+ }
112
+ }
113
+ }
114
+
115
+
116
+ /**
117
+ * Sidebar
118
+ */
119
+ .sidebar-module {
120
+ margin-bottom: 50px;
121
+ font-size: 14px;
122
+
123
+ h4 {
124
+ font-size: $large-font-size;
125
+ font-weight: bold;
126
+ }
127
+
128
+ li {
129
+ list-style: none;
130
+ }
131
+ }
132
+
133
+ /**
134
+ * Images
135
+ **/
136
+ img {
137
+ max-width: 100%;
138
+ vertical-align: middle;
139
+ }
140
+
141
+ /**
142
+ * Aboutme photo Style
143
+ **/
144
+ .about {
145
+ img {
146
+ margin: 0 auto;
147
+ display: block;
148
+ }
149
+ }
150
+
151
+
152
+ /**
153
+ * Figures
154
+ **/
155
+ figure > img {
156
+ display: block;
157
+ }
158
+
159
+ figcaption {
160
+ font-size: $small-font-size;
161
+ }
162
+
163
+ /**
164
+ * Pills (Tag, Categories, etc.)
165
+ **/
166
+ span.badge.bg-info > a {
167
+ color: black;
168
+ }
169
+
170
+ /**
171
+ * Tags and Categories Style
172
+ **/
173
+
174
+ .tags-box {
175
+ li {
176
+ list-style: none;
177
+ font-weight: bold;
178
+ margin-top: 10px;
179
+ }
180
+
181
+ .size {
182
+ font-size: 0.7em;
183
+ font-weight: bold;
184
+ vertical-align: super;
185
+ }
186
+
187
+ time {
188
+ margin-left: 15px;
189
+ font-style: italic;
190
+ }
191
+ }
192
+
193
+
194
+ /**
195
+ * Pagination Style
196
+ **/
197
+ .pager {
198
+ margin-bottom: 60px;
199
+ text-align: center;
200
+
201
+ ul {
202
+ display: block;
203
+ margin: 20px 0;
204
+ }
205
+
206
+ li {
207
+ list-style: none;
208
+ }
209
+
210
+ li.previous a {
211
+ float: left;
212
+ }
213
+
214
+ li.next a {
215
+ float: right;
216
+ }
217
+
218
+ li.disabled {
219
+ display: none;
220
+ }
221
+ }
222
+
223
+ /**
224
+ * Scrollbars
225
+ **/
226
+ ::-webkit-scrollbar {
227
+ width: 10px;
228
+ height: 10px;
229
+ }
230
+
231
+
232
+ ::-webkit-scrollbar-track {
233
+ background: #f1f1f1;
234
+ }
235
+
236
+ ::-webkit-scrollbar-thumb {
237
+ background: #888;
238
+ }
239
+
240
+ ::-webkit-scrollbar-thumb:hover {
241
+ background: #555;
242
+ }
243
+
244
+ /**
245
+ * Ascii-Art
246
+ **/
247
+ .ascii-art {
248
+ font-family: monospace;
249
+ white-space: pre;
250
+ }
@@ -0,0 +1,24 @@
1
+ .bi {
2
+ width: 1em;
3
+ height: 1em;
4
+ fill: currentcolor;
5
+ }
6
+
7
+ .color-modes {
8
+ .dropdown-menu {
9
+ padding: .25rem;
10
+
11
+ li+li {
12
+ margin-top: .125rem;
13
+ }
14
+ }
15
+
16
+ .active {
17
+ font-weight: 600;
18
+
19
+ .bi {
20
+ display: block !important; // stylelint-disable-line declaration-no-important
21
+ }
22
+ }
23
+ }
24
+
@@ -0,0 +1,160 @@
1
+ /**
2
+ * More themes for code-fenced areas can be found here: https://cdnjs.com/libraries/highlight.js
3
+ * To change the theme, simply change the stylesheet script tag in _includes/head/stylesheets.html
4
+ **/
5
+
6
+ figure.highlight,
7
+ pre.highlight {
8
+ padding: 1rem 1.5rem 1rem 0.5rem;
9
+ margin: 1.5rem 0;
10
+ overflow: auto;
11
+ position: relative;
12
+ max-height: 500px;
13
+ }
14
+
15
+ .highlighter-rouge {
16
+ font-weight: 300;
17
+ position: relative;
18
+ }
19
+
20
+ li code.highlighter-rouge,
21
+ p code.highlighter-rouge,
22
+ p kbd {
23
+ color: #e9ecef;
24
+ background-color: #2e3e4e;
25
+ padding: 2px 4px;
26
+ border-radius: 2px;
27
+ word-break: break-word;
28
+ }
29
+
30
+ kbd {
31
+ border: 1px solid #343a40;
32
+ border-radius: 4px;
33
+ }
34
+
35
+ figure.highlight::before,
36
+ div.highlighter-rouge::before {
37
+ content: attr(data-lang);
38
+ font-family: $monospace-font-family;
39
+ text-transform: lowercase;
40
+ font-size: .8rem;
41
+ color: #e9ecef;
42
+ position: absolute;
43
+ display: block;
44
+ height: 1rem;
45
+ right: .5rem;
46
+ z-index: 5;
47
+ }
48
+
49
+ div.highlighter-rouge::before {
50
+ padding-right: 1rem;
51
+ }
52
+
53
+ figure.highlight::before {
54
+ margin-top: -1rem;
55
+ }
56
+
57
+ .rouge-table .code pre {
58
+ overflow: hidden;
59
+ }
60
+
61
+ table.rouge-table,
62
+ table.rouge-table tr,
63
+ table.rouge-table td,
64
+ table.rouge-table pre {
65
+ border: 0;
66
+ padding: 0;
67
+ margin: 0;
68
+ }
69
+
70
+ table.rouge-table td.gutter {
71
+ padding-right: .5rem;
72
+ border-right: 1px solid #adb5bd;
73
+ }
74
+
75
+ table.rouge-table td.code {
76
+ padding-left: .5rem;
77
+ }
78
+
79
+ figure pre {
80
+ margin-bottom: 0;
81
+ }
82
+
83
+ .lineno {
84
+ text-align: right;
85
+ margin-right: 10px!important;
86
+ }
87
+
88
+ .highlight,
89
+ .highlight pre,
90
+ .highlight table {
91
+ background: #2e3e4e;
92
+ color: #e9ecef;
93
+ border-radius: 4px;
94
+ font-size: $base-font-size;
95
+ }
96
+
97
+ .highlight .hll { background-color: #373b41 }
98
+ .highlight .c { color: #969896 } /* Comment */
99
+ .highlight .err { color: #cc6666 } /* Error */
100
+ .highlight .k { color: #b294bb } /* Keyword */
101
+ .highlight .l { color: #de935f } /* Literal */
102
+ .highlight .n, .highlight .h { color: #ffffff } /* Name */
103
+ .highlight .o { color: #8abeb7 } /* Operator */
104
+ .highlight .p { color: #ffffff } /* Punctuation */
105
+ .highlight .cm { color: #969896 } /* Comment.Multiline */
106
+ .highlight .cp { color: #969896 } /* Comment.Preproc */
107
+ .highlight .c1 { color: #969896 } /* Comment.Single */
108
+ .highlight .cs { color: #969896 } /* Comment.Special */
109
+ .highlight .gd { color: #cc6666 } /* Generic.Deleted */
110
+ .highlight .ge { font-style: italic } /* Generic.Emph */
111
+ .highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
112
+ .highlight .gi { color: #b5bd68 } /* Generic.Inserted */
113
+ .highlight .gp { color: #969896; font-weight: bold } /* Generic.Prompt */
114
+ .highlight .gs { font-weight: bold } /* Generic.Strong */
115
+ .highlight .gu { color: #8abeb7; font-weight: bold } /* Generic.Subheading */
116
+ .highlight .kc { color: #b294bb } /* Keyword.Constant */
117
+ .highlight .kd { color: #b294bb } /* Keyword.Declaration */
118
+ .highlight .kn { color: #8abeb7 } /* Keyword.Namespace */
119
+ .highlight .kp { color: #b294bb } /* Keyword.Pseudo */
120
+ .highlight .kr { color: #b294bb } /* Keyword.Reserved */
121
+ .highlight .kt { color: #f0c674 } /* Keyword.Type */
122
+ .highlight .ld { color: #b5bd68 } /* Literal.Date */
123
+ .highlight .m { color: #de935f } /* Literal.Number */
124
+ .highlight .s { color: #b5bd68 } /* Literal.String */
125
+ .highlight .na { color: #81a2be } /* Name.Attribute */
126
+ .highlight .nb { color: #ffffff } /* Name.Builtin */
127
+ .highlight .nc { color: #f0c674 } /* Name.Class */
128
+ .highlight .no { color: #cc6666 } /* Name.Constant */
129
+ .highlight .nd { color: #8abeb7 } /* Name.Decorator */
130
+ .highlight .ni { color: #ffffff } /* Name.Entity */
131
+ .highlight .ne { color: #cc6666 } /* Name.Exception */
132
+ .highlight .nf { color: #81a2be } /* Name.Function */
133
+ .highlight .nl { color: #ffffff } /* Name.Label */
134
+ .highlight .nn { color: #f0c674 } /* Name.Namespace */
135
+ .highlight .nx { color: #81a2be } /* Name.Other */
136
+ .highlight .py { color: #ffffff } /* Name.Property */
137
+ .highlight .nt { color: #8abeb7 } /* Name.Tag */
138
+ .highlight .nv { color: #cc6666 } /* Name.Variable */
139
+ .highlight .ow { color: #8abeb7 } /* Operator.Word */
140
+ .highlight .w { color: #ffffff } /* Text.Whitespace */
141
+ .highlight .mf { color: #de935f } /* Literal.Number.Float */
142
+ .highlight .mh { color: #de935f } /* Literal.Number.Hex */
143
+ .highlight .mi { color: #de935f } /* Literal.Number.Integer */
144
+ .highlight .mo { color: #de935f } /* Literal.Number.Oct */
145
+ .highlight .sb { color: #b5bd68 } /* Literal.String.Backtick */
146
+ .highlight .sc { color: #ffffff } /* Literal.String.Char */
147
+ .highlight .sd { color: #969896 } /* Literal.String.Doc */
148
+ .highlight .s2 { color: #b5bd68 } /* Literal.String.Double */
149
+ .highlight .se { color: #de935f } /* Literal.String.Escape */
150
+ .highlight .sh { color: #b5bd68 } /* Literal.String.Heredoc */
151
+ .highlight .si { color: #de935f } /* Literal.String.Interpol */
152
+ .highlight .sx { color: #b5bd68 } /* Literal.String.Other */
153
+ .highlight .sr { color: #b5bd68 } /* Literal.String.Regex */
154
+ .highlight .s1 { color: #b5bd68 } /* Literal.String.Single */
155
+ .highlight .ss { color: #b5bd68 } /* Literal.String.Symbol */
156
+ .highlight .bp { color: #ffffff } /* Name.Builtin.Pseudo */
157
+ .highlight .vc { color: #cc6666 } /* Name.Variable.Class */
158
+ .highlight .vg { color: #cc6666 } /* Name.Variable.Global */
159
+ .highlight .vi { color: #cc6666 } /* Name.Variable.Instance */
160
+ .highlight .il { color: #de935f } /* Literal.Number.Integer.Long */
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs" width="1000" height="1000" viewBox="0 0 1000 1000"><rect width="1000" height="1000" fill="#ffffff"></rect><g transform="matrix(0.7,0,0,0.7,149.57575757575756,422.16053648562377)"><svg viewBox="0 0 396 88" data-background-color="#212529" preserveAspectRatio="xMidYMid meet" height="222" width="1000" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g id="tight-bounds" transform="matrix(1,0,0,1,0.2400000000000091,0.07897547789644932)"><svg viewBox="0 0 395.52 87.8420490442071" height="87.8420490442071" width="395.52"><g><svg viewBox="0 0 518.0379464725265 115.05237333333335" height="87.8420490442071" width="395.52"><g transform="matrix(1,0,0,1,122.51794647252652,35.55285333333334)"><svg viewBox="0 0 395.52 43.94666666666667" height="43.94666666666667" width="395.52"><g id="textblocktransform"><svg viewBox="0 0 395.52 43.94666666666667" height="43.94666666666667" width="395.52" id="textblock"><g><svg viewBox="0 0 395.52 43.94666666666667" height="43.94666666666667" width="395.52"><g transform="matrix(1,0,0,1,0,0)"><svg width="395.52" viewBox="2.6 -35.55 327.58 36.4" height="43.94666666666667" data-palette-color="#ffffff"><path d="M28.7-17.5Q28.7 0 11.95 0L11.95 0 2.6 0 2.6-34.65 11.35-34.65Q19.2-34.65 23.95-30.98 28.7-27.3 28.7-17.5L28.7-17.5ZM20.25-17.5Q20.25-23.95 18.25-26.33 16.25-28.7 12.55-28.7L12.55-28.7 10.8-28.7 10.8-5.95 12.55-5.95Q16.3-5.95 18.28-8.53 20.25-11.1 20.25-17.5L20.25-17.5ZM42.85-28.8L42.85-20.45 54.85-20.45 54.85-14.75 42.85-14.75 42.85-5.9 57.3-5.9 57.3 0 34.65 0 34.65-34.65 57.3-34.65 56.45-28.8 42.85-28.8ZM75.15-6.4L81.65-34.65 90.05-34.65 80.05 0 69.95 0 60-34.65 68.7-34.65 75.15-6.4ZM118.39-10.15Q118.39-6.9 116.69-4.4 114.99-1.9 111.82-0.53 108.64 0.85 104.29 0.85L104.29 0.85Q95.69 0.85 90.59-4.15L90.59-4.15 94.74-8.75Q98.69-5.25 104.09-5.25L104.09-5.25Q106.69-5.25 108.27-6.38 109.84-7.5 109.84-9.5L109.84-9.5Q109.84-11.4 108.52-12.48 107.19-13.55 103.59-14.65L103.59-14.65Q97.49-16.5 94.94-19 92.39-21.5 92.39-25.45L92.39-25.45Q92.39-28.55 94.12-30.85 95.84-33.15 98.82-34.35 101.79-35.55 105.44-35.55L105.44-35.55Q113.09-35.55 117.84-31.05L117.84-31.05 113.99-26.6Q112.24-28.05 110.22-28.78 108.19-29.5 106.04-29.5L106.04-29.5Q103.64-29.5 102.27-28.63 100.89-27.75 100.89-26.1L100.89-26.1Q100.89-25 101.52-24.25 102.14-23.5 103.59-22.85 105.04-22.2 107.94-21.3L107.94-21.3Q113.24-19.7 115.82-17.18 118.39-14.65 118.39-10.15L118.39-10.15ZM137.89-35.55Q141.49-35.55 144.09-34.6 146.69-33.65 148.99-31.75L148.99-31.75 144.99-26.9Q141.84-29.45 138.09-29.45L138.09-29.45Q134.54-29.45 132.37-26.45 130.19-23.45 130.19-17.4L130.19-17.4Q130.19-11.35 132.34-8.43 134.49-5.5 138.24-5.5L138.24-5.5Q140.54-5.5 142.19-6.3 143.84-7.1 145.74-8.6L145.74-8.6 149.44-3.85Q144.84 0.85 137.79 0.85L137.79 0.85Q133.04 0.85 129.42-1.25 125.79-3.35 123.74-7.48 121.69-11.6 121.69-17.4L121.69-17.4Q121.69-23.05 123.79-27.15 125.89-31.25 129.59-33.4 133.29-35.55 137.89-35.55L137.89-35.55ZM177.89-34.65L177.89-11.6Q177.89-8 176.44-5.18 174.99-2.35 172.09-0.75 169.19 0.85 164.99 0.85L164.99 0.85Q158.69 0.85 155.39-2.5 152.09-5.85 152.09-11.6L152.09-11.6 152.09-34.65 160.34-34.65 160.34-14.65Q160.34-11.3 160.69-9.3 161.04-7.3 162.06-6.28 163.09-5.25 164.99-5.25L164.99-5.25Q166.89-5.25 167.91-6.28 168.94-7.3 169.29-9.3 169.64-11.3 169.64-14.65L169.64-14.65 169.64-34.65 177.89-34.65ZM184.64 0L184.64-34.65 192.84-34.65 192.84-6.5 207.84-6.5 207.04 0 184.64 0ZM238.78-23.35Q238.78-17.5 235.11-14.53 231.43-11.55 225.08-11.55L225.08-11.55 221.28-11.55 221.28 0 213.08 0 213.08-34.65 223.98-34.65Q231.18-34.65 234.98-31.83 238.78-29 238.78-23.35L238.78-23.35ZM230.38-23.35Q230.38-28.8 224.13-28.8L224.13-28.8 221.28-28.8 221.28-17.45 224.53-17.45Q227.33-17.45 228.86-18.9 230.38-20.35 230.38-23.35L230.38-23.35ZM259.03-28.35L259.03 0 250.83 0 250.83-28.35 241.08-28.35 241.08-34.65 269.13-34.65 268.33-28.35 259.03-28.35ZM298.83-17.35Q298.83-8.9 295.25-4.03 291.68 0.85 284.98 0.85L284.98 0.85Q278.23 0.85 274.68-3.98 271.13-8.8 271.13-17.35L271.13-17.35Q271.13-25.8 274.7-30.68 278.28-35.55 284.98-35.55L284.98-35.55Q291.73-35.55 295.28-30.73 298.83-25.9 298.83-17.35L298.83-17.35ZM290.43-17.35Q290.43-23.75 289.15-26.65 287.88-29.55 284.98-29.55L284.98-29.55Q282.08-29.55 280.8-26.65 279.53-23.75 279.53-17.35L279.53-17.35Q279.53-10.95 280.8-8.05 282.08-5.15 284.98-5.15L284.98-5.15Q287.93-5.15 289.18-8.05 290.43-10.95 290.43-17.35L290.43-17.35ZM328.03-24.1Q328.03-20.6 326.15-18.23 324.28-15.85 321.13-14.6L321.13-14.6 330.18 0 320.88 0 313.38-13.25 311.08-13.25 311.08 0 302.88 0 302.88-34.65 313.78-34.65Q320.93-34.65 324.48-32.05 328.03-29.45 328.03-24.1L328.03-24.1ZM319.58-24.1Q319.58-26.6 318.15-27.75 316.73-28.9 313.78-28.9L313.78-28.9 311.08-28.9 311.08-18.9 314.13-18.9Q316.83-18.9 318.2-20.15 319.58-21.4 319.58-24.1L319.58-24.1Z" opacity="1" transform="matrix(1,0,0,1,0,0)" fill="#000000" class="wordmark-text-0" data-fill-palette-color="primary" id="text-0"></path></svg></g></svg></g></svg></g></svg></g><g><svg viewBox="0 0 112.14319319252651 115.05237333333335" height="115.05237333333335" width="112.14319319252651"><g><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0" y="0" viewBox="5.637740379986418 5.999 87.72526144487975 90.001" enable-background="new 0 0 100 100" xml:space="preserve" height="115.05237333333335" width="112.14319319252651" class="icon-icon-0" data-fill-palette-color="accent" id="icon-0"><g fill="#81ffd9" data-fill-palette-color="accent"><path d="M58.203 96H40.796c-2.211 0-4.011-1.8-4.011-4.011v-7.236c0-0.358-0.744-0.91-1.94-1.438l-0.194-0.09c-2.285-1.021-4.509-2.359-6.563-3.955-0.524-0.407-1.227-0.518-1.633-0.281l-6.016 3.473c-2.092 1.207-4.493 0.42-5.558-1.424L6.177 65.962c-0.536-0.928-0.678-2.008-0.401-3.043 0.278-1.036 0.941-1.901 1.87-2.437l0.938 1.286L7.787 60.4l0.414-0.238 0.912 1.301L8.32 60.094l4.765-2.75c1.446-0.84 1.446-0.84 1.32-1.739-0.201-1.366-0.29-2.776-0.29-4.503v-0.203c0-1.726 0.089-3.136 0.281-4.435l0.013-0.094c0.122-0.874 0.122-0.874-1.377-1.743l-4.709-2.719 0.696-1.425-0.79 1.371-0.44-0.254 0.699-1.423-0.843 1.34c-1.914-1.105-2.573-3.563-1.467-5.478l8.704-15.076c0.714-1.238 2.046-2.006 3.476-2.006 0.701 0 1.394 0.186 2.003 0.537l6.111 3.528c0.409 0.223 1.1 0.11 1.617-0.292 2.052-1.594 4.277-2.933 6.612-3.979l0.145-0.066c1.196-0.528 1.94-1.079 1.94-1.438v-7.236c0-2.212 1.8-4.012 4.011-4.012h17.407c2.212 0 4.011 1.8 4.011 4.012v7.236c0 0.358 0.745 0.909 1.942 1.438l0.171 0.079c2.323 1.042 4.538 2.376 6.586 3.966 0.516 0.401 1.205 0.513 1.616 0.292l6.083-3.512c2.022-1.147 4.446-0.383 5.508 1.451l8.703 15.077c1.104 1.916 0.446 4.373-1.469 5.479l-4.01 2.316-0.901-1.308 0.794 1.369-1.223 0.707c-1.544 0.895-1.544 0.895-1.418 1.795l0.016 0.116c0.188 1.314 0.272 2.698 0.272 4.387L84.884 51l0.001 0.102c0 1.72-0.088 3.123-0.277 4.413l-0.001 0.016c-0.136 0.975-0.136 0.975 1.362 1.844l1.269 0.732-0.692 1.426 0.794-1.368 3.341 1.929-0.698 1.425 0.79-1.372 0.605 0.351c0.905 0.521 1.569 1.387 1.846 2.423 0.278 1.035 0.136 2.115-0.399 3.043L84.12 81.037c-0.715 1.238-2.048 2.006-3.478 2.006-0.701 0-1.394-0.186-2.003-0.537l-6.084-3.513c-0.436-0.252-1.119-0.13-1.642 0.275-2.041 1.585-4.247 2.915-6.558 3.954l-0.227 0.103c-1.171 0.518-1.916 1.069-1.916 1.428v7.236C62.214 94.2 60.415 96 58.203 96zM36.123 80.419c1.643 0.727 3.827 1.965 3.827 4.334v7.236c0 0.466 0.379 0.847 0.846 0.847h17.407c0.467 0 0.848-0.381 0.848-0.847v-7.236c0-2.369 2.185-3.607 3.827-4.334l0.129-0.06c2.102-0.939 4.107-2.147 5.965-3.589 1.52-1.182 3.647-1.392 5.153-0.525l2.512 1.449-0.679 1.437 0.785-1.373 1.374 0.793-0.645 1.454 0.791-1.37 1.941 1.121c0.173 0.092 0.303 0.123 0.438 0.123 0.304 0 0.586-0.163 0.736-0.425l8.703-15.074c0.113-0.196 0.144-0.424 0.084-0.643-0.058-0.218-0.197-0.4-0.394-0.514l-5.343-3.085c-2.381-1.38-3.312-2.363-2.978-4.897l0.016-0.122c0.174-1.184 0.253-2.446 0.253-4.018L81.72 51l0.001-0.102c0-1.571-0.079-2.834-0.247-3.974l-0.018-0.145c-0.353-2.541 0.576-3.529 2.926-4.891l1.577-0.911 0.891 1.312-0.792-1.369 3.04-1.755 0.884 1.316-0.789-1.371 0.523-0.303c0.46-0.266 0.6-0.785 0.366-1.19l-8.703-15.075c-0.227-0.393-0.754-0.542-1.157-0.31l-3.479 2.008-0.84-1.342 0.75 1.394-2.604 1.5v0c-1.617 0.865-3.599 0.585-5.077-0.565-1.854-1.439-3.859-2.646-5.96-3.586l-0.085-0.041c-1.696-0.75-3.876-1.988-3.876-4.354v-7.236c0-0.467-0.381-0.847-0.848-0.847H40.796c-0.467 0-0.846 0.379-0.846 0.847v7.236c0 2.369-2.184 3.607-3.827 4.333l-0.75-1.397 0.655 1.44c-2.139 0.958-4.146 2.166-5.999 3.605-1.52 1.182-3.648 1.392-5.153 0.526l-2.513-1.451 0.679-1.436-0.785 1.374-3.413-1.971c-0.197-0.114-0.338-0.152-0.487-0.152-0.303 0-0.584 0.163-0.735 0.424L8.917 37.62c-0.113 0.196-0.143 0.425-0.084 0.643s0.199 0.4 0.394 0.514l5.34 3.083c2.408 1.396 3.334 2.386 2.971 4.977l-0.014 0.099c-0.167 1.133-0.245 2.396-0.245 3.964l0.001 0.125c-0.001 1.646 0.077 2.909 0.245 4.052l0.014 0.107c0.362 2.573-0.565 3.562-2.921 4.929L9.285 63.19c-0.253 0.146-0.393 0.329-0.452 0.547-0.059 0.219-0.029 0.446 0.084 0.642l8.705 15.076c0.228 0.396 0.756 0.541 1.157 0.311l3.479-2.009 0.841 1.341-0.73-1.405 2.578-1.485c0.553-0.32 1.282-0.511 2.039-0.511 1.072 0 2.153 0.382 3.044 1.074 1.844 1.434 3.839 2.636 5.931 3.574l0.087 0.041-0.129 0.271-0.434 1.211L36.123 80.419z" fill="#000000" data-fill-palette-color="accent"></path></g><g fill="#81ffd9" data-fill-palette-color="accent"><path d="M49.5 78.996c-15.382 0-27.896-12.513-27.896-27.895 0-15.382 12.514-27.896 27.896-27.896s27.896 12.514 27.896 27.896C77.396 66.483 64.882 78.996 49.5 78.996zM49.5 26.37c-13.637 0-24.731 11.095-24.731 24.732 0 13.637 11.094 24.731 24.731 24.731 13.638 0 24.732-11.095 24.732-24.731C74.232 37.464 63.138 26.37 49.5 26.37z" fill="#000000" data-fill-palette-color="accent"></path></g><path fill-rule="evenodd" clip-rule="evenodd" d="M60.46 62.594l-2.454-2.454 8.588-8.587-8.588-8.589 2.454-2.454 11.042 11.043L60.46 62.594zM44.735 61.963l7.537-22.557h3.471l-7.537 22.557H44.735zM39.529 61.726L28.487 50.685l11.042-11.042 2.454 2.454-8.588 8.588 8.588 8.588L39.529 61.726z" fill="#000000" data-fill-palette-color="accent"></path></svg></g></svg></g></svg></g><defs></defs></svg><rect width="395.52" height="87.8420490442071" fill="none" stroke="none" visibility="hidden"></rect></g></svg></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs" width="1000" height="1000" viewBox="0 0 1000 1000"><rect width="1000" height="1000" fill="#212529"></rect><g transform="matrix(0.7,0,0,0.7,149.57575757575756,422.16053648562377)"><svg viewBox="0 0 396 88" data-background-color="#212529" preserveAspectRatio="xMidYMid meet" height="222" width="1000" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g id="tight-bounds" transform="matrix(1,0,0,1,0.2400000000000091,0.07897547789644932)"><svg viewBox="0 0 395.52 87.8420490442071" height="87.8420490442071" width="395.52"><g><svg viewBox="0 0 518.0379464725265 115.05237333333335" height="87.8420490442071" width="395.52"><g transform="matrix(1,0,0,1,122.51794647252652,35.55285333333334)"><svg viewBox="0 0 395.52 43.94666666666667" height="43.94666666666667" width="395.52"><g id="textblocktransform"><svg viewBox="0 0 395.52 43.94666666666667" height="43.94666666666667" width="395.52" id="textblock"><g><svg viewBox="0 0 395.52 43.94666666666667" height="43.94666666666667" width="395.52"><g transform="matrix(1,0,0,1,0,0)"><svg width="395.52" viewBox="2.6 -35.55 327.58 36.4" height="43.94666666666667" data-palette-color="#ffffff"><path d="M28.7-17.5Q28.7 0 11.95 0L11.95 0 2.6 0 2.6-34.65 11.35-34.65Q19.2-34.65 23.95-30.98 28.7-27.3 28.7-17.5L28.7-17.5ZM20.25-17.5Q20.25-23.95 18.25-26.33 16.25-28.7 12.55-28.7L12.55-28.7 10.8-28.7 10.8-5.95 12.55-5.95Q16.3-5.95 18.28-8.53 20.25-11.1 20.25-17.5L20.25-17.5ZM42.85-28.8L42.85-20.45 54.85-20.45 54.85-14.75 42.85-14.75 42.85-5.9 57.3-5.9 57.3 0 34.65 0 34.65-34.65 57.3-34.65 56.45-28.8 42.85-28.8ZM75.15-6.4L81.65-34.65 90.05-34.65 80.05 0 69.95 0 60-34.65 68.7-34.65 75.15-6.4ZM118.39-10.15Q118.39-6.9 116.69-4.4 114.99-1.9 111.82-0.53 108.64 0.85 104.29 0.85L104.29 0.85Q95.69 0.85 90.59-4.15L90.59-4.15 94.74-8.75Q98.69-5.25 104.09-5.25L104.09-5.25Q106.69-5.25 108.27-6.38 109.84-7.5 109.84-9.5L109.84-9.5Q109.84-11.4 108.52-12.48 107.19-13.55 103.59-14.65L103.59-14.65Q97.49-16.5 94.94-19 92.39-21.5 92.39-25.45L92.39-25.45Q92.39-28.55 94.12-30.85 95.84-33.15 98.82-34.35 101.79-35.55 105.44-35.55L105.44-35.55Q113.09-35.55 117.84-31.05L117.84-31.05 113.99-26.6Q112.24-28.05 110.22-28.78 108.19-29.5 106.04-29.5L106.04-29.5Q103.64-29.5 102.27-28.63 100.89-27.75 100.89-26.1L100.89-26.1Q100.89-25 101.52-24.25 102.14-23.5 103.59-22.85 105.04-22.2 107.94-21.3L107.94-21.3Q113.24-19.7 115.82-17.18 118.39-14.65 118.39-10.15L118.39-10.15ZM137.89-35.55Q141.49-35.55 144.09-34.6 146.69-33.65 148.99-31.75L148.99-31.75 144.99-26.9Q141.84-29.45 138.09-29.45L138.09-29.45Q134.54-29.45 132.37-26.45 130.19-23.45 130.19-17.4L130.19-17.4Q130.19-11.35 132.34-8.43 134.49-5.5 138.24-5.5L138.24-5.5Q140.54-5.5 142.19-6.3 143.84-7.1 145.74-8.6L145.74-8.6 149.44-3.85Q144.84 0.85 137.79 0.85L137.79 0.85Q133.04 0.85 129.42-1.25 125.79-3.35 123.74-7.48 121.69-11.6 121.69-17.4L121.69-17.4Q121.69-23.05 123.79-27.15 125.89-31.25 129.59-33.4 133.29-35.55 137.89-35.55L137.89-35.55ZM177.89-34.65L177.89-11.6Q177.89-8 176.44-5.18 174.99-2.35 172.09-0.75 169.19 0.85 164.99 0.85L164.99 0.85Q158.69 0.85 155.39-2.5 152.09-5.85 152.09-11.6L152.09-11.6 152.09-34.65 160.34-34.65 160.34-14.65Q160.34-11.3 160.69-9.3 161.04-7.3 162.06-6.28 163.09-5.25 164.99-5.25L164.99-5.25Q166.89-5.25 167.91-6.28 168.94-7.3 169.29-9.3 169.64-11.3 169.64-14.65L169.64-14.65 169.64-34.65 177.89-34.65ZM184.64 0L184.64-34.65 192.84-34.65 192.84-6.5 207.84-6.5 207.04 0 184.64 0ZM238.78-23.35Q238.78-17.5 235.11-14.53 231.43-11.55 225.08-11.55L225.08-11.55 221.28-11.55 221.28 0 213.08 0 213.08-34.65 223.98-34.65Q231.18-34.65 234.98-31.83 238.78-29 238.78-23.35L238.78-23.35ZM230.38-23.35Q230.38-28.8 224.13-28.8L224.13-28.8 221.28-28.8 221.28-17.45 224.53-17.45Q227.33-17.45 228.86-18.9 230.38-20.35 230.38-23.35L230.38-23.35ZM259.03-28.35L259.03 0 250.83 0 250.83-28.35 241.08-28.35 241.08-34.65 269.13-34.65 268.33-28.35 259.03-28.35ZM298.83-17.35Q298.83-8.9 295.25-4.03 291.68 0.85 284.98 0.85L284.98 0.85Q278.23 0.85 274.68-3.98 271.13-8.8 271.13-17.35L271.13-17.35Q271.13-25.8 274.7-30.68 278.28-35.55 284.98-35.55L284.98-35.55Q291.73-35.55 295.28-30.73 298.83-25.9 298.83-17.35L298.83-17.35ZM290.43-17.35Q290.43-23.75 289.15-26.65 287.88-29.55 284.98-29.55L284.98-29.55Q282.08-29.55 280.8-26.65 279.53-23.75 279.53-17.35L279.53-17.35Q279.53-10.95 280.8-8.05 282.08-5.15 284.98-5.15L284.98-5.15Q287.93-5.15 289.18-8.05 290.43-10.95 290.43-17.35L290.43-17.35ZM328.03-24.1Q328.03-20.6 326.15-18.23 324.28-15.85 321.13-14.6L321.13-14.6 330.18 0 320.88 0 313.38-13.25 311.08-13.25 311.08 0 302.88 0 302.88-34.65 313.78-34.65Q320.93-34.65 324.48-32.05 328.03-29.45 328.03-24.1L328.03-24.1ZM319.58-24.1Q319.58-26.6 318.15-27.75 316.73-28.9 313.78-28.9L313.78-28.9 311.08-28.9 311.08-18.9 314.13-18.9Q316.83-18.9 318.2-20.15 319.58-21.4 319.58-24.1L319.58-24.1Z" opacity="1" transform="matrix(1,0,0,1,0,0)" fill="#ffffff" class="wordmark-text-0" data-fill-palette-color="primary" id="text-0"></path></svg></g></svg></g></svg></g></svg></g><g><svg viewBox="0 0 112.14319319252651 115.05237333333335" height="115.05237333333335" width="112.14319319252651"><g><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0" y="0" viewBox="5.637740379986418 5.999 87.72526144487975 90.001" enable-background="new 0 0 100 100" xml:space="preserve" height="115.05237333333335" width="112.14319319252651" class="icon-icon-0" data-fill-palette-color="accent" id="icon-0"><g fill="#81ffd9" data-fill-palette-color="accent"><path d="M58.203 96H40.796c-2.211 0-4.011-1.8-4.011-4.011v-7.236c0-0.358-0.744-0.91-1.94-1.438l-0.194-0.09c-2.285-1.021-4.509-2.359-6.563-3.955-0.524-0.407-1.227-0.518-1.633-0.281l-6.016 3.473c-2.092 1.207-4.493 0.42-5.558-1.424L6.177 65.962c-0.536-0.928-0.678-2.008-0.401-3.043 0.278-1.036 0.941-1.901 1.87-2.437l0.938 1.286L7.787 60.4l0.414-0.238 0.912 1.301L8.32 60.094l4.765-2.75c1.446-0.84 1.446-0.84 1.32-1.739-0.201-1.366-0.29-2.776-0.29-4.503v-0.203c0-1.726 0.089-3.136 0.281-4.435l0.013-0.094c0.122-0.874 0.122-0.874-1.377-1.743l-4.709-2.719 0.696-1.425-0.79 1.371-0.44-0.254 0.699-1.423-0.843 1.34c-1.914-1.105-2.573-3.563-1.467-5.478l8.704-15.076c0.714-1.238 2.046-2.006 3.476-2.006 0.701 0 1.394 0.186 2.003 0.537l6.111 3.528c0.409 0.223 1.1 0.11 1.617-0.292 2.052-1.594 4.277-2.933 6.612-3.979l0.145-0.066c1.196-0.528 1.94-1.079 1.94-1.438v-7.236c0-2.212 1.8-4.012 4.011-4.012h17.407c2.212 0 4.011 1.8 4.011 4.012v7.236c0 0.358 0.745 0.909 1.942 1.438l0.171 0.079c2.323 1.042 4.538 2.376 6.586 3.966 0.516 0.401 1.205 0.513 1.616 0.292l6.083-3.512c2.022-1.147 4.446-0.383 5.508 1.451l8.703 15.077c1.104 1.916 0.446 4.373-1.469 5.479l-4.01 2.316-0.901-1.308 0.794 1.369-1.223 0.707c-1.544 0.895-1.544 0.895-1.418 1.795l0.016 0.116c0.188 1.314 0.272 2.698 0.272 4.387L84.884 51l0.001 0.102c0 1.72-0.088 3.123-0.277 4.413l-0.001 0.016c-0.136 0.975-0.136 0.975 1.362 1.844l1.269 0.732-0.692 1.426 0.794-1.368 3.341 1.929-0.698 1.425 0.79-1.372 0.605 0.351c0.905 0.521 1.569 1.387 1.846 2.423 0.278 1.035 0.136 2.115-0.399 3.043L84.12 81.037c-0.715 1.238-2.048 2.006-3.478 2.006-0.701 0-1.394-0.186-2.003-0.537l-6.084-3.513c-0.436-0.252-1.119-0.13-1.642 0.275-2.041 1.585-4.247 2.915-6.558 3.954l-0.227 0.103c-1.171 0.518-1.916 1.069-1.916 1.428v7.236C62.214 94.2 60.415 96 58.203 96zM36.123 80.419c1.643 0.727 3.827 1.965 3.827 4.334v7.236c0 0.466 0.379 0.847 0.846 0.847h17.407c0.467 0 0.848-0.381 0.848-0.847v-7.236c0-2.369 2.185-3.607 3.827-4.334l0.129-0.06c2.102-0.939 4.107-2.147 5.965-3.589 1.52-1.182 3.647-1.392 5.153-0.525l2.512 1.449-0.679 1.437 0.785-1.373 1.374 0.793-0.645 1.454 0.791-1.37 1.941 1.121c0.173 0.092 0.303 0.123 0.438 0.123 0.304 0 0.586-0.163 0.736-0.425l8.703-15.074c0.113-0.196 0.144-0.424 0.084-0.643-0.058-0.218-0.197-0.4-0.394-0.514l-5.343-3.085c-2.381-1.38-3.312-2.363-2.978-4.897l0.016-0.122c0.174-1.184 0.253-2.446 0.253-4.018L81.72 51l0.001-0.102c0-1.571-0.079-2.834-0.247-3.974l-0.018-0.145c-0.353-2.541 0.576-3.529 2.926-4.891l1.577-0.911 0.891 1.312-0.792-1.369 3.04-1.755 0.884 1.316-0.789-1.371 0.523-0.303c0.46-0.266 0.6-0.785 0.366-1.19l-8.703-15.075c-0.227-0.393-0.754-0.542-1.157-0.31l-3.479 2.008-0.84-1.342 0.75 1.394-2.604 1.5v0c-1.617 0.865-3.599 0.585-5.077-0.565-1.854-1.439-3.859-2.646-5.96-3.586l-0.085-0.041c-1.696-0.75-3.876-1.988-3.876-4.354v-7.236c0-0.467-0.381-0.847-0.848-0.847H40.796c-0.467 0-0.846 0.379-0.846 0.847v7.236c0 2.369-2.184 3.607-3.827 4.333l-0.75-1.397 0.655 1.44c-2.139 0.958-4.146 2.166-5.999 3.605-1.52 1.182-3.648 1.392-5.153 0.526l-2.513-1.451 0.679-1.436-0.785 1.374-3.413-1.971c-0.197-0.114-0.338-0.152-0.487-0.152-0.303 0-0.584 0.163-0.735 0.424L8.917 37.62c-0.113 0.196-0.143 0.425-0.084 0.643s0.199 0.4 0.394 0.514l5.34 3.083c2.408 1.396 3.334 2.386 2.971 4.977l-0.014 0.099c-0.167 1.133-0.245 2.396-0.245 3.964l0.001 0.125c-0.001 1.646 0.077 2.909 0.245 4.052l0.014 0.107c0.362 2.573-0.565 3.562-2.921 4.929L9.285 63.19c-0.253 0.146-0.393 0.329-0.452 0.547-0.059 0.219-0.029 0.446 0.084 0.642l8.705 15.076c0.228 0.396 0.756 0.541 1.157 0.311l3.479-2.009 0.841 1.341-0.73-1.405 2.578-1.485c0.553-0.32 1.282-0.511 2.039-0.511 1.072 0 2.153 0.382 3.044 1.074 1.844 1.434 3.839 2.636 5.931 3.574l0.087 0.041-0.129 0.271-0.434 1.211L36.123 80.419z" fill="#81ffd9" data-fill-palette-color="accent"></path></g><g fill="#81ffd9" data-fill-palette-color="accent"><path d="M49.5 78.996c-15.382 0-27.896-12.513-27.896-27.895 0-15.382 12.514-27.896 27.896-27.896s27.896 12.514 27.896 27.896C77.396 66.483 64.882 78.996 49.5 78.996zM49.5 26.37c-13.637 0-24.731 11.095-24.731 24.732 0 13.637 11.094 24.731 24.731 24.731 13.638 0 24.732-11.095 24.732-24.731C74.232 37.464 63.138 26.37 49.5 26.37z" fill="#81ffd9" data-fill-palette-color="accent"></path></g><path fill-rule="evenodd" clip-rule="evenodd" d="M60.46 62.594l-2.454-2.454 8.588-8.587-8.588-8.589 2.454-2.454 11.042 11.043L60.46 62.594zM44.735 61.963l7.537-22.557h3.471l-7.537 22.557H44.735zM39.529 61.726L28.487 50.685l11.042-11.042 2.454 2.454-8.588 8.588 8.588 8.588L39.529 61.726z" fill="#81ffd9" data-fill-palette-color="accent"></path></svg></g></svg></g></svg></g><defs></defs></svg><rect width="395.52" height="87.8420490442071" fill="none" stroke="none" visibility="hidden"></rect></g></svg></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs" width="1000" height="222" viewBox="0 0 1000 222"><g transform="matrix(1,0,0,1,-0.6060606060606233,-0.19923359196604906)"><svg viewBox="0 0 396 88" data-background-color="#212529" preserveAspectRatio="xMidYMid meet" height="222" width="1000" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g id="tight-bounds" transform="matrix(1,0,0,1,0.2400000000000091,0.07897547789644932)"><svg viewBox="0 0 395.52 87.8420490442071" height="87.8420490442071" width="395.52"><g><svg viewBox="0 0 518.0379464725265 115.05237333333335" height="87.8420490442071" width="395.52"><g transform="matrix(1,0,0,1,122.51794647252652,35.55285333333334)"><svg viewBox="0 0 395.52 43.94666666666667" height="43.94666666666667" width="395.52"><g id="textblocktransform"><svg viewBox="0 0 395.52 43.94666666666667" height="43.94666666666667" width="395.52" id="textblock"><g><svg viewBox="0 0 395.52 43.94666666666667" height="43.94666666666667" width="395.52"><g transform="matrix(1,0,0,1,0,0)"><svg width="395.52" viewBox="2.6 -35.55 327.58 36.4" height="43.94666666666667" data-palette-color="#111111"><path d="M28.7-17.5Q28.7 0 11.95 0L11.95 0 2.6 0 2.6-34.65 11.35-34.65Q19.2-34.65 23.95-30.98 28.7-27.3 28.7-17.5L28.7-17.5ZM20.25-17.5Q20.25-23.95 18.25-26.33 16.25-28.7 12.55-28.7L12.55-28.7 10.8-28.7 10.8-5.95 12.55-5.95Q16.3-5.95 18.28-8.53 20.25-11.1 20.25-17.5L20.25-17.5ZM42.85-28.8L42.85-20.45 54.85-20.45 54.85-14.75 42.85-14.75 42.85-5.9 57.3-5.9 57.3 0 34.65 0 34.65-34.65 57.3-34.65 56.45-28.8 42.85-28.8ZM75.15-6.4L81.65-34.65 90.05-34.65 80.05 0 69.95 0 60-34.65 68.7-34.65 75.15-6.4ZM118.39-10.15Q118.39-6.9 116.69-4.4 114.99-1.9 111.82-0.53 108.64 0.85 104.29 0.85L104.29 0.85Q95.69 0.85 90.59-4.15L90.59-4.15 94.74-8.75Q98.69-5.25 104.09-5.25L104.09-5.25Q106.69-5.25 108.27-6.38 109.84-7.5 109.84-9.5L109.84-9.5Q109.84-11.4 108.52-12.48 107.19-13.55 103.59-14.65L103.59-14.65Q97.49-16.5 94.94-19 92.39-21.5 92.39-25.45L92.39-25.45Q92.39-28.55 94.12-30.85 95.84-33.15 98.82-34.35 101.79-35.55 105.44-35.55L105.44-35.55Q113.09-35.55 117.84-31.05L117.84-31.05 113.99-26.6Q112.24-28.05 110.22-28.78 108.19-29.5 106.04-29.5L106.04-29.5Q103.64-29.5 102.27-28.63 100.89-27.75 100.89-26.1L100.89-26.1Q100.89-25 101.52-24.25 102.14-23.5 103.59-22.85 105.04-22.2 107.94-21.3L107.94-21.3Q113.24-19.7 115.82-17.18 118.39-14.65 118.39-10.15L118.39-10.15ZM137.89-35.55Q141.49-35.55 144.09-34.6 146.69-33.65 148.99-31.75L148.99-31.75 144.99-26.9Q141.84-29.45 138.09-29.45L138.09-29.45Q134.54-29.45 132.37-26.45 130.19-23.45 130.19-17.4L130.19-17.4Q130.19-11.35 132.34-8.43 134.49-5.5 138.24-5.5L138.24-5.5Q140.54-5.5 142.19-6.3 143.84-7.1 145.74-8.6L145.74-8.6 149.44-3.85Q144.84 0.85 137.79 0.85L137.79 0.85Q133.04 0.85 129.42-1.25 125.79-3.35 123.74-7.48 121.69-11.6 121.69-17.4L121.69-17.4Q121.69-23.05 123.79-27.15 125.89-31.25 129.59-33.4 133.29-35.55 137.89-35.55L137.89-35.55ZM177.89-34.65L177.89-11.6Q177.89-8 176.44-5.18 174.99-2.35 172.09-0.75 169.19 0.85 164.99 0.85L164.99 0.85Q158.69 0.85 155.39-2.5 152.09-5.85 152.09-11.6L152.09-11.6 152.09-34.65 160.34-34.65 160.34-14.65Q160.34-11.3 160.69-9.3 161.04-7.3 162.06-6.28 163.09-5.25 164.99-5.25L164.99-5.25Q166.89-5.25 167.91-6.28 168.94-7.3 169.29-9.3 169.64-11.3 169.64-14.65L169.64-14.65 169.64-34.65 177.89-34.65ZM184.64 0L184.64-34.65 192.84-34.65 192.84-6.5 207.84-6.5 207.04 0 184.64 0ZM238.78-23.35Q238.78-17.5 235.11-14.53 231.43-11.55 225.08-11.55L225.08-11.55 221.28-11.55 221.28 0 213.08 0 213.08-34.65 223.98-34.65Q231.18-34.65 234.98-31.83 238.78-29 238.78-23.35L238.78-23.35ZM230.38-23.35Q230.38-28.8 224.13-28.8L224.13-28.8 221.28-28.8 221.28-17.45 224.53-17.45Q227.33-17.45 228.86-18.9 230.38-20.35 230.38-23.35L230.38-23.35ZM259.03-28.35L259.03 0 250.83 0 250.83-28.35 241.08-28.35 241.08-34.65 269.13-34.65 268.33-28.35 259.03-28.35ZM298.83-17.35Q298.83-8.9 295.25-4.03 291.68 0.85 284.98 0.85L284.98 0.85Q278.23 0.85 274.68-3.98 271.13-8.8 271.13-17.35L271.13-17.35Q271.13-25.8 274.7-30.68 278.28-35.55 284.98-35.55L284.98-35.55Q291.73-35.55 295.28-30.73 298.83-25.9 298.83-17.35L298.83-17.35ZM290.43-17.35Q290.43-23.75 289.15-26.65 287.88-29.55 284.98-29.55L284.98-29.55Q282.08-29.55 280.8-26.65 279.53-23.75 279.53-17.35L279.53-17.35Q279.53-10.95 280.8-8.05 282.08-5.15 284.98-5.15L284.98-5.15Q287.93-5.15 289.18-8.05 290.43-10.95 290.43-17.35L290.43-17.35ZM328.03-24.1Q328.03-20.6 326.15-18.23 324.28-15.85 321.13-14.6L321.13-14.6 330.18 0 320.88 0 313.38-13.25 311.08-13.25 311.08 0 302.88 0 302.88-34.65 313.78-34.65Q320.93-34.65 324.48-32.05 328.03-29.45 328.03-24.1L328.03-24.1ZM319.58-24.1Q319.58-26.6 318.15-27.75 316.73-28.9 313.78-28.9L313.78-28.9 311.08-28.9 311.08-18.9 314.13-18.9Q316.83-18.9 318.2-20.15 319.58-21.4 319.58-24.1L319.58-24.1Z" opacity="1" transform="matrix(1,0,0,1,0,0)" fill="#111111" class="wordmark-text-0" data-fill-palette-color="primary" id="text-0"></path></svg></g></svg></g></svg></g></svg></g><g><svg viewBox="0 0 112.14319319252651 115.05237333333335" height="115.05237333333335" width="112.14319319252651"><g><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0" y="0" viewBox="5.637740379986418 5.999 87.72526144487975 90.001" enable-background="new 0 0 100 100" xml:space="preserve" height="115.05237333333335" width="112.14319319252651" class="icon-icon-0" data-fill-palette-color="accent" id="icon-0"><g fill="#81ffd9" data-fill-palette-color="accent"><path d="M58.203 96H40.796c-2.211 0-4.011-1.8-4.011-4.011v-7.236c0-0.358-0.744-0.91-1.94-1.438l-0.194-0.09c-2.285-1.021-4.509-2.359-6.563-3.955-0.524-0.407-1.227-0.518-1.633-0.281l-6.016 3.473c-2.092 1.207-4.493 0.42-5.558-1.424L6.177 65.962c-0.536-0.928-0.678-2.008-0.401-3.043 0.278-1.036 0.941-1.901 1.87-2.437l0.938 1.286L7.787 60.4l0.414-0.238 0.912 1.301L8.32 60.094l4.765-2.75c1.446-0.84 1.446-0.84 1.32-1.739-0.201-1.366-0.29-2.776-0.29-4.503v-0.203c0-1.726 0.089-3.136 0.281-4.435l0.013-0.094c0.122-0.874 0.122-0.874-1.377-1.743l-4.709-2.719 0.696-1.425-0.79 1.371-0.44-0.254 0.699-1.423-0.843 1.34c-1.914-1.105-2.573-3.563-1.467-5.478l8.704-15.076c0.714-1.238 2.046-2.006 3.476-2.006 0.701 0 1.394 0.186 2.003 0.537l6.111 3.528c0.409 0.223 1.1 0.11 1.617-0.292 2.052-1.594 4.277-2.933 6.612-3.979l0.145-0.066c1.196-0.528 1.94-1.079 1.94-1.438v-7.236c0-2.212 1.8-4.012 4.011-4.012h17.407c2.212 0 4.011 1.8 4.011 4.012v7.236c0 0.358 0.745 0.909 1.942 1.438l0.171 0.079c2.323 1.042 4.538 2.376 6.586 3.966 0.516 0.401 1.205 0.513 1.616 0.292l6.083-3.512c2.022-1.147 4.446-0.383 5.508 1.451l8.703 15.077c1.104 1.916 0.446 4.373-1.469 5.479l-4.01 2.316-0.901-1.308 0.794 1.369-1.223 0.707c-1.544 0.895-1.544 0.895-1.418 1.795l0.016 0.116c0.188 1.314 0.272 2.698 0.272 4.387L84.884 51l0.001 0.102c0 1.72-0.088 3.123-0.277 4.413l-0.001 0.016c-0.136 0.975-0.136 0.975 1.362 1.844l1.269 0.732-0.692 1.426 0.794-1.368 3.341 1.929-0.698 1.425 0.79-1.372 0.605 0.351c0.905 0.521 1.569 1.387 1.846 2.423 0.278 1.035 0.136 2.115-0.399 3.043L84.12 81.037c-0.715 1.238-2.048 2.006-3.478 2.006-0.701 0-1.394-0.186-2.003-0.537l-6.084-3.513c-0.436-0.252-1.119-0.13-1.642 0.275-2.041 1.585-4.247 2.915-6.558 3.954l-0.227 0.103c-1.171 0.518-1.916 1.069-1.916 1.428v7.236C62.214 94.2 60.415 96 58.203 96zM36.123 80.419c1.643 0.727 3.827 1.965 3.827 4.334v7.236c0 0.466 0.379 0.847 0.846 0.847h17.407c0.467 0 0.848-0.381 0.848-0.847v-7.236c0-2.369 2.185-3.607 3.827-4.334l0.129-0.06c2.102-0.939 4.107-2.147 5.965-3.589 1.52-1.182 3.647-1.392 5.153-0.525l2.512 1.449-0.679 1.437 0.785-1.373 1.374 0.793-0.645 1.454 0.791-1.37 1.941 1.121c0.173 0.092 0.303 0.123 0.438 0.123 0.304 0 0.586-0.163 0.736-0.425l8.703-15.074c0.113-0.196 0.144-0.424 0.084-0.643-0.058-0.218-0.197-0.4-0.394-0.514l-5.343-3.085c-2.381-1.38-3.312-2.363-2.978-4.897l0.016-0.122c0.174-1.184 0.253-2.446 0.253-4.018L81.72 51l0.001-0.102c0-1.571-0.079-2.834-0.247-3.974l-0.018-0.145c-0.353-2.541 0.576-3.529 2.926-4.891l1.577-0.911 0.891 1.312-0.792-1.369 3.04-1.755 0.884 1.316-0.789-1.371 0.523-0.303c0.46-0.266 0.6-0.785 0.366-1.19l-8.703-15.075c-0.227-0.393-0.754-0.542-1.157-0.31l-3.479 2.008-0.84-1.342 0.75 1.394-2.604 1.5v0c-1.617 0.865-3.599 0.585-5.077-0.565-1.854-1.439-3.859-2.646-5.96-3.586l-0.085-0.041c-1.696-0.75-3.876-1.988-3.876-4.354v-7.236c0-0.467-0.381-0.847-0.848-0.847H40.796c-0.467 0-0.846 0.379-0.846 0.847v7.236c0 2.369-2.184 3.607-3.827 4.333l-0.75-1.397 0.655 1.44c-2.139 0.958-4.146 2.166-5.999 3.605-1.52 1.182-3.648 1.392-5.153 0.526l-2.513-1.451 0.679-1.436-0.785 1.374-3.413-1.971c-0.197-0.114-0.338-0.152-0.487-0.152-0.303 0-0.584 0.163-0.735 0.424L8.917 37.62c-0.113 0.196-0.143 0.425-0.084 0.643s0.199 0.4 0.394 0.514l5.34 3.083c2.408 1.396 3.334 2.386 2.971 4.977l-0.014 0.099c-0.167 1.133-0.245 2.396-0.245 3.964l0.001 0.125c-0.001 1.646 0.077 2.909 0.245 4.052l0.014 0.107c0.362 2.573-0.565 3.562-2.921 4.929L9.285 63.19c-0.253 0.146-0.393 0.329-0.452 0.547-0.059 0.219-0.029 0.446 0.084 0.642l8.705 15.076c0.228 0.396 0.756 0.541 1.157 0.311l3.479-2.009 0.841 1.341-0.73-1.405 2.578-1.485c0.553-0.32 1.282-0.511 2.039-0.511 1.072 0 2.153 0.382 3.044 1.074 1.844 1.434 3.839 2.636 5.931 3.574l0.087 0.041-0.129 0.271-0.434 1.211L36.123 80.419z" fill="#81ffd9" data-fill-palette-color="accent"></path></g><g fill="#81ffd9" data-fill-palette-color="accent"><path d="M49.5 78.996c-15.382 0-27.896-12.513-27.896-27.895 0-15.382 12.514-27.896 27.896-27.896s27.896 12.514 27.896 27.896C77.396 66.483 64.882 78.996 49.5 78.996zM49.5 26.37c-13.637 0-24.731 11.095-24.731 24.732 0 13.637 11.094 24.731 24.731 24.731 13.638 0 24.732-11.095 24.732-24.731C74.232 37.464 63.138 26.37 49.5 26.37z" fill="#81ffd9" data-fill-palette-color="accent"></path></g><path fill-rule="evenodd" clip-rule="evenodd" d="M60.46 62.594l-2.454-2.454 8.588-8.587-8.588-8.589 2.454-2.454 11.042 11.043L60.46 62.594zM44.735 61.963l7.537-22.557h3.471l-7.537 22.557H44.735zM39.529 61.726L28.487 50.685l11.042-11.042 2.454 2.454-8.588 8.588 8.588 8.588L39.529 61.726z" fill="#81ffd9" data-fill-palette-color="accent"></path></svg></g></svg></g></svg></g><defs></defs></svg><rect width="395.52" height="87.8420490442071" fill="none" stroke="none" visibility="hidden"></rect></g></svg></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs" width="1000" height="222" viewBox="0 0 1000 222"><g transform="matrix(1,0,0,1,-0.6060606060606233,-0.19923359196604906)"><svg viewBox="0 0 396 88" data-background-color="#212529" preserveAspectRatio="xMidYMid meet" height="222" width="1000" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g id="tight-bounds" transform="matrix(1,0,0,1,0.2400000000000091,0.07897547789644932)"><svg viewBox="0 0 395.52 87.8420490442071" height="87.8420490442071" width="395.52"><g><svg viewBox="0 0 518.0379464725265 115.05237333333335" height="87.8420490442071" width="395.52"><g transform="matrix(1,0,0,1,122.51794647252652,35.55285333333334)"><svg viewBox="0 0 395.52 43.94666666666667" height="43.94666666666667" width="395.52"><g id="textblocktransform"><svg viewBox="0 0 395.52 43.94666666666667" height="43.94666666666667" width="395.52" id="textblock"><g><svg viewBox="0 0 395.52 43.94666666666667" height="43.94666666666667" width="395.52"><g transform="matrix(1,0,0,1,0,0)"><svg width="395.52" viewBox="2.6 -35.55 327.58 36.4" height="43.94666666666667" data-palette-color="#ffffff"><path d="M28.7-17.5Q28.7 0 11.95 0L11.95 0 2.6 0 2.6-34.65 11.35-34.65Q19.2-34.65 23.95-30.98 28.7-27.3 28.7-17.5L28.7-17.5ZM20.25-17.5Q20.25-23.95 18.25-26.33 16.25-28.7 12.55-28.7L12.55-28.7 10.8-28.7 10.8-5.95 12.55-5.95Q16.3-5.95 18.28-8.53 20.25-11.1 20.25-17.5L20.25-17.5ZM42.85-28.8L42.85-20.45 54.85-20.45 54.85-14.75 42.85-14.75 42.85-5.9 57.3-5.9 57.3 0 34.65 0 34.65-34.65 57.3-34.65 56.45-28.8 42.85-28.8ZM75.15-6.4L81.65-34.65 90.05-34.65 80.05 0 69.95 0 60-34.65 68.7-34.65 75.15-6.4ZM118.39-10.15Q118.39-6.9 116.69-4.4 114.99-1.9 111.82-0.53 108.64 0.85 104.29 0.85L104.29 0.85Q95.69 0.85 90.59-4.15L90.59-4.15 94.74-8.75Q98.69-5.25 104.09-5.25L104.09-5.25Q106.69-5.25 108.27-6.38 109.84-7.5 109.84-9.5L109.84-9.5Q109.84-11.4 108.52-12.48 107.19-13.55 103.59-14.65L103.59-14.65Q97.49-16.5 94.94-19 92.39-21.5 92.39-25.45L92.39-25.45Q92.39-28.55 94.12-30.85 95.84-33.15 98.82-34.35 101.79-35.55 105.44-35.55L105.44-35.55Q113.09-35.55 117.84-31.05L117.84-31.05 113.99-26.6Q112.24-28.05 110.22-28.78 108.19-29.5 106.04-29.5L106.04-29.5Q103.64-29.5 102.27-28.63 100.89-27.75 100.89-26.1L100.89-26.1Q100.89-25 101.52-24.25 102.14-23.5 103.59-22.85 105.04-22.2 107.94-21.3L107.94-21.3Q113.24-19.7 115.82-17.18 118.39-14.65 118.39-10.15L118.39-10.15ZM137.89-35.55Q141.49-35.55 144.09-34.6 146.69-33.65 148.99-31.75L148.99-31.75 144.99-26.9Q141.84-29.45 138.09-29.45L138.09-29.45Q134.54-29.45 132.37-26.45 130.19-23.45 130.19-17.4L130.19-17.4Q130.19-11.35 132.34-8.43 134.49-5.5 138.24-5.5L138.24-5.5Q140.54-5.5 142.19-6.3 143.84-7.1 145.74-8.6L145.74-8.6 149.44-3.85Q144.84 0.85 137.79 0.85L137.79 0.85Q133.04 0.85 129.42-1.25 125.79-3.35 123.74-7.48 121.69-11.6 121.69-17.4L121.69-17.4Q121.69-23.05 123.79-27.15 125.89-31.25 129.59-33.4 133.29-35.55 137.89-35.55L137.89-35.55ZM177.89-34.65L177.89-11.6Q177.89-8 176.44-5.18 174.99-2.35 172.09-0.75 169.19 0.85 164.99 0.85L164.99 0.85Q158.69 0.85 155.39-2.5 152.09-5.85 152.09-11.6L152.09-11.6 152.09-34.65 160.34-34.65 160.34-14.65Q160.34-11.3 160.69-9.3 161.04-7.3 162.06-6.28 163.09-5.25 164.99-5.25L164.99-5.25Q166.89-5.25 167.91-6.28 168.94-7.3 169.29-9.3 169.64-11.3 169.64-14.65L169.64-14.65 169.64-34.65 177.89-34.65ZM184.64 0L184.64-34.65 192.84-34.65 192.84-6.5 207.84-6.5 207.04 0 184.64 0ZM238.78-23.35Q238.78-17.5 235.11-14.53 231.43-11.55 225.08-11.55L225.08-11.55 221.28-11.55 221.28 0 213.08 0 213.08-34.65 223.98-34.65Q231.18-34.65 234.98-31.83 238.78-29 238.78-23.35L238.78-23.35ZM230.38-23.35Q230.38-28.8 224.13-28.8L224.13-28.8 221.28-28.8 221.28-17.45 224.53-17.45Q227.33-17.45 228.86-18.9 230.38-20.35 230.38-23.35L230.38-23.35ZM259.03-28.35L259.03 0 250.83 0 250.83-28.35 241.08-28.35 241.08-34.65 269.13-34.65 268.33-28.35 259.03-28.35ZM298.83-17.35Q298.83-8.9 295.25-4.03 291.68 0.85 284.98 0.85L284.98 0.85Q278.23 0.85 274.68-3.98 271.13-8.8 271.13-17.35L271.13-17.35Q271.13-25.8 274.7-30.68 278.28-35.55 284.98-35.55L284.98-35.55Q291.73-35.55 295.28-30.73 298.83-25.9 298.83-17.35L298.83-17.35ZM290.43-17.35Q290.43-23.75 289.15-26.65 287.88-29.55 284.98-29.55L284.98-29.55Q282.08-29.55 280.8-26.65 279.53-23.75 279.53-17.35L279.53-17.35Q279.53-10.95 280.8-8.05 282.08-5.15 284.98-5.15L284.98-5.15Q287.93-5.15 289.18-8.05 290.43-10.95 290.43-17.35L290.43-17.35ZM328.03-24.1Q328.03-20.6 326.15-18.23 324.28-15.85 321.13-14.6L321.13-14.6 330.18 0 320.88 0 313.38-13.25 311.08-13.25 311.08 0 302.88 0 302.88-34.65 313.78-34.65Q320.93-34.65 324.48-32.05 328.03-29.45 328.03-24.1L328.03-24.1ZM319.58-24.1Q319.58-26.6 318.15-27.75 316.73-28.9 313.78-28.9L313.78-28.9 311.08-28.9 311.08-18.9 314.13-18.9Q316.83-18.9 318.2-20.15 319.58-21.4 319.58-24.1L319.58-24.1Z" opacity="1" transform="matrix(1,0,0,1,0,0)" fill="#ffffff" class="wordmark-text-0" data-fill-palette-color="primary" id="text-0"></path></svg></g></svg></g></svg></g></svg></g><g><svg viewBox="0 0 112.14319319252651 115.05237333333335" height="115.05237333333335" width="112.14319319252651"><g><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0" y="0" viewBox="5.637740379986418 5.999 87.72526144487975 90.001" enable-background="new 0 0 100 100" xml:space="preserve" height="115.05237333333335" width="112.14319319252651" class="icon-icon-0" data-fill-palette-color="accent" id="icon-0"><g fill="#81ffd9" data-fill-palette-color="accent"><path d="M58.203 96H40.796c-2.211 0-4.011-1.8-4.011-4.011v-7.236c0-0.358-0.744-0.91-1.94-1.438l-0.194-0.09c-2.285-1.021-4.509-2.359-6.563-3.955-0.524-0.407-1.227-0.518-1.633-0.281l-6.016 3.473c-2.092 1.207-4.493 0.42-5.558-1.424L6.177 65.962c-0.536-0.928-0.678-2.008-0.401-3.043 0.278-1.036 0.941-1.901 1.87-2.437l0.938 1.286L7.787 60.4l0.414-0.238 0.912 1.301L8.32 60.094l4.765-2.75c1.446-0.84 1.446-0.84 1.32-1.739-0.201-1.366-0.29-2.776-0.29-4.503v-0.203c0-1.726 0.089-3.136 0.281-4.435l0.013-0.094c0.122-0.874 0.122-0.874-1.377-1.743l-4.709-2.719 0.696-1.425-0.79 1.371-0.44-0.254 0.699-1.423-0.843 1.34c-1.914-1.105-2.573-3.563-1.467-5.478l8.704-15.076c0.714-1.238 2.046-2.006 3.476-2.006 0.701 0 1.394 0.186 2.003 0.537l6.111 3.528c0.409 0.223 1.1 0.11 1.617-0.292 2.052-1.594 4.277-2.933 6.612-3.979l0.145-0.066c1.196-0.528 1.94-1.079 1.94-1.438v-7.236c0-2.212 1.8-4.012 4.011-4.012h17.407c2.212 0 4.011 1.8 4.011 4.012v7.236c0 0.358 0.745 0.909 1.942 1.438l0.171 0.079c2.323 1.042 4.538 2.376 6.586 3.966 0.516 0.401 1.205 0.513 1.616 0.292l6.083-3.512c2.022-1.147 4.446-0.383 5.508 1.451l8.703 15.077c1.104 1.916 0.446 4.373-1.469 5.479l-4.01 2.316-0.901-1.308 0.794 1.369-1.223 0.707c-1.544 0.895-1.544 0.895-1.418 1.795l0.016 0.116c0.188 1.314 0.272 2.698 0.272 4.387L84.884 51l0.001 0.102c0 1.72-0.088 3.123-0.277 4.413l-0.001 0.016c-0.136 0.975-0.136 0.975 1.362 1.844l1.269 0.732-0.692 1.426 0.794-1.368 3.341 1.929-0.698 1.425 0.79-1.372 0.605 0.351c0.905 0.521 1.569 1.387 1.846 2.423 0.278 1.035 0.136 2.115-0.399 3.043L84.12 81.037c-0.715 1.238-2.048 2.006-3.478 2.006-0.701 0-1.394-0.186-2.003-0.537l-6.084-3.513c-0.436-0.252-1.119-0.13-1.642 0.275-2.041 1.585-4.247 2.915-6.558 3.954l-0.227 0.103c-1.171 0.518-1.916 1.069-1.916 1.428v7.236C62.214 94.2 60.415 96 58.203 96zM36.123 80.419c1.643 0.727 3.827 1.965 3.827 4.334v7.236c0 0.466 0.379 0.847 0.846 0.847h17.407c0.467 0 0.848-0.381 0.848-0.847v-7.236c0-2.369 2.185-3.607 3.827-4.334l0.129-0.06c2.102-0.939 4.107-2.147 5.965-3.589 1.52-1.182 3.647-1.392 5.153-0.525l2.512 1.449-0.679 1.437 0.785-1.373 1.374 0.793-0.645 1.454 0.791-1.37 1.941 1.121c0.173 0.092 0.303 0.123 0.438 0.123 0.304 0 0.586-0.163 0.736-0.425l8.703-15.074c0.113-0.196 0.144-0.424 0.084-0.643-0.058-0.218-0.197-0.4-0.394-0.514l-5.343-3.085c-2.381-1.38-3.312-2.363-2.978-4.897l0.016-0.122c0.174-1.184 0.253-2.446 0.253-4.018L81.72 51l0.001-0.102c0-1.571-0.079-2.834-0.247-3.974l-0.018-0.145c-0.353-2.541 0.576-3.529 2.926-4.891l1.577-0.911 0.891 1.312-0.792-1.369 3.04-1.755 0.884 1.316-0.789-1.371 0.523-0.303c0.46-0.266 0.6-0.785 0.366-1.19l-8.703-15.075c-0.227-0.393-0.754-0.542-1.157-0.31l-3.479 2.008-0.84-1.342 0.75 1.394-2.604 1.5v0c-1.617 0.865-3.599 0.585-5.077-0.565-1.854-1.439-3.859-2.646-5.96-3.586l-0.085-0.041c-1.696-0.75-3.876-1.988-3.876-4.354v-7.236c0-0.467-0.381-0.847-0.848-0.847H40.796c-0.467 0-0.846 0.379-0.846 0.847v7.236c0 2.369-2.184 3.607-3.827 4.333l-0.75-1.397 0.655 1.44c-2.139 0.958-4.146 2.166-5.999 3.605-1.52 1.182-3.648 1.392-5.153 0.526l-2.513-1.451 0.679-1.436-0.785 1.374-3.413-1.971c-0.197-0.114-0.338-0.152-0.487-0.152-0.303 0-0.584 0.163-0.735 0.424L8.917 37.62c-0.113 0.196-0.143 0.425-0.084 0.643s0.199 0.4 0.394 0.514l5.34 3.083c2.408 1.396 3.334 2.386 2.971 4.977l-0.014 0.099c-0.167 1.133-0.245 2.396-0.245 3.964l0.001 0.125c-0.001 1.646 0.077 2.909 0.245 4.052l0.014 0.107c0.362 2.573-0.565 3.562-2.921 4.929L9.285 63.19c-0.253 0.146-0.393 0.329-0.452 0.547-0.059 0.219-0.029 0.446 0.084 0.642l8.705 15.076c0.228 0.396 0.756 0.541 1.157 0.311l3.479-2.009 0.841 1.341-0.73-1.405 2.578-1.485c0.553-0.32 1.282-0.511 2.039-0.511 1.072 0 2.153 0.382 3.044 1.074 1.844 1.434 3.839 2.636 5.931 3.574l0.087 0.041-0.129 0.271-0.434 1.211L36.123 80.419z" fill="#81ffd9" data-fill-palette-color="accent"></path></g><g fill="#81ffd9" data-fill-palette-color="accent"><path d="M49.5 78.996c-15.382 0-27.896-12.513-27.896-27.895 0-15.382 12.514-27.896 27.896-27.896s27.896 12.514 27.896 27.896C77.396 66.483 64.882 78.996 49.5 78.996zM49.5 26.37c-13.637 0-24.731 11.095-24.731 24.732 0 13.637 11.094 24.731 24.731 24.731 13.638 0 24.732-11.095 24.732-24.731C74.232 37.464 63.138 26.37 49.5 26.37z" fill="#81ffd9" data-fill-palette-color="accent"></path></g><path fill-rule="evenodd" clip-rule="evenodd" d="M60.46 62.594l-2.454-2.454 8.588-8.587-8.588-8.589 2.454-2.454 11.042 11.043L60.46 62.594zM44.735 61.963l7.537-22.557h3.471l-7.537 22.557H44.735zM39.529 61.726L28.487 50.685l11.042-11.042 2.454 2.454-8.588 8.588 8.588 8.588L39.529 61.726z" fill="#81ffd9" data-fill-palette-color="accent"></path></svg></g></svg></g></svg></g><defs></defs></svg><rect width="395.52" height="87.8420490442071" fill="none" stroke="none" visibility="hidden"></rect></g></svg></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs" width="1000" height="1000" viewBox="0 0 1000 1000"><rect width="1000" height="1000" fill="#000000"></rect><g transform="matrix(0.7,0,0,0.7,149.57575757575756,422.16053648562377)"><svg viewBox="0 0 396 88" data-background-color="#212529" preserveAspectRatio="xMidYMid meet" height="222" width="1000" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g id="tight-bounds" transform="matrix(1,0,0,1,0.2400000000000091,0.07897547789644932)"><svg viewBox="0 0 395.52 87.8420490442071" height="87.8420490442071" width="395.52"><g><svg viewBox="0 0 518.0379464725265 115.05237333333335" height="87.8420490442071" width="395.52"><g transform="matrix(1,0,0,1,122.51794647252652,35.55285333333334)"><svg viewBox="0 0 395.52 43.94666666666667" height="43.94666666666667" width="395.52"><g id="textblocktransform"><svg viewBox="0 0 395.52 43.94666666666667" height="43.94666666666667" width="395.52" id="textblock"><g><svg viewBox="0 0 395.52 43.94666666666667" height="43.94666666666667" width="395.52"><g transform="matrix(1,0,0,1,0,0)"><svg width="395.52" viewBox="2.6 -35.55 327.58 36.4" height="43.94666666666667" data-palette-color="#ffffff"><path d="M28.7-17.5Q28.7 0 11.95 0L11.95 0 2.6 0 2.6-34.65 11.35-34.65Q19.2-34.65 23.95-30.98 28.7-27.3 28.7-17.5L28.7-17.5ZM20.25-17.5Q20.25-23.95 18.25-26.33 16.25-28.7 12.55-28.7L12.55-28.7 10.8-28.7 10.8-5.95 12.55-5.95Q16.3-5.95 18.28-8.53 20.25-11.1 20.25-17.5L20.25-17.5ZM42.85-28.8L42.85-20.45 54.85-20.45 54.85-14.75 42.85-14.75 42.85-5.9 57.3-5.9 57.3 0 34.65 0 34.65-34.65 57.3-34.65 56.45-28.8 42.85-28.8ZM75.15-6.4L81.65-34.65 90.05-34.65 80.05 0 69.95 0 60-34.65 68.7-34.65 75.15-6.4ZM118.39-10.15Q118.39-6.9 116.69-4.4 114.99-1.9 111.82-0.53 108.64 0.85 104.29 0.85L104.29 0.85Q95.69 0.85 90.59-4.15L90.59-4.15 94.74-8.75Q98.69-5.25 104.09-5.25L104.09-5.25Q106.69-5.25 108.27-6.38 109.84-7.5 109.84-9.5L109.84-9.5Q109.84-11.4 108.52-12.48 107.19-13.55 103.59-14.65L103.59-14.65Q97.49-16.5 94.94-19 92.39-21.5 92.39-25.45L92.39-25.45Q92.39-28.55 94.12-30.85 95.84-33.15 98.82-34.35 101.79-35.55 105.44-35.55L105.44-35.55Q113.09-35.55 117.84-31.05L117.84-31.05 113.99-26.6Q112.24-28.05 110.22-28.78 108.19-29.5 106.04-29.5L106.04-29.5Q103.64-29.5 102.27-28.63 100.89-27.75 100.89-26.1L100.89-26.1Q100.89-25 101.52-24.25 102.14-23.5 103.59-22.85 105.04-22.2 107.94-21.3L107.94-21.3Q113.24-19.7 115.82-17.18 118.39-14.65 118.39-10.15L118.39-10.15ZM137.89-35.55Q141.49-35.55 144.09-34.6 146.69-33.65 148.99-31.75L148.99-31.75 144.99-26.9Q141.84-29.45 138.09-29.45L138.09-29.45Q134.54-29.45 132.37-26.45 130.19-23.45 130.19-17.4L130.19-17.4Q130.19-11.35 132.34-8.43 134.49-5.5 138.24-5.5L138.24-5.5Q140.54-5.5 142.19-6.3 143.84-7.1 145.74-8.6L145.74-8.6 149.44-3.85Q144.84 0.85 137.79 0.85L137.79 0.85Q133.04 0.85 129.42-1.25 125.79-3.35 123.74-7.48 121.69-11.6 121.69-17.4L121.69-17.4Q121.69-23.05 123.79-27.15 125.89-31.25 129.59-33.4 133.29-35.55 137.89-35.55L137.89-35.55ZM177.89-34.65L177.89-11.6Q177.89-8 176.44-5.18 174.99-2.35 172.09-0.75 169.19 0.85 164.99 0.85L164.99 0.85Q158.69 0.85 155.39-2.5 152.09-5.85 152.09-11.6L152.09-11.6 152.09-34.65 160.34-34.65 160.34-14.65Q160.34-11.3 160.69-9.3 161.04-7.3 162.06-6.28 163.09-5.25 164.99-5.25L164.99-5.25Q166.89-5.25 167.91-6.28 168.94-7.3 169.29-9.3 169.64-11.3 169.64-14.65L169.64-14.65 169.64-34.65 177.89-34.65ZM184.64 0L184.64-34.65 192.84-34.65 192.84-6.5 207.84-6.5 207.04 0 184.64 0ZM238.78-23.35Q238.78-17.5 235.11-14.53 231.43-11.55 225.08-11.55L225.08-11.55 221.28-11.55 221.28 0 213.08 0 213.08-34.65 223.98-34.65Q231.18-34.65 234.98-31.83 238.78-29 238.78-23.35L238.78-23.35ZM230.38-23.35Q230.38-28.8 224.13-28.8L224.13-28.8 221.28-28.8 221.28-17.45 224.53-17.45Q227.33-17.45 228.86-18.9 230.38-20.35 230.38-23.35L230.38-23.35ZM259.03-28.35L259.03 0 250.83 0 250.83-28.35 241.08-28.35 241.08-34.65 269.13-34.65 268.33-28.35 259.03-28.35ZM298.83-17.35Q298.83-8.9 295.25-4.03 291.68 0.85 284.98 0.85L284.98 0.85Q278.23 0.85 274.68-3.98 271.13-8.8 271.13-17.35L271.13-17.35Q271.13-25.8 274.7-30.68 278.28-35.55 284.98-35.55L284.98-35.55Q291.73-35.55 295.28-30.73 298.83-25.9 298.83-17.35L298.83-17.35ZM290.43-17.35Q290.43-23.75 289.15-26.65 287.88-29.55 284.98-29.55L284.98-29.55Q282.08-29.55 280.8-26.65 279.53-23.75 279.53-17.35L279.53-17.35Q279.53-10.95 280.8-8.05 282.08-5.15 284.98-5.15L284.98-5.15Q287.93-5.15 289.18-8.05 290.43-10.95 290.43-17.35L290.43-17.35ZM328.03-24.1Q328.03-20.6 326.15-18.23 324.28-15.85 321.13-14.6L321.13-14.6 330.18 0 320.88 0 313.38-13.25 311.08-13.25 311.08 0 302.88 0 302.88-34.65 313.78-34.65Q320.93-34.65 324.48-32.05 328.03-29.45 328.03-24.1L328.03-24.1ZM319.58-24.1Q319.58-26.6 318.15-27.75 316.73-28.9 313.78-28.9L313.78-28.9 311.08-28.9 311.08-18.9 314.13-18.9Q316.83-18.9 318.2-20.15 319.58-21.4 319.58-24.1L319.58-24.1Z" opacity="1" transform="matrix(1,0,0,1,0,0)" fill="#ffffff" class="wordmark-text-0" data-fill-palette-color="primary" id="text-0"></path></svg></g></svg></g></svg></g></svg></g><g><svg viewBox="0 0 112.14319319252651 115.05237333333335" height="115.05237333333335" width="112.14319319252651"><g><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0" y="0" viewBox="5.637740379986418 5.999 87.72526144487975 90.001" enable-background="new 0 0 100 100" xml:space="preserve" height="115.05237333333335" width="112.14319319252651" class="icon-icon-0" data-fill-palette-color="accent" id="icon-0"><g fill="#81ffd9" data-fill-palette-color="accent"><path d="M58.203 96H40.796c-2.211 0-4.011-1.8-4.011-4.011v-7.236c0-0.358-0.744-0.91-1.94-1.438l-0.194-0.09c-2.285-1.021-4.509-2.359-6.563-3.955-0.524-0.407-1.227-0.518-1.633-0.281l-6.016 3.473c-2.092 1.207-4.493 0.42-5.558-1.424L6.177 65.962c-0.536-0.928-0.678-2.008-0.401-3.043 0.278-1.036 0.941-1.901 1.87-2.437l0.938 1.286L7.787 60.4l0.414-0.238 0.912 1.301L8.32 60.094l4.765-2.75c1.446-0.84 1.446-0.84 1.32-1.739-0.201-1.366-0.29-2.776-0.29-4.503v-0.203c0-1.726 0.089-3.136 0.281-4.435l0.013-0.094c0.122-0.874 0.122-0.874-1.377-1.743l-4.709-2.719 0.696-1.425-0.79 1.371-0.44-0.254 0.699-1.423-0.843 1.34c-1.914-1.105-2.573-3.563-1.467-5.478l8.704-15.076c0.714-1.238 2.046-2.006 3.476-2.006 0.701 0 1.394 0.186 2.003 0.537l6.111 3.528c0.409 0.223 1.1 0.11 1.617-0.292 2.052-1.594 4.277-2.933 6.612-3.979l0.145-0.066c1.196-0.528 1.94-1.079 1.94-1.438v-7.236c0-2.212 1.8-4.012 4.011-4.012h17.407c2.212 0 4.011 1.8 4.011 4.012v7.236c0 0.358 0.745 0.909 1.942 1.438l0.171 0.079c2.323 1.042 4.538 2.376 6.586 3.966 0.516 0.401 1.205 0.513 1.616 0.292l6.083-3.512c2.022-1.147 4.446-0.383 5.508 1.451l8.703 15.077c1.104 1.916 0.446 4.373-1.469 5.479l-4.01 2.316-0.901-1.308 0.794 1.369-1.223 0.707c-1.544 0.895-1.544 0.895-1.418 1.795l0.016 0.116c0.188 1.314 0.272 2.698 0.272 4.387L84.884 51l0.001 0.102c0 1.72-0.088 3.123-0.277 4.413l-0.001 0.016c-0.136 0.975-0.136 0.975 1.362 1.844l1.269 0.732-0.692 1.426 0.794-1.368 3.341 1.929-0.698 1.425 0.79-1.372 0.605 0.351c0.905 0.521 1.569 1.387 1.846 2.423 0.278 1.035 0.136 2.115-0.399 3.043L84.12 81.037c-0.715 1.238-2.048 2.006-3.478 2.006-0.701 0-1.394-0.186-2.003-0.537l-6.084-3.513c-0.436-0.252-1.119-0.13-1.642 0.275-2.041 1.585-4.247 2.915-6.558 3.954l-0.227 0.103c-1.171 0.518-1.916 1.069-1.916 1.428v7.236C62.214 94.2 60.415 96 58.203 96zM36.123 80.419c1.643 0.727 3.827 1.965 3.827 4.334v7.236c0 0.466 0.379 0.847 0.846 0.847h17.407c0.467 0 0.848-0.381 0.848-0.847v-7.236c0-2.369 2.185-3.607 3.827-4.334l0.129-0.06c2.102-0.939 4.107-2.147 5.965-3.589 1.52-1.182 3.647-1.392 5.153-0.525l2.512 1.449-0.679 1.437 0.785-1.373 1.374 0.793-0.645 1.454 0.791-1.37 1.941 1.121c0.173 0.092 0.303 0.123 0.438 0.123 0.304 0 0.586-0.163 0.736-0.425l8.703-15.074c0.113-0.196 0.144-0.424 0.084-0.643-0.058-0.218-0.197-0.4-0.394-0.514l-5.343-3.085c-2.381-1.38-3.312-2.363-2.978-4.897l0.016-0.122c0.174-1.184 0.253-2.446 0.253-4.018L81.72 51l0.001-0.102c0-1.571-0.079-2.834-0.247-3.974l-0.018-0.145c-0.353-2.541 0.576-3.529 2.926-4.891l1.577-0.911 0.891 1.312-0.792-1.369 3.04-1.755 0.884 1.316-0.789-1.371 0.523-0.303c0.46-0.266 0.6-0.785 0.366-1.19l-8.703-15.075c-0.227-0.393-0.754-0.542-1.157-0.31l-3.479 2.008-0.84-1.342 0.75 1.394-2.604 1.5v0c-1.617 0.865-3.599 0.585-5.077-0.565-1.854-1.439-3.859-2.646-5.96-3.586l-0.085-0.041c-1.696-0.75-3.876-1.988-3.876-4.354v-7.236c0-0.467-0.381-0.847-0.848-0.847H40.796c-0.467 0-0.846 0.379-0.846 0.847v7.236c0 2.369-2.184 3.607-3.827 4.333l-0.75-1.397 0.655 1.44c-2.139 0.958-4.146 2.166-5.999 3.605-1.52 1.182-3.648 1.392-5.153 0.526l-2.513-1.451 0.679-1.436-0.785 1.374-3.413-1.971c-0.197-0.114-0.338-0.152-0.487-0.152-0.303 0-0.584 0.163-0.735 0.424L8.917 37.62c-0.113 0.196-0.143 0.425-0.084 0.643s0.199 0.4 0.394 0.514l5.34 3.083c2.408 1.396 3.334 2.386 2.971 4.977l-0.014 0.099c-0.167 1.133-0.245 2.396-0.245 3.964l0.001 0.125c-0.001 1.646 0.077 2.909 0.245 4.052l0.014 0.107c0.362 2.573-0.565 3.562-2.921 4.929L9.285 63.19c-0.253 0.146-0.393 0.329-0.452 0.547-0.059 0.219-0.029 0.446 0.084 0.642l8.705 15.076c0.228 0.396 0.756 0.541 1.157 0.311l3.479-2.009 0.841 1.341-0.73-1.405 2.578-1.485c0.553-0.32 1.282-0.511 2.039-0.511 1.072 0 2.153 0.382 3.044 1.074 1.844 1.434 3.839 2.636 5.931 3.574l0.087 0.041-0.129 0.271-0.434 1.211L36.123 80.419z" fill="#ffffff" data-fill-palette-color="accent"></path></g><g fill="#81ffd9" data-fill-palette-color="accent"><path d="M49.5 78.996c-15.382 0-27.896-12.513-27.896-27.895 0-15.382 12.514-27.896 27.896-27.896s27.896 12.514 27.896 27.896C77.396 66.483 64.882 78.996 49.5 78.996zM49.5 26.37c-13.637 0-24.731 11.095-24.731 24.732 0 13.637 11.094 24.731 24.731 24.731 13.638 0 24.732-11.095 24.732-24.731C74.232 37.464 63.138 26.37 49.5 26.37z" fill="#ffffff" data-fill-palette-color="accent"></path></g><path fill-rule="evenodd" clip-rule="evenodd" d="M60.46 62.594l-2.454-2.454 8.588-8.587-8.588-8.589 2.454-2.454 11.042 11.043L60.46 62.594zM44.735 61.963l7.537-22.557h3.471l-7.537 22.557H44.735zM39.529 61.726L28.487 50.685l11.042-11.042 2.454 2.454-8.588 8.588 8.588 8.588L39.529 61.726z" fill="#ffffff" data-fill-palette-color="accent"></path></svg></g></svg></g></svg></g><defs></defs></svg><rect width="395.52" height="87.8420490442071" fill="none" stroke="none" visibility="hidden"></rect></g></svg></g></svg>