jekyll-theme-centos 0.0.0 → 0.1.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 (516) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +21 -0
  3. data/README.md +66 -0
  4. data/_includes/centos-content/1col.html +11 -0
  5. data/_includes/centos-content/2col.html +15 -0
  6. data/_includes/centos-content/admonition/caution.html +4 -0
  7. data/_includes/centos-content/admonition/idea.html +4 -0
  8. data/_includes/centos-content/admonition/note.html +4 -0
  9. data/_includes/centos-content/admonition/warning.html +4 -0
  10. data/_includes/centos-content/around.html +6 -0
  11. data/_includes/centos-content/breadcrumbs.html +11 -0
  12. data/_includes/centos-content/download/stream-8-doc.html +5 -0
  13. data/_includes/centos-content/download/stream-8-eol.html +5 -0
  14. data/_includes/centos-content/download/stream-8.html +5 -0
  15. data/_includes/centos-content/download/stream.html +16 -0
  16. data/_includes/centos-content/download/table-body-doc.html +6 -0
  17. data/_includes/centos-content/download/table-body-eol.html +4 -0
  18. data/_includes/centos-content/download/table-body.html +7 -0
  19. data/_includes/{download/cards-footer.html → centos-content/download/table-footer.html} +0 -1
  20. data/_includes/centos-content/download/table-header-doc.html +8 -0
  21. data/_includes/centos-content/download/table-header-eol.html +8 -0
  22. data/_includes/centos-content/download/table-header.html +10 -0
  23. data/_includes/centos-content/figure.html +4 -0
  24. data/_includes/centos-content/news.html +15 -0
  25. data/_includes/centos-content/sponsors.html +19 -0
  26. data/_includes/centos-content/toc.html +103 -0
  27. data/_includes/centos-content/video.html +3 -0
  28. data/_includes/centos-footer.html +42 -0
  29. data/_includes/centos-head.html +7 -0
  30. data/_includes/centos-header/home.html +15 -0
  31. data/_includes/centos-header/page.html +12 -0
  32. data/_includes/centos-header.html +7 -0
  33. data/_includes/centos-nav.html +29 -0
  34. data/_includes/centos-styleguide.md +243 -0
  35. data/_layouts/centos-content/1col.html +9 -0
  36. data/_layouts/centos-content/2col.html +9 -0
  37. data/_layouts/centos-content/download-mirror.html +30 -0
  38. data/_layouts/centos-content/download.html +18 -0
  39. data/_layouts/centos-content/sponsors.html +21 -0
  40. data/_layouts/centos-home.html +39 -0
  41. data/_layouts/default.html +18 -0
  42. data/_layouts/{download/cards.html → page.html} +0 -2
  43. data/_layouts/post.html +5 -0
  44. data/_sass/bootstrap/_alert.scss +16 -32
  45. data/_sass/bootstrap/_badge.scss +31 -15
  46. data/_sass/bootstrap/_breadcrumb.scss +27 -23
  47. data/_sass/bootstrap/_button-group.scss +48 -32
  48. data/_sass/bootstrap/_buttons.scss +71 -145
  49. data/_sass/bootstrap/_card.scss +123 -75
  50. data/_sass/bootstrap/_carousel.scss +39 -68
  51. data/_sass/bootstrap/_close.scss +27 -53
  52. data/_sass/bootstrap/_code.scss +48 -0
  53. data/_sass/bootstrap/_custom-forms.scss +524 -0
  54. data/_sass/bootstrap/_dropdown.scss +71 -129
  55. data/_sass/bootstrap/_forms.scss +347 -9
  56. data/_sass/bootstrap/_functions.scss +23 -181
  57. data/_sass/bootstrap/_grid.scss +52 -18
  58. data/_sass/bootstrap/_images.scss +1 -1
  59. data/_sass/bootstrap/_input-group.scss +192 -0
  60. data/_sass/bootstrap/_jumbotron.scss +17 -0
  61. data/_sass/bootstrap/_list-group.scss +48 -93
  62. data/_sass/bootstrap/_media.scss +8 -0
  63. data/_sass/bootstrap/_mixins.scss +15 -10
  64. data/_sass/bootstrap/_modal.scss +112 -112
  65. data/_sass/bootstrap/_nav.scss +29 -103
  66. data/_sass/bootstrap/_navbar.scss +171 -136
  67. data/_sass/bootstrap/_pagination.scss +37 -72
  68. data/_sass/bootstrap/_popover.scss +73 -99
  69. data/_sass/bootstrap/_print.scss +141 -0
  70. data/_sass/bootstrap/_progress.scss +15 -36
  71. data/_sass/bootstrap/_reboot.scss +200 -333
  72. data/_sass/bootstrap/_root.scss +10 -177
  73. data/_sass/bootstrap/_spinners.scss +22 -52
  74. data/_sass/bootstrap/_tables.scss +115 -101
  75. data/_sass/bootstrap/_toasts.scss +27 -54
  76. data/_sass/bootstrap/_tooltip.scss +63 -67
  77. data/_sass/bootstrap/_transitions.scss +1 -8
  78. data/_sass/bootstrap/_type.scss +59 -40
  79. data/_sass/bootstrap/_utilities.scss +18 -806
  80. data/_sass/bootstrap/_variables.scss +611 -1222
  81. data/_sass/bootstrap/bootstrap-grid.scss +20 -53
  82. data/_sass/bootstrap/bootstrap-reboot.scss +7 -5
  83. data/_sass/bootstrap/bootstrap.scss +13 -21
  84. data/_sass/bootstrap/mixins/_alert.scss +6 -11
  85. data/_sass/bootstrap/mixins/_background-variant.scss +23 -0
  86. data/_sass/bootstrap/mixins/_badge.scss +17 -0
  87. data/_sass/bootstrap/mixins/_border-radius.scss +8 -10
  88. data/_sass/bootstrap/mixins/_box-shadow.scss +9 -13
  89. data/_sass/bootstrap/mixins/_breakpoints.scss +16 -20
  90. data/_sass/bootstrap/mixins/_buttons.scss +100 -60
  91. data/_sass/bootstrap/mixins/_caret.scss +27 -34
  92. data/_sass/bootstrap/mixins/_clearfix.scss +0 -2
  93. data/_sass/bootstrap/mixins/_deprecate.scss +0 -0
  94. data/_sass/bootstrap/mixins/_float.scss +14 -0
  95. data/_sass/bootstrap/mixins/_forms.scss +78 -63
  96. data/_sass/bootstrap/mixins/_gradients.scss +11 -13
  97. data/_sass/bootstrap/mixins/_grid-framework.scss +80 -0
  98. data/_sass/bootstrap/mixins/_grid.scss +37 -119
  99. data/_sass/bootstrap/mixins/_hover.scss +37 -0
  100. data/_sass/bootstrap/mixins/_image.scss +21 -1
  101. data/_sass/bootstrap/mixins/_list-group.scss +2 -7
  102. data/_sass/bootstrap/mixins/_lists.scss +1 -1
  103. data/_sass/bootstrap/mixins/_nav-divider.scss +11 -0
  104. data/_sass/bootstrap/mixins/_pagination.scss +19 -7
  105. data/_sass/bootstrap/mixins/_reset-text.scss +3 -3
  106. data/_sass/bootstrap/mixins/_resize.scss +0 -0
  107. data/_sass/bootstrap/mixins/_screen-reader.scss +34 -0
  108. data/_sass/bootstrap/mixins/_size.scss +7 -0
  109. data/_sass/bootstrap/mixins/_table-row.scss +39 -0
  110. data/_sass/bootstrap/mixins/_text-emphasis.scss +17 -0
  111. data/_sass/bootstrap/mixins/_text-hide.scss +11 -0
  112. data/_sass/bootstrap/mixins/_text-truncate.scss +0 -0
  113. data/_sass/bootstrap/mixins/_transition.scss +1 -1
  114. data/_sass/bootstrap/mixins/_visibility.scss +8 -0
  115. data/_sass/bootstrap/utilities/_align.scss +8 -0
  116. data/_sass/bootstrap/utilities/_background.scss +19 -0
  117. data/_sass/bootstrap/utilities/_borders.scss +75 -0
  118. data/_sass/bootstrap/{helpers → utilities}/_clearfix.scss +0 -0
  119. data/_sass/bootstrap/utilities/_display.scss +26 -0
  120. data/_sass/bootstrap/utilities/_embed.scss +39 -0
  121. data/_sass/bootstrap/utilities/_flex.scss +51 -0
  122. data/_sass/bootstrap/utilities/_float.scss +11 -0
  123. data/_sass/bootstrap/utilities/_interactions.scss +5 -0
  124. data/_sass/bootstrap/utilities/_overflow.scss +5 -0
  125. data/_sass/bootstrap/utilities/_position.scss +32 -0
  126. data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
  127. data/_sass/bootstrap/utilities/_shadows.scss +6 -0
  128. data/_sass/bootstrap/utilities/_sizing.scss +20 -0
  129. data/_sass/bootstrap/utilities/_spacing.scss +73 -0
  130. data/_sass/bootstrap/utilities/_stretched-link.scss +19 -0
  131. data/_sass/bootstrap/utilities/_text.scss +72 -0
  132. data/_sass/bootstrap/utilities/_visibility.scss +13 -0
  133. data/_sass/bootstrap/vendor/_rfs.scss +132 -276
  134. data/_sass/centos/_content.scss +101 -0
  135. data/_sass/centos/_datatable.scss +271 -0
  136. data/_sass/centos/_fonts.scss +1 -0
  137. data/_sass/centos/_footer.scss +49 -0
  138. data/_sass/centos/_header.scss +25 -0
  139. data/_sass/centos/_highlighter.scss +360 -0
  140. data/_sass/centos/_mixins.scss +4 -0
  141. data/_sass/centos/_nav.scss +10 -0
  142. data/_sass/centos/_rssfeeds.scss +17 -0
  143. data/_sass/centos/_variables.scss +111 -0
  144. data/_sass/centos/centos.scss +23 -0
  145. data/_sass/centos/content/_1col.scss +32 -0
  146. data/_sass/centos/content/_2col.scss +44 -0
  147. data/_sass/centos/content/_download.scss +17 -0
  148. data/_sass/centos/content/_sponsors.scss +9 -0
  149. data/_sass/centos/fonts/_montserrat.scss +256 -0
  150. data/_sass/centos/header/_home.scss +4 -0
  151. data/_sass/centos/header/_page.scss +4 -0
  152. data/_sass/centos/mixins/_content-card.scss +13 -0
  153. data/_sass/centos/mixins/_content-heading.scss +28 -0
  154. data/_sass/centos/mixins/_content-toc.scss +18 -0
  155. data/_sass/centos/mixins/_footer-link.scss +10 -0
  156. data/_sass/fontawesome/_animated.scss +20 -0
  157. data/_sass/fontawesome/_bordered-pulled.scss +20 -0
  158. data/_sass/fontawesome/_core.scss +21 -0
  159. data/_sass/fontawesome/_fixed-width.scss +6 -0
  160. data/_sass/fontawesome/_icons.scss +1462 -0
  161. data/_sass/fontawesome/_larger.scss +23 -0
  162. data/_sass/fontawesome/_list.scss +18 -0
  163. data/_sass/fontawesome/_mixins.scss +56 -0
  164. data/_sass/fontawesome/_rotated-flipped.scss +24 -0
  165. data/_sass/fontawesome/_screen-reader.scss +5 -0
  166. data/_sass/fontawesome/_shims.scss +2066 -0
  167. data/_sass/fontawesome/_stacked.scss +31 -0
  168. data/_sass/fontawesome/_variables.scss +1479 -0
  169. data/_sass/fontawesome/brands.scss +23 -0
  170. data/_sass/fontawesome/fontawesome.scss +16 -0
  171. data/_sass/fontawesome/regular.scss +23 -0
  172. data/_sass/fontawesome/solid.scss +24 -0
  173. data/_sass/fontawesome/v4-shims.scss +6 -0
  174. data/assets/css/centos.bootstrap.min.scss +4 -0
  175. data/assets/fonts/Montserrat/Montserrat-Black.woff +0 -0
  176. data/assets/fonts/Montserrat/Montserrat-Black.woff2 +0 -0
  177. data/assets/fonts/Montserrat/Montserrat-BlackItalic.woff +0 -0
  178. data/assets/fonts/Montserrat/Montserrat-BlackItalic.woff2 +0 -0
  179. data/assets/fonts/Montserrat/Montserrat-Bold.woff +0 -0
  180. data/assets/fonts/Montserrat/Montserrat-Bold.woff2 +0 -0
  181. data/assets/fonts/Montserrat/Montserrat-BoldItalic.woff +0 -0
  182. data/assets/fonts/Montserrat/Montserrat-BoldItalic.woff2 +0 -0
  183. data/assets/fonts/Montserrat/Montserrat-ExtraBold.woff +0 -0
  184. data/assets/fonts/Montserrat/Montserrat-ExtraBold.woff2 +0 -0
  185. data/assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.woff +0 -0
  186. data/assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.woff2 +0 -0
  187. data/assets/fonts/Montserrat/Montserrat-ExtraLight.woff +0 -0
  188. data/assets/fonts/Montserrat/Montserrat-ExtraLight.woff2 +0 -0
  189. data/assets/fonts/Montserrat/Montserrat-ExtraLightItalic.woff +0 -0
  190. data/assets/fonts/Montserrat/Montserrat-ExtraLightItalic.woff2 +0 -0
  191. data/assets/fonts/Montserrat/Montserrat-Italic.woff +0 -0
  192. data/assets/fonts/Montserrat/Montserrat-Italic.woff2 +0 -0
  193. data/assets/fonts/Montserrat/Montserrat-Light.woff +0 -0
  194. data/assets/fonts/Montserrat/Montserrat-Light.woff2 +0 -0
  195. data/assets/fonts/Montserrat/Montserrat-LightItalic.woff +0 -0
  196. data/assets/fonts/Montserrat/Montserrat-LightItalic.woff2 +0 -0
  197. data/assets/fonts/Montserrat/Montserrat-Medium.woff +0 -0
  198. data/assets/fonts/Montserrat/Montserrat-Medium.woff2 +0 -0
  199. data/assets/fonts/Montserrat/Montserrat-MediumItalic.woff +0 -0
  200. data/assets/fonts/Montserrat/Montserrat-MediumItalic.woff2 +0 -0
  201. data/assets/fonts/Montserrat/Montserrat-Regular.woff +0 -0
  202. data/assets/fonts/Montserrat/Montserrat-Regular.woff2 +0 -0
  203. data/assets/fonts/Montserrat/Montserrat-SemiBold.woff +0 -0
  204. data/assets/fonts/Montserrat/Montserrat-SemiBold.woff2 +0 -0
  205. data/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.woff +0 -0
  206. data/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.woff2 +0 -0
  207. data/assets/fonts/Montserrat/Montserrat-Thin.woff +0 -0
  208. data/assets/fonts/Montserrat/Montserrat-Thin.woff2 +0 -0
  209. data/assets/fonts/Montserrat/Montserrat-ThinItalic.woff +0 -0
  210. data/assets/fonts/Montserrat/Montserrat-ThinItalic.woff2 +0 -0
  211. data/assets/fonts/Montserrat/Montserrat.css +327 -0
  212. data/assets/fonts/Montserrat/MontserratAlternates-Black.woff +0 -0
  213. data/assets/fonts/Montserrat/MontserratAlternates-Black.woff2 +0 -0
  214. data/assets/fonts/Montserrat/MontserratAlternates-BlackItalic.woff +0 -0
  215. data/assets/fonts/Montserrat/MontserratAlternates-BlackItalic.woff2 +0 -0
  216. data/assets/fonts/Montserrat/MontserratAlternates-Bold.woff +0 -0
  217. data/assets/fonts/Montserrat/MontserratAlternates-Bold.woff2 +0 -0
  218. data/assets/fonts/Montserrat/MontserratAlternates-BoldItalic.woff +0 -0
  219. data/assets/fonts/Montserrat/MontserratAlternates-BoldItalic.woff2 +0 -0
  220. data/assets/fonts/Montserrat/MontserratAlternates-ExtraBold.woff +0 -0
  221. data/assets/fonts/Montserrat/MontserratAlternates-ExtraBold.woff2 +0 -0
  222. data/assets/fonts/Montserrat/MontserratAlternates-ExtraBoldItalic.woff +0 -0
  223. data/assets/fonts/Montserrat/MontserratAlternates-ExtraBoldItalic.woff2 +0 -0
  224. data/assets/fonts/Montserrat/MontserratAlternates-ExtraLight.woff +0 -0
  225. data/assets/fonts/Montserrat/MontserratAlternates-ExtraLight.woff2 +0 -0
  226. data/assets/fonts/Montserrat/MontserratAlternates-ExtraLightItalic.woff +0 -0
  227. data/assets/fonts/Montserrat/MontserratAlternates-ExtraLightItalic.woff2 +0 -0
  228. data/assets/fonts/Montserrat/MontserratAlternates-Italic.woff +0 -0
  229. data/assets/fonts/Montserrat/MontserratAlternates-Italic.woff2 +0 -0
  230. data/assets/fonts/Montserrat/MontserratAlternates-Light.woff +0 -0
  231. data/assets/fonts/Montserrat/MontserratAlternates-Light.woff2 +0 -0
  232. data/assets/fonts/Montserrat/MontserratAlternates-LightItalic.woff +0 -0
  233. data/assets/fonts/Montserrat/MontserratAlternates-LightItalic.woff2 +0 -0
  234. data/assets/fonts/Montserrat/MontserratAlternates-Medium.woff +0 -0
  235. data/assets/fonts/Montserrat/MontserratAlternates-Medium.woff2 +0 -0
  236. data/assets/fonts/Montserrat/MontserratAlternates-MediumItalic.woff +0 -0
  237. data/assets/fonts/Montserrat/MontserratAlternates-MediumItalic.woff2 +0 -0
  238. data/assets/fonts/Montserrat/MontserratAlternates-Regular.woff +0 -0
  239. data/assets/fonts/Montserrat/MontserratAlternates-Regular.woff2 +0 -0
  240. data/assets/fonts/Montserrat/MontserratAlternates-SemiBold.woff +0 -0
  241. data/assets/fonts/Montserrat/MontserratAlternates-SemiBold.woff2 +0 -0
  242. data/assets/fonts/Montserrat/MontserratAlternates-SemiBoldItalic.woff +0 -0
  243. data/assets/fonts/Montserrat/MontserratAlternates-SemiBoldItalic.woff2 +0 -0
  244. data/assets/fonts/Montserrat/MontserratAlternates-Thin.woff +0 -0
  245. data/assets/fonts/Montserrat/MontserratAlternates-Thin.woff2 +0 -0
  246. data/assets/fonts/Montserrat/MontserratAlternates-ThinItalic.woff +0 -0
  247. data/assets/fonts/Montserrat/MontserratAlternates-ThinItalic.woff2 +0 -0
  248. data/assets/fonts/Montserrat/README.MD +35 -0
  249. data/assets/fonts/fa-brands-400.eot +0 -0
  250. data/assets/fonts/fa-brands-400.svg +3717 -0
  251. data/assets/fonts/fa-brands-400.ttf +0 -0
  252. data/assets/fonts/fa-brands-400.woff +0 -0
  253. data/assets/fonts/fa-brands-400.woff2 +0 -0
  254. data/assets/fonts/fa-regular-400.eot +0 -0
  255. data/assets/fonts/fa-regular-400.svg +801 -0
  256. data/assets/fonts/fa-regular-400.ttf +0 -0
  257. data/assets/fonts/fa-regular-400.woff +0 -0
  258. data/assets/fonts/fa-regular-400.woff2 +0 -0
  259. data/assets/fonts/fa-solid-900.eot +0 -0
  260. data/assets/fonts/fa-solid-900.svg +5028 -0
  261. data/assets/fonts/fa-solid-900.ttf +0 -0
  262. data/assets/fonts/fa-solid-900.woff +0 -0
  263. data/assets/fonts/fa-solid-900.woff2 +0 -0
  264. data/assets/img/centos-logo-white.png +0 -0
  265. data/assets/img/centos-motif.png +0 -0
  266. data/assets/img/favicon.png +0 -0
  267. data/assets/js/bootstrap.min.js +4 -4
  268. data/assets/js/bootstrap.min.js.map +1 -1
  269. data/assets/js/dataTables.bootstrap4.min.js +14 -0
  270. data/assets/js/jquery.dataTables.min.js +184 -0
  271. data/assets/js/jquery.min.js +2 -0
  272. data/assets/js/jquery.rss.js +11 -0
  273. data/assets/js/moment.min.js +7 -0
  274. metadata +238 -492
  275. data/_config.yml +0 -196
  276. data/_data/base/announcement_schema.yml +0 -49
  277. data/_data/base/artwork_schema.yml +0 -46
  278. data/_data/base/backtotop_schema.yml +0 -59
  279. data/_data/base/bits.yml +0 -96
  280. data/_data/base/bits_schema.yml +0 -185
  281. data/_data/base/breadcrumb_schema.yml +0 -27
  282. data/_data/base/breakingnews_schema.yml +0 -67
  283. data/_data/base/card_schema.yml +0 -146
  284. data/_data/base/color.yml +0 -1042
  285. data/_data/base/color_schema.yml +0 -1036
  286. data/_data/base/configuration_variables_schema.yml +0 -42
  287. data/_data/base/content.yml +0 -2
  288. data/_data/base/content_schema.yml +0 -26
  289. data/_data/base/copyright.yml +0 -12
  290. data/_data/base/copyright_schema.yml +0 -74
  291. data/_data/base/copyvalue_schema.yml +0 -49
  292. data/_data/base/datatable_schema.yml +0 -57
  293. data/_data/base/event_schema.yml +0 -130
  294. data/_data/base/fontawesome_schema.yml +0 -62
  295. data/_data/base/footer.yml +0 -9
  296. data/_data/base/footer_schema.yml +0 -55
  297. data/_data/base/head_schema.yml +0 -19
  298. data/_data/base/heading_anchor.yml +0 -2
  299. data/_data/base/heading_anchor_schema.yml +0 -37
  300. data/_data/base/highlight_schema.yml +0 -98
  301. data/_data/base/image_schema.yml +0 -34
  302. data/_data/base/languages.yml +0 -186
  303. data/_data/base/link_schema.yml +0 -187
  304. data/_data/base/locales_schema.yml +0 -158
  305. data/_data/base/navbar.yml +0 -20
  306. data/_data/base/navbar_schema.yml +0 -129
  307. data/_data/base/navindex_schema.yml +0 -67
  308. data/_data/base/ogp.yml +0 -24
  309. data/_data/base/ogp_schema.yml +0 -192
  310. data/_data/base/project.yml +0 -37
  311. data/_data/base/project_schema.yml +0 -124
  312. data/_data/base/script_schema.yml +0 -41
  313. data/_data/base/shortcut_schema.yml +0 -74
  314. data/_data/base/social.yml +0 -26
  315. data/_data/base/social_schema.yml +0 -57
  316. data/_data/base/sponsors.yml +0 -41
  317. data/_data/base/sponsors_schema.yml +0 -73
  318. data/_data/base/title_schema.yml +0 -49
  319. data/_data/base/toc_schema.yml +0 -114
  320. data/_data/download/cards.yml +0 -309
  321. data/_data/download/navbar.yml +0 -11
  322. data/_includes/base/announcement.html.liquid +0 -65
  323. data/_includes/base/artwork.html.liquid +0 -63
  324. data/_includes/base/backtotop.html.liquid +0 -73
  325. data/_includes/base/bits.html.liquid +0 -152
  326. data/_includes/base/breadcrumb.html.liquid +0 -77
  327. data/_includes/base/breakingnews.html.liquid +0 -90
  328. data/_includes/base/card.html.liquid +0 -110
  329. data/_includes/base/color-table.html.liquid +0 -33
  330. data/_includes/base/configuration_variables-nested.html.liquid +0 -98
  331. data/_includes/base/configuration_variables.html.liquid +0 -98
  332. data/_includes/base/content.html.liquid +0 -7
  333. data/_includes/base/copyright.html.liquid +0 -70
  334. data/_includes/base/copyvalue.html.liquid +0 -82
  335. data/_includes/base/datatable.html.liquid +0 -83
  336. data/_includes/base/event.html.liquid +0 -105
  337. data/_includes/base/fontawesome.html.liquid +0 -91
  338. data/_includes/base/footer.html.liquid +0 -69
  339. data/_includes/base/head.html.liquid +0 -135
  340. data/_includes/base/heading_anchor.html.liquid +0 -67
  341. data/_includes/base/highlight.html.liquid +0 -84
  342. data/_includes/base/image.html.liquid +0 -42
  343. data/_includes/base/link.html.liquid +0 -129
  344. data/_includes/base/locales.html.liquid +0 -78
  345. data/_includes/base/navbar.html.liquid +0 -121
  346. data/_includes/base/navindex.html.liquid +0 -200
  347. data/_includes/base/ogp.html.liquid +0 -144
  348. data/_includes/base/project.html.liquid +0 -104
  349. data/_includes/base/shortcut.html.liquid +0 -77
  350. data/_includes/base/social.html.liquid +0 -76
  351. data/_includes/base/sponsors-cards.html.liquid +0 -69
  352. data/_includes/base/sponsors-carousel.html.liquid +0 -91
  353. data/_includes/base/title.html.liquid +0 -65
  354. data/_includes/base/toc-generator.html.liquid +0 -189
  355. data/_includes/base/toc.html.liquid +0 -95
  356. data/_includes/download/cards-body-commands.html +0 -7
  357. data/_includes/download/cards-body-convert.html +0 -10
  358. data/_includes/download/cards-body-doc.html +0 -9
  359. data/_includes/download/cards-body-documentation.html +0 -11
  360. data/_includes/download/cards-body-eol.html +0 -16
  361. data/_includes/download/cards-body-mirrors.html +0 -8
  362. data/_includes/download/cards-body-screenshot.html +0 -26
  363. data/_includes/download/cards-body-screenshots.html +0 -32
  364. data/_includes/download/cards-body.html +0 -8
  365. data/_includes/download/cards-header-commands.html +0 -8
  366. data/_includes/download/cards-header-convert.html +0 -8
  367. data/_includes/download/cards-header-doc.html +0 -8
  368. data/_includes/download/cards-header-documentation.html +0 -8
  369. data/_includes/download/cards-header-eol.html +0 -8
  370. data/_includes/download/cards-header-mirrors.html +0 -13
  371. data/_includes/download/cards-header-screenshot.html +0 -8
  372. data/_includes/download/cards-header-screenshots.html +0 -8
  373. data/_includes/download/cards-header.html +0 -13
  374. data/_includes/download/cards.html +0 -120
  375. data/_layouts/base/default.html +0 -68
  376. data/_layouts/download/default.html +0 -7
  377. data/_layouts/people/default.html +0 -68
  378. data/_sass/base/_customization.scss +0 -331
  379. data/_sass/base/_light-dark.scss +0 -10
  380. data/_sass/base/_maps.scss +0 -104
  381. data/_sass/base/_variables.scss +0 -232
  382. data/_sass/bootstrap/_accordion.scss +0 -153
  383. data/_sass/bootstrap/_containers.scss +0 -41
  384. data/_sass/bootstrap/_helpers.scss +0 -12
  385. data/_sass/bootstrap/_maps.scss +0 -174
  386. data/_sass/bootstrap/_offcanvas.scss +0 -147
  387. data/_sass/bootstrap/_placeholders.scss +0 -51
  388. data/_sass/bootstrap/_variables-dark.scss +0 -102
  389. data/_sass/bootstrap/bootstrap-utilities.scss +0 -19
  390. data/_sass/bootstrap/forms/_floating-labels.scss +0 -97
  391. data/_sass/bootstrap/forms/_form-check.scss +0 -189
  392. data/_sass/bootstrap/forms/_form-control.scss +0 -214
  393. data/_sass/bootstrap/forms/_form-range.scss +0 -91
  394. data/_sass/bootstrap/forms/_form-select.scss +0 -80
  395. data/_sass/bootstrap/forms/_form-text.scss +0 -11
  396. data/_sass/bootstrap/forms/_input-group.scss +0 -132
  397. data/_sass/bootstrap/forms/_labels.scss +0 -36
  398. data/_sass/bootstrap/forms/_validation.scss +0 -12
  399. data/_sass/bootstrap/helpers/_color-bg.scss +0 -7
  400. data/_sass/bootstrap/helpers/_colored-links.scss +0 -30
  401. data/_sass/bootstrap/helpers/_focus-ring.scss +0 -5
  402. data/_sass/bootstrap/helpers/_icon-link.scss +0 -25
  403. data/_sass/bootstrap/helpers/_position.scss +0 -36
  404. data/_sass/bootstrap/helpers/_ratio.scss +0 -26
  405. data/_sass/bootstrap/helpers/_stacks.scss +0 -15
  406. data/_sass/bootstrap/helpers/_stretched-link.scss +0 -15
  407. data/_sass/bootstrap/helpers/_text-truncation.scss +0 -7
  408. data/_sass/bootstrap/helpers/_visually-hidden.scss +0 -8
  409. data/_sass/bootstrap/helpers/_vr.scss +0 -8
  410. data/_sass/bootstrap/mixins/_backdrop.scss +0 -14
  411. data/_sass/bootstrap/mixins/_banner.scss +0 -7
  412. data/_sass/bootstrap/mixins/_color-mode.scss +0 -21
  413. data/_sass/bootstrap/mixins/_color-scheme.scss +0 -7
  414. data/_sass/bootstrap/mixins/_container.scss +0 -11
  415. data/_sass/bootstrap/mixins/_table-variants.scss +0 -24
  416. data/_sass/bootstrap/mixins/_utilities.scss +0 -97
  417. data/_sass/bootstrap/mixins/_visually-hidden.scss +0 -38
  418. data/_sass/bootstrap/utilities/_api.scss +0 -47
  419. data/assets/css/base/stylesheet.min.scss +0 -35
  420. data/assets/icons/android-chrome-192.png +0 -0
  421. data/assets/icons/android-chrome-512.png +0 -0
  422. data/assets/icons/apple-touch-icon.png +0 -0
  423. data/assets/icons/favicon-16.png +0 -0
  424. data/assets/icons/favicon-32.png +0 -0
  425. data/assets/icons/favicon.ico +0 -0
  426. data/assets/icons/favicon.svg +0 -1
  427. data/assets/img/anaconda-symbolic.svg +0 -1
  428. data/assets/img/anaconda.svg +0 -1
  429. data/assets/img/base/centos-colors.gpl +0 -55
  430. data/assets/img/base/example-ogp-image.svg +0 -297
  431. data/assets/img/base/example-sponsors-design.svg +0 -226
  432. data/assets/img/base/example-sponsors-logo-1.svg +0 -120
  433. data/assets/img/base/example-sponsors-logo-2.svg +0 -116
  434. data/assets/img/base/example-sponsors-logo-3.svg +0 -123
  435. data/assets/img/base/example-sponsors-logo-4.svg +0 -116
  436. data/assets/img/base/example-sponsors-logo-5.svg +0 -116
  437. data/assets/img/base/example-sponsors-logo-6.svg +0 -116
  438. data/assets/img/base/example-sponsors-logo-7.svg +0 -116
  439. data/assets/img/base/example-sponsors-logo-8.svg +0 -110
  440. data/assets/img/base/page-layout-default.svg +0 -1217
  441. data/assets/img/base/page-with-alert.svg +0 -383
  442. data/assets/img/base/page-with-announcement.svg +0 -956
  443. data/assets/img/base/page-with-artwork.svg +0 -1009
  444. data/assets/img/base/page-with-backtotop.svg +0 -1009
  445. data/assets/img/base/page-with-bits.svg +0 -891
  446. data/assets/img/base/page-with-breadcrumb.svg +0 -676
  447. data/assets/img/base/page-with-breakingnews.svg +0 -957
  448. data/assets/img/base/page-with-color.svg +0 -57
  449. data/assets/img/base/page-with-copyright.svg +0 -1018
  450. data/assets/img/base/page-with-copyvalue.svg +0 -57
  451. data/assets/img/base/page-with-datatable.svg +0 -857
  452. data/assets/img/base/page-with-event.svg +0 -518
  453. data/assets/img/base/page-with-fontawesome.svg +0 -147
  454. data/assets/img/base/page-with-footer.svg +0 -1018
  455. data/assets/img/base/page-with-heading.svg +0 -57
  456. data/assets/img/base/page-with-highlight.svg +0 -86
  457. data/assets/img/base/page-with-image.svg +0 -57
  458. data/assets/img/base/page-with-link.svg +0 -57
  459. data/assets/img/base/page-with-locales.svg +0 -1009
  460. data/assets/img/base/page-with-navbar.svg +0 -958
  461. data/assets/img/base/page-with-navindex.svg +0 -279
  462. data/assets/img/base/page-with-ogp.svg +0 -401
  463. data/assets/img/base/page-with-project.svg +0 -423
  464. data/assets/img/base/page-with-shortcut.svg +0 -937
  465. data/assets/img/base/page-with-social.svg +0 -937
  466. data/assets/img/base/page-with-sponsors.svg +0 -937
  467. data/assets/img/base/page-with-title.svg +0 -584
  468. data/assets/img/base/page-with-toc.svg +0 -399
  469. data/assets/img/base/screenshot-1200x600.svg +0 -114
  470. data/assets/img/centos-dynamicmsg-logo.svg +0 -1
  471. data/assets/img/centos-dynamicmsg-type.svg +0 -1
  472. data/assets/img/centos-dynamicmsg-whitelogo.svg +0 -1
  473. data/assets/img/centos-dynamicmsg-whitetype.svg +0 -1
  474. data/assets/img/centos-gdm-whitelogo.svg +0 -1
  475. data/assets/img/centos-ipa-whiteheader.svg +0 -1
  476. data/assets/img/centos-logo-2bits.svg +0 -1
  477. data/assets/img/centos-logo.svg +0 -1
  478. data/assets/img/centos-message-logo.svg +0 -1
  479. data/assets/img/centos-poweredby-logo.svg +0 -1
  480. data/assets/img/centos-social-share.png +0 -0
  481. data/assets/img/centos-symbol-2bits.svg +0 -1
  482. data/assets/img/centos-symbol.svg +0 -1
  483. data/assets/img/centos-type.svg +0 -1
  484. data/assets/img/centos-vertical-logo.svg +0 -1
  485. data/assets/img/centos-vertical-message-logo.svg +0 -1
  486. data/assets/img/centos-whitelogo.svg +0 -1
  487. data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
  488. data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
  489. data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
  490. data/assets/img/download/distribution-release-screenshot-1.png +0 -0
  491. data/assets/img/download/distribution-release-screenshot-2.png +0 -0
  492. data/assets/img/download/distribution-release-screenshot-3.png +0 -0
  493. data/assets/img/download/distribution-release-screenshot-n.png +0 -0
  494. data/assets/img/download/distribution-release-screenshot-n.svg +0 -134
  495. data/assets/img/download/download.svg +0 -421
  496. data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
  497. data/assets/img/people/page.svg +0 -900
  498. data/assets/img/people/page.webp +0 -0
  499. data/assets/img/people/username.webp +0 -0
  500. data/assets/js/base/backtotop.js +0 -20
  501. data/assets/js/base/copyvalue.js +0 -145
  502. data/assets/js/base/datatable.js +0 -41
  503. data/assets/js/base/heading-anchor.js +0 -108
  504. data/assets/js/base/highlight.js +0 -12
  505. data/assets/js/base/init-tooltips.js +0 -12
  506. data/assets/js/bootstrap.bundle.js +0 -6312
  507. data/assets/js/bootstrap.bundle.js.map +0 -1
  508. data/assets/js/bootstrap.bundle.min.js +0 -7
  509. data/assets/js/bootstrap.bundle.min.js.map +0 -1
  510. data/assets/js/bootstrap.esm.js +0 -4447
  511. data/assets/js/bootstrap.esm.js.map +0 -1
  512. data/assets/js/bootstrap.esm.min.js +0 -7
  513. data/assets/js/bootstrap.esm.min.js.map +0 -1
  514. data/assets/js/bootstrap.js +0 -4494
  515. data/assets/js/bootstrap.js.map +0 -1
  516. data/site.webmanifest +0 -11
