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.
- checksums.yaml +7 -0
- data/_config.yml +196 -0
- data/_data/base/announcement_schema.yml +49 -0
- data/_data/base/artwork_schema.yml +46 -0
- data/_data/base/backtotop_schema.yml +59 -0
- data/_data/base/bits.yml +96 -0
- data/_data/base/bits_schema.yml +185 -0
- data/_data/base/breadcrumb_schema.yml +27 -0
- data/_data/base/breakingnews_schema.yml +67 -0
- data/_data/base/card_schema.yml +146 -0
- data/_data/base/color.yml +1042 -0
- data/_data/base/color_schema.yml +1036 -0
- data/_data/base/configuration_variables_schema.yml +42 -0
- data/_data/base/content.yml +2 -0
- data/_data/base/content_schema.yml +26 -0
- data/_data/base/copyright.yml +12 -0
- data/_data/base/copyright_schema.yml +74 -0
- data/_data/base/copyvalue_schema.yml +49 -0
- data/_data/base/datatable_schema.yml +57 -0
- data/_data/base/event_schema.yml +130 -0
- data/_data/base/fontawesome_schema.yml +62 -0
- data/_data/base/footer.yml +9 -0
- data/_data/base/footer_schema.yml +55 -0
- data/_data/base/head_schema.yml +19 -0
- data/_data/base/heading_anchor.yml +2 -0
- data/_data/base/heading_anchor_schema.yml +37 -0
- data/_data/base/highlight_schema.yml +98 -0
- data/_data/base/image_schema.yml +34 -0
- data/_data/base/languages.yml +186 -0
- data/_data/base/link_schema.yml +187 -0
- data/_data/base/locales_schema.yml +158 -0
- data/_data/base/navbar.yml +20 -0
- data/_data/base/navbar_schema.yml +129 -0
- data/_data/base/navindex_schema.yml +67 -0
- data/_data/base/ogp.yml +24 -0
- data/_data/base/ogp_schema.yml +192 -0
- data/_data/base/project.yml +37 -0
- data/_data/base/project_schema.yml +124 -0
- data/_data/base/script_schema.yml +41 -0
- data/_data/base/shortcut_schema.yml +74 -0
- data/_data/base/social.yml +26 -0
- data/_data/base/social_schema.yml +57 -0
- data/_data/base/sponsors.yml +41 -0
- data/_data/base/sponsors_schema.yml +73 -0
- data/_data/base/title_schema.yml +49 -0
- data/_data/base/toc_schema.yml +114 -0
- data/_data/download/cards.yml +309 -0
- data/_data/download/navbar.yml +11 -0
- data/_includes/base/announcement.html.liquid +65 -0
- data/_includes/base/artwork.html.liquid +63 -0
- data/_includes/base/backtotop.html.liquid +73 -0
- data/_includes/base/bits.html.liquid +152 -0
- data/_includes/base/breadcrumb.html.liquid +77 -0
- data/_includes/base/breakingnews.html.liquid +90 -0
- data/_includes/base/card.html.liquid +110 -0
- data/_includes/base/color-table.html.liquid +33 -0
- data/_includes/base/configuration_variables-nested.html.liquid +98 -0
- data/_includes/base/configuration_variables.html.liquid +98 -0
- data/_includes/base/content.html.liquid +7 -0
- data/_includes/base/copyright.html.liquid +70 -0
- data/_includes/base/copyvalue.html.liquid +82 -0
- data/_includes/base/datatable.html.liquid +83 -0
- data/_includes/base/event.html.liquid +105 -0
- data/_includes/base/fontawesome.html.liquid +91 -0
- data/_includes/base/footer.html.liquid +69 -0
- data/_includes/base/head.html.liquid +135 -0
- data/_includes/base/heading_anchor.html.liquid +67 -0
- data/_includes/base/highlight.html.liquid +84 -0
- data/_includes/base/image.html.liquid +42 -0
- data/_includes/base/link.html.liquid +129 -0
- data/_includes/base/locales.html.liquid +78 -0
- data/_includes/base/navbar.html.liquid +121 -0
- data/_includes/base/navindex.html.liquid +200 -0
- data/_includes/base/ogp.html.liquid +144 -0
- data/_includes/base/project.html.liquid +104 -0
- data/_includes/base/shortcut.html.liquid +77 -0
- data/_includes/base/social.html.liquid +76 -0
- data/_includes/base/sponsors-cards.html.liquid +69 -0
- data/_includes/base/sponsors-carousel.html.liquid +91 -0
- data/_includes/base/title.html.liquid +65 -0
- data/_includes/base/toc-generator.html.liquid +189 -0
- data/_includes/base/toc.html.liquid +95 -0
- data/_includes/download/cards-body-commands.html +7 -0
- data/_includes/download/cards-body-convert.html +10 -0
- data/_includes/download/cards-body-doc.html +9 -0
- data/_includes/download/cards-body-documentation.html +11 -0
- data/_includes/download/cards-body-eol.html +16 -0
- data/_includes/download/cards-body-mirrors.html +8 -0
- data/_includes/download/cards-body-screenshot.html +26 -0
- data/_includes/download/cards-body-screenshots.html +32 -0
- data/_includes/download/cards-body.html +8 -0
- data/_includes/download/cards-footer.html +3 -0
- data/_includes/download/cards-header-commands.html +8 -0
- data/_includes/download/cards-header-convert.html +8 -0
- data/_includes/download/cards-header-doc.html +8 -0
- data/_includes/download/cards-header-documentation.html +8 -0
- data/_includes/download/cards-header-eol.html +8 -0
- data/_includes/download/cards-header-mirrors.html +13 -0
- data/_includes/download/cards-header-screenshot.html +8 -0
- data/_includes/download/cards-header-screenshots.html +8 -0
- data/_includes/download/cards-header.html +13 -0
- data/_includes/download/cards.html +120 -0
- data/_layouts/base/default.html +68 -0
- data/_layouts/download/cards.html +7 -0
- data/_layouts/download/default.html +7 -0
- data/_layouts/people/default.html +68 -0
- data/_sass/base/_customization.scss +331 -0
- data/_sass/base/_light-dark.scss +10 -0
- data/_sass/base/_maps.scss +104 -0
- data/_sass/base/_variables.scss +232 -0
- data/_sass/bootstrap/_accordion.scss +153 -0
- data/_sass/bootstrap/_alert.scss +68 -0
- data/_sass/bootstrap/_badge.scss +38 -0
- data/_sass/bootstrap/_breadcrumb.scss +40 -0
- data/_sass/bootstrap/_button-group.scss +147 -0
- data/_sass/bootstrap/_buttons.scss +216 -0
- data/_sass/bootstrap/_card.scss +238 -0
- data/_sass/bootstrap/_carousel.scss +226 -0
- data/_sass/bootstrap/_close.scss +66 -0
- data/_sass/bootstrap/_containers.scss +41 -0
- data/_sass/bootstrap/_dropdown.scss +250 -0
- data/_sass/bootstrap/_forms.scss +9 -0
- data/_sass/bootstrap/_functions.scss +302 -0
- data/_sass/bootstrap/_grid.scss +39 -0
- data/_sass/bootstrap/_helpers.scss +12 -0
- data/_sass/bootstrap/_images.scss +42 -0
- data/_sass/bootstrap/_list-group.scss +199 -0
- data/_sass/bootstrap/_maps.scss +174 -0
- data/_sass/bootstrap/_mixins.scss +42 -0
- data/_sass/bootstrap/_modal.scss +240 -0
- data/_sass/bootstrap/_nav.scss +197 -0
- data/_sass/bootstrap/_navbar.scss +289 -0
- data/_sass/bootstrap/_offcanvas.scss +147 -0
- data/_sass/bootstrap/_pagination.scss +109 -0
- data/_sass/bootstrap/_placeholders.scss +51 -0
- data/_sass/bootstrap/_popover.scss +196 -0
- data/_sass/bootstrap/_progress.scss +68 -0
- data/_sass/bootstrap/_reboot.scss +617 -0
- data/_sass/bootstrap/_root.scss +187 -0
- data/_sass/bootstrap/_spinners.scss +86 -0
- data/_sass/bootstrap/_tables.scss +171 -0
- data/_sass/bootstrap/_toasts.scss +73 -0
- data/_sass/bootstrap/_tooltip.scss +119 -0
- data/_sass/bootstrap/_transitions.scss +27 -0
- data/_sass/bootstrap/_type.scss +106 -0
- data/_sass/bootstrap/_utilities.scss +806 -0
- data/_sass/bootstrap/_variables-dark.scss +102 -0
- data/_sass/bootstrap/_variables.scss +1753 -0
- data/_sass/bootstrap/bootstrap-grid.scss +62 -0
- data/_sass/bootstrap/bootstrap-reboot.scss +10 -0
- data/_sass/bootstrap/bootstrap-utilities.scss +19 -0
- data/_sass/bootstrap/bootstrap.scss +52 -0
- data/_sass/bootstrap/forms/_floating-labels.scss +97 -0
- data/_sass/bootstrap/forms/_form-check.scss +189 -0
- data/_sass/bootstrap/forms/_form-control.scss +214 -0
- data/_sass/bootstrap/forms/_form-range.scss +91 -0
- data/_sass/bootstrap/forms/_form-select.scss +80 -0
- data/_sass/bootstrap/forms/_form-text.scss +11 -0
- data/_sass/bootstrap/forms/_input-group.scss +132 -0
- data/_sass/bootstrap/forms/_labels.scss +36 -0
- data/_sass/bootstrap/forms/_validation.scss +12 -0
- data/_sass/bootstrap/helpers/_clearfix.scss +3 -0
- data/_sass/bootstrap/helpers/_color-bg.scss +7 -0
- data/_sass/bootstrap/helpers/_colored-links.scss +30 -0
- data/_sass/bootstrap/helpers/_focus-ring.scss +5 -0
- data/_sass/bootstrap/helpers/_icon-link.scss +25 -0
- data/_sass/bootstrap/helpers/_position.scss +36 -0
- data/_sass/bootstrap/helpers/_ratio.scss +26 -0
- data/_sass/bootstrap/helpers/_stacks.scss +15 -0
- data/_sass/bootstrap/helpers/_stretched-link.scss +15 -0
- data/_sass/bootstrap/helpers/_text-truncation.scss +7 -0
- data/_sass/bootstrap/helpers/_visually-hidden.scss +8 -0
- data/_sass/bootstrap/helpers/_vr.scss +8 -0
- data/_sass/bootstrap/mixins/_alert.scss +18 -0
- data/_sass/bootstrap/mixins/_backdrop.scss +14 -0
- data/_sass/bootstrap/mixins/_banner.scss +7 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +78 -0
- data/_sass/bootstrap/mixins/_box-shadow.scss +24 -0
- data/_sass/bootstrap/mixins/_breakpoints.scss +127 -0
- data/_sass/bootstrap/mixins/_buttons.scss +70 -0
- data/_sass/bootstrap/mixins/_caret.scss +69 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +9 -0
- data/_sass/bootstrap/mixins/_color-mode.scss +21 -0
- data/_sass/bootstrap/mixins/_color-scheme.scss +7 -0
- data/_sass/bootstrap/mixins/_container.scss +11 -0
- data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
- data/_sass/bootstrap/mixins/_forms.scss +163 -0
- data/_sass/bootstrap/mixins/_gradients.scss +47 -0
- data/_sass/bootstrap/mixins/_grid.scss +151 -0
- data/_sass/bootstrap/mixins/_image.scss +16 -0
- data/_sass/bootstrap/mixins/_list-group.scss +26 -0
- data/_sass/bootstrap/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/mixins/_pagination.scss +10 -0
- data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
- data/_sass/bootstrap/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/mixins/_table-variants.scss +24 -0
- data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
- data/_sass/bootstrap/mixins/_transition.scss +26 -0
- data/_sass/bootstrap/mixins/_utilities.scss +97 -0
- data/_sass/bootstrap/mixins/_visually-hidden.scss +38 -0
- data/_sass/bootstrap/utilities/_api.scss +47 -0
- data/_sass/bootstrap/vendor/_rfs.scss +348 -0
- data/assets/css/base/stylesheet.min.scss +35 -0
- data/assets/icons/android-chrome-192.png +0 -0
- data/assets/icons/android-chrome-512.png +0 -0
- data/assets/icons/apple-touch-icon.png +0 -0
- data/assets/icons/favicon-16.png +0 -0
- data/assets/icons/favicon-32.png +0 -0
- data/assets/icons/favicon.ico +0 -0
- data/assets/icons/favicon.svg +1 -0
- data/assets/img/anaconda-symbolic.svg +1 -0
- data/assets/img/anaconda.svg +1 -0
- data/assets/img/base/centos-colors.gpl +55 -0
- data/assets/img/base/example-ogp-image.svg +297 -0
- data/assets/img/base/example-sponsors-design.svg +226 -0
- data/assets/img/base/example-sponsors-logo-1.svg +120 -0
- data/assets/img/base/example-sponsors-logo-2.svg +116 -0
- data/assets/img/base/example-sponsors-logo-3.svg +123 -0
- data/assets/img/base/example-sponsors-logo-4.svg +116 -0
- data/assets/img/base/example-sponsors-logo-5.svg +116 -0
- data/assets/img/base/example-sponsors-logo-6.svg +116 -0
- data/assets/img/base/example-sponsors-logo-7.svg +116 -0
- data/assets/img/base/example-sponsors-logo-8.svg +110 -0
- data/assets/img/base/page-layout-default.svg +1217 -0
- data/assets/img/base/page-with-alert.svg +383 -0
- data/assets/img/base/page-with-announcement.svg +956 -0
- data/assets/img/base/page-with-artwork.svg +1009 -0
- data/assets/img/base/page-with-backtotop.svg +1009 -0
- data/assets/img/base/page-with-bits.svg +891 -0
- data/assets/img/base/page-with-breadcrumb.svg +676 -0
- data/assets/img/base/page-with-breakingnews.svg +957 -0
- data/assets/img/base/page-with-color.svg +57 -0
- data/assets/img/base/page-with-copyright.svg +1018 -0
- data/assets/img/base/page-with-copyvalue.svg +57 -0
- data/assets/img/base/page-with-datatable.svg +857 -0
- data/assets/img/base/page-with-event.svg +518 -0
- data/assets/img/base/page-with-fontawesome.svg +147 -0
- data/assets/img/base/page-with-footer.svg +1018 -0
- data/assets/img/base/page-with-heading.svg +57 -0
- data/assets/img/base/page-with-highlight.svg +86 -0
- data/assets/img/base/page-with-image.svg +57 -0
- data/assets/img/base/page-with-link.svg +57 -0
- data/assets/img/base/page-with-locales.svg +1009 -0
- data/assets/img/base/page-with-navbar.svg +958 -0
- data/assets/img/base/page-with-navindex.svg +279 -0
- data/assets/img/base/page-with-ogp.svg +401 -0
- data/assets/img/base/page-with-project.svg +423 -0
- data/assets/img/base/page-with-shortcut.svg +937 -0
- data/assets/img/base/page-with-social.svg +937 -0
- data/assets/img/base/page-with-sponsors.svg +937 -0
- data/assets/img/base/page-with-title.svg +584 -0
- data/assets/img/base/page-with-toc.svg +399 -0
- data/assets/img/base/screenshot-1200x600.svg +114 -0
- data/assets/img/centos-dynamicmsg-logo.svg +1 -0
- data/assets/img/centos-dynamicmsg-type.svg +1 -0
- data/assets/img/centos-dynamicmsg-whitelogo.svg +1 -0
- data/assets/img/centos-dynamicmsg-whitetype.svg +1 -0
- data/assets/img/centos-gdm-whitelogo.svg +1 -0
- data/assets/img/centos-ipa-whiteheader.svg +1 -0
- data/assets/img/centos-logo-2bits.svg +1 -0
- data/assets/img/centos-logo.svg +1 -0
- data/assets/img/centos-message-logo.svg +1 -0
- data/assets/img/centos-motif.png +0 -0
- data/assets/img/centos-poweredby-logo.svg +1 -0
- data/assets/img/centos-social-share.png +0 -0
- data/assets/img/centos-symbol-2bits.svg +1 -0
- data/assets/img/centos-symbol.svg +1 -0
- data/assets/img/centos-type.svg +1 -0
- data/assets/img/centos-vertical-logo.svg +1 -0
- data/assets/img/centos-vertical-message-logo.svg +1 -0
- data/assets/img/centos-whitelogo.svg +1 -0
- data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-1.png +0 -0
- data/assets/img/download/distribution-release-screenshot-2.png +0 -0
- data/assets/img/download/distribution-release-screenshot-3.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.svg +134 -0
- data/assets/img/download/download.svg +421 -0
- data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
- data/assets/img/people/page.svg +900 -0
- data/assets/img/people/page.webp +0 -0
- data/assets/img/people/username.webp +0 -0
- data/assets/js/base/backtotop.js +20 -0
- data/assets/js/base/copyvalue.js +145 -0
- data/assets/js/base/datatable.js +41 -0
- data/assets/js/base/heading-anchor.js +108 -0
- data/assets/js/base/highlight.js +12 -0
- data/assets/js/base/init-tooltips.js +12 -0
- data/assets/js/bootstrap.bundle.js +6312 -0
- data/assets/js/bootstrap.bundle.js.map +1 -0
- data/assets/js/bootstrap.bundle.min.js +7 -0
- data/assets/js/bootstrap.bundle.min.js.map +1 -0
- data/assets/js/bootstrap.esm.js +4447 -0
- data/assets/js/bootstrap.esm.js.map +1 -0
- data/assets/js/bootstrap.esm.min.js +7 -0
- data/assets/js/bootstrap.esm.min.js.map +1 -0
- data/assets/js/bootstrap.js +4494 -0
- data/assets/js/bootstrap.js.map +1 -0
- data/assets/js/bootstrap.min.js +7 -0
- data/assets/js/bootstrap.min.js.map +1 -0
- data/site.webmanifest +11 -0
- metadata +611 -0
|
@@ -0,0 +1,401 @@
|
|
|
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.4 (dcaf3e7d9e, 2026-05-05)"
|
|
11
|
+
sodipodi:docname="page-with-ogp.svg"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview1"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#000000"
|
|
21
|
+
borderopacity="0.25"
|
|
22
|
+
inkscape:showpageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
inkscape:deskcolor="#d1d1d1"
|
|
26
|
+
inkscape:document-units="px"
|
|
27
|
+
inkscape:zoom="1.4142136"
|
|
28
|
+
inkscape:cx="163.69522"
|
|
29
|
+
inkscape:cy="199.05055"
|
|
30
|
+
inkscape:window-width="3440"
|
|
31
|
+
inkscape:window-height="1371"
|
|
32
|
+
inkscape:window-x="0"
|
|
33
|
+
inkscape:window-y="0"
|
|
34
|
+
inkscape:window-maximized="1"
|
|
35
|
+
inkscape:current-layer="layer1"
|
|
36
|
+
showgrid="false" />
|
|
37
|
+
<defs
|
|
38
|
+
id="defs1">
|
|
39
|
+
<clipPath
|
|
40
|
+
clipPathUnits="userSpaceOnUse"
|
|
41
|
+
id="clipPath4">
|
|
42
|
+
<path
|
|
43
|
+
id="path5"
|
|
44
|
+
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"
|
|
45
|
+
d="m 760.35664,40.36196 c -7.12928,0.128791 -16.96305,7.641732 -22.33766,12.250933 v 72.532527 c 4.6478,-2.87867 9.82591,-5.32267 14.00897,-5.32267 10.17302,0 16.05931,14.45803 26.23249,14.45803 10.17315,0 16.05941,-14.45803 26.23251,-14.45803 10.17312,0 16.05947,14.45803 26.23251,14.45803 10.17318,0 16.05992,-14.45803 26.23304,-14.45803 10.17313,0 15.93657,14.64411 26.23249,14.45803 7.1293,-0.12879 16.96307,-7.64173 22.33766,-12.25093 V 49.496803 c -4.64783,2.87867 -9.82589,5.323189 -14.00895,5.323189 -10.17304,0 -16.05984,-14.458032 -26.23304,-14.458032 -10.1731,0 -16.05939,14.458032 -26.23251,14.458032 -10.1731,0 -16.05947,-14.458032 -26.23249,-14.458032 -10.17323,0 -16.05944,14.458032 -26.23251,14.458032 -10.17315,0 -15.93657,-14.644112 -26.23251,-14.458032 z"
|
|
46
|
+
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
47
|
+
</clipPath>
|
|
48
|
+
<clipPath
|
|
49
|
+
clipPathUnits="userSpaceOnUse"
|
|
50
|
+
id="clipPath28">
|
|
51
|
+
<path
|
|
52
|
+
id="path29"
|
|
53
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.33797;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
54
|
+
d="m 306.371,-325.03536 c -8.65176,8.97009 -11.52002,30.40853 -12.46598,42.74731 l 89.64143,89.64143 c 2.18643,-9.3018 5.56546,-18.72181 10.73522,-23.89156 12.57262,-12.57263 37.71574,-1.97899 50.28856,-14.55181 12.57279,-12.57279 1.97911,-37.71587 14.55184,-50.28859 12.57274,-12.57274 37.71593,-1.97918 50.28858,-14.55183 12.57282,-12.57282 1.97974,-37.7165 14.55249,-50.28924 12.57276,-12.57276 37.79402,-1.59733 50.28856,-14.55181 8.65178,-8.97012 11.52005,-30.40856 12.46598,-42.74732 l -89.64207,-89.64207 c -2.18647,9.30184 -5.5648,18.72243 -10.73455,23.89218 -12.57265,12.57265 -37.7164,1.97965 -50.28925,14.55249 -12.57272,12.57272 -1.97908,37.71585 -14.55183,50.28859 -12.57272,12.57272 -37.71594,1.97918 -50.28856,14.55181 -12.57288,12.57288 -1.97915,37.7159 -14.55183,50.28858 -12.57279,12.57279 -37.79403,1.59733 -50.28859,14.55184 z"
|
|
55
|
+
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
56
|
+
</clipPath>
|
|
57
|
+
<clipPath
|
|
58
|
+
clipPathUnits="userSpaceOnUse"
|
|
59
|
+
id="clipPath29">
|
|
60
|
+
<path
|
|
61
|
+
id="path30"
|
|
62
|
+
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"
|
|
63
|
+
d="m 760.35664,40.36196 c -7.12928,0.128791 -16.96305,7.641732 -22.33766,12.250933 v 72.532527 c 4.6478,-2.87867 9.82591,-5.32267 14.00897,-5.32267 10.17302,0 16.05931,14.45803 26.23249,14.45803 10.17315,0 16.05941,-14.45803 26.23251,-14.45803 10.17312,0 16.05947,14.45803 26.23251,14.45803 10.17318,0 16.05992,-14.45803 26.23304,-14.45803 10.17313,0 15.93657,14.64411 26.23249,14.45803 7.1293,-0.12879 16.96307,-7.64173 22.33766,-12.25093 V 49.496803 c -4.64783,2.87867 -9.82589,5.323189 -14.00895,5.323189 -10.17304,0 -16.05984,-14.458032 -26.23304,-14.458032 -10.1731,0 -16.05939,14.458032 -26.23251,14.458032 -10.1731,0 -16.05947,-14.458032 -26.23249,-14.458032 -10.17323,0 -16.05944,14.458032 -26.23251,14.458032 -10.17315,0 -15.93657,-14.644112 -26.23251,-14.458032 z"
|
|
64
|
+
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
65
|
+
</clipPath>
|
|
66
|
+
<clipPath
|
|
67
|
+
clipPathUnits="userSpaceOnUse"
|
|
68
|
+
id="clipPath30">
|
|
69
|
+
<path
|
|
70
|
+
id="path31"
|
|
71
|
+
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"
|
|
72
|
+
d="m 760.35664,40.36196 c -7.12928,0.128791 -16.96305,7.641732 -22.33766,12.250933 v 72.532527 c 4.6478,-2.87867 9.82591,-5.32267 14.00897,-5.32267 10.17302,0 16.05931,14.45803 26.23249,14.45803 10.17315,0 16.05941,-14.45803 26.23251,-14.45803 10.17312,0 16.05947,14.45803 26.23251,14.45803 10.17318,0 16.05992,-14.45803 26.23304,-14.45803 10.17313,0 15.93657,14.64411 26.23249,14.45803 7.1293,-0.12879 16.96307,-7.64173 22.33766,-12.25093 V 49.496803 c -4.64783,2.87867 -9.82589,5.323189 -14.00895,5.323189 -10.17304,0 -16.05984,-14.458032 -26.23304,-14.458032 -10.1731,0 -16.05939,14.458032 -26.23251,14.458032 -10.1731,0 -16.05947,-14.458032 -26.23249,-14.458032 -10.17323,0 -16.05944,14.458032 -26.23251,14.458032 -10.17315,0 -15.93657,-14.644112 -26.23251,-14.458032 z"
|
|
73
|
+
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
74
|
+
</clipPath>
|
|
75
|
+
<clipPath
|
|
76
|
+
clipPathUnits="userSpaceOnUse"
|
|
77
|
+
id="clipPath31">
|
|
78
|
+
<path
|
|
79
|
+
id="path32"
|
|
80
|
+
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"
|
|
81
|
+
d="m 760.35664,40.36196 c -7.12928,0.128791 -16.96305,7.641732 -22.33766,12.250933 v 72.532527 c 4.6478,-2.87867 9.82591,-5.32267 14.00897,-5.32267 10.17302,0 16.05931,14.45803 26.23249,14.45803 10.17315,0 16.05941,-14.45803 26.23251,-14.45803 10.17312,0 16.05947,14.45803 26.23251,14.45803 10.17318,0 16.05992,-14.45803 26.23304,-14.45803 10.17313,0 15.93657,14.64411 26.23249,14.45803 7.1293,-0.12879 16.96307,-7.64173 22.33766,-12.25093 V 49.496803 c -4.64783,2.87867 -9.82589,5.323189 -14.00895,5.323189 -10.17304,0 -16.05984,-14.458032 -26.23304,-14.458032 -10.1731,0 -16.05939,14.458032 -26.23251,14.458032 -10.1731,0 -16.05947,-14.458032 -26.23249,-14.458032 -10.17323,0 -16.05944,14.458032 -26.23251,14.458032 -10.17315,0 -15.93657,-14.644112 -26.23251,-14.458032 z"
|
|
82
|
+
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
83
|
+
</clipPath>
|
|
84
|
+
<clipPath
|
|
85
|
+
clipPathUnits="userSpaceOnUse"
|
|
86
|
+
id="clipPath32">
|
|
87
|
+
<path
|
|
88
|
+
id="path33"
|
|
89
|
+
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"
|
|
90
|
+
d="m 760.35664,40.36196 c -7.12928,0.128791 -16.96305,7.641732 -22.33766,12.250933 v 72.532527 c 4.6478,-2.87867 9.82591,-5.32267 14.00897,-5.32267 10.17302,0 16.05931,14.45803 26.23249,14.45803 10.17315,0 16.05941,-14.45803 26.23251,-14.45803 10.17312,0 16.05947,14.45803 26.23251,14.45803 10.17318,0 16.05992,-14.45803 26.23304,-14.45803 10.17313,0 15.93657,14.64411 26.23249,14.45803 7.1293,-0.12879 16.96307,-7.64173 22.33766,-12.25093 V 49.496803 c -4.64783,2.87867 -9.82589,5.323189 -14.00895,5.323189 -10.17304,0 -16.05984,-14.458032 -26.23304,-14.458032 -10.1731,0 -16.05939,14.458032 -26.23251,14.458032 -10.1731,0 -16.05947,-14.458032 -26.23249,-14.458032 -10.17323,0 -16.05944,14.458032 -26.23251,14.458032 -10.17315,0 -15.93657,-14.644112 -26.23251,-14.458032 z"
|
|
91
|
+
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
92
|
+
</clipPath>
|
|
93
|
+
<clipPath
|
|
94
|
+
clipPathUnits="userSpaceOnUse"
|
|
95
|
+
id="clipPath33">
|
|
96
|
+
<path
|
|
97
|
+
id="path35"
|
|
98
|
+
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"
|
|
99
|
+
d="m 760.35664,40.36196 c -7.12928,0.128791 -16.96305,7.641732 -22.33766,12.250933 v 72.532527 c 4.6478,-2.87867 9.82591,-5.32267 14.00897,-5.32267 10.17302,0 16.05931,14.45803 26.23249,14.45803 10.17315,0 16.05941,-14.45803 26.23251,-14.45803 10.17312,0 16.05947,14.45803 26.23251,14.45803 10.17318,0 16.05992,-14.45803 26.23304,-14.45803 10.17313,0 15.93657,14.64411 26.23249,14.45803 7.1293,-0.12879 16.96307,-7.64173 22.33766,-12.25093 V 49.496803 c -4.64783,2.87867 -9.82589,5.323189 -14.00895,5.323189 -10.17304,0 -16.05984,-14.458032 -26.23304,-14.458032 -10.1731,0 -16.05939,14.458032 -26.23251,14.458032 -10.1731,0 -16.05947,-14.458032 -26.23249,-14.458032 -10.17323,0 -16.05944,14.458032 -26.23251,14.458032 -10.17315,0 -15.93657,-14.644112 -26.23251,-14.458032 z"
|
|
100
|
+
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
101
|
+
</clipPath>
|
|
102
|
+
<clipPath
|
|
103
|
+
clipPathUnits="userSpaceOnUse"
|
|
104
|
+
id="clipPath35">
|
|
105
|
+
<path
|
|
106
|
+
id="path36"
|
|
107
|
+
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"
|
|
108
|
+
d="m 760.35664,40.36196 c -7.12928,0.128791 -16.96305,7.641732 -22.33766,12.250933 v 72.532527 c 4.6478,-2.87867 9.82591,-5.32267 14.00897,-5.32267 10.17302,0 16.05931,14.45803 26.23249,14.45803 10.17315,0 16.05941,-14.45803 26.23251,-14.45803 10.17312,0 16.05947,14.45803 26.23251,14.45803 10.17318,0 16.05992,-14.45803 26.23304,-14.45803 10.17313,0 15.93657,14.64411 26.23249,14.45803 7.1293,-0.12879 16.96307,-7.64173 22.33766,-12.25093 V 49.496803 c -4.64783,2.87867 -9.82589,5.323189 -14.00895,5.323189 -10.17304,0 -16.05984,-14.458032 -26.23304,-14.458032 -10.1731,0 -16.05939,14.458032 -26.23251,14.458032 -10.1731,0 -16.05947,-14.458032 -26.23249,-14.458032 -10.17323,0 -16.05944,14.458032 -26.23251,14.458032 -10.17315,0 -15.93657,-14.644112 -26.23251,-14.458032 z"
|
|
109
|
+
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
110
|
+
</clipPath>
|
|
111
|
+
<clipPath
|
|
112
|
+
clipPathUnits="userSpaceOnUse"
|
|
113
|
+
id="clipPath36">
|
|
114
|
+
<path
|
|
115
|
+
id="path37"
|
|
116
|
+
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"
|
|
117
|
+
d="m 760.35664,40.36196 c -7.12928,0.128791 -16.96305,7.641732 -22.33766,12.250933 v 72.532527 c 4.6478,-2.87867 9.82591,-5.32267 14.00897,-5.32267 10.17302,0 16.05931,14.45803 26.23249,14.45803 10.17315,0 16.05941,-14.45803 26.23251,-14.45803 10.17312,0 16.05947,14.45803 26.23251,14.45803 10.17318,0 16.05992,-14.45803 26.23304,-14.45803 10.17313,0 15.93657,14.64411 26.23249,14.45803 7.1293,-0.12879 16.96307,-7.64173 22.33766,-12.25093 V 49.496803 c -4.64783,2.87867 -9.82589,5.323189 -14.00895,5.323189 -10.17304,0 -16.05984,-14.458032 -26.23304,-14.458032 -10.1731,0 -16.05939,14.458032 -26.23251,14.458032 -10.1731,0 -16.05947,-14.458032 -26.23249,-14.458032 -10.17323,0 -16.05944,14.458032 -26.23251,14.458032 -10.17315,0 -15.93657,-14.644112 -26.23251,-14.458032 z"
|
|
118
|
+
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
119
|
+
</clipPath>
|
|
120
|
+
<clipPath
|
|
121
|
+
clipPathUnits="userSpaceOnUse"
|
|
122
|
+
id="clipPath47">
|
|
123
|
+
<path
|
|
124
|
+
id="path48"
|
|
125
|
+
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"
|
|
126
|
+
d="m 359.79966,36.04497 c -7.12928,0.12879 -16.96305,7.641732 -22.33766,12.250932 v 72.532518 c 4.64781,-2.87867 9.82591,-5.32267 14.00897,-5.32267 10.17304,0 16.05931,14.45803 26.23251,14.45803 10.17312,0 16.0594,-14.45803 26.2325,-14.45803 10.17312,0 16.05949,14.45803 26.23251,14.45803 10.1732,0 16.05994,-14.45803 26.23303,-14.45803 10.17313,0 15.93656,14.64412 26.2325,14.45803 7.12928,-0.12878 16.96305,-7.64173 22.33766,-12.25093 V 45.179813 c -4.64781,2.87867 -9.82591,5.323189 -14.00897,5.323189 -10.17304,0 -16.05982,-14.458032 -26.23302,-14.458032 -10.17312,0 -16.05941,14.458032 -26.23251,14.458032 -10.17312,0 -16.05949,-14.458032 -26.23251,-14.458032 -10.1732,0 -16.05941,14.458032 -26.2325,14.458032 -10.17313,0 -15.93657,-14.644112 -26.23251,-14.458032 z"
|
|
127
|
+
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
128
|
+
</clipPath>
|
|
129
|
+
</defs>
|
|
130
|
+
<g
|
|
131
|
+
inkscape:label="Layer 1"
|
|
132
|
+
inkscape:groupmode="layer"
|
|
133
|
+
id="layer1"
|
|
134
|
+
transform="translate(-336.55017,-30.6131)">
|
|
135
|
+
<rect
|
|
136
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.48621;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
137
|
+
id="ogp"
|
|
138
|
+
width="169.33334"
|
|
139
|
+
height="104.96965"
|
|
140
|
+
x="336.55017"
|
|
141
|
+
y="30.6131"
|
|
142
|
+
inkscape:export-filename="page-with-breadcrumb.png"
|
|
143
|
+
inkscape:export-xdpi="96"
|
|
144
|
+
inkscape:export-ydpi="96" />
|
|
145
|
+
<!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.-->
|
|
146
|
+
<!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.-->
|
|
147
|
+
<!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.-->
|
|
148
|
+
<!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.-->
|
|
149
|
+
<path
|
|
150
|
+
id="path12-5"
|
|
151
|
+
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"
|
|
152
|
+
d="m 504.80143,134.68663 v -15.11721 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 12.00775"
|
|
153
|
+
sodipodi:nodetypes="ccsssssscc" />
|
|
154
|
+
<path
|
|
155
|
+
d="m 879.05575,136.13334 h 0.8118 l -1.77308,2.02606 2.08585,2.75737 h -1.63281 l -1.27979,-1.6719 -1.46263,1.6719 h -0.81295 l 1.89612,-2.16749 -1.99961,-2.61594 h 1.6742 l 1.15561,1.52817 z m -0.28516,4.29819 h 0.44959 l -2.90225,-3.83824 h -0.48294 z"
|
|
156
|
+
id="path1-6"
|
|
157
|
+
style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.0114986"
|
|
158
|
+
clip-path="url(#clipPath4)"
|
|
159
|
+
transform="translate(-400.55697,-4.2234453)" />
|
|
160
|
+
<path
|
|
161
|
+
id="path68"
|
|
162
|
+
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"
|
|
163
|
+
d="m 337.63225,31.839944 v 14.257317 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 31.839944"
|
|
164
|
+
sodipodi:nodetypes="ccsssssscc" />
|
|
165
|
+
<g
|
|
166
|
+
id="g47"
|
|
167
|
+
transform="translate(0,0.09354582)"
|
|
168
|
+
clip-path="url(#clipPath47)">
|
|
169
|
+
<g
|
|
170
|
+
id="g38"
|
|
171
|
+
transform="translate(0,-0.0935445)">
|
|
172
|
+
<rect
|
|
173
|
+
style="fill:#a14f8c;stroke-width:0.264583;stroke-linejoin:round"
|
|
174
|
+
id="rect21"
|
|
175
|
+
width="121.23346"
|
|
176
|
+
height="32.179253"
|
|
177
|
+
x="761.06354"
|
|
178
|
+
y="71.231743"
|
|
179
|
+
rx="2.6458335"
|
|
180
|
+
ry="2.6458335"
|
|
181
|
+
clip-path="url(#clipPath36)"
|
|
182
|
+
transform="translate(-400.55697,-4.2234453)" />
|
|
183
|
+
<rect
|
|
184
|
+
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
185
|
+
id="rect22"
|
|
186
|
+
width="84.384949"
|
|
187
|
+
height="31.316229"
|
|
188
|
+
x="797.91205"
|
|
189
|
+
y="71.720589"
|
|
190
|
+
rx="2.6458335"
|
|
191
|
+
ry="2.6458335"
|
|
192
|
+
clip-path="url(#clipPath35)"
|
|
193
|
+
transform="translate(-400.55697,-4.2234453)" />
|
|
194
|
+
<g
|
|
195
|
+
id="g37"
|
|
196
|
+
transform="translate(8.4580609)">
|
|
197
|
+
<rect
|
|
198
|
+
style="fill:#a14f8c;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
199
|
+
id="rect23"
|
|
200
|
+
width="72.590401"
|
|
201
|
+
height="2.245064"
|
|
202
|
+
x="799.97797"
|
|
203
|
+
y="76.283142"
|
|
204
|
+
rx="1.6078529"
|
|
205
|
+
ry="1.3229167"
|
|
206
|
+
clip-path="url(#clipPath33)"
|
|
207
|
+
transform="matrix(0.82278462,0,0,1,-258.78857,-4.2234453)" />
|
|
208
|
+
<rect
|
|
209
|
+
style="fill:#a14f8c;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
210
|
+
id="rect24"
|
|
211
|
+
width="40.78532"
|
|
212
|
+
height="2.2450638"
|
|
213
|
+
x="799.97797"
|
|
214
|
+
y="83.392509"
|
|
215
|
+
rx="1.6078529"
|
|
216
|
+
ry="1.3229167"
|
|
217
|
+
clip-path="url(#clipPath32)"
|
|
218
|
+
transform="matrix(0.82278462,0,0,1,-258.78857,-4.9717972)" />
|
|
219
|
+
<rect
|
|
220
|
+
style="fill:#a14f8c;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
221
|
+
id="rect25"
|
|
222
|
+
width="75.396721"
|
|
223
|
+
height="2.2450638"
|
|
224
|
+
x="799.97797"
|
|
225
|
+
y="88.630997"
|
|
226
|
+
rx="1.6078529"
|
|
227
|
+
ry="1.3229167"
|
|
228
|
+
clip-path="url(#clipPath31)"
|
|
229
|
+
transform="matrix(0.82278462,0,0,1,-258.78857,-3.8492692)" />
|
|
230
|
+
<rect
|
|
231
|
+
style="fill:#a14f8c;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
232
|
+
id="rect26"
|
|
233
|
+
width="40.224052"
|
|
234
|
+
height="2.2450638"
|
|
235
|
+
x="799.97797"
|
|
236
|
+
y="95.366188"
|
|
237
|
+
rx="1.6078529"
|
|
238
|
+
ry="1.3229167"
|
|
239
|
+
clip-path="url(#clipPath30)"
|
|
240
|
+
transform="matrix(0.82278462,0,0,1,-258.78857,-4.2234453)" />
|
|
241
|
+
<rect
|
|
242
|
+
style="fill:#a14f8c;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
243
|
+
id="rect27"
|
|
244
|
+
width="20.953909"
|
|
245
|
+
height="2.2450638"
|
|
246
|
+
x="843.19543"
|
|
247
|
+
y="83.392509"
|
|
248
|
+
rx="1.6078529"
|
|
249
|
+
ry="1.3229167"
|
|
250
|
+
clip-path="url(#clipPath29)"
|
|
251
|
+
transform="matrix(0.82278462,0,0,1,-258.78857,-4.9717972)" />
|
|
252
|
+
</g>
|
|
253
|
+
<g
|
|
254
|
+
id="g27"
|
|
255
|
+
transform="matrix(0.40457033,0.40457033,-0.40457033,0.40457033,104.35139,43.689564)"
|
|
256
|
+
inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
|
|
257
|
+
inkscape:export-xdpi="10.11"
|
|
258
|
+
inkscape:export-ydpi="10.11"
|
|
259
|
+
style="fill:#ffffff;fill-opacity:1;stroke-width:3.80952"
|
|
260
|
+
clip-path="url(#clipPath28)">
|
|
261
|
+
<path
|
|
262
|
+
id="path27"
|
|
263
|
+
style="fill:#ffffff;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"
|
|
264
|
+
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" />
|
|
265
|
+
</g>
|
|
266
|
+
<rect
|
|
267
|
+
style="fill:none;stroke:#a14f8c;stroke-width:0.79375;stroke-linejoin:round;stroke-dasharray:none"
|
|
268
|
+
id="rect37"
|
|
269
|
+
width="121.23346"
|
|
270
|
+
height="32.179253"
|
|
271
|
+
x="761.06354"
|
|
272
|
+
y="71.231743"
|
|
273
|
+
rx="2.6458335"
|
|
274
|
+
ry="2.6458335"
|
|
275
|
+
clip-path="url(#clipPath36)"
|
|
276
|
+
transform="translate(-400.55697,-4.2234453)" />
|
|
277
|
+
</g>
|
|
278
|
+
<g
|
|
279
|
+
id="g46"
|
|
280
|
+
transform="translate(0,-39.47571)">
|
|
281
|
+
<rect
|
|
282
|
+
style="fill:#f6edf4;stroke-width:0.264583;stroke-linejoin:round"
|
|
283
|
+
id="rect38"
|
|
284
|
+
width="121.23346"
|
|
285
|
+
height="32.179253"
|
|
286
|
+
x="761.06354"
|
|
287
|
+
y="71.231743"
|
|
288
|
+
rx="2.6458335"
|
|
289
|
+
ry="2.6458335"
|
|
290
|
+
clip-path="url(#clipPath36)"
|
|
291
|
+
transform="translate(-400.55697,-4.2234453)" />
|
|
292
|
+
<rect
|
|
293
|
+
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
294
|
+
id="rect39"
|
|
295
|
+
width="84.384949"
|
|
296
|
+
height="31.316229"
|
|
297
|
+
x="797.91205"
|
|
298
|
+
y="71.720589"
|
|
299
|
+
rx="2.6458335"
|
|
300
|
+
ry="2.6458335"
|
|
301
|
+
clip-path="url(#clipPath35)"
|
|
302
|
+
transform="translate(-400.55697,-4.2234453)" />
|
|
303
|
+
<g
|
|
304
|
+
id="g44"
|
|
305
|
+
transform="translate(8.4580609)"
|
|
306
|
+
style="fill:#f6edf4">
|
|
307
|
+
<rect
|
|
308
|
+
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
309
|
+
id="rect40"
|
|
310
|
+
width="72.590401"
|
|
311
|
+
height="2.245064"
|
|
312
|
+
x="799.97797"
|
|
313
|
+
y="76.283142"
|
|
314
|
+
rx="1.6078529"
|
|
315
|
+
ry="1.3229167"
|
|
316
|
+
clip-path="url(#clipPath33)"
|
|
317
|
+
transform="matrix(0.82278462,0,0,1,-258.78857,-4.2234453)" />
|
|
318
|
+
<rect
|
|
319
|
+
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
320
|
+
id="rect41"
|
|
321
|
+
width="40.78532"
|
|
322
|
+
height="2.2450638"
|
|
323
|
+
x="799.97797"
|
|
324
|
+
y="83.392509"
|
|
325
|
+
rx="1.6078529"
|
|
326
|
+
ry="1.3229167"
|
|
327
|
+
clip-path="url(#clipPath32)"
|
|
328
|
+
transform="matrix(0.82278462,0,0,1,-258.78857,-4.9717972)" />
|
|
329
|
+
<rect
|
|
330
|
+
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
331
|
+
id="rect42"
|
|
332
|
+
width="75.396721"
|
|
333
|
+
height="2.2450638"
|
|
334
|
+
x="799.97797"
|
|
335
|
+
y="88.630997"
|
|
336
|
+
rx="1.6078529"
|
|
337
|
+
ry="1.3229167"
|
|
338
|
+
clip-path="url(#clipPath31)"
|
|
339
|
+
transform="matrix(0.82278462,0,0,1,-258.78857,-3.8492692)" />
|
|
340
|
+
<rect
|
|
341
|
+
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
342
|
+
id="rect43"
|
|
343
|
+
width="40.224052"
|
|
344
|
+
height="2.2450638"
|
|
345
|
+
x="799.97797"
|
|
346
|
+
y="95.366188"
|
|
347
|
+
rx="1.6078529"
|
|
348
|
+
ry="1.3229167"
|
|
349
|
+
clip-path="url(#clipPath30)"
|
|
350
|
+
transform="matrix(0.82278462,0,0,1,-258.78857,-4.2234453)" />
|
|
351
|
+
<rect
|
|
352
|
+
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
|
|
353
|
+
id="rect44"
|
|
354
|
+
width="20.953909"
|
|
355
|
+
height="2.2450638"
|
|
356
|
+
x="843.19543"
|
|
357
|
+
y="83.392509"
|
|
358
|
+
rx="1.6078529"
|
|
359
|
+
ry="1.3229167"
|
|
360
|
+
clip-path="url(#clipPath29)"
|
|
361
|
+
transform="matrix(0.82278462,0,0,1,-258.78857,-4.9717972)" />
|
|
362
|
+
</g>
|
|
363
|
+
<g
|
|
364
|
+
id="g45"
|
|
365
|
+
transform="matrix(0.40457033,0.40457033,-0.40457033,0.40457033,104.35139,43.689564)"
|
|
366
|
+
inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
|
|
367
|
+
inkscape:export-xdpi="10.11"
|
|
368
|
+
inkscape:export-ydpi="10.11"
|
|
369
|
+
style="fill:#ffffff;fill-opacity:1;stroke-width:3.80952"
|
|
370
|
+
clip-path="url(#clipPath28)">
|
|
371
|
+
<path
|
|
372
|
+
id="path44"
|
|
373
|
+
style="fill:#ffffff;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"
|
|
374
|
+
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" />
|
|
375
|
+
</g>
|
|
376
|
+
<rect
|
|
377
|
+
style="fill:none;stroke:#f6edf4;stroke-width:0.79375;stroke-linejoin:round;stroke-dasharray:none"
|
|
378
|
+
id="rect45"
|
|
379
|
+
width="121.23346"
|
|
380
|
+
height="32.179253"
|
|
381
|
+
x="761.06354"
|
|
382
|
+
y="71.231743"
|
|
383
|
+
rx="2.6458335"
|
|
384
|
+
ry="2.6458335"
|
|
385
|
+
clip-path="url(#clipPath36)"
|
|
386
|
+
transform="translate(-400.55697,-4.2234453)" />
|
|
387
|
+
</g>
|
|
388
|
+
<use
|
|
389
|
+
x="0"
|
|
390
|
+
y="0"
|
|
391
|
+
xlink:href="#g46"
|
|
392
|
+
id="use46"
|
|
393
|
+
transform="translate(0,78.764331)" />
|
|
394
|
+
</g>
|
|
395
|
+
<path
|
|
396
|
+
id="path65"
|
|
397
|
+
style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.765519;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
398
|
+
d="m 359.79966,36.138516 c -7.12928,0.12879 -16.96305,7.641732 -22.33766,12.250932 v 72.532522 c 4.64781,-2.87867 9.82591,-5.32267 14.00897,-5.32267 10.17304,0 16.05931,14.45803 26.23251,14.45803 10.17312,0 16.0594,-14.45803 26.2325,-14.45803 10.17312,0 16.05949,14.45803 26.23251,14.45803 10.1732,0 16.05994,-14.45803 26.23303,-14.45803 10.17313,0 15.93656,14.64411 26.2325,14.45803 7.12928,-0.12879 16.96305,-7.64173 22.33766,-12.25093 V 45.273359 c -4.64781,2.87867 -9.82591,5.323189 -14.00897,5.323189 -10.17304,0 -16.05982,-14.458032 -26.23302,-14.458032 -10.17312,0 -16.05941,14.458032 -26.23251,14.458032 -10.17312,0 -16.05949,-14.458032 -26.23251,-14.458032 -10.1732,0 -16.05941,14.458032 -26.2325,14.458032 -10.17313,0 -15.93657,-14.644112 -26.23251,-14.458032 z"
|
|
399
|
+
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
400
|
+
</g>
|
|
401
|
+
</svg>
|