jekyll-theme-centos 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (304) hide show
  1. checksums.yaml +7 -0
  2. data/_config.yml +196 -0
  3. data/_data/base/announcement_schema.yml +49 -0
  4. data/_data/base/artwork_schema.yml +46 -0
  5. data/_data/base/backtotop_schema.yml +59 -0
  6. data/_data/base/bits.yml +96 -0
  7. data/_data/base/bits_schema.yml +185 -0
  8. data/_data/base/breadcrumb_schema.yml +27 -0
  9. data/_data/base/breakingnews_schema.yml +67 -0
  10. data/_data/base/card_schema.yml +146 -0
  11. data/_data/base/color.yml +1042 -0
  12. data/_data/base/color_schema.yml +1036 -0
  13. data/_data/base/configuration_variables_schema.yml +42 -0
  14. data/_data/base/content.yml +2 -0
  15. data/_data/base/content_schema.yml +26 -0
  16. data/_data/base/copyright.yml +12 -0
  17. data/_data/base/copyright_schema.yml +74 -0
  18. data/_data/base/copyvalue_schema.yml +49 -0
  19. data/_data/base/datatable_schema.yml +57 -0
  20. data/_data/base/event_schema.yml +130 -0
  21. data/_data/base/fontawesome_schema.yml +62 -0
  22. data/_data/base/footer.yml +9 -0
  23. data/_data/base/footer_schema.yml +55 -0
  24. data/_data/base/head_schema.yml +19 -0
  25. data/_data/base/heading_anchor.yml +2 -0
  26. data/_data/base/heading_anchor_schema.yml +37 -0
  27. data/_data/base/highlight_schema.yml +98 -0
  28. data/_data/base/image_schema.yml +34 -0
  29. data/_data/base/languages.yml +186 -0
  30. data/_data/base/link_schema.yml +187 -0
  31. data/_data/base/locales_schema.yml +158 -0
  32. data/_data/base/navbar.yml +20 -0
  33. data/_data/base/navbar_schema.yml +129 -0
  34. data/_data/base/navindex_schema.yml +67 -0
  35. data/_data/base/ogp.yml +24 -0
  36. data/_data/base/ogp_schema.yml +192 -0
  37. data/_data/base/project.yml +37 -0
  38. data/_data/base/project_schema.yml +124 -0
  39. data/_data/base/script_schema.yml +41 -0
  40. data/_data/base/shortcut_schema.yml +74 -0
  41. data/_data/base/social.yml +26 -0
  42. data/_data/base/social_schema.yml +57 -0
  43. data/_data/base/sponsors.yml +41 -0
  44. data/_data/base/sponsors_schema.yml +73 -0
  45. data/_data/base/title_schema.yml +49 -0
  46. data/_data/base/toc_schema.yml +114 -0
  47. data/_data/download/cards.yml +309 -0
  48. data/_data/download/navbar.yml +11 -0
  49. data/_includes/base/announcement.html.liquid +65 -0
  50. data/_includes/base/artwork.html.liquid +63 -0
  51. data/_includes/base/backtotop.html.liquid +73 -0
  52. data/_includes/base/bits.html.liquid +152 -0
  53. data/_includes/base/breadcrumb.html.liquid +77 -0
  54. data/_includes/base/breakingnews.html.liquid +90 -0
  55. data/_includes/base/card.html.liquid +110 -0
  56. data/_includes/base/color-table.html.liquid +33 -0
  57. data/_includes/base/configuration_variables-nested.html.liquid +98 -0
  58. data/_includes/base/configuration_variables.html.liquid +98 -0
  59. data/_includes/base/content.html.liquid +7 -0
  60. data/_includes/base/copyright.html.liquid +70 -0
  61. data/_includes/base/copyvalue.html.liquid +82 -0
  62. data/_includes/base/datatable.html.liquid +83 -0
  63. data/_includes/base/event.html.liquid +105 -0
  64. data/_includes/base/fontawesome.html.liquid +91 -0
  65. data/_includes/base/footer.html.liquid +69 -0
  66. data/_includes/base/head.html.liquid +135 -0
  67. data/_includes/base/heading_anchor.html.liquid +67 -0
  68. data/_includes/base/highlight.html.liquid +84 -0
  69. data/_includes/base/image.html.liquid +42 -0
  70. data/_includes/base/link.html.liquid +129 -0
  71. data/_includes/base/locales.html.liquid +78 -0
  72. data/_includes/base/navbar.html.liquid +121 -0
  73. data/_includes/base/navindex.html.liquid +200 -0
  74. data/_includes/base/ogp.html.liquid +144 -0
  75. data/_includes/base/project.html.liquid +104 -0
  76. data/_includes/base/shortcut.html.liquid +77 -0
  77. data/_includes/base/social.html.liquid +76 -0
  78. data/_includes/base/sponsors-cards.html.liquid +69 -0
  79. data/_includes/base/sponsors-carousel.html.liquid +91 -0
  80. data/_includes/base/title.html.liquid +65 -0
  81. data/_includes/base/toc-generator.html.liquid +189 -0
  82. data/_includes/base/toc.html.liquid +95 -0
  83. data/_includes/download/cards-body-commands.html +7 -0
  84. data/_includes/download/cards-body-convert.html +10 -0
  85. data/_includes/download/cards-body-doc.html +9 -0
  86. data/_includes/download/cards-body-documentation.html +11 -0
  87. data/_includes/download/cards-body-eol.html +16 -0
  88. data/_includes/download/cards-body-mirrors.html +8 -0
  89. data/_includes/download/cards-body-screenshot.html +26 -0
  90. data/_includes/download/cards-body-screenshots.html +32 -0
  91. data/_includes/download/cards-body.html +8 -0
  92. data/_includes/download/cards-footer.html +3 -0
  93. data/_includes/download/cards-header-commands.html +8 -0
  94. data/_includes/download/cards-header-convert.html +8 -0
  95. data/_includes/download/cards-header-doc.html +8 -0
  96. data/_includes/download/cards-header-documentation.html +8 -0
  97. data/_includes/download/cards-header-eol.html +8 -0
  98. data/_includes/download/cards-header-mirrors.html +13 -0
  99. data/_includes/download/cards-header-screenshot.html +8 -0
  100. data/_includes/download/cards-header-screenshots.html +8 -0
  101. data/_includes/download/cards-header.html +13 -0
  102. data/_includes/download/cards.html +120 -0
  103. data/_layouts/base/default.html +68 -0
  104. data/_layouts/download/cards.html +7 -0
  105. data/_layouts/download/default.html +7 -0
  106. data/_layouts/people/default.html +68 -0
  107. data/_sass/base/_customization.scss +331 -0
  108. data/_sass/base/_light-dark.scss +10 -0
  109. data/_sass/base/_maps.scss +104 -0
  110. data/_sass/base/_variables.scss +232 -0
  111. data/_sass/bootstrap/_accordion.scss +153 -0
  112. data/_sass/bootstrap/_alert.scss +68 -0
  113. data/_sass/bootstrap/_badge.scss +38 -0
  114. data/_sass/bootstrap/_breadcrumb.scss +40 -0
  115. data/_sass/bootstrap/_button-group.scss +147 -0
  116. data/_sass/bootstrap/_buttons.scss +216 -0
  117. data/_sass/bootstrap/_card.scss +238 -0
  118. data/_sass/bootstrap/_carousel.scss +226 -0
  119. data/_sass/bootstrap/_close.scss +66 -0
  120. data/_sass/bootstrap/_containers.scss +41 -0
  121. data/_sass/bootstrap/_dropdown.scss +250 -0
  122. data/_sass/bootstrap/_forms.scss +9 -0
  123. data/_sass/bootstrap/_functions.scss +302 -0
  124. data/_sass/bootstrap/_grid.scss +39 -0
  125. data/_sass/bootstrap/_helpers.scss +12 -0
  126. data/_sass/bootstrap/_images.scss +42 -0
  127. data/_sass/bootstrap/_list-group.scss +199 -0
  128. data/_sass/bootstrap/_maps.scss +174 -0
  129. data/_sass/bootstrap/_mixins.scss +42 -0
  130. data/_sass/bootstrap/_modal.scss +240 -0
  131. data/_sass/bootstrap/_nav.scss +197 -0
  132. data/_sass/bootstrap/_navbar.scss +289 -0
  133. data/_sass/bootstrap/_offcanvas.scss +147 -0
  134. data/_sass/bootstrap/_pagination.scss +109 -0
  135. data/_sass/bootstrap/_placeholders.scss +51 -0
  136. data/_sass/bootstrap/_popover.scss +196 -0
  137. data/_sass/bootstrap/_progress.scss +68 -0
  138. data/_sass/bootstrap/_reboot.scss +617 -0
  139. data/_sass/bootstrap/_root.scss +187 -0
  140. data/_sass/bootstrap/_spinners.scss +86 -0
  141. data/_sass/bootstrap/_tables.scss +171 -0
  142. data/_sass/bootstrap/_toasts.scss +73 -0
  143. data/_sass/bootstrap/_tooltip.scss +119 -0
  144. data/_sass/bootstrap/_transitions.scss +27 -0
  145. data/_sass/bootstrap/_type.scss +106 -0
  146. data/_sass/bootstrap/_utilities.scss +806 -0
  147. data/_sass/bootstrap/_variables-dark.scss +102 -0
  148. data/_sass/bootstrap/_variables.scss +1753 -0
  149. data/_sass/bootstrap/bootstrap-grid.scss +62 -0
  150. data/_sass/bootstrap/bootstrap-reboot.scss +10 -0
  151. data/_sass/bootstrap/bootstrap-utilities.scss +19 -0
  152. data/_sass/bootstrap/bootstrap.scss +52 -0
  153. data/_sass/bootstrap/forms/_floating-labels.scss +97 -0
  154. data/_sass/bootstrap/forms/_form-check.scss +189 -0
  155. data/_sass/bootstrap/forms/_form-control.scss +214 -0
  156. data/_sass/bootstrap/forms/_form-range.scss +91 -0
  157. data/_sass/bootstrap/forms/_form-select.scss +80 -0
  158. data/_sass/bootstrap/forms/_form-text.scss +11 -0
  159. data/_sass/bootstrap/forms/_input-group.scss +132 -0
  160. data/_sass/bootstrap/forms/_labels.scss +36 -0
  161. data/_sass/bootstrap/forms/_validation.scss +12 -0
  162. data/_sass/bootstrap/helpers/_clearfix.scss +3 -0
  163. data/_sass/bootstrap/helpers/_color-bg.scss +7 -0
  164. data/_sass/bootstrap/helpers/_colored-links.scss +30 -0
  165. data/_sass/bootstrap/helpers/_focus-ring.scss +5 -0
  166. data/_sass/bootstrap/helpers/_icon-link.scss +25 -0
  167. data/_sass/bootstrap/helpers/_position.scss +36 -0
  168. data/_sass/bootstrap/helpers/_ratio.scss +26 -0
  169. data/_sass/bootstrap/helpers/_stacks.scss +15 -0
  170. data/_sass/bootstrap/helpers/_stretched-link.scss +15 -0
  171. data/_sass/bootstrap/helpers/_text-truncation.scss +7 -0
  172. data/_sass/bootstrap/helpers/_visually-hidden.scss +8 -0
  173. data/_sass/bootstrap/helpers/_vr.scss +8 -0
  174. data/_sass/bootstrap/mixins/_alert.scss +18 -0
  175. data/_sass/bootstrap/mixins/_backdrop.scss +14 -0
  176. data/_sass/bootstrap/mixins/_banner.scss +7 -0
  177. data/_sass/bootstrap/mixins/_border-radius.scss +78 -0
  178. data/_sass/bootstrap/mixins/_box-shadow.scss +24 -0
  179. data/_sass/bootstrap/mixins/_breakpoints.scss +127 -0
  180. data/_sass/bootstrap/mixins/_buttons.scss +70 -0
  181. data/_sass/bootstrap/mixins/_caret.scss +69 -0
  182. data/_sass/bootstrap/mixins/_clearfix.scss +9 -0
  183. data/_sass/bootstrap/mixins/_color-mode.scss +21 -0
  184. data/_sass/bootstrap/mixins/_color-scheme.scss +7 -0
  185. data/_sass/bootstrap/mixins/_container.scss +11 -0
  186. data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
  187. data/_sass/bootstrap/mixins/_forms.scss +163 -0
  188. data/_sass/bootstrap/mixins/_gradients.scss +47 -0
  189. data/_sass/bootstrap/mixins/_grid.scss +151 -0
  190. data/_sass/bootstrap/mixins/_image.scss +16 -0
  191. data/_sass/bootstrap/mixins/_list-group.scss +26 -0
  192. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  193. data/_sass/bootstrap/mixins/_pagination.scss +10 -0
  194. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  195. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  196. data/_sass/bootstrap/mixins/_table-variants.scss +24 -0
  197. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  198. data/_sass/bootstrap/mixins/_transition.scss +26 -0
  199. data/_sass/bootstrap/mixins/_utilities.scss +97 -0
  200. data/_sass/bootstrap/mixins/_visually-hidden.scss +38 -0
  201. data/_sass/bootstrap/utilities/_api.scss +47 -0
  202. data/_sass/bootstrap/vendor/_rfs.scss +348 -0
  203. data/assets/css/base/stylesheet.min.scss +35 -0
  204. data/assets/icons/android-chrome-192.png +0 -0
  205. data/assets/icons/android-chrome-512.png +0 -0
  206. data/assets/icons/apple-touch-icon.png +0 -0
  207. data/assets/icons/favicon-16.png +0 -0
  208. data/assets/icons/favicon-32.png +0 -0
  209. data/assets/icons/favicon.ico +0 -0
  210. data/assets/icons/favicon.svg +1 -0
  211. data/assets/img/anaconda-symbolic.svg +1 -0
  212. data/assets/img/anaconda.svg +1 -0
  213. data/assets/img/base/centos-colors.gpl +55 -0
  214. data/assets/img/base/example-ogp-image.svg +297 -0
  215. data/assets/img/base/example-sponsors-design.svg +226 -0
  216. data/assets/img/base/example-sponsors-logo-1.svg +120 -0
  217. data/assets/img/base/example-sponsors-logo-2.svg +116 -0
  218. data/assets/img/base/example-sponsors-logo-3.svg +123 -0
  219. data/assets/img/base/example-sponsors-logo-4.svg +116 -0
  220. data/assets/img/base/example-sponsors-logo-5.svg +116 -0
  221. data/assets/img/base/example-sponsors-logo-6.svg +116 -0
  222. data/assets/img/base/example-sponsors-logo-7.svg +116 -0
  223. data/assets/img/base/example-sponsors-logo-8.svg +110 -0
  224. data/assets/img/base/page-layout-default.svg +1217 -0
  225. data/assets/img/base/page-with-alert.svg +383 -0
  226. data/assets/img/base/page-with-announcement.svg +956 -0
  227. data/assets/img/base/page-with-artwork.svg +1009 -0
  228. data/assets/img/base/page-with-backtotop.svg +1009 -0
  229. data/assets/img/base/page-with-bits.svg +891 -0
  230. data/assets/img/base/page-with-breadcrumb.svg +676 -0
  231. data/assets/img/base/page-with-breakingnews.svg +957 -0
  232. data/assets/img/base/page-with-color.svg +57 -0
  233. data/assets/img/base/page-with-copyright.svg +1018 -0
  234. data/assets/img/base/page-with-copyvalue.svg +57 -0
  235. data/assets/img/base/page-with-datatable.svg +857 -0
  236. data/assets/img/base/page-with-event.svg +518 -0
  237. data/assets/img/base/page-with-fontawesome.svg +147 -0
  238. data/assets/img/base/page-with-footer.svg +1018 -0
  239. data/assets/img/base/page-with-heading.svg +57 -0
  240. data/assets/img/base/page-with-highlight.svg +86 -0
  241. data/assets/img/base/page-with-image.svg +57 -0
  242. data/assets/img/base/page-with-link.svg +57 -0
  243. data/assets/img/base/page-with-locales.svg +1009 -0
  244. data/assets/img/base/page-with-navbar.svg +958 -0
  245. data/assets/img/base/page-with-navindex.svg +279 -0
  246. data/assets/img/base/page-with-ogp.svg +401 -0
  247. data/assets/img/base/page-with-project.svg +423 -0
  248. data/assets/img/base/page-with-shortcut.svg +937 -0
  249. data/assets/img/base/page-with-social.svg +937 -0
  250. data/assets/img/base/page-with-sponsors.svg +937 -0
  251. data/assets/img/base/page-with-title.svg +584 -0
  252. data/assets/img/base/page-with-toc.svg +399 -0
  253. data/assets/img/base/screenshot-1200x600.svg +114 -0
  254. data/assets/img/centos-dynamicmsg-logo.svg +1 -0
  255. data/assets/img/centos-dynamicmsg-type.svg +1 -0
  256. data/assets/img/centos-dynamicmsg-whitelogo.svg +1 -0
  257. data/assets/img/centos-dynamicmsg-whitetype.svg +1 -0
  258. data/assets/img/centos-gdm-whitelogo.svg +1 -0
  259. data/assets/img/centos-ipa-whiteheader.svg +1 -0
  260. data/assets/img/centos-logo-2bits.svg +1 -0
  261. data/assets/img/centos-logo.svg +1 -0
  262. data/assets/img/centos-message-logo.svg +1 -0
  263. data/assets/img/centos-motif.png +0 -0
  264. data/assets/img/centos-poweredby-logo.svg +1 -0
  265. data/assets/img/centos-social-share.png +0 -0
  266. data/assets/img/centos-symbol-2bits.svg +1 -0
  267. data/assets/img/centos-symbol.svg +1 -0
  268. data/assets/img/centos-type.svg +1 -0
  269. data/assets/img/centos-vertical-logo.svg +1 -0
  270. data/assets/img/centos-vertical-message-logo.svg +1 -0
  271. data/assets/img/centos-whitelogo.svg +1 -0
  272. data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
  273. data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
  274. data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
  275. data/assets/img/download/distribution-release-screenshot-1.png +0 -0
  276. data/assets/img/download/distribution-release-screenshot-2.png +0 -0
  277. data/assets/img/download/distribution-release-screenshot-3.png +0 -0
  278. data/assets/img/download/distribution-release-screenshot-n.png +0 -0
  279. data/assets/img/download/distribution-release-screenshot-n.svg +134 -0
  280. data/assets/img/download/download.svg +421 -0
  281. data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
  282. data/assets/img/people/page.svg +900 -0
  283. data/assets/img/people/page.webp +0 -0
  284. data/assets/img/people/username.webp +0 -0
  285. data/assets/js/base/backtotop.js +20 -0
  286. data/assets/js/base/copyvalue.js +145 -0
  287. data/assets/js/base/datatable.js +41 -0
  288. data/assets/js/base/heading-anchor.js +108 -0
  289. data/assets/js/base/highlight.js +12 -0
  290. data/assets/js/base/init-tooltips.js +12 -0
  291. data/assets/js/bootstrap.bundle.js +6312 -0
  292. data/assets/js/bootstrap.bundle.js.map +1 -0
  293. data/assets/js/bootstrap.bundle.min.js +7 -0
  294. data/assets/js/bootstrap.bundle.min.js.map +1 -0
  295. data/assets/js/bootstrap.esm.js +4447 -0
  296. data/assets/js/bootstrap.esm.js.map +1 -0
  297. data/assets/js/bootstrap.esm.min.js +7 -0
  298. data/assets/js/bootstrap.esm.min.js.map +1 -0
  299. data/assets/js/bootstrap.js +4494 -0
  300. data/assets/js/bootstrap.js.map +1 -0
  301. data/assets/js/bootstrap.min.js +7 -0
  302. data/assets/js/bootstrap.min.js.map +1 -0
  303. data/site.webmanifest +11 -0
  304. metadata +611 -0