@@ -1,857 +0,0 @@
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="361.86948"
7
- viewBox="0 0 169.33334 95.74463"
8
- version="1.1"
9
- id="svg1"
10
- inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
11
- sodipodi:docname="page-with-datatable.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="194.80791"
28
- inkscape:cy="97.934287"
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="layer1"
35
- showgrid="false" />
36
- <defs
37
- id="defs1">
38
- <clipPath
39
- clipPathUnits="userSpaceOnUse"
40
- id="clipPath70">
41
- <path
42
- id="path70"
43
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.763966;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
44
- d="m 541.96933,60.816574 c -4.17474,0 -9.34202,2.439554 -13.98037,5.312383 v 59.885483 c 4.63835,-2.87283 9.80563,-5.31197 13.98037,-5.31197 10.15228,0 16.02696,14.42842 26.17938,14.42842 10.15246,0 16.02666,-14.42842 26.17907,-14.42842 10.15254,0 16.02682,14.42842 26.17899,14.42842 10.15269,0 16.0274,-14.42842 26.18007,-14.42842 10.15243,0 15.90381,14.61412 26.17906,14.42842 7.11473,-0.12862 16.92849,-7.6262 22.29218,-12.22605 V 63.019359 c -5.36369,4.599838 -15.17745,12.097424 -22.29218,12.22604 -10.27509,0.185704 -16.02663,-14.428825 -26.17906,-14.428825 -10.15267,0 -16.02738,14.428825 -26.18007,14.428825 -10.15217,0 -16.02645,-14.428825 -26.17899,-14.428825 -10.15241,0 -16.02661,14.428825 -26.17907,14.428825 -10.15266,0 -16.0271,-14.428825 -26.17938,-14.428825 z"
45
- sodipodi:nodetypes="sccssssssccssssss" />
46
- </clipPath>
47
- </defs>
48
- <g
49
- inkscape:label="Layer 1"
50
- inkscape:groupmode="layer"
51
- id="layer1"
52
- transform="translate(-348.9855,-50.102299)">
53
- <rect
54
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.239;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
55
- id="datatable"
56
- width="169.33333"
57
- height="95.744629"
58
- x="348.9855"
59
- y="50.102299"
60
- inkscape:export-filename="page-with-alert.png"
61
- inkscape:export-xdpi="96"
62
- inkscape:export-ydpi="96" />
63
- <g
64
- id="g70"
65
- clip-path="url(#clipPath70)"
66
- transform="translate(-177.92133)">
67
- <g
68
- id="g42"
69
- transform="matrix(0.63753794,0,0,0.63753794,181.43456,63.144316)"
70
- clip-path="none">
71
- <rect
72
- style="fill:#ecdce8;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
73
- id="rect22"
74
- width="210.60838"
75
- height="17.991669"
76
- x="569.38342"
77
- y="69.152298"
78
- rx="2.6458333"
79
- ry="2.6458333" />
80
- <path
81
- style="fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.529167;stroke-linejoin:round;stroke-opacity:1"
82
- d="M 570.97092,105.31202 H 777.08134"
83
- id="path23" />
84
- <path
85
- style="fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.529167;stroke-linejoin:round;stroke-opacity:1"
86
- d="M 570.97092,123.48008 H 777.08134"
87
- id="path24" />
88
- <path
89
- style="fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.529167;stroke-linejoin:round;stroke-opacity:1"
90
- d="M 570.97092,141.64814 H 777.08134"
91
- id="path25" />
92
- <rect
93
- style="fill:#ecdce8;fill-opacity:1;stroke:#a14f8c;stroke-width:0.529167;stroke-linejoin:round"
94
- id="rect25"
95
- width="44.450001"
96
- height="10.583334"
97
- x="735.54181"
98
- y="53.012714"
99
- rx="2.6458335"
100
- ry="2.6458335" />
101
- <rect
102
- style="fill:#ecdce8;fill-opacity:1;stroke:#a14f8c;stroke-width:0.529167;stroke-linejoin:round;stroke-opacity:1"
103
- id="rect26"
104
- width="27.781261"
105
- height="10.583332"
106
- x="569.38342"
107
- y="53.012714"
108
- rx="2.6458335"
109
- ry="2.6458335" />
110
- <rect
111
- style="fill:#f6edf4;stroke:#f6edf4;stroke-width:0.529167;stroke-linejoin:round"
112
- id="rect27"
113
- width="83.608345"
114
- height="10.583328"
115
- x="696.38348"
116
- y="147.20438"
117
- rx="2.6458335"
118
- ry="2.6458335" />
119
- <rect
120
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
121
- id="rect30"
122
- width="44.450012"
123
- height="6.6145859"
124
- x="574.41052"
125
- y="93.626251"
126
- rx="2.6458335"
127
- ry="2.6458335" />
128
- <rect
129
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
130
- id="rect31"
131
- width="44.450012"
132
- height="6.6145859"
133
- x="647.14954"
134
- y="93.626251"
135
- rx="2.6458335"
136
- ry="2.6458335" />
137
- <rect
138
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
139
- id="rect32"
140
- width="44.450012"
141
- height="6.6145859"
142
- x="719.88849"
143
- y="93.626251"
144
- rx="2.6458335"
145
- ry="2.6458335" />
146
- <rect
147
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
148
- id="rect33"
149
- width="44.450012"
150
- height="6.6145859"
151
- x="574.41052"
152
- y="110.55959"
153
- rx="2.6458335"
154
- ry="2.6458335" />
155
- <rect
156
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
157
- id="rect34"
158
- width="44.450012"
159
- height="6.6145859"
160
- x="647.14954"
161
- y="110.55959"
162
- rx="2.6458335"
163
- ry="2.6458335" />
164
- <rect
165
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
166
- id="rect35"
167
- width="44.450012"
168
- height="6.6145859"
169
- x="719.88849"
170
- y="110.55959"
171
- rx="2.6458335"
172
- ry="2.6458335" />
173
- <rect
174
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
175
- id="rect36"
176
- width="44.450012"
177
- height="6.6145859"
178
- x="574.41052"
179
- y="130.13876"
180
- rx="2.6458335"
181
- ry="2.6458335" />
182
- <rect
183
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
184
- id="rect37"
185
- width="44.450012"
186
- height="6.6145859"
187
- x="647.14954"
188
- y="130.13876"
189
- rx="2.6458335"
190
- ry="2.6458335" />
191
- <rect
192
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
193
- id="rect38"
194
- width="44.450012"
195
- height="6.6145859"
196
- x="719.88849"
197
- y="130.13876"
198
- rx="2.6458335"
199
- ry="2.6458335" />
200
- <path
201
- sodipodi:type="star"
202
- style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
203
- id="path939-3"
204
- inkscape:flatsided="false"
205
- sodipodi:sides="3"
206
- sodipodi:cx="-499.8125"
207
- sodipodi:cy="737.32031"
208
- sodipodi:r1="36.465179"
209
- sodipodi:r2="18.23259"
210
- sodipodi:arg1="1.5707963"
211
- sodipodi:arg2="2.6179939"
212
- inkscape:rounded="0"
213
- inkscape:randomized="0"
214
- 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"
215
- transform="matrix(0.05071346,0,0,0.05071346,618.52912,20.449997)"
216
- inkscape:transform-center-y="1.0197809"
217
- inkscape:transform-center-x="-6.518711e-05" />
218
- <path
219
- sodipodi:type="star"
220
- style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
221
- id="path939-3-0"
222
- inkscape:flatsided="false"
223
- sodipodi:sides="3"
224
- sodipodi:cx="-499.8125"
225
- sodipodi:cy="737.32031"
226
- sodipodi:r1="36.465179"
227
- sodipodi:r2="18.23259"
228
- sodipodi:arg1="1.5707963"
229
- sodipodi:arg2="2.6179939"
230
- inkscape:rounded="0"
231
- inkscape:randomized="0"
232
- 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"
233
- transform="matrix(0,0.05071346,-0.05071346,0,740.65191,177.84326)"
234
- inkscape:transform-center-y="6.660793e-05"
235
- inkscape:transform-center-x="1.0197766" />
236
- <path
237
- d="m 743.90788,57.582726 c 0,0.689543 -0.22384,1.326507 -0.60091,1.843289 l 1.90188,1.90338 c 0.18778,0.187785 0.18778,0.492746 0,0.68053 -0.18779,0.187785 -0.49275,0.187785 -0.68053,0 l -1.90188,-1.90338 c -0.51678,0.377071 -1.15375,0.600909 -1.84329,0.600909 -1.72611,0 -3.12473,-1.398616 -3.12473,-3.124728 0,-1.726112 1.39862,-3.124728 3.12473,-3.124728 1.72611,0 3.12473,1.398616 3.12473,3.124728 z M 740.78315,59.746 c 1.19431,0 2.16327,-0.968967 2.16327,-2.163274 0,-1.194307 -0.96896,-2.163273 -2.16327,-2.163273 -1.19431,0 -2.16327,0.968966 -2.16327,2.163273 0,1.194307 0.96896,2.163274 2.16327,2.163274 z"
238
- id="path1-7"
239
- style="fill:#a14f8c;fill-opacity:1;stroke-width:0.0150227" />
240
- <rect
241
- style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:0.175955;stroke-linejoin:round"
242
- id="rect25-8"
243
- width="11.906238"
244
- height="6.3930144"
245
- x="708.26074"
246
- y="149.29953"
247
- rx="1.3229166"
248
- ry="1.3229166" />
249
- <rect
250
- style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:0.175955;stroke-linejoin:round"
251
- id="rect39"
252
- width="11.906238"
253
- height="6.3930144"
254
- x="724.24329"
255
- y="149.29953"
256
- rx="1.3229166"
257
- ry="1.3229166" />
258
- <rect
259
- style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:0.175955;stroke-linejoin:round"
260
- id="rect40"
261
- width="11.906238"
262
- height="6.3930144"
263
- x="740.22577"
264
- y="149.29953"
265
- rx="1.3229166"
266
- ry="1.3229166" />
267
- <rect
268
- style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:0.175955;stroke-linejoin:round"
269
- id="rect41"
270
- width="11.906238"
271
- height="6.3930144"
272
- x="756.20831"
273
- y="149.29953"
274
- rx="1.3229166"
275
- ry="1.3229166" />
276
- <path
277
- sodipodi:type="star"
278
- style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
279
- id="path42"
280
- inkscape:flatsided="false"
281
- sodipodi:sides="3"
282
- sodipodi:cx="-499.8125"
283
- sodipodi:cy="737.32031"
284
- sodipodi:r1="36.465179"
285
- sodipodi:r2="18.23259"
286
- sodipodi:arg1="1.5707963"
287
- sodipodi:arg2="2.6179939"
288
- inkscape:rounded="0"
289
- inkscape:randomized="0"
290
- 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"
291
- transform="matrix(0,0.05071346,0.05071346,0,735.7234,177.84326)"
292
- inkscape:transform-center-y="6.660793e-05"
293
- inkscape:transform-center-x="-1.0197795" />
294
- <g
295
- id="g25">
296
- <rect
297
- style="fill:#d9b9d1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
298
- id="rect26-3"
299
- width="44.450012"
300
- height="6.6145859"
301
- x="574.41052"
302
- y="74.840836"
303
- rx="2.6458335"
304
- ry="2.6458335" />
305
- <g
306
- id="g18"
307
- transform="translate(-3.6759271,0.72171401)">
308
- <path
309
- sodipodi:type="star"
310
- style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
311
- id="path149-3"
312
- inkscape:flatsided="false"
313
- sodipodi:sides="3"
314
- sodipodi:cx="-499.8125"
315
- sodipodi:cy="737.32031"
316
- sodipodi:r1="36.465179"
317
- sodipodi:r2="18.23259"
318
- sodipodi:arg1="1.5707963"
319
- sodipodi:arg2="2.6179939"
320
- inkscape:rounded="0"
321
- inkscape:randomized="0"
322
- 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"
323
- transform="matrix(-0.05071346,0,0,-0.05071346,602.94084,113.68125)"
324
- inkscape:transform-center-y="-1.0197721"
325
- inkscape:transform-center-x="6.3795576e-05" />
326
- <path
327
- sodipodi:type="star"
328
- 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"
329
- id="path18"
330
- inkscape:flatsided="false"
331
- sodipodi:sides="3"
332
- sodipodi:cx="-499.8125"
333
- sodipodi:cy="737.32031"
334
- sodipodi:r1="36.465179"
335
- sodipodi:r2="18.23259"
336
- sodipodi:arg1="1.5707963"
337
- sodipodi:arg2="2.6179939"
338
- inkscape:rounded="0"
339
- inkscape:randomized="0"
340
- 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"
341
- transform="matrix(-0.05071346,0,0,0.05071346,602.94084,41.171579)"
342
- inkscape:transform-center-y="1.0197724"
343
- inkscape:transform-center-x="6.3795576e-05" />
344
- </g>
345
- </g>
346
- <g
347
- id="g24"
348
- transform="translate(-5.31313)">
349
- <rect
350
- style="fill:#d9b9d1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
351
- id="rect28"
352
- width="44.450012"
353
- height="6.6145859"
354
- x="652.46265"
355
- y="74.840836"
356
- rx="2.6458335"
357
- ry="2.6458335" />
358
- <g
359
- id="g20"
360
- transform="translate(74.376197,0.72171401)">
361
- <path
362
- sodipodi:type="star"
363
- 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"
364
- id="path19"
365
- inkscape:flatsided="false"
366
- sodipodi:sides="3"
367
- sodipodi:cx="-499.8125"
368
- sodipodi:cy="737.32031"
369
- sodipodi:r1="36.465179"
370
- sodipodi:r2="18.23259"
371
- sodipodi:arg1="1.5707963"
372
- sodipodi:arg2="2.6179939"
373
- inkscape:rounded="0"
374
- inkscape:randomized="0"
375
- 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"
376
- transform="matrix(-0.05071346,0,0,-0.05071346,602.94084,113.68125)"
377
- inkscape:transform-center-y="-1.0197721"
378
- inkscape:transform-center-x="6.3795576e-05" />
379
- <path
380
- sodipodi:type="star"
381
- 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"
382
- id="path20"
383
- inkscape:flatsided="false"
384
- sodipodi:sides="3"
385
- sodipodi:cx="-499.8125"
386
- sodipodi:cy="737.32031"
387
- sodipodi:r1="36.465179"
388
- sodipodi:r2="18.23259"
389
- sodipodi:arg1="1.5707963"
390
- sodipodi:arg2="2.6179939"
391
- inkscape:rounded="0"
392
- inkscape:randomized="0"
393
- 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"
394
- transform="matrix(-0.05071346,0,0,0.05071346,602.94084,41.171579)"
395
- inkscape:transform-center-y="1.0197724"
396
- inkscape:transform-center-x="6.3795576e-05" />
397
- </g>
398
- </g>
399
- <g
400
- id="g23"
401
- transform="translate(-3.4673244)">
402
- <rect
403
- style="fill:#d9b9d1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
404
- id="rect29"
405
- width="44.450012"
406
- height="6.6145859"
407
- x="723.35583"
408
- y="74.840836"
409
- rx="2.6458335"
410
- ry="2.6458335" />
411
- <g
412
- id="g22"
413
- transform="translate(145.26939,0.72171401)">
414
- <path
415
- sodipodi:type="star"
416
- 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"
417
- id="path21"
418
- inkscape:flatsided="false"
419
- sodipodi:sides="3"
420
- sodipodi:cx="-499.8125"
421
- sodipodi:cy="737.32031"
422
- sodipodi:r1="36.465179"
423
- sodipodi:r2="18.23259"
424
- sodipodi:arg1="1.5707963"
425
- sodipodi:arg2="2.6179939"
426
- inkscape:rounded="0"
427
- inkscape:randomized="0"
428
- 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"
429
- transform="matrix(-0.05071346,0,0,-0.05071346,602.94084,113.68125)"
430
- inkscape:transform-center-y="-1.0197721"
431
- inkscape:transform-center-x="6.3795576e-05" />
432
- <path
433
- sodipodi:type="star"
434
- 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"
435
- id="path22"
436
- inkscape:flatsided="false"
437
- sodipodi:sides="3"
438
- sodipodi:cx="-499.8125"
439
- sodipodi:cy="737.32031"
440
- sodipodi:r1="36.465179"
441
- sodipodi:r2="18.23259"
442
- sodipodi:arg1="1.5707963"
443
- sodipodi:arg2="2.6179939"
444
- inkscape:rounded="0"
445
- inkscape:randomized="0"
446
- 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"
447
- transform="matrix(-0.05071346,0,0,0.05071346,602.94084,41.171579)"
448
- inkscape:transform-center-y="1.0197724"
449
- inkscape:transform-center-x="6.3795576e-05" />
450
- </g>
451
- </g>
452
- </g>
453
- <g
454
- id="g69"
455
- transform="matrix(0.63753794,0,0,0.63753794,181.43456,-8.5106449)"
456
- clip-path="none">
457
- <rect
458
- style="fill:#ecdce8;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
459
- id="rect42"
460
- width="210.60838"
461
- height="17.991669"
462
- x="569.38342"
463
- y="69.152298"
464
- rx="2.6458333"
465
- ry="2.6458333" />
466
- <path
467
- style="fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.529167;stroke-linejoin:round;stroke-opacity:1"
468
- d="M 570.97092,105.31202 H 777.08134"
469
- id="path43" />
470
- <path
471
- style="fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.529167;stroke-linejoin:round;stroke-opacity:1"
472
- d="M 570.97092,123.48008 H 777.08134"
473
- id="path44" />
474
- <path
475
- style="fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.529167;stroke-linejoin:round;stroke-opacity:1"
476
- d="M 570.97092,141.64814 H 777.08134"
477
- id="path45" />
478
- <rect
479
- style="fill:#ecdce8;fill-opacity:1;stroke:#a14f8c;stroke-width:0.529167;stroke-linejoin:round"
480
- id="rect45"
481
- width="44.450001"
482
- height="10.583334"
483
- x="735.54181"
484
- y="53.012714"
485
- rx="2.6458335"
486
- ry="2.6458335" />
487
- <rect
488
- style="fill:#ecdce8;fill-opacity:1;stroke:#a14f8c;stroke-width:0.529167;stroke-linejoin:round;stroke-opacity:1"
489
- id="rect46"
490
- width="27.781261"
491
- height="10.583332"
492
- x="569.38342"
493
- y="53.012714"
494
- rx="2.6458335"
495
- ry="2.6458335" />
496
- <rect
497
- style="fill:#f6edf4;stroke:#f6edf4;stroke-width:0.529167;stroke-linejoin:round"
498
- id="rect47"
499
- width="83.608345"
500
- height="10.583328"
501
- x="696.38348"
502
- y="147.20438"
503
- rx="2.6458335"
504
- ry="2.6458335" />
505
- <rect
506
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
507
- id="rect48"
508
- width="44.450012"
509
- height="6.6145859"
510
- x="574.41052"
511
- y="93.626251"
512
- rx="2.6458335"
513
- ry="2.6458335" />
514
- <rect
515
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
516
- id="rect49"
517
- width="44.450012"
518
- height="6.6145859"
519
- x="647.14954"
520
- y="93.626251"
521
- rx="2.6458335"
522
- ry="2.6458335" />
523
- <rect
524
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
525
- id="rect50"
526
- width="44.450012"
527
- height="6.6145859"
528
- x="719.88849"
529
- y="93.626251"
530
- rx="2.6458335"
531
- ry="2.6458335" />
532
- <rect
533
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
534
- id="rect51"
535
- width="44.450012"
536
- height="6.6145859"
537
- x="574.41052"
538
- y="110.55959"
539
- rx="2.6458335"
540
- ry="2.6458335" />
541
- <rect
542
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
543
- id="rect52"
544
- width="44.450012"
545
- height="6.6145859"
546
- x="647.14954"
547
- y="110.55959"
548
- rx="2.6458335"
549
- ry="2.6458335" />
550
- <rect
551
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
552
- id="rect53"
553
- width="44.450012"
554
- height="6.6145859"
555
- x="719.88849"
556
- y="110.55959"
557
- rx="2.6458335"
558
- ry="2.6458335" />
559
- <rect
560
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
561
- id="rect54"
562
- width="44.450012"
563
- height="6.6145859"
564
- x="574.41052"
565
- y="130.13876"
566
- rx="2.6458335"
567
- ry="2.6458335" />
568
- <rect
569
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
570
- id="rect55"
571
- width="44.450012"
572
- height="6.6145859"
573
- x="647.14954"
574
- y="130.13876"
575
- rx="2.6458335"
576
- ry="2.6458335" />
577
- <rect
578
- style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
579
- id="rect56"
580
- width="44.450012"
581
- height="6.6145859"
582
- x="719.88849"
583
- y="130.13876"
584
- rx="2.6458335"
585
- ry="2.6458335" />
586
- <path
587
- sodipodi:type="star"
588
- style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
589
- id="path56"
590
- inkscape:flatsided="false"
591
- sodipodi:sides="3"
592
- sodipodi:cx="-499.8125"
593
- sodipodi:cy="737.32031"
594
- sodipodi:r1="36.465179"
595
- sodipodi:r2="18.23259"
596
- sodipodi:arg1="1.5707963"
597
- sodipodi:arg2="2.6179939"
598
- inkscape:rounded="0"
599
- inkscape:randomized="0"
600
- 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"
601
- transform="matrix(0.05071346,0,0,0.05071346,618.52912,20.449997)"
602
- inkscape:transform-center-y="1.0197809"
603
- inkscape:transform-center-x="-6.518711e-05" />
604
- <path
605
- sodipodi:type="star"
606
- style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
607
- id="path57"
608
- inkscape:flatsided="false"
609
- sodipodi:sides="3"
610
- sodipodi:cx="-499.8125"
611
- sodipodi:cy="737.32031"
612
- sodipodi:r1="36.465179"
613
- sodipodi:r2="18.23259"
614
- sodipodi:arg1="1.5707963"
615
- sodipodi:arg2="2.6179939"
616
- inkscape:rounded="0"
617
- inkscape:randomized="0"
618
- 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"
619
- transform="matrix(0,0.05071346,-0.05071346,0,740.65191,177.84326)"
620
- inkscape:transform-center-y="6.660793e-05"
621
- inkscape:transform-center-x="1.0197766" />
622
- <path
623
- d="m 743.90788,57.582726 c 0,0.689543 -0.22384,1.326507 -0.60091,1.843289 l 1.90188,1.90338 c 0.18778,0.187785 0.18778,0.492746 0,0.68053 -0.18779,0.187785 -0.49275,0.187785 -0.68053,0 l -1.90188,-1.90338 c -0.51678,0.377071 -1.15375,0.600909 -1.84329,0.600909 -1.72611,0 -3.12473,-1.398616 -3.12473,-3.124728 0,-1.726112 1.39862,-3.124728 3.12473,-3.124728 1.72611,0 3.12473,1.398616 3.12473,3.124728 z M 740.78315,59.746 c 1.19431,0 2.16327,-0.968967 2.16327,-2.163274 0,-1.194307 -0.96896,-2.163273 -2.16327,-2.163273 -1.19431,0 -2.16327,0.968966 -2.16327,2.163273 0,1.194307 0.96896,2.163274 2.16327,2.163274 z"
624
- id="path58"
625
- style="fill:#a14f8c;fill-opacity:1;stroke-width:0.0150227" />
626
- <rect
627
- style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:0.175955;stroke-linejoin:round"
628
- id="rect58"
629
- width="11.906238"
630
- height="6.3930144"
631
- x="708.26074"
632
- y="149.29953"
633
- rx="1.3229166"
634
- ry="1.3229166" />
635
- <rect
636
- style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:0.175955;stroke-linejoin:round"
637
- id="rect59"
638
- width="11.906238"
639
- height="6.3930144"
640
- x="724.24329"
641
- y="149.29953"
642
- rx="1.3229166"
643
- ry="1.3229166" />
644
- <rect
645
- style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:0.175955;stroke-linejoin:round"
646
- id="rect60"
647
- width="11.906238"
648
- height="6.3930144"
649
- x="740.22577"
650
- y="149.29953"
651
- rx="1.3229166"
652
- ry="1.3229166" />
653
- <rect
654
- style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:0.175955;stroke-linejoin:round"
655
- id="rect61"
656
- width="11.906238"
657
- height="6.3930144"
658
- x="756.20831"
659
- y="149.29953"
660
- rx="1.3229166"
661
- ry="1.3229166" />
662
- <path
663
- sodipodi:type="star"
664
- style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
665
- id="path61"
666
- inkscape:flatsided="false"
667
- sodipodi:sides="3"
668
- sodipodi:cx="-499.8125"
669
- sodipodi:cy="737.32031"
670
- sodipodi:r1="36.465179"
671
- sodipodi:r2="18.23259"
672
- sodipodi:arg1="1.5707963"
673
- sodipodi:arg2="2.6179939"
674
- inkscape:rounded="0"
675
- inkscape:randomized="0"
676
- 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"
677
- transform="matrix(0,0.05071346,0.05071346,0,735.7234,177.84326)"
678
- inkscape:transform-center-y="6.660793e-05"
679
- inkscape:transform-center-x="-1.0197795" />
680
- <g
681
- id="g64">
682
- <rect
683
- style="fill:#d9b9d1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
684
- id="rect62"
685
- width="44.450012"
686
- height="6.6145859"
687
- x="574.41052"
688
- y="74.840836"
689
- rx="2.6458335"
690
- ry="2.6458335" />
691
- <g
692
- id="g63"
693
- transform="translate(-3.6759271,0.72171401)">
694
- <path
695
- sodipodi:type="star"
696
- style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
697
- id="path62"
698
- inkscape:flatsided="false"
699
- sodipodi:sides="3"
700
- sodipodi:cx="-499.8125"
701
- sodipodi:cy="737.32031"
702
- sodipodi:r1="36.465179"
703
- sodipodi:r2="18.23259"
704
- sodipodi:arg1="1.5707963"
705
- sodipodi:arg2="2.6179939"
706
- inkscape:rounded="0"
707
- inkscape:randomized="0"
708
- 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"
709
- transform="matrix(-0.05071346,0,0,-0.05071346,602.94084,113.68125)"
710
- inkscape:transform-center-y="-1.0197721"
711
- inkscape:transform-center-x="6.3795576e-05" />
712
- <path
713
- sodipodi:type="star"
714
- 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"
715
- id="path63"
716
- inkscape:flatsided="false"
717
- sodipodi:sides="3"
718
- sodipodi:cx="-499.8125"
719
- sodipodi:cy="737.32031"
720
- sodipodi:r1="36.465179"
721
- sodipodi:r2="18.23259"
722
- sodipodi:arg1="1.5707963"
723
- sodipodi:arg2="2.6179939"
724
- inkscape:rounded="0"
725
- inkscape:randomized="0"
726
- 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"
727
- transform="matrix(-0.05071346,0,0,0.05071346,602.94084,41.171579)"
728
- inkscape:transform-center-y="1.0197724"
729
- inkscape:transform-center-x="6.3795576e-05" />
730
- </g>
731
- </g>
732
- <g
733
- id="g66"
734
- transform="translate(-5.31313)">
735
- <rect
736
- style="fill:#d9b9d1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
737
- id="rect64"
738
- width="44.450012"
739
- height="6.6145859"
740
- x="652.46265"
741
- y="74.840836"
742
- rx="2.6458335"
743
- ry="2.6458335" />
744
- <g
745
- id="g65"
746
- transform="translate(74.376197,0.72171401)">
747
- <path
748
- sodipodi:type="star"
749
- 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"
750
- id="path64"
751
- inkscape:flatsided="false"
752
- sodipodi:sides="3"
753
- sodipodi:cx="-499.8125"
754
- sodipodi:cy="737.32031"
755
- sodipodi:r1="36.465179"
756
- sodipodi:r2="18.23259"
757
- sodipodi:arg1="1.5707963"
758
- sodipodi:arg2="2.6179939"
759
- inkscape:rounded="0"
760
- inkscape:randomized="0"
761
- 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"
762
- transform="matrix(-0.05071346,0,0,-0.05071346,602.94084,113.68125)"
763
- inkscape:transform-center-y="-1.0197721"
764
- inkscape:transform-center-x="6.3795576e-05" />
765
- <path
766
- sodipodi:type="star"
767
- 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"
768
- id="path65"
769
- inkscape:flatsided="false"
770
- sodipodi:sides="3"
771
- sodipodi:cx="-499.8125"
772
- sodipodi:cy="737.32031"
773
- sodipodi:r1="36.465179"
774
- sodipodi:r2="18.23259"
775
- sodipodi:arg1="1.5707963"
776
- sodipodi:arg2="2.6179939"
777
- inkscape:rounded="0"
778
- inkscape:randomized="0"
779
- 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"
780
- transform="matrix(-0.05071346,0,0,0.05071346,602.94084,41.171579)"
781
- inkscape:transform-center-y="1.0197724"
782
- inkscape:transform-center-x="6.3795576e-05" />
783
- </g>
784
- </g>
785
- <g
786
- id="g68"
787
- transform="translate(-3.4673244)">
788
- <rect
789
- style="fill:#d9b9d1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
790
- id="rect66"
791
- width="44.450012"
792
- height="6.6145859"
793
- x="723.35583"
794
- y="74.840836"
795
- rx="2.6458335"
796
- ry="2.6458335" />
797
- <g
798
- id="g67"
799
- transform="translate(145.26939,0.72171401)">
800
- <path
801
- sodipodi:type="star"
802
- 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"
803
- id="path66"
804
- inkscape:flatsided="false"
805
- sodipodi:sides="3"
806
- sodipodi:cx="-499.8125"
807
- sodipodi:cy="737.32031"
808
- sodipodi:r1="36.465179"
809
- sodipodi:r2="18.23259"
810
- sodipodi:arg1="1.5707963"
811
- sodipodi:arg2="2.6179939"
812
- inkscape:rounded="0"
813
- inkscape:randomized="0"
814
- 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"
815
- transform="matrix(-0.05071346,0,0,-0.05071346,602.94084,113.68125)"
816
- inkscape:transform-center-y="-1.0197721"
817
- inkscape:transform-center-x="6.3795576e-05" />
818
- <path
819
- sodipodi:type="star"
820
- 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"
821
- id="path67"
822
- inkscape:flatsided="false"
823
- sodipodi:sides="3"
824
- sodipodi:cx="-499.8125"
825
- sodipodi:cy="737.32031"
826
- sodipodi:r1="36.465179"
827
- sodipodi:r2="18.23259"
828
- sodipodi:arg1="1.5707963"
829
- sodipodi:arg2="2.6179939"
830
- inkscape:rounded="0"
831
- inkscape:randomized="0"
832
- 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"
833
- transform="matrix(-0.05071346,0,0,0.05071346,602.94084,41.171579)"
834
- inkscape:transform-center-y="1.0197724"
835
- inkscape:transform-center-x="6.3795576e-05" />
836
- </g>
837
- </g>
838
- </g>
839
- </g>
840
- <path
841
- id="path16"
842
- style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linejoin:bevel;stroke-dasharray:1.58749, 1.58749;stroke-dashoffset:0;paint-order:fill markers stroke;stop-color:#000000"
843
- d="m 350.0676,50.992911 v 12.465093 c 4.63848,-2.872772 9.8057,-5.311834 13.98038,-5.311834 10.15225,0 16.02692,14.428294 26.17956,14.428294 10.15238,0 16.0264,-14.428294 26.17891,-14.428294 10.15239,0 16.02679,14.428294 26.17918,14.428294 10.15251,0 16.0273,-14.428294 26.17994,-14.428294 10.15239,0 15.90374,14.613969 26.17905,14.428294 7.11485,-0.129119 16.92855,-7.626166 22.29216,-12.226037 v -9.355516"
844
- sodipodi:nodetypes="ccsssssscc" />
845
- <path
846
- id="path17"
847
- 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"
848
- d="m 517.23678,144.95634 v -18.82138 c -5.36361,4.59974 -15.17744,12.0973 -22.29216,12.22603 -10.27518,0.18555 -16.02666,-14.42894 -26.17905,-14.42894 -10.15264,0 -16.02743,14.42894 -26.17994,14.42894 -10.15239,0 -16.02679,-14.42894 -26.17918,-14.42894 -10.15251,0 -16.02653,14.42894 -26.17891,14.42894 -10.15277,0 -16.02731,-14.42894 -26.17956,-14.42894 -4.17468,0 -9.3419,2.43958 -13.98038,5.31235 v 15.71194"
849
- sodipodi:nodetypes="ccsssssscc" />
850
- <!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.-->
851
- <path
852
- id="path868-4"
853
- style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.794;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
854
- d="m 364.04798,60.816617 c -4.17468,0 -9.3419,2.439449 -13.98038,5.312221 V 126.0145 c 4.63848,-2.8729 9.8057,-5.31196 13.98038,-5.31196 10.15225,0 16.02692,14.42829 26.17956,14.42829 10.15238,0 16.0264,-14.42829 26.17891,-14.42829 10.15239,0 16.02679,14.42829 26.17918,14.42829 10.15251,0 16.0273,-14.42829 26.17994,-14.42829 10.15239,0 15.90374,14.61409 26.17905,14.42829 7.11485,-0.12912 16.92855,-7.62616 22.29216,-12.22604 v -59.8854 c -5.36361,4.599742 -15.17744,12.097434 -22.29216,12.226037 -10.27518,0.185674 -16.02666,-14.42881 -26.17905,-14.42881 -10.15264,0 -16.02743,14.42881 -26.17994,14.42881 -10.15239,0 -16.02679,-14.42881 -26.17918,-14.42881 -10.15251,0 -16.02653,14.42881 -26.17891,14.42881 -10.15277,0 -16.02731,-14.42881 -26.17956,-14.42881 z"
855
- sodipodi:nodetypes="sccssssssccssssss" />
856
- </g>
857
- </svg>