jekyll-theme-elementary-blog 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (79) hide show
  1. checksums.yaml +4 -4
  2. data/.editorconfig +12 -0
  3. data/.github/workflows/deploy.yml +32 -0
  4. data/.gitignore +5 -0
  5. data/404.md +16 -0
  6. data/Gemfile +10 -0
  7. data/LICENSE +674 -0
  8. data/README.md +121 -0
  9. data/_config.yaml +56 -0
  10. data/_includes/appcenter.html +9 -0
  11. data/_includes/byline.html +36 -0
  12. data/_includes/featured.html +27 -0
  13. data/_includes/footer.html +11 -0
  14. data/_includes/head.html +48 -0
  15. data/_includes/license.html +9 -0
  16. data/_includes/medium.html +8 -0
  17. data/_includes/nav.html +51 -0
  18. data/_includes/outdated.html +14 -0
  19. data/_includes/read-time.html +5 -0
  20. data/_includes/scripts.html +16 -0
  21. data/_includes/social.html +102 -0
  22. data/_includes/spotlight.html +15 -0
  23. data/_includes/svg/appcenter.svg +32 -0
  24. data/_includes/svg/creative-commons-by.svg +1 -0
  25. data/_includes/svg/creative-commons-sa.svg +1 -0
  26. data/_includes/svg/creative-commons.svg +1 -0
  27. data/_includes/svg/elementary.svg +28 -0
  28. data/_includes/svg/facebook.svg +1 -0
  29. data/_includes/svg/github.svg +1 -0
  30. data/_includes/svg/logomark.svg +1 -0
  31. data/_includes/svg/mastodon.svg +1 -0
  32. data/_includes/svg/patreon.svg +1 -0
  33. data/_includes/svg/paypal.svg +1 -0
  34. data/_includes/svg/reddit.svg +1 -0
  35. data/_includes/svg/rss-square.svg +1 -0
  36. data/_includes/svg/shopping-cart.svg +1 -0
  37. data/_includes/svg/slack.svg +1 -0
  38. data/_includes/svg/stack-exchange.svg +1 -0
  39. data/_includes/svg/twitter.svg +1 -0
  40. data/_includes/tags.html +7 -0
  41. data/_includes/thanks.html +93 -0
  42. data/_includes/title.html +12 -0
  43. data/_includes/twitter-card.html +24 -0
  44. data/_layouts/default.html +14 -0
  45. data/_layouts/error.html +8 -0
  46. data/_layouts/post.html +53 -0
  47. data/_layouts/tagfeed.json +51 -0
  48. data/_layouts/uglify.html +4 -0
  49. data/_posts/1992-02-01-test.md +125 -0
  50. data/_posts/2019-10-01-future-embargoed-post.md +18 -0
  51. data/_posts/2019-11-25-sponsor-post.md +18 -0
  52. data/_posts/2020-07-16-twitter-embeds.md +39 -0
  53. data/_posts/3000-12-31-future-post.md +11 -0
  54. data/_sass/_byline.scss +84 -0
  55. data/_sass/_code.scss +196 -0
  56. data/_sass/_colors.scss +94 -0
  57. data/_sass/_featured.scss +149 -0
  58. data/_sass/_figures.scss +150 -0
  59. data/_sass/_layout.scss +168 -0
  60. data/_sass/_nav.scss +73 -0
  61. data/_sass/_tags.scss +17 -0
  62. data/_sass/_twitter-cards.scss +79 -0
  63. data/_sass/_typography.scss +162 -0
  64. data/authors.md +23 -0
  65. data/blog-card.xcf +0 -0
  66. data/css/main.scss +119 -0
  67. data/feed.json +51 -0
  68. data/feed.xml +44 -0
  69. data/feed/updates.json +5 -0
  70. data/images/cc-by-sa.png +0 -0
  71. data/images/edit-copy-32.svg +439 -0
  72. data/images/facebook.svg +60 -0
  73. data/images/mastodon.svg +70 -0
  74. data/images/reddit.svg +27 -0
  75. data/images/twitter.svg +67 -0
  76. data/index.html +56 -0
  77. data/jekyll-theme-elementary-blog.gemspec +23 -0
  78. data/tags.md +20 -0
  79. metadata +91 -14