@@ -0,0 +1,584 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="640"
6
+ height="396.73569"
7
+ viewBox="0 0 169.33334 104.96965"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
11
+ sodipodi:docname="page-with-title.svg"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ xmlns:svg="http://www.w3.org/2000/svg">
16
+ <sodipodi:namedview
17
+ id="namedview1"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#000000"
20
+ borderopacity="0.25"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ inkscape:document-units="px"
26
+ inkscape:zoom="1.4142136"
27
+ inkscape:cx="230.51681"
28
+ inkscape:cy="165.81654"
29
+ inkscape:window-width="3440"
30
+ inkscape:window-height="1371"
31
+ inkscape:window-x="0"
32
+ inkscape:window-y="0"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="g7"
35
+ showgrid="false" />
36
+ <defs
37
+ id="defs1">
38
+ <clipPath
39
+ clipPathUnits="userSpaceOnUse"
40
+ id="clipPath973">
41
+ <path
42
+ id="path973"
43
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
44
+ d="m 3340.1295,1094.7735 c -1.7111,0 -3.0885,1.3775 -3.0885,3.0885 v 99.4751 c 5.6224,-3.4823 11.8861,-6.4392 16.9463,-6.4392 12.3063,0 19.427,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4273,-17.4897 31.7336,-17.4897 12.3063,0 19.2781,17.7148 31.7331,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0216,-14.8198 v -95.7058 c 0,-1.711 -1.3777,-3.0885 -3.0885,-3.0885 z"
45
+ sodipodi:nodetypes="sscsssssscsss" />
46
+ </clipPath>
47
+ <clipPath
48
+ clipPathUnits="userSpaceOnUse"
49
+ id="clipPath351">
50
+ <path
51
+ id="path352"
52
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:1.40674;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
53
+ d="m 712.48627,-301.09918 c -3.11726,0 -5.62691,2.50965 -5.62691,5.62696 v 205.093688 c 10.24337,-6.344434 21.6555,-11.731438 30.87459,-11.731438 22.42056,0 35.39383,31.864274 57.81472,31.864274 22.4207,0 35.39344,-31.864274 57.81414,-31.864274 22.4207,0 35.39364,31.864274 57.81415,31.864274 22.42089,0 35.39421,-31.864274 57.81491,-31.864274 22.4207,0 35.12273,32.274347 57.81413,31.864274 15.7123,-0.28397 37.3852,-16.841796 49.2303,-27.000044 v -198.22648 c 0,-3.11731 -2.5096,-5.62696 -5.6269,-5.62696 z" />
54
+ </clipPath>
55
+ <clipPath
56
+ clipPathUnits="userSpaceOnUse"
57
+ id="clipPath423-2-16">
58
+ <path
59
+ id="path424-5-5"
60
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
61
+ d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
62
+ </clipPath>
63
+ <clipPath
64
+ clipPathUnits="userSpaceOnUse"
65
+ id="clipPath422-7-7">
66
+ <path
67
+ id="path423-4-8"
68
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:5.35901;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
69
+ d="m 384.68765,-240.41958 c -11.87529,0 -21.43587,9.56058 -21.43587,21.43605 v 781.3093 c 39.02239,-24.16927 82.49718,-44.69119 117.61769,-44.69119 85.41146,0 134.83363,121.38771 220.24638,121.38771 85.41219,0 134.83234,-121.38771 220.24454,-121.38771 85.41221,0 134.83291,121.38771 220.24431,121.38771 85.4128,0 134.835,-121.38771 220.2472,-121.38771 85.4122,0 133.8008,122.9499 220.2443,121.38771 59.8565,-1.08179 142.4196,-64.15922 187.5442,-102.85731 v -755.14851 c 0,-11.87547 -9.5606,-21.43605 -21.4359,-21.43605 z" />
70
+ </clipPath>
71
+ <clipPath
72
+ clipPathUnits="userSpaceOnUse"
73
+ id="clipPath421-9-5">
74
+ <path
75
+ id="path422-9-9"
76
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
77
+ d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
78
+ </clipPath>
79
+ <clipPath
80
+ clipPathUnits="userSpaceOnUse"
81
+ id="clipPath420-4-2">
82
+ <path
83
+ id="path421-5-7"
84
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:1.40674;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
85
+ d="m 725.64338,-185.84881 c -3.11727,0 -5.62692,2.50965 -5.62692,5.62696 V 24.871838 c 10.24338,-6.344434 21.65551,-11.731437 30.87465,-11.731437 22.4205,0 35.39382,31.864274 57.81467,31.864274 22.4207,0 35.39349,-31.864274 57.81419,-31.864274 22.4207,0 35.39363,31.864274 57.81414,31.864274 22.42085,0 35.39417,-31.864274 57.81487,-31.864274 22.42072,0 35.12272,32.274346 57.81412,31.864274 15.7123,-0.283971 37.3852,-16.841797 49.2304,-27.000044 V -180.22185 c 0,-3.11731 -2.5097,-5.62696 -5.627,-5.62696 z" />
86
+ </clipPath>
87
+ <clipPath
88
+ clipPathUnits="userSpaceOnUse"
89
+ id="clipPath419-9-36">
90
+ <path
91
+ id="path420-3-4"
92
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
93
+ d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
94
+ </clipPath>
95
+ <clipPath
96
+ clipPathUnits="userSpaceOnUse"
97
+ id="clipPath418-5-7">
98
+ <path
99
+ id="path419-7-97"
100
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.926557;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
101
+ d="m 741.21845,-215.75165 c -2.05321,0 -3.7062,1.653 -3.7062,3.70623 v 135.085963 c 6.74685,-4.178792 14.26351,-7.726969 20.33574,-7.726969 14.76737,0 23.31231,20.987561 38.07991,20.987561 14.76751,0 23.3121,-20.987561 38.0796,-20.987561 14.76751,0 23.3122,20.987561 38.07957,20.987561 14.7676,0 23.31254,-20.987561 38.08005,-20.987561 14.7675,0 23.13376,21.257657 38.07957,20.987561 10.349,-0.187039 24.6239,-11.092932 32.4258,-17.783712 V -212.04542 c 0,-2.05323 -1.65299,-3.70623 -3.70619,-3.70623 z" />
102
+ </clipPath>
103
+ <clipPath
104
+ clipPathUnits="userSpaceOnUse"
105
+ id="clipPath431-7-7-1">
106
+ <path
107
+ id="path432-9-8-9"
108
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
109
+ d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
110
+ </clipPath>
111
+ <clipPath
112
+ clipPathUnits="userSpaceOnUse"
113
+ id="clipPath430-3-8-6">
114
+ <path
115
+ id="path431-9-6-4"
116
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
117
+ d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
118
+ </clipPath>
119
+ <clipPath
120
+ clipPathUnits="userSpaceOnUse"
121
+ id="clipPath429-2-0-8">
122
+ <path
123
+ id="path430-8-4-0"
124
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
125
+ d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
126
+ </clipPath>
127
+ <clipPath
128
+ clipPathUnits="userSpaceOnUse"
129
+ id="clipPath428-3-6-8">
130
+ <path
131
+ id="path429-0-7-1"
132
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
133
+ d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
134
+ </clipPath>
135
+ <clipPath
136
+ clipPathUnits="userSpaceOnUse"
137
+ id="clipPath424-4-6-0">
138
+ <path
139
+ id="path425-9-0-2"
140
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
141
+ d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
142
+ </clipPath>
143
+ <clipPath
144
+ clipPathUnits="userSpaceOnUse"
145
+ id="clipPath423-2-9-2">
146
+ <path
147
+ id="path424-5-7-9"
148
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
149
+ d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
150
+ </clipPath>
151
+ <clipPath
152
+ clipPathUnits="userSpaceOnUse"
153
+ id="clipPath422-7-5-7">
154
+ <path
155
+ id="path423-4-9-5"
156
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:5.35901;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
157
+ d="m 384.68765,-240.41958 c -11.87529,0 -21.43587,9.56058 -21.43587,21.43605 v 781.3093 c 39.02239,-24.16927 82.49718,-44.69119 117.61769,-44.69119 85.41146,0 134.83363,121.38771 220.24638,121.38771 85.41219,0 134.83234,-121.38771 220.24454,-121.38771 85.41221,0 134.83291,121.38771 220.24431,121.38771 85.4128,0 134.835,-121.38771 220.2472,-121.38771 85.4122,0 133.8008,122.9499 220.2443,121.38771 59.8565,-1.08179 142.4196,-64.15922 187.5442,-102.85731 v -755.14851 c 0,-11.87547 -9.5606,-21.43605 -21.4359,-21.43605 z" />
158
+ </clipPath>
159
+ <clipPath
160
+ clipPathUnits="userSpaceOnUse"
161
+ id="clipPath421-9-7-6">
162
+ <path
163
+ id="path422-9-8-4"
164
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
165
+ d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
166
+ </clipPath>
167
+ <clipPath
168
+ clipPathUnits="userSpaceOnUse"
169
+ id="clipPath420-4-5-6">
170
+ <path
171
+ id="path421-5-3-3"
172
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:1.40674;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
173
+ d="m 725.64338,-185.84881 c -3.11727,0 -5.62692,2.50965 -5.62692,5.62696 V 24.871838 c 10.24338,-6.344434 21.65551,-11.731437 30.87465,-11.731437 22.4205,0 35.39382,31.864274 57.81467,31.864274 22.4207,0 35.39349,-31.864274 57.81419,-31.864274 22.4207,0 35.39363,31.864274 57.81414,31.864274 22.42085,0 35.39417,-31.864274 57.81487,-31.864274 22.42072,0 35.12272,32.274346 57.81412,31.864274 15.7123,-0.283971 37.3852,-16.841797 49.2304,-27.000044 V -180.22185 c 0,-3.11731 -2.5097,-5.62696 -5.627,-5.62696 z" />
174
+ </clipPath>
175
+ <clipPath
176
+ clipPathUnits="userSpaceOnUse"
177
+ id="clipPath419-9-3-7">
178
+ <path
179
+ id="path420-3-8-9"
180
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
181
+ d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
182
+ </clipPath>
183
+ <clipPath
184
+ clipPathUnits="userSpaceOnUse"
185
+ id="clipPath417-0-9-9">
186
+ <path
187
+ id="path418-8-3-1"
188
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
189
+ d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
190
+ </clipPath>
191
+ <clipPath
192
+ clipPathUnits="userSpaceOnUse"
193
+ id="clipPath416-1-7-7">
194
+ <path
195
+ id="path417-9-8-0"
196
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:1.40674;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
197
+ d="m 712.48625,-301.09918 c -3.11726,0 -5.62692,2.50965 -5.62692,5.62696 v 205.093688 c 10.24338,-6.344433 21.65551,-11.731438 30.87465,-11.731438 22.42051,0 35.39382,31.864275 57.81467,31.864275 22.4207,0 35.39349,-31.864275 57.81419,-31.864275 22.4207,0 35.39364,31.864275 57.81414,31.864275 22.42085,0 35.39417,-31.864275 57.81487,-31.864275 22.4207,0 35.12275,32.274347 57.81415,31.864275 15.7123,-0.283971 37.3851,-16.841797 49.2303,-27.000044 V -295.47222 c 0,-3.11731 -2.5096,-5.62696 -5.6269,-5.62696 z" />
198
+ </clipPath>
199
+ <clipPath
200
+ clipPathUnits="userSpaceOnUse"
201
+ id="clipPath729-6">
202
+ <path
203
+ id="path730-0"
204
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.58661;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
205
+ d="m 3024.7739,627.35678 c -2.9312,0 -5.2916,2.36011 -5.2916,5.29162 v 170.43364 c 9.633,-5.96631 20.3653,-11.03245 29.0346,-11.03245 21.0847,0 33.2853,29.96559 54.37,29.96559 21.0847,0 33.2844,-29.96559 54.3692,-29.96559 21.0847,0 33.2848,29.96559 54.3696,29.96559 21.0847,0 33.2844,-29.96559 54.3691,-29.96559 21.0848,0 33.0306,30.35123 54.3696,29.96559 14.7759,-0.26696 35.1571,-15.83821 46.2965,-25.3912 V 632.6484 c 0,-2.93151 -2.3595,-5.29162 -5.2916,-5.29162 z"
206
+ sodipodi:nodetypes="sscsssssscsss" />
207
+ </clipPath>
208
+ <clipPath
209
+ clipPathUnits="userSpaceOnUse"
210
+ id="clipPath2">
211
+ <path
212
+ id="path1-7"
213
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
214
+ d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
215
+ </clipPath>
216
+ <clipPath
217
+ clipPathUnits="userSpaceOnUse"
218
+ id="clipPath3">
219
+ <path
220
+ id="path3"
221
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
222
+ d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
223
+ </clipPath>
224
+ <clipPath
225
+ clipPathUnits="userSpaceOnUse"
226
+ id="clipPath4">
227
+ <path
228
+ id="path4"
229
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
230
+ d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
231
+ </clipPath>
232
+ <clipPath
233
+ clipPathUnits="userSpaceOnUse"
234
+ id="clipPath7">
235
+ <path
236
+ id="path7"
237
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.765519;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
238
+ d="m 325.19865,-106.97735 c -1.41442,0 -2.55314,1.13872 -2.55314,2.55314 v 82.232091 c 4.64781,-2.878669 9.82592,-5.323019 14.00898,-5.323019 10.17304,0 16.05949,14.458021 26.23269,14.458021 10.17312,0 16.05936,-14.458021 26.23246,-14.458021 10.17312,0 16.05944,14.458021 26.23246,14.458021 10.1732,0 16.05968,-14.458021 26.23277,-14.458021 10.17313,0 15.93652,14.6441 26.23246,14.458021 7.12928,-0.128791 16.96305,-7.641722 22.33766,-12.25092 v -79.116173 c 0,-1.41442 -1.13871,-2.55314 -2.55315,-2.55314 z"
239
+ sodipodi:nodetypes="sscsssssscsss" />
240
+ </clipPath>
241
+ <clipPath
242
+ clipPathUnits="userSpaceOnUse"
243
+ id="clipPath31-5">
244
+ <path
245
+ id="path32-4"
246
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
247
+ d="m 59.448396,117.38544 c -1.710994,0 -3.088494,1.37751 -3.088494,3.08851 v 99.47524 c 5.622398,-3.4823 11.886298,-6.4392 16.946499,-6.4392 12.306202,0 19.427002,17.4897 31.733399,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.3063,0 19.27831,17.7148 31.7333,17.4897 8.62408,-0.1558 20.51998,-9.2441 27.02142,-14.8198 v -95.70594 c 0,-1.711 -1.37742,-3.08851 -3.0885,-3.08851 z"
248
+ sodipodi:nodetypes="sscsssssscsss" />
249
+ </clipPath>
250
+ <clipPath
251
+ clipPathUnits="userSpaceOnUse"
252
+ id="clipPath18-6">
253
+ <path
254
+ id="path19-2"
255
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:15.0821;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
256
+ d="m -3334.2611,-1042.3606 c -27.8665,0 -50.3014,22.4349 -50.3014,50.30132 V 628.06067 c 91.5701,-56.71503 193.5881,-104.87302 276.0019,-104.87302 200.4268,0 316.4008,284.84871 516.8309,284.84871 200.4285,0 316.3976,-284.84871 516.8261,-284.84871 200.4301,0 316.3976,284.84871 516.826,284.84871 200.4285,0 316.4025,-284.84871 516.831,-284.84871 200.42847,0 313.97901,288.51483 516.82932,284.84871 140.45773,-2.53746 334.20219,-150.55547 440.08825,-241.36497 V -992.05928 c 0,-27.86642 -22.43323,-50.30132 -50.30133,-50.30132 z"
257
+ sodipodi:nodetypes="sscsssssscsss" />
258
+ </clipPath>
259
+ </defs>
260
+ <g
261
+ inkscape:label="Layer 1"
262
+ inkscape:groupmode="layer"
263
+ id="layer1"
264
+ transform="translate(-336.55017,-30.6131)">
265
+ <rect
266
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.250095;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
267
+ id="title"
268
+ width="169.33333"
269
+ height="104.96965"
270
+ x="336.55017"
271
+ y="30.6131"
272
+ inkscape:export-filename="page-with-breadcrumb.png"
273
+ inkscape:export-xdpi="96"
274
+ inkscape:export-ydpi="96" />
275
+ <path
276
+ id="path12-5"
277
+ style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linejoin:bevel;stroke-dasharray:1.58751, 1.58751;stroke-dashoffset:0;paint-order:fill markers stroke;stop-color:#000000"
278
+ d="m 504.80144,134.59789 v -18.82138 c -5.36361,4.59975 -15.17744,12.09731 -22.29216,12.22604 -10.27518,0.18554 -16.02666,-14.42893 -26.17905,-14.42893 -10.15264,0 -16.02743,14.42893 -26.17994,14.42893 -10.15239,0 -16.02679,-14.42893 -26.17917,-14.42893 -10.15252,0 -16.02653,14.42893 -26.17892,14.42893 -10.15277,0 -16.0273,-14.42893 -26.17956,-14.42893 -4.17468,0 -9.3419,2.43958 -13.98038,5.31235 v 15.71192"
279
+ sodipodi:nodetypes="ccsssssscc" />
280
+ <g
281
+ id="g7"
282
+ clip-path="url(#clipPath7)"
283
+ transform="translate(14.948891,138.49885)">
284
+ <rect
285
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.29045;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
286
+ id="rect397-2-5-1"
287
+ width="195.10553"
288
+ height="11.515541"
289
+ x="2499.1555"
290
+ y="355.19144"
291
+ inkscape:export-filename="screenshot-sponsors-default-layout.png"
292
+ inkscape:export-xdpi="96"
293
+ inkscape:export-ydpi="96"
294
+ clip-path="url(#clipPath423-2-9-2)"
295
+ transform="matrix(0.82692737,0,0,0.82692737,-1740.8889,-397.51985)" />
296
+ <g
297
+ id="g404-1-8-5"
298
+ transform="matrix(0.11914478,0,0,0.11914478,279.33891,-88.961102)"
299
+ style="fill:#f6edf4;stroke-width:3.80952"
300
+ clip-path="url(#clipPath422-7-5-7)">
301
+ <g
302
+ aria-label="CentOS"
303
+ id="g402-2-4-5"
304
+ style="font-weight:bold;font-size:29.9666px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro Bold';fill:#f6edf4;fill-opacity:1;stroke-width:2.85397"
305
+ transform="matrix(0.97560972,0,0,0.97560972,-295.86665,-427.58606)">
306
+ <path
307
+ d="m 865.94059,362.40602 c 3.65593,0 6.68255,-1.31853 8.66035,-3.74583 l -3.11653,-2.87679 c -1.40843,1.64816 -3.17646,2.48723 -5.27412,2.48723 -3.92563,0 -6.71252,-2.75693 -6.71252,-6.71252 0,-3.95559 2.78689,-6.71252 6.71252,-6.71252 2.09766,0 3.86569,0.83906 5.27412,2.45726 l 3.11653,-2.87679 c -1.9778,-2.39733 -5.00442,-3.71586 -8.63038,-3.71586 -6.53272,0 -11.38731,4.52495 -11.38731,10.84791 0,6.32295 4.85459,10.84791 11.35734,10.84791 z"
308
+ id="path397-0-3-4"
309
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
310
+ <path
311
+ d="m 892.76066,354.04533 c 0,-5.18422 -3.65592,-8.36068 -8.39065,-8.36068 -4.91452,0 -8.60041,3.47613 -8.60041,8.30075 0,4.79466 3.62596,8.30075 9.19974,8.30075 2.90676,0 5.15426,-0.899 6.65259,-2.60709 l -2.48723,-2.697 c -1.10876,1.04883 -2.33739,1.55826 -4.04549,1.55826 -2.45726,0 -4.16536,-1.22863 -4.61486,-3.23639 h 12.19641 c 0.03,-0.38956 0.0899,-0.899 0.0899,-1.2586 z m -8.36068,-4.82462 c 2.09766,0 3.62596,1.31853 3.95559,3.35626 h -7.94115 c 0.32963,-2.06769 1.85793,-3.35626 3.98556,-3.35626 z"
312
+ id="path398-7-7-9"
313
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
314
+ <path
315
+ d="m 905.67622,345.68465 c -2.18756,0 -4.07545,0.74917 -5.33405,2.12763 v -1.88789 h -4.46502 v 16.12203 h 4.67479 v -7.97112 c 0,-2.96669 1.61819,-4.34516 3.86569,-4.34516 2.06769,0 3.26636,1.19867 3.26636,3.80576 v 8.51052 h 4.67479 v -9.22972 c 0,-4.91452 -2.8768,-7.13205 -6.68256,-7.13205 z"
316
+ id="path399-3-1-8"
317
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
318
+ <path
319
+ d="m 925.72388,357.97096 c -0.50943,0.38957 -1.19866,0.59933 -1.8879,0.59933 -1.25859,0 -2.00776,-0.74916 -2.00776,-2.12763 v -6.56268 h 4.01553 v -3.59599 h -4.01553 v -3.92563 h -4.67479 v 3.92563 h -2.48723 v 3.59599 h 2.48723 v 6.62262 c 0,3.83572 2.21753,5.78355 6.02329,5.78355 1.4384,0 2.84683,-0.32963 3.80576,-1.01886 z"
320
+ id="path400-1-3-3"
321
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
322
+ <path
323
+ d="m 940.10783,362.40602 c 6.59266,0 11.47721,-4.58489 11.47721,-10.84791 0,-6.26302 -4.88455,-10.84791 -11.47721,-10.84791 -6.62261,0 -11.4772,4.61485 -11.4772,10.84791 0,6.23305 4.85459,10.84791 11.4772,10.84791 z m 0,-4.13539 c -3.74582,0 -6.56268,-2.72697 -6.56268,-6.71252 0,-3.98556 2.81686,-6.71252 6.56268,-6.71252 3.74583,0 6.56269,2.72696 6.56269,6.71252 0,3.98555 -2.81686,6.71252 -6.56269,6.71252 z"
324
+ id="path401-1-8-8"
325
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
326
+ <path
327
+ d="m 962.13328,362.40602 c 5.99332,0 8.90008,-2.99666 8.90008,-6.50276 0,-7.70141 -12.19641,-5.03438 -12.19641,-8.90008 0,-1.31853 1.10876,-2.39732 3.98556,-2.39732 1.85793,0 3.86569,0.53939 5.81352,1.64816 l 1.49833,-3.68589 c -1.94783,-1.22863 -4.64482,-1.85793 -7.28188,-1.85793 -5.96336,0 -8.84015,2.96669 -8.84015,6.53272 0,7.79131 12.1964,5.09432 12.1964,9.01994 0,1.28857 -1.16869,2.2475 -4.04549,2.2475 -2.51719,0 -5.15425,-0.899 -6.92228,-2.18756 l -1.64816,3.65592 c 1.85792,1.4384 5.21418,2.4273 8.54048,2.4273 z"
328
+ id="path402-9-0-5"
329
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
330
+ </g>
331
+ <g
332
+ id="g403-0-9-2"
333
+ transform="matrix(0.74451128,0.74451128,-0.74451128,0.74451128,6.01137,-157.12384)"
334
+ inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
335
+ inkscape:export-xdpi="10.11"
336
+ inkscape:export-ydpi="10.11"
337
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:3.80952">
338
+ <path
339
+ id="path403-5-7-2"
340
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:5.0397;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
341
+ d="m 372.92961,-303.88054 a 20.103001,20.103493 0 0 0 -4.90893,13.16408 20.103001,20.103493 0 0 0 20.10242,20.10507 20.103001,20.103493 0 0 0 20.10374,-20.10375 20.103001,20.103493 0 0 0 -20.10374,-20.10374 20.103001,20.103493 0 0 0 -15.19349,6.93834 z m 4.43562,2.40753 h 6.30374 l 4.45545,-4.45545 4.45545,4.45545 h 6.3011 v 6.3011 l 4.45677,4.45677 -4.45545,4.45546 -0.001,6.30241 h -6.3011 l -4.45545,4.45546 -4.45678,-4.45678 h -6.30109 v -6.30109 l -4.45545,-4.45546 4.45545,-4.45545 z m 2.27135,4.18311 3.22723,3.22723 1.91307,0.001 10e-4,-1.91307 -3.22855,-3.22855 z m -2.16294,5.22226 0.001,2.70368 h 4.56387 l 1.3525,-1.3525 -1.3525,-1.3525 z m 9.29696,-9.29695 v 4.56386 l 1.3525,1.3525 1.3525,-1.3525 v -4.56386 z m 0.0912,7.606 0.0172,1.79936 -1.79805,-0.0159 1.28243,1.25863 -1.28243,1.26128 1.79805,-0.0159 -0.0145,1.79937 1.25996,-1.28375 1.25995,1.28375 -0.0145,-1.79937 1.79672,0.0145 -1.28243,-1.25864 1.28243,-1.26127 -1.79804,0.0159 0.0159,-1.79804 -1.26127,1.28243 z m -7.22391,9.6169 1.91174,1.91175 3.22723,-3.22723 v -1.91175 h -1.91175 z m 11.83273,-11.83273 v 1.91175 h 1.91174 l 3.22723,-3.22723 -1.91175,-1.91175 z m -4.69872,11.34356 -0.001,4.56518 h 2.705 v -4.56386 l -1.3525,-1.3525 z m 6.08427,-6.08428 1.3525,1.35251 h 4.56386 v -2.70501 h -4.56386 z m -1.38688,3.34622 10e-4,1.91307 3.22722,3.22723 1.91307,-1.91307 -3.22723,-3.22723 z" />
342
+ </g>
343
+ </g>
344
+ <rect
345
+ style="fill:#f6edf4;fill-opacity:1;stroke:#f6edf4;stroke-width:0.145225;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
346
+ id="rect404-6-9-2"
347
+ width="9.556036"
348
+ height="6.0348539"
349
+ x="2670.1716"
350
+ y="357.93179"
351
+ rx="0.72612405"
352
+ ry="0.72612405"
353
+ clip-path="url(#clipPath421-9-7-6)"
354
+ transform="matrix(0.82692737,0,0,0.82692737,-1740.8889,-397.51985)" />
355
+ <g
356
+ id="g406-7-9-7"
357
+ transform="matrix(0.45388488,0,0,0.45388488,-4.1862063,-33.251832)"
358
+ style="stroke:#9a9996;stroke-opacity:1"
359
+ clip-path="url(#clipPath420-4-5-6)">
360
+ <path
361
+ style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
362
+ d="m 1040.8931,-147.50672 h 12.5172"
363
+ id="path404-7-3-0" />
364
+ <path
365
+ style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
366
+ d="m 1040.8931,-144.94685 h 12.5172"
367
+ id="path405-4-2-3" />
368
+ <path
369
+ style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
370
+ d="m 1040.8931,-142.38698 h 12.5172"
371
+ id="path406-0-4-4" />
372
+ </g>
373
+ <path
374
+ style="fill:none;stroke:none;stroke-width:0.145225px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
375
+ d="m 2539.0625,357.24501 v 7.40839"
376
+ id="path407-6-3-6"
377
+ clip-path="url(#clipPath419-9-3-7)"
378
+ transform="matrix(0.82692737,0,0,0.82692737,-1740.8889,-397.51985)" />
379
+ <g
380
+ id="g1">
381
+ <g
382
+ id="g411-8-2-3"
383
+ transform="matrix(0.45388488,0,0,0.45388488,2.3015904,-34.489811)"
384
+ clip-path="url(#clipPath416-1-7-7)">
385
+ <rect
386
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.100055;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
387
+ id="rect408-5-0-4"
388
+ width="33.323124"
389
+ height="7.9375"
390
+ x="739.05914"
391
+ y="-125.37652"
392
+ rx="1.3229167"
393
+ ry="1.3229167" />
394
+ <rect
395
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.100055;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
396
+ id="rect409-2-1-3"
397
+ width="33.323124"
398
+ height="7.9375"
399
+ x="778.5531"
400
+ y="-125.37652"
401
+ rx="1.3229167"
402
+ ry="1.3229167" />
403
+ <rect
404
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.100055;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
405
+ id="rect410-6-7-9"
406
+ width="33.323124"
407
+ height="7.9375"
408
+ x="818.04712"
409
+ y="-125.37652"
410
+ rx="1.3229167"
411
+ ry="1.3229167" />
412
+ <path
413
+ style="fill:none;stroke:#f6edf4;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
414
+ d="m 774.56963,-123.04318 1.70092,1.63724 -1.57354,1.63723"
415
+ id="path410-0-5-7"
416
+ sodipodi:nodetypes="ccc" />
417
+ <path
418
+ style="fill:none;stroke:#f6edf4;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
419
+ d="m 814.06362,-123.04318 1.70092,1.63724 -1.57354,1.63723"
420
+ id="path411-6-1-2"
421
+ sodipodi:nodetypes="ccc" />
422
+ </g>
423
+ <g
424
+ id="g6"
425
+ transform="translate(-2496.4222,-1174.3094)">
426
+ <path
427
+ d="m 234.05916,193.5514 c 0,-0.4005 0.3256,-0.72612 0.72617,-0.72612 h 2.17829 0.5446 0.18157 16.87833 c 0.40046,0 0.72606,0.32562 0.72606,0.72612 v 2.9045 c 0,0.4005 -0.3256,0.72612 -0.72606,0.72612 h -16.87833 -0.18157 -0.5446 -2.17829 c -0.40057,0 -0.72617,-0.32562 -0.72617,-0.72612 z m 3.63063,0 v 2.9045 h 2.90452 v -2.9045 z m -1.60767,0.54346 c -0.0362,-0.0817 -0.11801,-0.13501 -0.20764,-0.13501 -0.0896,0 -0.17136,0.0533 -0.20765,0.13501 l -0.72617,1.63377 c -0.051,0.1146 0,0.24848 0.11576,0.29953 0.11461,0.0511 0.24848,-0.001 0.29953,-0.11572 l 0.10099,-0.22805 h 0.83507 l 0.10099,0.22805 c 0.0511,0.11458 0.18492,0.16564 0.29947,0.11572 0.11461,-0.0499 0.16566,-0.18493 0.11576,-0.29953 z m -0.20764,0.6501 0.21554,0.4856 h -0.43109 z m 3.26754,-0.78511 c 0.12482,0 0.22691,0.10211 0.22691,0.22691 v 0.0454 h 0.49921 0.18157 c 0.12476,0 0.2269,0.10212 0.2269,0.22692 0,0.1248 -0.10214,0.22691 -0.2269,0.22691 h -0.0231 l -0.0181,0.0511 c -0.10099,0.27683 -0.25413,0.52871 -0.44926,0.742 0.0104,0.007 0.0203,0.0125 0.0307,0.0182 l 0.21445,0.12821 c 0.10774,0.0647 0.14177,0.20422 0.0783,0.31087 -0.0636,0.10665 -0.20424,0.14182 -0.31089,0.0783 l -0.21439,-0.1282 c -0.0511,-0.0306 -0.0999,-0.0624 -0.1487,-0.0964 -0.1202,0.0851 -0.24842,0.15884 -0.38569,0.22011 l -0.0406,0.0182 c -0.11455,0.0511 -0.24848,-0.001 -0.29947,-0.11573 -0.0511,-0.11459 0,-0.24847 0.1157,-0.29953 l 0.0406,-0.0182 c 0.0726,-0.0329 0.14293,-0.0692 0.20995,-0.11119 l -0.13849,-0.13842 c -0.0885,-0.0885 -0.0885,-0.23258 0,-0.32108 0.0885,-0.0885 0.23257,-0.0885 0.3211,0 l 0.16565,0.16565 0.006,0.006 c 0.14068,-0.14863 0.25528,-0.32108 0.33811,-0.51055 h -0.39942 -0.81684 c -0.12482,0 -0.22697,-0.10211 -0.22697,-0.22691 0,-0.12481 0.10215,-0.22692 0.22697,-0.22692 h 0.58999 v -0.0454 c 0,-0.1248 0.10203,-0.22692 0.22685,-0.22692 z"
428
+ id="path408-8"
429
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.0113456"
430
+ clip-path="url(#clipPath31-5)"
431
+ transform="matrix(0.82665905,0,0,0.82665905,2760.4923,923.51292)"
432
+ sodipodi:nodetypes="sscccsssscccsssccccccscccccccccccccccsccsssccccccccccccccccssccccssscscc" />
433
+ <rect
434
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264572;stroke-linejoin:round;stroke-dasharray:none"
435
+ id="rect3-2-7"
436
+ width="6.7305856"
437
+ height="1.1906738"
438
+ x="2960.95"
439
+ y="1084.1317"
440
+ rx="0.52914494"
441
+ ry="0.52914494" />
442
+ <path
443
+ sodipodi:type="star"
444
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:18.7602;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
445
+ id="path602-9-2"
446
+ inkscape:flatsided="false"
447
+ sodipodi:sides="3"
448
+ sodipodi:cx="-499.8125"
449
+ sodipodi:cy="737.32031"
450
+ sodipodi:r1="36.465179"
451
+ sodipodi:r2="18.23259"
452
+ sodipodi:arg1="1.5707963"
453
+ sodipodi:arg2="2.6179939"
454
+ inkscape:rounded="0"
455
+ inkscape:randomized="0"
456
+ d="m -499.8125,773.78549 -15.78989,-27.34888 -15.78988,-27.34889 31.57977,0 31.57977,0 -15.78988,27.34889 z"
457
+ transform="matrix(0.02176734,0,0,0.02176734,2981.0119,1068.4791)"
458
+ inkscape:transform-center-y="0.43727202"
459
+ inkscape:transform-center-x="4.3705878e-05"
460
+ clip-path="url(#clipPath18-6)" />
461
+ </g>
462
+ </g>
463
+ <text
464
+ xml:space="preserve"
465
+ style="font-size:8.99535px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;text-align:start;writing-mode:lr-tb;direction:ltr;text-anchor:start;fill:#a14f8c;stroke:none;stroke-width:0.374807;stroke-linejoin:round"
466
+ x="337.71338"
467
+ y="-72.728531"
468
+ id="text2"><tspan
469
+ sodipodi:role="line"
470
+ id="tspan2"
471
+ style="font-weight:bold;fill:#a14f8c;stroke:none;stroke-width:0.374807"
472
+ x="337.71338"
473
+ y="-72.728531">Lorem Ipsum</tspan></text>
474
+ <text
475
+ xml:space="preserve"
476
+ style="font-size:3.0489px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;text-align:start;writing-mode:lr-tb;direction:ltr;text-anchor:start;fill:#a14f8c;stroke:none;stroke-width:0.127037;stroke-linejoin:round"
477
+ x="337.57336"
478
+ y="-67.28476"
479
+ id="text3"><tspan
480
+ sodipodi:role="line"
481
+ id="tspan3"
482
+ style="font-style:normal;font-variant:normal;font-weight:100;font-stretch:normal;font-family:Montserrat;-inkscape-font-specification:'Montserrat Thin';fill:#a14f8c;stroke:none;stroke-width:0.127037"
483
+ x="337.57336"
484
+ y="-67.28476">Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...</tspan></text>
485
+ <g
486
+ id="g939-1"
487
+ transform="matrix(0.48207428,0,0,0.48207428,-54.328089,-383.05759)">
488
+ <rect
489
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.248818;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
490
+ id="rect937-2"
491
+ width="286.95578"
492
+ height="27.962162"
493
+ x="813.31335"
494
+ y="667.367"
495
+ rx="4.9763589"
496
+ ry="4.9763589" />
497
+ <g
498
+ id="g938-7"
499
+ transform="matrix(0.02677882,0,0,0.02677882,950.79278,674.49279)"
500
+ style="fill:#381a32;fill-opacity:1">
501
+ <title
502
+ id="title937-0">align-left</title>
503
+ </g>
504
+ <path
505
+ sodipodi:type="star"
506
+ style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
507
+ id="path939-3"
508
+ inkscape:flatsided="false"
509
+ sodipodi:sides="3"
510
+ sodipodi:cx="-499.8125"
511
+ sodipodi:cy="737.32031"
512
+ sodipodi:r1="36.465179"
513
+ sodipodi:r2="18.23259"
514
+ sodipodi:arg1="1.5707963"
515
+ sodipodi:arg2="2.6179939"
516
+ inkscape:rounded="0"
517
+ inkscape:randomized="0"
518
+ d="m -499.8125,773.78549 -15.78989,-27.34888 -15.78988,-27.34889 31.57977,0 31.57977,0 -15.78988,27.34889 z"
519
+ transform="matrix(0.10519844,0,0,0.10519844,1139.2521,602.82419)"
520
+ inkscape:transform-center-y="1.0197809"
521
+ inkscape:transform-center-x="-6.518711e-05" />
522
+ </g>
523
+ <rect
524
+ style="fill:#f6edf4;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
525
+ id="rect3"
526
+ width="115.24662"
527
+ height="3.3675957"
528
+ x="337.89185"
529
+ y="-42.559658"
530
+ rx="1.3229166"
531
+ ry="1.3229166" />
532
+ <rect
533
+ style="fill:#ecdce8;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
534
+ id="rect3-2"
535
+ width="37.604816"
536
+ height="3.3675957"
537
+ x="341.8653"
538
+ y="-56.281002"
539
+ rx="1.3229166"
540
+ ry="1.3229166" />
541
+ <rect
542
+ style="fill:#f6edf4;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
543
+ id="rect4"
544
+ width="66.603561"
545
+ height="3.3675957"
546
+ x="337.89185"
547
+ y="-36.198643"
548
+ rx="1.3229166"
549
+ ry="1.3229166" />
550
+ <rect
551
+ style="fill:#f6edf4;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
552
+ id="rect5"
553
+ width="84.564072"
554
+ height="3.3675957"
555
+ x="337.89185"
556
+ y="-29.463451"
557
+ rx="1.3229166"
558
+ ry="1.3229166" />
559
+ <rect
560
+ style="fill:#f6edf4;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
561
+ id="rect6"
562
+ width="66.603561"
563
+ height="3.3675957"
564
+ x="409.4798"
565
+ y="-36.198643"
566
+ rx="1.3229166"
567
+ ry="1.3229166" />
568
+ <rect
569
+ style="fill:#f6edf4;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
570
+ id="rect7"
571
+ width="127.59448"
572
+ height="3.3675957"
573
+ x="337.89185"
574
+ y="-22.54117"
575
+ rx="1.3229166"
576
+ ry="1.3229166" />
577
+ </g>
578
+ <path
579
+ id="path664"
580
+ style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.765518;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
581
+ d="m 340.01525,31.755727 c -1.41442,0 -2.55314,1.138723 -2.55314,2.553137 v 82.232076 c 4.64781,-2.87867 9.82592,-5.32302 14.00898,-5.32302 10.17303,0 16.0595,14.45802 26.2327,14.45802 10.17312,0 16.05934,-14.45802 26.23246,-14.45802 10.17311,0 16.05942,14.45802 26.23245,14.45802 10.1732,0 16.05967,-14.45802 26.23278,-14.45802 10.17312,0 15.9365,14.6441 26.23246,14.45802 7.12927,-0.12879 16.96304,-7.64172 22.33765,-12.25092 V 34.308864 c 0,-1.414414 -1.13872,-2.553137 -2.55314,-2.553137 z"
582
+ sodipodi:nodetypes="sscsssssscsss" />
583
+ </g>
584
+ </svg>