@@ -0,0 +1,51 @@
1
+ ---
2
+ layout: uglify
3
+ ---
4
+ {
5
+ "lastBuildDate": "{{ site.time | date_to_rfc822 }}",
6
+ "generator": "Jekyll v{{ jekyll.version }}",
7
+ "posts": [
8
+ {% assign counter = 0 %}
9
+ {% for post in site.posts %}
10
+ {% unless post.hidden %}
11
+ {% assign counter = counter | plus: 1 %}
12
+ {% unless counter > 3 %}
13
+ {
14
+ "url": "{{ post.url | prepend: site.baseurl | prepend: site.url }}",
15
+ "title": {{ post.title | jsonify }},
16
+ "pubDate": "{{ post.date | date_to_rfc822 }}",
17
+ {% if post.description %}
18
+ "description": {{ post.description | jsonify }},
19
+ {% endif %}
20
+ "author": {
21
+ {% if site.authors[post.author].name %}
22
+ {% assign author=site.authors[post.author] %}
23
+ {% endif %}
24
+ {% if author.gravatar %}
25
+ "gravatar": "{{ author.gravatar }}",
26
+ "name": "{{ author.name }}"
27
+ {% else %}
28
+ "gravatar": "{{ site.gravatar }}",
29
+ "name": "elementary"
30
+ {% endif %}
31
+ },
32
+ {% if post.image %}
33
+ {% assign prefix = post.image | slice: 0, 4 %}
34
+ {% if prefix == "http" %}
35
+ {% assign image = post.image %}
36
+ {% else %}
37
+ {% assign image = post.image | prepend: site.baseurl | prepend: site.url %}
38
+ {% endif %}
39
+ "image": "{{ image }}",
40
+ {% else %}
41
+ "excerpt": "{{ post.excerpt | strip_html | truncatewords: 40 | jsonify }}",
42
+ {% endif %}
43
+ {% assign words = post.content | strip_html | number_of_words %}
44
+ "read_time": "{{ words | divided_by: 200 | plus: 1 }} min read"
45
+ }
46
+ {% unless counter >= 3 %},{% endunless %}
47
+ {% endunless %}
48
+ {% endunless %}
49
+ {% endfor %}
50
+ ]
51
+ }
@@ -0,0 +1,44 @@
1
+ ---
2
+ layout: null
3
+ redirect_from:
4
+ - /feed/
5
+ ---
6
+ <?xml version="1.0" encoding="UTF-8"?>
7
+ <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
8
+ <channel>
9
+ <title>{{ site.title | xml_escape }}</title>
10
+ <description>{{ site.description | xml_escape }}</description>
11
+ <link>{{ site.url }}{{ site.baseurl }}/</link>
12
+ <atom:link href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" rel="self" type="application/rss+xml"/>
13
+ <pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
14
+ <lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
15
+ <generator>Jekyll v{{ jekyll.version }}</generator>
16
+ {% for post in site.posts limit:10 %}
17
+ {% unless post.hidden %}
18
+ <item>
19
+ <title>{{ post.title | xml_escape }}</title>
20
+ <description>{{ post.content | xml_escape }}</description>
21
+ <pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
22
+ <link>{{ post.url | prepend: site.baseurl | prepend: site.url }}</link>
23
+ <guid isPermaLink="true">{{ post.url | prepend: site.baseurl | prepend: site.url }}</guid>
24
+ {% if post.image %}
25
+ {% assign prefix = page.image | slice: 0, 4 %}
26
+ {% if prefix == "http" %}
27
+ {% assign image = page.image %}
28
+ {% else %}
29
+ {% assign image = page.image | prepend: site.baseurl | prepend: site.url %}
30
+ {% endif %}
31
+ <enclosure url="{{ image }}" />
32
+ {% endif %}
33
+ {% for tag in post.tags %}
34
+ <category>{{ tag | xml_escape }}</category>
35
+ {% endfor %}
36
+ {% for cat in post.categories %}
37
+ <category>{{ cat | xml_escape }}</category>
38
+ {% endfor %}
39
+ </item>
40
+ {% endunless %}
41
+ {% endfor %}
42
+ </channel>
43
+ </rss>
44
+
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: tagfeed
3
+ title: "Tag: updates"
4
+ tag: updates
5
+ ---
Binary file
@@ -0,0 +1,439 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:xlink="http://www.w3.org/1999/xlink"
9
+ id="svg5018"
10
+ height="32"
11
+ width="32"
12
+ version="1.1">
13
+ <defs
14
+ id="defs5020">
15
+ <linearGradient
16
+ id="linearGradient4087">
17
+ <stop
18
+ offset="0"
19
+ style="stop-color:#ffffff;stop-opacity:1"
20
+ id="stop4089" />
21
+ <stop
22
+ offset="0.51153916"
23
+ style="stop-color:#ffffff;stop-opacity:0.23529412"
24
+ id="stop4091" />
25
+ <stop
26
+ offset="0.58522105"
27
+ style="stop-color:#ffffff;stop-opacity:0.15686275"
28
+ id="stop4093" />
29
+ <stop
30
+ offset="1"
31
+ style="stop-color:#ffffff;stop-opacity:0.39215687"
32
+ id="stop4095" />
33
+ </linearGradient>
34
+ <linearGradient
35
+ gradientTransform="matrix(0.39222363,0,0,-0.36562471,4.8278194,25.163568)"
36
+ gradientUnits="userSpaceOnUse"
37
+ xlink:href="#linearGradient3242-7-3-8-0-4-58-06"
38
+ id="linearGradient3162"
39
+ y2="-1.1839229"
40
+ x2="27.974298"
41
+ y1="36.127529"
42
+ x1="27.974298" />
43
+ <radialGradient
44
+ gradientTransform="matrix(-0.38351555,0,0,-0.25567694,22.275669,31.384178)"
45
+ gradientUnits="userSpaceOnUse"
46
+ xlink:href="#linearGradient8662"
47
+ id="radialGradient3173"
48
+ fy="36.421127"
49
+ fx="24.837126"
50
+ r="15.644737"
51
+ cy="36.421127"
52
+ cx="24.837126" />
53
+ <linearGradient
54
+ id="linearGradient8662">
55
+ <stop
56
+ offset="0"
57
+ style="stop-color:#000000;stop-opacity:1"
58
+ id="stop8664" />
59
+ <stop
60
+ offset="1"
61
+ style="stop-color:#000000;stop-opacity:0"
62
+ id="stop8666" />
63
+ </linearGradient>
64
+ <linearGradient
65
+ gradientTransform="matrix(0.0352071,0,0,0.0082353,-0.724852,26.980547)"
66
+ gradientUnits="userSpaceOnUse"
67
+ xlink:href="#linearGradient5048-9"
68
+ id="linearGradient3175"
69
+ y2="609.50507"
70
+ x2="302.85715"
71
+ y1="366.64789"
72
+ x1="302.85715" />
73
+ <linearGradient
74
+ id="linearGradient5048-9">
75
+ <stop
76
+ offset="0"
77
+ style="stop-color:#000000;stop-opacity:0"
78
+ id="stop5050-3" />
79
+ <stop
80
+ offset="0.5"
81
+ style="stop-color:#000000;stop-opacity:1"
82
+ id="stop5056-7" />
83
+ <stop
84
+ offset="1"
85
+ style="stop-color:#000000;stop-opacity:0"
86
+ id="stop5052-4" />
87
+ </linearGradient>
88
+ <radialGradient
89
+ gradientTransform="matrix(-0.01204859,0,0,0.0082353,10.761206,26.980564)"
90
+ gradientUnits="userSpaceOnUse"
91
+ xlink:href="#linearGradient5060-2"
92
+ id="radialGradient3177"
93
+ fy="486.64789"
94
+ fx="605.71429"
95
+ r="117.14286"
96
+ cy="486.64789"
97
+ cx="605.71429" />
98
+ <linearGradient
99
+ id="linearGradient5060-2">
100
+ <stop
101
+ offset="0"
102
+ style="stop-color:#000000;stop-opacity:1"
103
+ id="stop5062-5" />
104
+ <stop
105
+ offset="1"
106
+ style="stop-color:#000000;stop-opacity:0"
107
+ id="stop5064-4" />
108
+ </linearGradient>
109
+ <radialGradient
110
+ gradientTransform="matrix(0.01204859,0,0,0.0082353,13.238793,26.980564)"
111
+ gradientUnits="userSpaceOnUse"
112
+ xlink:href="#linearGradient5060-2"
113
+ id="radialGradient3179"
114
+ fy="486.64789"
115
+ fx="605.71429"
116
+ r="117.14286"
117
+ cy="486.64789"
118
+ cx="605.71429" />
119
+ <linearGradient
120
+ gradientTransform="matrix(0.48571543,0,0,0.45629666,0.3428289,8.3488617)"
121
+ gradientUnits="userSpaceOnUse"
122
+ xlink:href="#linearGradient3600-4-4"
123
+ id="linearGradient3181"
124
+ y2="47.013336"
125
+ x2="25.132275"
126
+ y1="0.98520643"
127
+ x1="25.132275" />
128
+ <linearGradient
129
+ id="linearGradient3600-4-4">
130
+ <stop
131
+ offset="0"
132
+ style="stop-color:#f4f4f4;stop-opacity:1"
133
+ id="stop3602-7-3" />
134
+ <stop
135
+ offset="1"
136
+ style="stop-color:#dbdbdb;stop-opacity:1"
137
+ id="stop3604-6-0" />
138
+ </linearGradient>
139
+ <linearGradient
140
+ gradientTransform="matrix(0.39221364,0,0,0.42702571,29.199296,7.8403287)"
141
+ gradientUnits="userSpaceOnUse"
142
+ xlink:href="#linearGradient3104-5-8"
143
+ id="linearGradient3183"
144
+ y2="2.9062471"
145
+ x2="-51.786404"
146
+ y1="50.786446"
147
+ x1="-51.786404" />
148
+ <linearGradient
149
+ id="linearGradient3104-5-8">
150
+ <stop
151
+ offset="0"
152
+ style="stop-color:#a0a0a0;stop-opacity:1"
153
+ id="stop3106-6-6" />
154
+ <stop
155
+ offset="1"
156
+ style="stop-color:#bebebe;stop-opacity:1"
157
+ id="stop3108-9-8" />
158
+ </linearGradient>
159
+ <linearGradient
160
+ gradientTransform="matrix(0.40540511,0,0,0.51351351,2.2696871,7.6756805)"
161
+ gradientUnits="userSpaceOnUse"
162
+ xlink:href="#linearGradient3977-8"
163
+ id="linearGradient3185"
164
+ y2="43"
165
+ x2="23.99999"
166
+ y1="5.5641499"
167
+ x1="23.99999" />
168
+ <linearGradient
169
+ id="linearGradient3977-8">
170
+ <stop
171
+ offset="0"
172
+ style="stop-color:#ffffff;stop-opacity:1"
173
+ id="stop3979-4" />
174
+ <stop
175
+ offset="0.03626217"
176
+ style="stop-color:#ffffff;stop-opacity:0.23529412"
177
+ id="stop3981-3" />
178
+ <stop
179
+ offset="0.95056331"
180
+ style="stop-color:#ffffff;stop-opacity:0.15686275"
181
+ id="stop3983-1" />
182
+ <stop
183
+ offset="1"
184
+ style="stop-color:#ffffff;stop-opacity:0.39215687"
185
+ id="stop3985-4" />
186
+ </linearGradient>
187
+ <linearGradient
188
+ gradientTransform="matrix(0.0352071,0,0,0.0082353,-0.724852,26.980547)"
189
+ gradientUnits="userSpaceOnUse"
190
+ xlink:href="#linearGradient5048-9-6"
191
+ id="linearGradient3175-8"
192
+ y2="609.50507"
193
+ x2="302.85715"
194
+ y1="366.64789"
195
+ x1="302.85715" />
196
+ <linearGradient
197
+ id="linearGradient5048-9-6">
198
+ <stop
199
+ offset="0"
200
+ style="stop-color:#000000;stop-opacity:0"
201
+ id="stop5050-3-8" />
202
+ <stop
203
+ offset="0.5"
204
+ style="stop-color:#000000;stop-opacity:1"
205
+ id="stop5056-7-3" />
206
+ <stop
207
+ offset="1"
208
+ style="stop-color:#000000;stop-opacity:0"
209
+ id="stop5052-4-8" />
210
+ </linearGradient>
211
+ <radialGradient
212
+ gradientTransform="matrix(-0.01204859,0,0,0.0082353,10.761206,26.980564)"
213
+ gradientUnits="userSpaceOnUse"
214
+ xlink:href="#linearGradient5060-2-3"
215
+ id="radialGradient3177-3"
216
+ fy="486.64789"
217
+ fx="605.71429"
218
+ r="117.14286"
219
+ cy="486.64789"
220
+ cx="605.71429" />
221
+ <linearGradient
222
+ id="linearGradient5060-2-3">
223
+ <stop
224
+ offset="0"
225
+ style="stop-color:#000000;stop-opacity:1"
226
+ id="stop5062-5-3" />
227
+ <stop
228
+ offset="1"
229
+ style="stop-color:#000000;stop-opacity:0"
230
+ id="stop5064-4-8" />
231
+ </linearGradient>
232
+ <radialGradient
233
+ gradientTransform="matrix(0.01204859,0,0,0.0082353,13.238793,26.980564)"
234
+ gradientUnits="userSpaceOnUse"
235
+ xlink:href="#linearGradient5060-2-3"
236
+ id="radialGradient3179-0"
237
+ fy="486.64789"
238
+ fx="605.71429"
239
+ r="117.14286"
240
+ cy="486.64789"
241
+ cx="605.71429" />
242
+ <linearGradient
243
+ gradientTransform="matrix(0.48571543,0,0,0.45629666,0.3428289,8.3488617)"
244
+ gradientUnits="userSpaceOnUse"
245
+ xlink:href="#linearGradient3600-4-4-7"
246
+ id="linearGradient3181-4"
247
+ y2="47.013336"
248
+ x2="25.132275"
249
+ y1="0.98520643"
250
+ x1="25.132275" />
251
+ <linearGradient
252
+ id="linearGradient3600-4-4-7">
253
+ <stop
254
+ offset="0"
255
+ style="stop-color:#f4f4f4;stop-opacity:1"
256
+ id="stop3602-7-3-6" />
257
+ <stop
258
+ offset="1"
259
+ style="stop-color:#dbdbdb;stop-opacity:1"
260
+ id="stop3604-6-0-8" />
261
+ </linearGradient>
262
+ <linearGradient
263
+ gradientTransform="matrix(0.39221364,0,0,0.42702571,29.199296,7.8403287)"
264
+ gradientUnits="userSpaceOnUse"
265
+ xlink:href="#linearGradient3104-5-8-0"
266
+ id="linearGradient3183-9"
267
+ y2="2.9062471"
268
+ x2="-51.786404"
269
+ y1="50.786446"
270
+ x1="-51.786404" />
271
+ <linearGradient
272
+ id="linearGradient3104-5-8-0">
273
+ <stop
274
+ offset="0"
275
+ style="stop-color:#a0a0a0;stop-opacity:1"
276
+ id="stop3106-6-6-6" />
277
+ <stop
278
+ offset="1"
279
+ style="stop-color:#bebebe;stop-opacity:1"
280
+ id="stop3108-9-8-8" />
281
+ </linearGradient>
282
+ <linearGradient
283
+ id="linearGradient3977-8-9">
284
+ <stop
285
+ offset="0"
286
+ style="stop-color:#ffffff;stop-opacity:1"
287
+ id="stop3979-4-0" />
288
+ <stop
289
+ offset="0.03626217"
290
+ style="stop-color:#ffffff;stop-opacity:0.23529412"
291
+ id="stop3981-3-3" />
292
+ <stop
293
+ offset="0.95056331"
294
+ style="stop-color:#ffffff;stop-opacity:0.15686275"
295
+ id="stop3983-1-3" />
296
+ <stop
297
+ offset="1"
298
+ style="stop-color:#ffffff;stop-opacity:0.39215687"
299
+ id="stop3985-4-3" />
300
+ </linearGradient>
301
+ <linearGradient
302
+ gradientTransform="matrix(0.40540511,0,0,0.51351351,2.2696871,7.6756805)"
303
+ gradientUnits="userSpaceOnUse"
304
+ xlink:href="#linearGradient3977-8-9"
305
+ id="linearGradient5016"
306
+ y2="43"
307
+ x2="23.99999"
308
+ y1="5.5641499"
309
+ x1="23.99999" />
310
+ <radialGradient
311
+ cx="24.837126"
312
+ cy="36.421127"
313
+ r="15.644737"
314
+ fx="24.837126"
315
+ fy="36.421127"
316
+ id="radialGradient3449"
317
+ xlink:href="#linearGradient8662"
318
+ gradientUnits="userSpaceOnUse"
319
+ gradientTransform="matrix(-0.70660609,0,0,-0.47076982,-0.754985,39.964493)" />
320
+ <linearGradient
321
+ x1="38.940514"
322
+ y1="15.991243"
323
+ x2="20.576487"
324
+ y2="15.991243"
325
+ id="linearGradient3855"
326
+ xlink:href="#linearGradient4087"
327
+ gradientUnits="userSpaceOnUse"
328
+ gradientTransform="matrix(0,-0.39571558,0.42801014,0,6.4033107,30.903618)" />
329
+ <linearGradient
330
+ id="linearGradient3242-7-3-8-0-4-58-06">
331
+ <stop
332
+ id="stop3244-5-8-5-6-4-3-8"
333
+ style="stop-color:#cdf87e;stop-opacity:1"
334
+ offset="0" />
335
+ <stop
336
+ id="stop3246-9-5-1-5-3-0-7"
337
+ style="stop-color:#a2e34f;stop-opacity:1"
338
+ offset="0.26238" />
339
+ <stop
340
+ id="stop3248-7-2-0-7-5-35-9"
341
+ style="stop-color:#68b723;stop-opacity:1"
342
+ offset="0.66093999" />
343
+ <stop
344
+ id="stop3250-8-2-8-5-6-40-4"
345
+ style="stop-color:#1d7e0d;stop-opacity:1"
346
+ offset="1" />
347
+ </linearGradient>
348
+ </defs>
349
+ <metadata
350
+ id="metadata5023">
351
+ <rdf:RDF>
352
+ <cc:Work
353
+ rdf:about="">
354
+ <dc:format>image/svg+xml</dc:format>
355
+ <dc:type
356
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
357
+ <dc:title></dc:title>
358
+ </cc:Work>
359
+ </rdf:RDF>
360
+ </metadata>
361
+ <g
362
+ transform="translate(0,-6.999996)"
363
+ id="layer1-8-7">
364
+ <rect
365
+ width="16.999998"
366
+ height="2"
367
+ x="3.5000007"
368
+ y="30"
369
+ id="rect2879-0-3"
370
+ style="display:inline;overflow:visible;visibility:visible;opacity:0.15;fill:url(#linearGradient3175-8);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none" />
371
+ <path
372
+ d="m 3.4999999,30.000085 c 0,0 0,1.999891 0,1.999891 C 2.8795275,32.003776 2,31.551901 2,30.999901 2,30.447902 2.6924,30.000085 3.4999999,30.000085 Z"
373
+ id="path2881-6-2"
374
+ style="display:inline;overflow:visible;visibility:visible;opacity:0.15;fill:url(#radialGradient3177-3);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none" />
375
+ <path
376
+ d="m 20.5,30.000085 c 0,0 0,1.999891 0,1.999891 0.620472,0.0038 1.5,-0.448075 1.5,-1.000075 0,-0.551999 -0.692402,-0.999816 -1.5,-0.999816 z"
377
+ id="path2883-8-6"
378
+ style="display:inline;overflow:visible;visibility:visible;opacity:0.15;fill:url(#radialGradient3179-0);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none" />
379
+ <path
380
+ d="m 3.4999601,9.4999569 c 3.8955809,0 17.0000589,0.00136 17.0000589,0.00136 l 2.1e-5,20.9987161 c 0,0 -11.3333862,0 -17.0000799,0 0,-7.000018 0,-14.000035 0,-21.0000538 z"
381
+ id="path4160-3-9-5"
382
+ style="display:inline;fill:url(#linearGradient3181-4);fill-opacity:1;stroke:url(#linearGradient3183-9);stroke-width:0.99992186;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
383
+ <path
384
+ d="m 19.5,29.5 -15.0000004,0 0,-19 L 19.5,10.5 Z"
385
+ id="rect6741-1-2-2"
386
+ style="fill:none;stroke:url(#linearGradient5016);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
387
+ </g>
388
+ <path
389
+ d="m 10,6.0000003 c 2.520657,0 10.999987,0.0012 10.999987,0.0012 L 21,24.000003 c 0,0 -7.333334,0 -11,0 0,-5.999983 0,-11.999966 0,-17.9999507 z"
390
+ id="path4160-3-9-6"
391
+ style="display:inline;opacity:0.05;fill:#000000;fill-opacity:1;stroke:none" />
392
+ <g
393
+ transform="translate(8.0000004,-2)"
394
+ id="layer1-8">
395
+ <rect
396
+ width="16.999998"
397
+ height="2"
398
+ x="3.5000007"
399
+ y="30"
400
+ id="rect2879-0"
401
+ style="display:inline;overflow:visible;visibility:visible;opacity:0.15;fill:url(#linearGradient3175);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none" />
402
+ <path
403
+ d="m 3.4999999,30.000085 c 0,0 0,1.999891 0,1.999891 C 2.8795275,32.003776 2,31.551901 2,30.999901 2,30.447902 2.6924,30.000085 3.4999999,30.000085 Z"
404
+ id="path2881-6"
405
+ style="display:inline;overflow:visible;visibility:visible;opacity:0.15;fill:url(#radialGradient3177);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none" />
406
+ <path
407
+ d="m 20.5,30.000085 c 0,0 0,1.999891 0,1.999891 0.620472,0.0038 1.5,-0.448075 1.5,-1.000075 0,-0.551999 -0.692402,-0.999816 -1.5,-0.999816 z"
408
+ id="path2883-8"
409
+ style="display:inline;overflow:visible;visibility:visible;opacity:0.15;fill:url(#radialGradient3179);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none" />
410
+ <path
411
+ d="m 3.4999601,9.4999569 c 3.8955809,0 17.0000589,0.00136 17.0000589,0.00136 l 2.1e-5,20.9987161 c 0,0 -11.3333862,0 -17.0000799,0 0,-7.000018 0,-14.000035 0,-21.0000538 z"
412
+ id="path4160-3-9"
413
+ style="display:inline;fill:url(#linearGradient3181);fill-opacity:1;stroke:url(#linearGradient3183);stroke-width:0.99992186;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
414
+ <path
415
+ d="m 19.5,29.5 -15.0000004,0 0,-19 L 19.5,10.5 Z"
416
+ id="rect6741-1-2"
417
+ style="fill:none;stroke:url(#linearGradient3185);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
418
+ </g>
419
+ <path
420
+ d="m 6.750245,22.072131 a 6,4.0000002 0 1 1 12,0 6,4.0000002 0 0 1 -12,0 z"
421
+ id="path3501"
422
+ style="display:inline;overflow:visible;visibility:visible;opacity:0.14117647;fill:url(#radialGradient3173);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none" />
423
+ <path
424
+ d="m 10.832248,11.017552 c -4.9802216,3.367056 -2.0511186,9.550728 3.5,9.5 l 0,3.000485 7,-5 -7,-5 0,2.976351 c -3.580248,0.139062 -5.5595156,-3.12742 -3,-5.476836 z"
425
+ id="path3503"
426
+ style="display:block;overflow:visible;visibility:visible;fill:url(#linearGradient3162);fill-opacity:1.0;fill-rule:nonzero;stroke:none;stroke-width:0.96392483;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:7;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
427
+ <path
428
+ d="m 9.8755864,12.759279 c -1.756852,2.058862 -0.225017,7.434574 5.3950626,6.699241 l 0.0616,2.197396 4.369328,-3.137879 -4.369328,-3.064428 0,2.059765 C 9.1648074,17.842539 9.3507614,13.59157 9.8755874,12.759279 Z"
429
+ id="path3505"
430
+ style="display:block;overflow:visible;visibility:visible;opacity:0.8;fill:none;stroke:url(#linearGradient3855);stroke-width:0.96400005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:7;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color:#000000;clip-rule:nonzero;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill-opacity:1;fill-rule:nonzero;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
431
+ <path
432
+ d="m -29.359717,22.818517 a 11.054667,7.3650752 0 1 1 22.109334,0 11.054667,7.3650752 0 0 1 -22.109334,0 z"
433
+ id="path3501-0"
434
+ style="display:inline;overflow:visible;visibility:visible;opacity:0.14117647;fill:url(#radialGradient3449);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none" />
435
+ <path
436
+ d="m 10.832248,11.017552 c -4.9802216,3.367056 -2.0511186,9.550728 3.5,9.5 l 0,3.000485 6.999999,-5 -6.999999,-5 0,2.976351 c -3.580248,0.139062 -5.5595156,-3.12742 -3,-5.476836 z"
437
+ id="path3503-4"
438
+ style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#0f5a00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color:#000000;clip-rule:nonzero;opacity:0.5;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;filter-blend-mode:normal;filter-gaussianBlur-deviation:0;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
439
+ </svg>