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.
- checksums.yaml +4 -4
- data/LICENSE.txt +21 -0
- data/README.md +66 -0
- data/_includes/centos-content/1col.html +11 -0
- data/_includes/centos-content/2col.html +15 -0
- data/_includes/centos-content/admonition/caution.html +4 -0
- data/_includes/centos-content/admonition/idea.html +4 -0
- data/_includes/centos-content/admonition/note.html +4 -0
- data/_includes/centos-content/admonition/warning.html +4 -0
- data/_includes/centos-content/around.html +6 -0
- data/_includes/centos-content/breadcrumbs.html +11 -0
- data/_includes/centos-content/download/stream-8-doc.html +5 -0
- data/_includes/centos-content/download/stream-8-eol.html +5 -0
- data/_includes/centos-content/download/stream-8.html +5 -0
- data/_includes/centos-content/download/stream.html +16 -0
- data/_includes/centos-content/download/table-body-doc.html +6 -0
- data/_includes/centos-content/download/table-body-eol.html +4 -0
- data/_includes/centos-content/download/table-body.html +7 -0
- data/_includes/{download/cards-footer.html → centos-content/download/table-footer.html} +0 -1
- data/_includes/centos-content/download/table-header-doc.html +8 -0
- data/_includes/centos-content/download/table-header-eol.html +8 -0
- data/_includes/centos-content/download/table-header.html +10 -0
- data/_includes/centos-content/figure.html +4 -0
- data/_includes/centos-content/news.html +15 -0
- data/_includes/centos-content/sponsors.html +19 -0
- data/_includes/centos-content/toc.html +103 -0
- data/_includes/centos-content/video.html +3 -0
- data/_includes/centos-footer.html +42 -0
- data/_includes/centos-head.html +7 -0
- data/_includes/centos-header/home.html +15 -0
- data/_includes/centos-header/page.html +12 -0
- data/_includes/centos-header.html +7 -0
- data/_includes/centos-nav.html +29 -0
- data/_includes/centos-styleguide.md +243 -0
- data/_layouts/centos-content/1col.html +9 -0
- data/_layouts/centos-content/2col.html +9 -0
- data/_layouts/centos-content/download-mirror.html +30 -0
- data/_layouts/centos-content/download.html +18 -0
- data/_layouts/centos-content/sponsors.html +21 -0
- data/_layouts/centos-home.html +39 -0
- data/_layouts/default.html +18 -0
- data/_layouts/{download/cards.html → page.html} +0 -2
- data/_layouts/post.html +5 -0
- data/_sass/bootstrap/_alert.scss +16 -32
- data/_sass/bootstrap/_badge.scss +31 -15
- data/_sass/bootstrap/_breadcrumb.scss +27 -23
- data/_sass/bootstrap/_button-group.scss +48 -32
- data/_sass/bootstrap/_buttons.scss +71 -145
- data/_sass/bootstrap/_card.scss +123 -75
- data/_sass/bootstrap/_carousel.scss +39 -68
- data/_sass/bootstrap/_close.scss +27 -53
- data/_sass/bootstrap/_code.scss +48 -0
- data/_sass/bootstrap/_custom-forms.scss +524 -0
- data/_sass/bootstrap/_dropdown.scss +71 -129
- data/_sass/bootstrap/_forms.scss +347 -9
- data/_sass/bootstrap/_functions.scss +23 -181
- data/_sass/bootstrap/_grid.scss +52 -18
- data/_sass/bootstrap/_images.scss +1 -1
- data/_sass/bootstrap/_input-group.scss +192 -0
- data/_sass/bootstrap/_jumbotron.scss +17 -0
- data/_sass/bootstrap/_list-group.scss +48 -93
- data/_sass/bootstrap/_media.scss +8 -0
- data/_sass/bootstrap/_mixins.scss +15 -10
- data/_sass/bootstrap/_modal.scss +112 -112
- data/_sass/bootstrap/_nav.scss +29 -103
- data/_sass/bootstrap/_navbar.scss +171 -136
- data/_sass/bootstrap/_pagination.scss +37 -72
- data/_sass/bootstrap/_popover.scss +73 -99
- data/_sass/bootstrap/_print.scss +141 -0
- data/_sass/bootstrap/_progress.scss +15 -36
- data/_sass/bootstrap/_reboot.scss +200 -333
- data/_sass/bootstrap/_root.scss +10 -177
- data/_sass/bootstrap/_spinners.scss +22 -52
- data/_sass/bootstrap/_tables.scss +115 -101
- data/_sass/bootstrap/_toasts.scss +27 -54
- data/_sass/bootstrap/_tooltip.scss +63 -67
- data/_sass/bootstrap/_transitions.scss +1 -8
- data/_sass/bootstrap/_type.scss +59 -40
- data/_sass/bootstrap/_utilities.scss +18 -806
- data/_sass/bootstrap/_variables.scss +611 -1222
- data/_sass/bootstrap/bootstrap-grid.scss +20 -53
- data/_sass/bootstrap/bootstrap-reboot.scss +7 -5
- data/_sass/bootstrap/bootstrap.scss +13 -21
- data/_sass/bootstrap/mixins/_alert.scss +6 -11
- data/_sass/bootstrap/mixins/_background-variant.scss +23 -0
- data/_sass/bootstrap/mixins/_badge.scss +17 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +8 -10
- data/_sass/bootstrap/mixins/_box-shadow.scss +9 -13
- data/_sass/bootstrap/mixins/_breakpoints.scss +16 -20
- data/_sass/bootstrap/mixins/_buttons.scss +100 -60
- data/_sass/bootstrap/mixins/_caret.scss +27 -34
- data/_sass/bootstrap/mixins/_clearfix.scss +0 -2
- data/_sass/bootstrap/mixins/_deprecate.scss +0 -0
- data/_sass/bootstrap/mixins/_float.scss +14 -0
- data/_sass/bootstrap/mixins/_forms.scss +78 -63
- data/_sass/bootstrap/mixins/_gradients.scss +11 -13
- data/_sass/bootstrap/mixins/_grid-framework.scss +80 -0
- data/_sass/bootstrap/mixins/_grid.scss +37 -119
- data/_sass/bootstrap/mixins/_hover.scss +37 -0
- data/_sass/bootstrap/mixins/_image.scss +21 -1
- data/_sass/bootstrap/mixins/_list-group.scss +2 -7
- data/_sass/bootstrap/mixins/_lists.scss +1 -1
- data/_sass/bootstrap/mixins/_nav-divider.scss +11 -0
- data/_sass/bootstrap/mixins/_pagination.scss +19 -7
- data/_sass/bootstrap/mixins/_reset-text.scss +3 -3
- data/_sass/bootstrap/mixins/_resize.scss +0 -0
- data/_sass/bootstrap/mixins/_screen-reader.scss +34 -0
- data/_sass/bootstrap/mixins/_size.scss +7 -0
- data/_sass/bootstrap/mixins/_table-row.scss +39 -0
- data/_sass/bootstrap/mixins/_text-emphasis.scss +17 -0
- data/_sass/bootstrap/mixins/_text-hide.scss +11 -0
- data/_sass/bootstrap/mixins/_text-truncate.scss +0 -0
- data/_sass/bootstrap/mixins/_transition.scss +1 -1
- data/_sass/bootstrap/mixins/_visibility.scss +8 -0
- data/_sass/bootstrap/utilities/_align.scss +8 -0
- data/_sass/bootstrap/utilities/_background.scss +19 -0
- data/_sass/bootstrap/utilities/_borders.scss +75 -0
- data/_sass/bootstrap/{helpers → utilities}/_clearfix.scss +0 -0
- data/_sass/bootstrap/utilities/_display.scss +26 -0
- data/_sass/bootstrap/utilities/_embed.scss +39 -0
- data/_sass/bootstrap/utilities/_flex.scss +51 -0
- data/_sass/bootstrap/utilities/_float.scss +11 -0
- data/_sass/bootstrap/utilities/_interactions.scss +5 -0
- data/_sass/bootstrap/utilities/_overflow.scss +5 -0
- data/_sass/bootstrap/utilities/_position.scss +32 -0
- data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
- data/_sass/bootstrap/utilities/_shadows.scss +6 -0
- data/_sass/bootstrap/utilities/_sizing.scss +20 -0
- data/_sass/bootstrap/utilities/_spacing.scss +73 -0
- data/_sass/bootstrap/utilities/_stretched-link.scss +19 -0
- data/_sass/bootstrap/utilities/_text.scss +72 -0
- data/_sass/bootstrap/utilities/_visibility.scss +13 -0
- data/_sass/bootstrap/vendor/_rfs.scss +132 -276
- data/_sass/centos/_content.scss +101 -0
- data/_sass/centos/_datatable.scss +271 -0
- data/_sass/centos/_fonts.scss +1 -0
- data/_sass/centos/_footer.scss +49 -0
- data/_sass/centos/_header.scss +25 -0
- data/_sass/centos/_highlighter.scss +360 -0
- data/_sass/centos/_mixins.scss +4 -0
- data/_sass/centos/_nav.scss +10 -0
- data/_sass/centos/_rssfeeds.scss +17 -0
- data/_sass/centos/_variables.scss +111 -0
- data/_sass/centos/centos.scss +23 -0
- data/_sass/centos/content/_1col.scss +32 -0
- data/_sass/centos/content/_2col.scss +44 -0
- data/_sass/centos/content/_download.scss +17 -0
- data/_sass/centos/content/_sponsors.scss +9 -0
- data/_sass/centos/fonts/_montserrat.scss +256 -0
- data/_sass/centos/header/_home.scss +4 -0
- data/_sass/centos/header/_page.scss +4 -0
- data/_sass/centos/mixins/_content-card.scss +13 -0
- data/_sass/centos/mixins/_content-heading.scss +28 -0
- data/_sass/centos/mixins/_content-toc.scss +18 -0
- data/_sass/centos/mixins/_footer-link.scss +10 -0
- data/_sass/fontawesome/_animated.scss +20 -0
- data/_sass/fontawesome/_bordered-pulled.scss +20 -0
- data/_sass/fontawesome/_core.scss +21 -0
- data/_sass/fontawesome/_fixed-width.scss +6 -0
- data/_sass/fontawesome/_icons.scss +1462 -0
- data/_sass/fontawesome/_larger.scss +23 -0
- data/_sass/fontawesome/_list.scss +18 -0
- data/_sass/fontawesome/_mixins.scss +56 -0
- data/_sass/fontawesome/_rotated-flipped.scss +24 -0
- data/_sass/fontawesome/_screen-reader.scss +5 -0
- data/_sass/fontawesome/_shims.scss +2066 -0
- data/_sass/fontawesome/_stacked.scss +31 -0
- data/_sass/fontawesome/_variables.scss +1479 -0
- data/_sass/fontawesome/brands.scss +23 -0
- data/_sass/fontawesome/fontawesome.scss +16 -0
- data/_sass/fontawesome/regular.scss +23 -0
- data/_sass/fontawesome/solid.scss +24 -0
- data/_sass/fontawesome/v4-shims.scss +6 -0
- data/assets/css/centos.bootstrap.min.scss +4 -0
- data/assets/fonts/Montserrat/Montserrat-Black.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Black.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-BlackItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-BlackItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Bold.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Bold.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-BoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-BoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraBold.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraBold.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraLight.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraLight.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraLightItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraLightItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Italic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Italic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Light.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Light.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-LightItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-LightItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Medium.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Medium.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-MediumItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-MediumItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Regular.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Regular.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-SemiBold.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-SemiBold.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Thin.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Thin.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ThinItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ThinItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat.css +327 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Black.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Black.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-BlackItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-BlackItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Bold.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Bold.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-BoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-BoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraBold.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraBold.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraBoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraBoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraLight.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraLight.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraLightItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraLightItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Italic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Italic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Light.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Light.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-LightItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-LightItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Medium.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Medium.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-MediumItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-MediumItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Regular.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Regular.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-SemiBold.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-SemiBold.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-SemiBoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-SemiBoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Thin.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Thin.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ThinItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ThinItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/README.MD +35 -0
- data/assets/fonts/fa-brands-400.eot +0 -0
- data/assets/fonts/fa-brands-400.svg +3717 -0
- data/assets/fonts/fa-brands-400.ttf +0 -0
- data/assets/fonts/fa-brands-400.woff +0 -0
- data/assets/fonts/fa-brands-400.woff2 +0 -0
- data/assets/fonts/fa-regular-400.eot +0 -0
- data/assets/fonts/fa-regular-400.svg +801 -0
- data/assets/fonts/fa-regular-400.ttf +0 -0
- data/assets/fonts/fa-regular-400.woff +0 -0
- data/assets/fonts/fa-regular-400.woff2 +0 -0
- data/assets/fonts/fa-solid-900.eot +0 -0
- data/assets/fonts/fa-solid-900.svg +5028 -0
- data/assets/fonts/fa-solid-900.ttf +0 -0
- data/assets/fonts/fa-solid-900.woff +0 -0
- data/assets/fonts/fa-solid-900.woff2 +0 -0
- data/assets/img/centos-logo-white.png +0 -0
- data/assets/img/centos-motif.png +0 -0
- data/assets/img/favicon.png +0 -0
- data/assets/js/bootstrap.min.js +4 -4
- data/assets/js/bootstrap.min.js.map +1 -1
- data/assets/js/dataTables.bootstrap4.min.js +14 -0
- data/assets/js/jquery.dataTables.min.js +184 -0
- data/assets/js/jquery.min.js +2 -0
- data/assets/js/jquery.rss.js +11 -0
- data/assets/js/moment.min.js +7 -0
- metadata +238 -492
- data/_config.yml +0 -196
- data/_data/base/announcement_schema.yml +0 -49
- data/_data/base/artwork_schema.yml +0 -46
- data/_data/base/backtotop_schema.yml +0 -59
- data/_data/base/bits.yml +0 -96
- data/_data/base/bits_schema.yml +0 -185
- data/_data/base/breadcrumb_schema.yml +0 -27
- data/_data/base/breakingnews_schema.yml +0 -67
- data/_data/base/card_schema.yml +0 -146
- data/_data/base/color.yml +0 -1042
- data/_data/base/color_schema.yml +0 -1036
- data/_data/base/configuration_variables_schema.yml +0 -42
- data/_data/base/content.yml +0 -2
- data/_data/base/content_schema.yml +0 -26
- data/_data/base/copyright.yml +0 -12
- data/_data/base/copyright_schema.yml +0 -74
- data/_data/base/copyvalue_schema.yml +0 -49
- data/_data/base/datatable_schema.yml +0 -57
- data/_data/base/event_schema.yml +0 -130
- data/_data/base/fontawesome_schema.yml +0 -62
- data/_data/base/footer.yml +0 -9
- data/_data/base/footer_schema.yml +0 -55
- data/_data/base/head_schema.yml +0 -19
- data/_data/base/heading_anchor.yml +0 -2
- data/_data/base/heading_anchor_schema.yml +0 -37
- data/_data/base/highlight_schema.yml +0 -98
- data/_data/base/image_schema.yml +0 -34
- data/_data/base/languages.yml +0 -186
- data/_data/base/link_schema.yml +0 -187
- data/_data/base/locales_schema.yml +0 -158
- data/_data/base/navbar.yml +0 -20
- data/_data/base/navbar_schema.yml +0 -129
- data/_data/base/navindex_schema.yml +0 -67
- data/_data/base/ogp.yml +0 -24
- data/_data/base/ogp_schema.yml +0 -192
- data/_data/base/project.yml +0 -37
- data/_data/base/project_schema.yml +0 -124
- data/_data/base/script_schema.yml +0 -41
- data/_data/base/shortcut_schema.yml +0 -74
- data/_data/base/social.yml +0 -26
- data/_data/base/social_schema.yml +0 -57
- data/_data/base/sponsors.yml +0 -41
- data/_data/base/sponsors_schema.yml +0 -73
- data/_data/base/title_schema.yml +0 -49
- data/_data/base/toc_schema.yml +0 -114
- data/_data/download/cards.yml +0 -309
- data/_data/download/navbar.yml +0 -11
- data/_includes/base/announcement.html.liquid +0 -65
- data/_includes/base/artwork.html.liquid +0 -63
- data/_includes/base/backtotop.html.liquid +0 -73
- data/_includes/base/bits.html.liquid +0 -152
- data/_includes/base/breadcrumb.html.liquid +0 -77
- data/_includes/base/breakingnews.html.liquid +0 -90
- data/_includes/base/card.html.liquid +0 -110
- data/_includes/base/color-table.html.liquid +0 -33
- data/_includes/base/configuration_variables-nested.html.liquid +0 -98
- data/_includes/base/configuration_variables.html.liquid +0 -98
- data/_includes/base/content.html.liquid +0 -7
- data/_includes/base/copyright.html.liquid +0 -70
- data/_includes/base/copyvalue.html.liquid +0 -82
- data/_includes/base/datatable.html.liquid +0 -83
- data/_includes/base/event.html.liquid +0 -105
- data/_includes/base/fontawesome.html.liquid +0 -91
- data/_includes/base/footer.html.liquid +0 -69
- data/_includes/base/head.html.liquid +0 -135
- data/_includes/base/heading_anchor.html.liquid +0 -67
- data/_includes/base/highlight.html.liquid +0 -84
- data/_includes/base/image.html.liquid +0 -42
- data/_includes/base/link.html.liquid +0 -129
- data/_includes/base/locales.html.liquid +0 -78
- data/_includes/base/navbar.html.liquid +0 -121
- data/_includes/base/navindex.html.liquid +0 -200
- data/_includes/base/ogp.html.liquid +0 -144
- data/_includes/base/project.html.liquid +0 -104
- data/_includes/base/shortcut.html.liquid +0 -77
- data/_includes/base/social.html.liquid +0 -76
- data/_includes/base/sponsors-cards.html.liquid +0 -69
- data/_includes/base/sponsors-carousel.html.liquid +0 -91
- data/_includes/base/title.html.liquid +0 -65
- data/_includes/base/toc-generator.html.liquid +0 -189
- data/_includes/base/toc.html.liquid +0 -95
- data/_includes/download/cards-body-commands.html +0 -7
- data/_includes/download/cards-body-convert.html +0 -10
- data/_includes/download/cards-body-doc.html +0 -9
- data/_includes/download/cards-body-documentation.html +0 -11
- data/_includes/download/cards-body-eol.html +0 -16
- data/_includes/download/cards-body-mirrors.html +0 -8
- data/_includes/download/cards-body-screenshot.html +0 -26
- data/_includes/download/cards-body-screenshots.html +0 -32
- data/_includes/download/cards-body.html +0 -8
- data/_includes/download/cards-header-commands.html +0 -8
- data/_includes/download/cards-header-convert.html +0 -8
- data/_includes/download/cards-header-doc.html +0 -8
- data/_includes/download/cards-header-documentation.html +0 -8
- data/_includes/download/cards-header-eol.html +0 -8
- data/_includes/download/cards-header-mirrors.html +0 -13
- data/_includes/download/cards-header-screenshot.html +0 -8
- data/_includes/download/cards-header-screenshots.html +0 -8
- data/_includes/download/cards-header.html +0 -13
- data/_includes/download/cards.html +0 -120
- data/_layouts/base/default.html +0 -68
- data/_layouts/download/default.html +0 -7
- data/_layouts/people/default.html +0 -68
- data/_sass/base/_customization.scss +0 -331
- data/_sass/base/_light-dark.scss +0 -10
- data/_sass/base/_maps.scss +0 -104
- data/_sass/base/_variables.scss +0 -232
- data/_sass/bootstrap/_accordion.scss +0 -153
- data/_sass/bootstrap/_containers.scss +0 -41
- data/_sass/bootstrap/_helpers.scss +0 -12
- data/_sass/bootstrap/_maps.scss +0 -174
- data/_sass/bootstrap/_offcanvas.scss +0 -147
- data/_sass/bootstrap/_placeholders.scss +0 -51
- data/_sass/bootstrap/_variables-dark.scss +0 -102
- data/_sass/bootstrap/bootstrap-utilities.scss +0 -19
- data/_sass/bootstrap/forms/_floating-labels.scss +0 -97
- data/_sass/bootstrap/forms/_form-check.scss +0 -189
- data/_sass/bootstrap/forms/_form-control.scss +0 -214
- data/_sass/bootstrap/forms/_form-range.scss +0 -91
- data/_sass/bootstrap/forms/_form-select.scss +0 -80
- data/_sass/bootstrap/forms/_form-text.scss +0 -11
- data/_sass/bootstrap/forms/_input-group.scss +0 -132
- data/_sass/bootstrap/forms/_labels.scss +0 -36
- data/_sass/bootstrap/forms/_validation.scss +0 -12
- data/_sass/bootstrap/helpers/_color-bg.scss +0 -7
- data/_sass/bootstrap/helpers/_colored-links.scss +0 -30
- data/_sass/bootstrap/helpers/_focus-ring.scss +0 -5
- data/_sass/bootstrap/helpers/_icon-link.scss +0 -25
- data/_sass/bootstrap/helpers/_position.scss +0 -36
- data/_sass/bootstrap/helpers/_ratio.scss +0 -26
- data/_sass/bootstrap/helpers/_stacks.scss +0 -15
- data/_sass/bootstrap/helpers/_stretched-link.scss +0 -15
- data/_sass/bootstrap/helpers/_text-truncation.scss +0 -7
- data/_sass/bootstrap/helpers/_visually-hidden.scss +0 -8
- data/_sass/bootstrap/helpers/_vr.scss +0 -8
- data/_sass/bootstrap/mixins/_backdrop.scss +0 -14
- data/_sass/bootstrap/mixins/_banner.scss +0 -7
- data/_sass/bootstrap/mixins/_color-mode.scss +0 -21
- data/_sass/bootstrap/mixins/_color-scheme.scss +0 -7
- data/_sass/bootstrap/mixins/_container.scss +0 -11
- data/_sass/bootstrap/mixins/_table-variants.scss +0 -24
- data/_sass/bootstrap/mixins/_utilities.scss +0 -97
- data/_sass/bootstrap/mixins/_visually-hidden.scss +0 -38
- data/_sass/bootstrap/utilities/_api.scss +0 -47
- data/assets/css/base/stylesheet.min.scss +0 -35
- 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 +0 -1
- data/assets/img/anaconda-symbolic.svg +0 -1
- data/assets/img/anaconda.svg +0 -1
- data/assets/img/base/centos-colors.gpl +0 -55
- data/assets/img/base/example-ogp-image.svg +0 -297
- data/assets/img/base/example-sponsors-design.svg +0 -226
- data/assets/img/base/example-sponsors-logo-1.svg +0 -120
- data/assets/img/base/example-sponsors-logo-2.svg +0 -116
- data/assets/img/base/example-sponsors-logo-3.svg +0 -123
- data/assets/img/base/example-sponsors-logo-4.svg +0 -116
- data/assets/img/base/example-sponsors-logo-5.svg +0 -116
- data/assets/img/base/example-sponsors-logo-6.svg +0 -116
- data/assets/img/base/example-sponsors-logo-7.svg +0 -116
- data/assets/img/base/example-sponsors-logo-8.svg +0 -110
- data/assets/img/base/page-layout-default.svg +0 -1217
- data/assets/img/base/page-with-alert.svg +0 -383
- data/assets/img/base/page-with-announcement.svg +0 -956
- data/assets/img/base/page-with-artwork.svg +0 -1009
- data/assets/img/base/page-with-backtotop.svg +0 -1009
- data/assets/img/base/page-with-bits.svg +0 -891
- data/assets/img/base/page-with-breadcrumb.svg +0 -676
- data/assets/img/base/page-with-breakingnews.svg +0 -957
- data/assets/img/base/page-with-color.svg +0 -57
- data/assets/img/base/page-with-copyright.svg +0 -1018
- data/assets/img/base/page-with-copyvalue.svg +0 -57
- data/assets/img/base/page-with-datatable.svg +0 -857
- data/assets/img/base/page-with-event.svg +0 -518
- data/assets/img/base/page-with-fontawesome.svg +0 -147
- data/assets/img/base/page-with-footer.svg +0 -1018
- data/assets/img/base/page-with-heading.svg +0 -57
- data/assets/img/base/page-with-highlight.svg +0 -86
- data/assets/img/base/page-with-image.svg +0 -57
- data/assets/img/base/page-with-link.svg +0 -57
- data/assets/img/base/page-with-locales.svg +0 -1009
- data/assets/img/base/page-with-navbar.svg +0 -958
- data/assets/img/base/page-with-navindex.svg +0 -279
- data/assets/img/base/page-with-ogp.svg +0 -401
- data/assets/img/base/page-with-project.svg +0 -423
- data/assets/img/base/page-with-shortcut.svg +0 -937
- data/assets/img/base/page-with-social.svg +0 -937
- data/assets/img/base/page-with-sponsors.svg +0 -937
- data/assets/img/base/page-with-title.svg +0 -584
- data/assets/img/base/page-with-toc.svg +0 -399
- data/assets/img/base/screenshot-1200x600.svg +0 -114
- data/assets/img/centos-dynamicmsg-logo.svg +0 -1
- data/assets/img/centos-dynamicmsg-type.svg +0 -1
- data/assets/img/centos-dynamicmsg-whitelogo.svg +0 -1
- data/assets/img/centos-dynamicmsg-whitetype.svg +0 -1
- data/assets/img/centos-gdm-whitelogo.svg +0 -1
- data/assets/img/centos-ipa-whiteheader.svg +0 -1
- data/assets/img/centos-logo-2bits.svg +0 -1
- data/assets/img/centos-logo.svg +0 -1
- data/assets/img/centos-message-logo.svg +0 -1
- data/assets/img/centos-poweredby-logo.svg +0 -1
- data/assets/img/centos-social-share.png +0 -0
- data/assets/img/centos-symbol-2bits.svg +0 -1
- data/assets/img/centos-symbol.svg +0 -1
- data/assets/img/centos-type.svg +0 -1
- data/assets/img/centos-vertical-logo.svg +0 -1
- data/assets/img/centos-vertical-message-logo.svg +0 -1
- data/assets/img/centos-whitelogo.svg +0 -1
- 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 +0 -134
- data/assets/img/download/download.svg +0 -421
- data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
- data/assets/img/people/page.svg +0 -900
- data/assets/img/people/page.webp +0 -0
- data/assets/img/people/username.webp +0 -0
- data/assets/js/base/backtotop.js +0 -20
- data/assets/js/base/copyvalue.js +0 -145
- data/assets/js/base/datatable.js +0 -41
- data/assets/js/base/heading-anchor.js +0 -108
- data/assets/js/base/highlight.js +0 -12
- data/assets/js/base/init-tooltips.js +0 -12
- data/assets/js/bootstrap.bundle.js +0 -6312
- data/assets/js/bootstrap.bundle.js.map +0 -1
- data/assets/js/bootstrap.bundle.min.js +0 -7
- data/assets/js/bootstrap.bundle.min.js.map +0 -1
- data/assets/js/bootstrap.esm.js +0 -4447
- data/assets/js/bootstrap.esm.js.map +0 -1
- data/assets/js/bootstrap.esm.min.js +0 -7
- data/assets/js/bootstrap.esm.min.js.map +0 -1
- data/assets/js/bootstrap.js +0 -4494
- data/assets/js/bootstrap.js.map +0 -1
- data/site.webmanifest +0 -11
|
@@ -1,676 +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="396.73569"
|
|
7
|
-
viewBox="0 0 169.33333 104.96965"
|
|
8
|
-
version="1.1"
|
|
9
|
-
id="svg1"
|
|
10
|
-
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
|
|
11
|
-
sodipodi:docname="page-with-breadcrumb.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="223.44574"
|
|
28
|
-
inkscape:cy="198.34345"
|
|
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
|
-
showborder="false" />
|
|
37
|
-
<defs
|
|
38
|
-
id="defs1">
|
|
39
|
-
<clipPath
|
|
40
|
-
clipPathUnits="userSpaceOnUse"
|
|
41
|
-
id="clipPath15-7">
|
|
42
|
-
<path
|
|
43
|
-
id="path16-5"
|
|
44
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
45
|
-
d="m 2498.4797,350.95811 c -1.711,0 -3.0885,1.37751 -3.0885,3.08851 v 99.47524 c 5.6224,-3.4823 11.8863,-6.4392 16.9465,-6.4392 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.3063,0 19.2783,17.7148 31.7333,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0214,-14.8198 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
|
|
46
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
47
|
-
</clipPath>
|
|
48
|
-
<clipPath
|
|
49
|
-
clipPathUnits="userSpaceOnUse"
|
|
50
|
-
id="clipPath14-3">
|
|
51
|
-
<path
|
|
52
|
-
id="path15-5"
|
|
53
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
54
|
-
d="m 2498.4797,350.95811 c -1.711,0 -3.0885,1.37751 -3.0885,3.08851 v 99.47524 c 5.6224,-3.4823 11.8863,-6.4392 16.9465,-6.4392 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.3063,0 19.2783,17.7148 31.7333,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0214,-14.8198 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
|
|
55
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
56
|
-
</clipPath>
|
|
57
|
-
<clipPath
|
|
58
|
-
clipPathUnits="userSpaceOnUse"
|
|
59
|
-
id="clipPath13-6">
|
|
60
|
-
<path
|
|
61
|
-
id="path14-2"
|
|
62
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
63
|
-
d="m 2498.4797,350.95811 c -1.711,0 -3.0885,1.37751 -3.0885,3.08851 v 99.47524 c 5.6224,-3.4823 11.8863,-6.4392 16.9465,-6.4392 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.3063,0 19.2783,17.7148 31.7333,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0214,-14.8198 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
|
|
64
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
65
|
-
</clipPath>
|
|
66
|
-
<clipPath
|
|
67
|
-
clipPathUnits="userSpaceOnUse"
|
|
68
|
-
id="clipPath12-9">
|
|
69
|
-
<path
|
|
70
|
-
id="path13-1"
|
|
71
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
72
|
-
d="m 2498.4797,350.95811 c -1.711,0 -3.0885,1.37751 -3.0885,3.08851 v 99.47524 c 5.6224,-3.4823 11.8863,-6.4392 16.9465,-6.4392 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.3063,0 19.2783,17.7148 31.7333,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0214,-14.8198 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
|
|
73
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
74
|
-
</clipPath>
|
|
75
|
-
<clipPath
|
|
76
|
-
clipPathUnits="userSpaceOnUse"
|
|
77
|
-
id="clipPath11-2">
|
|
78
|
-
<path
|
|
79
|
-
id="path12-7"
|
|
80
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
81
|
-
d="m 2498.4797,350.95811 c -1.711,0 -3.0885,1.37751 -3.0885,3.08851 v 99.47524 c 5.6224,-3.4823 11.8863,-6.4392 16.9465,-6.4392 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.3063,0 19.2783,17.7148 31.7333,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0214,-14.8198 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
|
|
82
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
83
|
-
</clipPath>
|
|
84
|
-
<clipPath
|
|
85
|
-
clipPathUnits="userSpaceOnUse"
|
|
86
|
-
id="clipPath10-0">
|
|
87
|
-
<path
|
|
88
|
-
id="path11-9"
|
|
89
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
90
|
-
d="m 2498.4797,350.95811 c -1.711,0 -3.0885,1.37751 -3.0885,3.08851 v 99.47524 c 5.6224,-3.4823 11.8863,-6.4392 16.9465,-6.4392 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.3063,0 19.2783,17.7148 31.7333,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0214,-14.8198 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
|
|
91
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
92
|
-
</clipPath>
|
|
93
|
-
<clipPath
|
|
94
|
-
clipPathUnits="userSpaceOnUse"
|
|
95
|
-
id="clipPath38-3">
|
|
96
|
-
<path
|
|
97
|
-
id="path39-6"
|
|
98
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
99
|
-
d="m 59.448399,117.38544 c -1.711,0 -3.088498,1.37751 -3.088498,3.08851 v 99.47525 c 5.622399,-3.48231 11.886299,-6.43921 16.9465,-6.43921 12.306199,0 19.426999,17.48969 31.733389,17.48969 12.30631,0 19.4268,-17.48969 31.7331,-17.48969 12.3064,0 19.4268,17.48969 31.7331,17.48969 12.30631,0 19.42711,-17.48969 31.73341,-17.48969 12.3063,0 19.27829,17.7148 31.73329,17.48969 8.62411,-0.15579 20.52001,-9.24408 27.02141,-14.81979 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
|
|
100
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
101
|
-
</clipPath>
|
|
102
|
-
<clipPath
|
|
103
|
-
clipPathUnits="userSpaceOnUse"
|
|
104
|
-
id="clipPath37-0">
|
|
105
|
-
<path
|
|
106
|
-
id="path38-6"
|
|
107
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
108
|
-
d="m 59.448399,117.38544 c -1.711,0 -3.088498,1.37751 -3.088498,3.08851 v 99.47525 c 5.622399,-3.48231 11.886299,-6.43921 16.9465,-6.43921 12.306199,0 19.426999,17.48969 31.733389,17.48969 12.30631,0 19.4268,-17.48969 31.7331,-17.48969 12.3064,0 19.4268,17.48969 31.7331,17.48969 12.30631,0 19.42711,-17.48969 31.73341,-17.48969 12.3063,0 19.27829,17.7148 31.73329,17.48969 8.62411,-0.15579 20.52001,-9.24408 27.02141,-14.81979 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
|
|
109
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
110
|
-
</clipPath>
|
|
111
|
-
<clipPath
|
|
112
|
-
clipPathUnits="userSpaceOnUse"
|
|
113
|
-
id="clipPath36-2">
|
|
114
|
-
<path
|
|
115
|
-
id="path37-6"
|
|
116
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
117
|
-
d="m 59.448399,117.38544 c -1.711,0 -3.088498,1.37751 -3.088498,3.08851 v 99.47525 c 5.622399,-3.48231 11.886299,-6.43921 16.9465,-6.43921 12.306199,0 19.426999,17.48969 31.733389,17.48969 12.30631,0 19.4268,-17.48969 31.7331,-17.48969 12.3064,0 19.4268,17.48969 31.7331,17.48969 12.30631,0 19.42711,-17.48969 31.73341,-17.48969 12.3063,0 19.27829,17.7148 31.73329,17.48969 8.62411,-0.15579 20.52001,-9.24408 27.02141,-14.81979 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
|
|
118
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
119
|
-
</clipPath>
|
|
120
|
-
<clipPath
|
|
121
|
-
clipPathUnits="userSpaceOnUse"
|
|
122
|
-
id="clipPath35-1">
|
|
123
|
-
<path
|
|
124
|
-
id="path36-8"
|
|
125
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
126
|
-
d="m 59.448399,117.38544 c -1.711,0 -3.088498,1.37751 -3.088498,3.08851 v 99.47525 c 5.622399,-3.48231 11.886299,-6.43921 16.9465,-6.43921 12.306199,0 19.426999,17.48969 31.733389,17.48969 12.30631,0 19.4268,-17.48969 31.7331,-17.48969 12.3064,0 19.4268,17.48969 31.7331,17.48969 12.30631,0 19.42711,-17.48969 31.73341,-17.48969 12.3063,0 19.27829,17.7148 31.73329,17.48969 8.62411,-0.15579 20.52001,-9.24408 27.02141,-14.81979 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
|
|
127
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
128
|
-
</clipPath>
|
|
129
|
-
<clipPath
|
|
130
|
-
clipPathUnits="userSpaceOnUse"
|
|
131
|
-
id="clipPath34-7">
|
|
132
|
-
<path
|
|
133
|
-
id="path35-9"
|
|
134
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
135
|
-
d="m 59.448399,117.38544 c -1.711,0 -3.088498,1.37751 -3.088498,3.08851 v 99.47525 c 5.622399,-3.48231 11.886299,-6.43921 16.9465,-6.43921 12.306199,0 19.426999,17.48969 31.733389,17.48969 12.30631,0 19.4268,-17.48969 31.7331,-17.48969 12.3064,0 19.4268,17.48969 31.7331,17.48969 12.30631,0 19.42711,-17.48969 31.73341,-17.48969 12.3063,0 19.27829,17.7148 31.73329,17.48969 8.62411,-0.15579 20.52001,-9.24408 27.02141,-14.81979 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
|
|
136
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
137
|
-
</clipPath>
|
|
138
|
-
<clipPath
|
|
139
|
-
clipPathUnits="userSpaceOnUse"
|
|
140
|
-
id="clipPath33-2">
|
|
141
|
-
<path
|
|
142
|
-
id="path34-0"
|
|
143
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
144
|
-
d="m 59.448399,117.38544 c -1.711,0 -3.088498,1.37751 -3.088498,3.08851 v 99.47525 c 5.622399,-3.48231 11.886299,-6.43921 16.9465,-6.43921 12.306199,0 19.426999,17.48969 31.733389,17.48969 12.30631,0 19.4268,-17.48969 31.7331,-17.48969 12.3064,0 19.4268,17.48969 31.7331,17.48969 12.30631,0 19.42711,-17.48969 31.73341,-17.48969 12.3063,0 19.27829,17.7148 31.73329,17.48969 8.62411,-0.15579 20.52001,-9.24408 27.02141,-14.81979 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
|
|
145
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
146
|
-
</clipPath>
|
|
147
|
-
<clipPath
|
|
148
|
-
clipPathUnits="userSpaceOnUse"
|
|
149
|
-
id="clipPath40-2">
|
|
150
|
-
<path
|
|
151
|
-
id="path41-3"
|
|
152
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
153
|
-
d="m 59.448399,117.38544 c -1.710999,0 -3.088499,1.37751 -3.088499,3.08851 v 99.47524 c 5.6224,-3.4823 11.8863,-6.4392 16.946501,-6.4392 12.306199,0 19.426999,17.4897 31.733399,17.4897 12.3063,0 19.42679,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.48969 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.30631,0 19.2783,17.7148 31.73329,17.4897 8.62411,-0.1558 20.52002,-9.2441 27.02142,-14.8198 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.0885 z"
|
|
154
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
155
|
-
</clipPath>
|
|
156
|
-
<clipPath
|
|
157
|
-
clipPathUnits="userSpaceOnUse"
|
|
158
|
-
id="clipPath8-7">
|
|
159
|
-
<path
|
|
160
|
-
id="path9-5"
|
|
161
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
162
|
-
d="m 2498.4797,350.95811 c -1.711,0 -3.0885,1.37751 -3.0885,3.08851 v 99.47524 c 5.6224,-3.4823 11.8863,-6.4392 16.9465,-6.4392 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.3063,0 19.2783,17.7148 31.7333,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0214,-14.8198 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
|
|
163
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
164
|
-
</clipPath>
|
|
165
|
-
<clipPath
|
|
166
|
-
clipPathUnits="userSpaceOnUse"
|
|
167
|
-
id="clipPath24-9">
|
|
168
|
-
<path
|
|
169
|
-
id="path25-2"
|
|
170
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
171
|
-
d="m 59.448399,117.38544 c -1.711001,0 -3.088501,1.37751 -3.088501,3.08851 v 99.47524 c 5.622405,-3.4823 11.886302,-6.4392 16.946503,-6.4392 12.306197,0 19.426997,17.4897 31.733399,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.30629,0 19.27829,17.7148 31.73328,17.4897 8.62413,-0.1558 20.52004,-9.2441 27.02142,-14.8198 v -95.70594 c 0,-1.711 -1.37741,-3.08851 -3.08849,-3.08851 z"
|
|
172
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
173
|
-
</clipPath>
|
|
174
|
-
<clipPath
|
|
175
|
-
clipPathUnits="userSpaceOnUse"
|
|
176
|
-
id="clipPath23-2">
|
|
177
|
-
<path
|
|
178
|
-
id="path24-8"
|
|
179
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
180
|
-
d="m 59.448399,117.38544 c -1.711001,0 -3.088501,1.37751 -3.088501,3.08851 v 99.47524 c 5.622405,-3.4823 11.886302,-6.4392 16.946503,-6.4392 12.306197,0 19.426997,17.4897 31.733399,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.30629,0 19.27829,17.7148 31.73328,17.4897 8.62413,-0.1558 20.52004,-9.2441 27.02142,-14.8198 v -95.70594 c 0,-1.711 -1.37741,-3.08851 -3.08849,-3.08851 z"
|
|
181
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
182
|
-
</clipPath>
|
|
183
|
-
<clipPath
|
|
184
|
-
clipPathUnits="userSpaceOnUse"
|
|
185
|
-
id="clipPath22-9">
|
|
186
|
-
<path
|
|
187
|
-
id="path23-7"
|
|
188
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
189
|
-
d="m 59.448399,117.38544 c -1.711001,0 -3.088501,1.37751 -3.088501,3.08851 v 99.47524 c 5.622405,-3.4823 11.886302,-6.4392 16.946503,-6.4392 12.306197,0 19.426997,17.4897 31.733399,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.30629,0 19.27829,17.7148 31.73328,17.4897 8.62413,-0.1558 20.52004,-9.2441 27.02142,-14.8198 v -95.70594 c 0,-1.711 -1.37741,-3.08851 -3.08849,-3.08851 z"
|
|
190
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
191
|
-
</clipPath>
|
|
192
|
-
<clipPath
|
|
193
|
-
clipPathUnits="userSpaceOnUse"
|
|
194
|
-
id="clipPath6-3">
|
|
195
|
-
<path
|
|
196
|
-
id="path7-6"
|
|
197
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
198
|
-
d="m 2498.4797,350.95811 c -1.711,0 -3.0885,1.37751 -3.0885,3.08851 v 99.47524 c 5.6224,-3.4823 11.8863,-6.4392 16.9465,-6.4392 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.3063,0 19.2783,17.7148 31.7333,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0214,-14.8198 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
|
|
199
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
200
|
-
</clipPath>
|
|
201
|
-
<clipPath
|
|
202
|
-
clipPathUnits="userSpaceOnUse"
|
|
203
|
-
id="clipPath4-1">
|
|
204
|
-
<path
|
|
205
|
-
id="path5-2"
|
|
206
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
207
|
-
d="m 2498.4797,350.95811 c -1.711,0 -3.0885,1.37751 -3.0885,3.08851 v 99.47524 c 5.6224,-3.4823 11.8863,-6.4392 16.9465,-6.4392 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.3063,0 19.2783,17.7148 31.7333,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0214,-14.8198 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
|
|
208
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
209
|
-
</clipPath>
|
|
210
|
-
<clipPath
|
|
211
|
-
clipPathUnits="userSpaceOnUse"
|
|
212
|
-
id="clipPath32-9">
|
|
213
|
-
<path
|
|
214
|
-
id="path33-3"
|
|
215
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
216
|
-
d="m 59.448396,117.38544 c -1.710994,0 -3.088494,1.37751 -3.088494,3.08851 v 99.47524 c 5.622398,-3.4823 11.886298,-6.4392 16.946499,-6.4392 12.306202,0 19.427002,17.4897 31.733399,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.3063,0 19.27831,17.7148 31.7333,17.4897 8.62408,-0.1558 20.51998,-9.2441 27.02142,-14.8198 v -95.70594 c 0,-1.711 -1.37742,-3.08851 -3.0885,-3.08851 z"
|
|
217
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
218
|
-
</clipPath>
|
|
219
|
-
<clipPath
|
|
220
|
-
clipPathUnits="userSpaceOnUse"
|
|
221
|
-
id="clipPath30-1">
|
|
222
|
-
<path
|
|
223
|
-
id="path31-9"
|
|
224
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
225
|
-
d="m 59.448396,117.38544 c -1.710994,0 -3.088494,1.37751 -3.088494,3.08851 v 99.47524 c 5.622398,-3.4823 11.886298,-6.4392 16.946499,-6.4392 12.306202,0 19.427002,17.4897 31.733399,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.3063,0 19.27831,17.7148 31.7333,17.4897 8.62408,-0.1558 20.51998,-9.2441 27.02142,-14.8198 v -95.70594 c 0,-1.711 -1.37742,-3.08851 -3.0885,-3.08851 z"
|
|
226
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
227
|
-
</clipPath>
|
|
228
|
-
<clipPath
|
|
229
|
-
clipPathUnits="userSpaceOnUse"
|
|
230
|
-
id="clipPath29-4">
|
|
231
|
-
<path
|
|
232
|
-
id="path30-7"
|
|
233
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
234
|
-
d="m 59.448396,117.38544 c -1.710994,0 -3.088494,1.37751 -3.088494,3.08851 v 99.47524 c 5.622398,-3.4823 11.886298,-6.4392 16.946499,-6.4392 12.306202,0 19.427002,17.4897 31.733399,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.3063,0 19.27831,17.7148 31.7333,17.4897 8.62408,-0.1558 20.51998,-9.2441 27.02142,-14.8198 v -95.70594 c 0,-1.711 -1.37742,-3.08851 -3.0885,-3.08851 z"
|
|
235
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
236
|
-
</clipPath>
|
|
237
|
-
<clipPath
|
|
238
|
-
clipPathUnits="userSpaceOnUse"
|
|
239
|
-
id="clipPath28-8">
|
|
240
|
-
<path
|
|
241
|
-
id="path29-4"
|
|
242
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
243
|
-
d="m 59.448396,117.38544 c -1.710994,0 -3.088494,1.37751 -3.088494,3.08851 v 99.47524 c 5.622398,-3.4823 11.886298,-6.4392 16.946499,-6.4392 12.306202,0 19.427002,17.4897 31.733399,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.3063,0 19.27831,17.7148 31.7333,17.4897 8.62408,-0.1558 20.51998,-9.2441 27.02142,-14.8198 v -95.70594 c 0,-1.711 -1.37742,-3.08851 -3.0885,-3.08851 z"
|
|
244
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
245
|
-
</clipPath>
|
|
246
|
-
<clipPath
|
|
247
|
-
clipPathUnits="userSpaceOnUse"
|
|
248
|
-
id="clipPath27-5">
|
|
249
|
-
<path
|
|
250
|
-
id="path28-0"
|
|
251
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
252
|
-
d="m 59.448396,117.38544 c -1.710994,0 -3.088494,1.37751 -3.088494,3.08851 v 99.47524 c 5.622398,-3.4823 11.886298,-6.4392 16.946499,-6.4392 12.306202,0 19.427002,17.4897 31.733399,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.3063,0 19.27831,17.7148 31.7333,17.4897 8.62408,-0.1558 20.51998,-9.2441 27.02142,-14.8198 v -95.70594 c 0,-1.711 -1.37742,-3.08851 -3.0885,-3.08851 z"
|
|
253
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
254
|
-
</clipPath>
|
|
255
|
-
<clipPath
|
|
256
|
-
clipPathUnits="userSpaceOnUse"
|
|
257
|
-
id="clipPath26-3">
|
|
258
|
-
<path
|
|
259
|
-
id="path27-6"
|
|
260
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
261
|
-
d="m 59.448396,117.38544 c -1.710996,0 -3.088495,1.37751 -3.088495,3.08851 v 99.47524 c 5.622399,-3.4823 11.886296,-6.4392 16.946502,-6.4392 12.3062,0 19.426995,17.4897 31.733397,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.42709,-17.4897 31.73343,-17.4897 12.30627,0 19.27825,17.7148 31.73324,17.4897 8.62415,-0.1558 20.52005,-9.2441 27.02143,-14.8198 v -95.70594 c 0,-1.711 -1.37738,-3.08851 -3.08849,-3.08851 z"
|
|
262
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
263
|
-
</clipPath>
|
|
264
|
-
<clipPath
|
|
265
|
-
clipPathUnits="userSpaceOnUse"
|
|
266
|
-
id="clipPath25-1">
|
|
267
|
-
<path
|
|
268
|
-
id="path26-0"
|
|
269
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
270
|
-
d="m 59.448396,117.38544 c -1.710996,0 -3.088495,1.37751 -3.088495,3.08851 v 99.47524 c 5.622399,-3.4823 11.886296,-6.4392 16.946502,-6.4392 12.3062,0 19.426995,17.4897 31.733397,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.42709,-17.4897 31.73343,-17.4897 12.30627,0 19.27825,17.7148 31.73324,17.4897 8.62415,-0.1558 20.52005,-9.2441 27.02143,-14.8198 v -95.70594 c 0,-1.711 -1.37738,-3.08851 -3.08849,-3.08851 z"
|
|
271
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
272
|
-
</clipPath>
|
|
273
|
-
<clipPath
|
|
274
|
-
clipPathUnits="userSpaceOnUse"
|
|
275
|
-
id="clipPath20-6">
|
|
276
|
-
<path
|
|
277
|
-
id="path21-3"
|
|
278
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
279
|
-
d="m 59.448399,117.38541 c -1.710999,0 -3.088499,1.3775 -3.088499,3.0885 v 99.4753 c 5.6224,-3.4823 11.8863,-6.4392 16.946501,-6.4392 12.306199,0 19.426999,17.4897 31.733399,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.3063,0 19.2783,17.7148 31.7333,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0214,-14.8198 v -95.706 c 0,-1.711 -1.3774,-3.0885 -3.0885,-3.0885 z"
|
|
280
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
281
|
-
</clipPath>
|
|
282
|
-
<clipPath
|
|
283
|
-
clipPathUnits="userSpaceOnUse"
|
|
284
|
-
id="clipPath39-2">
|
|
285
|
-
<path
|
|
286
|
-
id="path40-0"
|
|
287
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
288
|
-
d="m 59.448399,117.38541 c -1.711,0 -3.088499,1.3775 -3.088499,3.0885 v 99.4753 c 5.6224,-3.4823 11.8863,-6.4392 16.946501,-6.4392 12.306199,0 19.426999,17.4897 31.733399,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.3063,0 19.2783,17.7148 31.7333,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0214,-14.8198 v -95.706 c 0,-1.711 -1.3774,-3.0885 -3.0885,-3.0885 z"
|
|
289
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
290
|
-
</clipPath>
|
|
291
|
-
<clipPath
|
|
292
|
-
clipPathUnits="userSpaceOnUse"
|
|
293
|
-
id="clipPath18-61">
|
|
294
|
-
<path
|
|
295
|
-
id="path19-5"
|
|
296
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:15.0821;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
297
|
-
d="m -3334.2611,-1042.3606 c -27.8665,0 -50.3014,22.4349 -50.3014,50.30132 V 628.06067 c 91.5701,-56.71503 193.5881,-104.87302 276.0019,-104.87302 200.4268,0 316.4008,284.84871 516.8309,284.84871 200.4285,0 316.3976,-284.84871 516.8261,-284.84871 200.4301,0 316.3976,284.84871 516.826,284.84871 200.4285,0 316.4025,-284.84871 516.831,-284.84871 200.42847,0 313.97901,288.51483 516.82932,284.84871 140.45773,-2.53746 334.20219,-150.55547 440.08825,-241.36497 V -992.05928 c 0,-27.86642 -22.43323,-50.30132 -50.30133,-50.30132 z"
|
|
298
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
299
|
-
</clipPath>
|
|
300
|
-
<clipPath
|
|
301
|
-
clipPathUnits="userSpaceOnUse"
|
|
302
|
-
id="clipPath31-5">
|
|
303
|
-
<path
|
|
304
|
-
id="path32-4"
|
|
305
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
306
|
-
d="m 59.448396,117.38544 c -1.710994,0 -3.088494,1.37751 -3.088494,3.08851 v 99.47524 c 5.622398,-3.4823 11.886298,-6.4392 16.946499,-6.4392 12.306202,0 19.427002,17.4897 31.733399,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.3063,0 19.27831,17.7148 31.7333,17.4897 8.62408,-0.1558 20.51998,-9.2441 27.02142,-14.8198 v -95.70594 c 0,-1.711 -1.37742,-3.08851 -3.0885,-3.08851 z"
|
|
307
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
308
|
-
</clipPath>
|
|
309
|
-
<clipPath
|
|
310
|
-
clipPathUnits="userSpaceOnUse"
|
|
311
|
-
id="clipPath18-6">
|
|
312
|
-
<path
|
|
313
|
-
id="path19-2"
|
|
314
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:15.0821;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
315
|
-
d="m -3334.2611,-1042.3606 c -27.8665,0 -50.3014,22.4349 -50.3014,50.30132 V 628.06067 c 91.5701,-56.71503 193.5881,-104.87302 276.0019,-104.87302 200.4268,0 316.4008,284.84871 516.8309,284.84871 200.4285,0 316.3976,-284.84871 516.8261,-284.84871 200.4301,0 316.3976,284.84871 516.826,284.84871 200.4285,0 316.4025,-284.84871 516.831,-284.84871 200.42847,0 313.97901,288.51483 516.82932,284.84871 140.45773,-2.53746 334.20219,-150.55547 440.08825,-241.36497 V -992.05928 c 0,-27.86642 -22.43323,-50.30132 -50.30133,-50.30132 z"
|
|
316
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
317
|
-
</clipPath>
|
|
318
|
-
</defs>
|
|
319
|
-
<g
|
|
320
|
-
inkscape:label="Layer 1"
|
|
321
|
-
inkscape:groupmode="layer"
|
|
322
|
-
id="layer1"
|
|
323
|
-
transform="translate(83.079017,-39.1349)">
|
|
324
|
-
<g
|
|
325
|
-
id="g788"
|
|
326
|
-
transform="translate(-2897.1193,-980.27312)">
|
|
327
|
-
<rect
|
|
328
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.250095;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
329
|
-
id="breadcrumb"
|
|
330
|
-
width="169.33333"
|
|
331
|
-
height="104.96965"
|
|
332
|
-
x="2814.0403"
|
|
333
|
-
y="1019.408"
|
|
334
|
-
inkscape:export-filename="page-with-breadcrumb.png"
|
|
335
|
-
inkscape:export-xdpi="96"
|
|
336
|
-
inkscape:export-ydpi="96" />
|
|
337
|
-
<path
|
|
338
|
-
id="path391-4"
|
|
339
|
-
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0443053;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
340
|
-
d="m 2694.2611,364.76678 v 58.85376 h -195.1056 v -58.85376 z"
|
|
341
|
-
sodipodi:nodetypes="ccccc"
|
|
342
|
-
clip-path="url(#clipPath15-7)"
|
|
343
|
-
transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
|
|
344
|
-
<path
|
|
345
|
-
id="path392-9"
|
|
346
|
-
style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.269106;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
347
|
-
d="m 2514.5103,413.64927 h 164.3958 c 0.8555,0 1.5443,0.68874 1.5443,1.54427 v 8.427 H 2512.966 v -8.427 c 0,-0.85553 0.6888,-1.54427 1.5443,-1.54427 z"
|
|
348
|
-
sodipodi:nodetypes="sssccss"
|
|
349
|
-
clip-path="url(#clipPath14-3)"
|
|
350
|
-
transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
|
|
351
|
-
<circle
|
|
352
|
-
style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.634058;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:2.53623, 2.53623;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
|
353
|
-
id="circle392-0"
|
|
354
|
-
cx="2596.7083"
|
|
355
|
-
cy="378.46136"
|
|
356
|
-
r="7.1282477"
|
|
357
|
-
clip-path="url(#clipPath13-6)"
|
|
358
|
-
transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
|
|
359
|
-
<rect
|
|
360
|
-
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.0949105;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
361
|
-
id="rect392-2"
|
|
362
|
-
width="87.06076"
|
|
363
|
-
height="2.8393915"
|
|
364
|
-
x="2553.178"
|
|
365
|
-
y="390.21576"
|
|
366
|
-
ry="0.99683934"
|
|
367
|
-
rx="0.99683934"
|
|
368
|
-
clip-path="url(#clipPath12-9)"
|
|
369
|
-
transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
|
|
370
|
-
<rect
|
|
371
|
-
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.0949105;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
372
|
-
id="rect396-6"
|
|
373
|
-
width="87.06076"
|
|
374
|
-
height="2.8393915"
|
|
375
|
-
x="2553.178"
|
|
376
|
-
y="396.854"
|
|
377
|
-
ry="0.99683934"
|
|
378
|
-
rx="0.99683934"
|
|
379
|
-
clip-path="url(#clipPath11-2)"
|
|
380
|
-
transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
|
|
381
|
-
<rect
|
|
382
|
-
style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.29045;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
383
|
-
id="rect397-2"
|
|
384
|
-
width="195.10553"
|
|
385
|
-
height="11.515541"
|
|
386
|
-
x="2499.1555"
|
|
387
|
-
y="355.19144"
|
|
388
|
-
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
389
|
-
inkscape:export-xdpi="96"
|
|
390
|
-
inkscape:export-ydpi="96"
|
|
391
|
-
clip-path="url(#clipPath10-0)"
|
|
392
|
-
transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
|
|
393
|
-
<path
|
|
394
|
-
d="m 83.116128,128.90146 c 0.513904,0 0.939347,-0.18534 1.217361,-0.52654 l -0.438082,-0.40438 c -0.197979,0.23168 -0.446506,0.34962 -0.741368,0.34962 -0.551814,0 -0.943559,-0.38753 -0.943559,-0.94356 0,-0.55602 0.391745,-0.94356 0.943559,-0.94356 0.294862,0 0.543389,0.11795 0.741368,0.34541 l 0.438082,-0.40438 c -0.278014,-0.33698 -0.703457,-0.52233 -1.213148,-0.52233 -0.918285,0 -1.600681,0.63606 -1.600681,1.52486 0,0.8888 0.682396,1.52486 1.596468,1.52486 z"
|
|
395
|
-
id="path397-0"
|
|
396
|
-
style="font-weight:bold;font-size:29.9666px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro Bold';fill:#f6edf4;fill-opacity:1;stroke-width:0.401174"
|
|
397
|
-
clip-path="url(#clipPath38-3)"
|
|
398
|
-
transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
|
|
399
|
-
<path
|
|
400
|
-
d="m 86.886149,127.72623 c 0,-0.72873 -0.513902,-1.17524 -1.17945,-1.17524 -0.69082,0 -1.208935,0.48863 -1.208935,1.16681 0,0.67397 0.509691,1.16681 1.293181,1.16681 0.408595,0 0.72452,-0.12637 0.935136,-0.36647 l -0.349623,-0.37911 c -0.155855,0.14743 -0.32856,0.21904 -0.568663,0.21904 -0.34541,0 -0.585513,-0.1727 -0.648698,-0.45493 h 1.714415 c 0.0042,-0.0548 0.01264,-0.12637 0.01264,-0.17691 z m -1.175237,-0.67819 c 0.294862,0 0.509691,0.18534 0.556026,0.47178 h -1.116265 c 0.04633,-0.29065 0.261164,-0.47178 0.560239,-0.47178 z"
|
|
401
|
-
id="path398-7"
|
|
402
|
-
style="font-weight:bold;font-size:29.9666px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro Bold';fill:#f6edf4;fill-opacity:1;stroke-width:0.401174"
|
|
403
|
-
clip-path="url(#clipPath37-0)"
|
|
404
|
-
transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
|
|
405
|
-
<path
|
|
406
|
-
d="m 88.701652,126.55099 c -0.307499,0 -0.572874,0.10531 -0.749792,0.29907 v -0.26537 h -0.627635 v 2.26623 h 0.657122 v -1.12048 c 0,-0.41702 0.227464,-0.61079 0.543389,-0.61079 0.290649,0 0.459142,0.1685 0.459142,0.53497 v 1.1963 H 89.641 v -1.2974 c 0,-0.69082 -0.404383,-1.00253 -0.939348,-1.00253 z"
|
|
407
|
-
id="path399-3"
|
|
408
|
-
style="font-weight:bold;font-size:29.9666px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro Bold';fill:#f6edf4;fill-opacity:1;stroke-width:0.401174"
|
|
409
|
-
clip-path="url(#clipPath36-2)"
|
|
410
|
-
transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
|
|
411
|
-
<path
|
|
412
|
-
d="m 91.519694,128.27804 c -0.07161,0.0548 -0.168492,0.0842 -0.265377,0.0842 -0.176916,0 -0.282225,-0.10531 -0.282225,-0.29908 v -0.9225 h 0.564452 v -0.50547 h -0.564452 v -0.55182 H 90.31497 v 0.55182 h -0.349622 v 0.50547 h 0.349622 v 0.93093 c 0,0.53917 0.311712,0.81297 0.846677,0.81297 0.202192,0 0.400171,-0.0463 0.534965,-0.14321 z"
|
|
413
|
-
id="path400-1"
|
|
414
|
-
style="font-weight:bold;font-size:29.9666px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro Bold';fill:#f6edf4;fill-opacity:1;stroke-width:0.401174"
|
|
415
|
-
clip-path="url(#clipPath35-1)"
|
|
416
|
-
transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
|
|
417
|
-
<path
|
|
418
|
-
d="m 93.541605,128.90146 c 0.926711,0 1.613318,-0.64448 1.613318,-1.52486 0,-0.88037 -0.686607,-1.52486 -1.613318,-1.52486 -0.930922,0 -1.613318,0.6487 -1.613318,1.52486 0,0.87617 0.682396,1.52486 1.613318,1.52486 z m 0,-0.5813 c -0.52654,0 -0.922498,-0.38332 -0.922498,-0.94356 0,-0.56023 0.395958,-0.94356 0.922498,-0.94356 0.52654,0 0.922498,0.38333 0.922498,0.94356 0,0.56024 -0.395958,0.94356 -0.922498,0.94356 z"
|
|
419
|
-
id="path401-1"
|
|
420
|
-
style="font-weight:bold;font-size:29.9666px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro Bold';fill:#f6edf4;fill-opacity:1;stroke-width:0.401174"
|
|
421
|
-
clip-path="url(#clipPath34-7)"
|
|
422
|
-
transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
|
|
423
|
-
<path
|
|
424
|
-
d="m 96.637659,128.90146 c 0.842464,0 1.251059,-0.42123 1.251059,-0.91407 0,-1.08257 -1.714415,-0.70767 -1.714415,-1.25106 0,-0.18534 0.155855,-0.33698 0.560239,-0.33698 0.261164,0 0.543389,0.0758 0.81719,0.23167 l 0.210616,-0.51811 c -0.273801,-0.17271 -0.652909,-0.26117 -1.023593,-0.26117 -0.838253,0 -1.242635,0.41702 -1.242635,0.91829 0,1.0952 1.714413,0.71609 1.714413,1.26791 0,0.18113 -0.164279,0.31592 -0.568663,0.31592 -0.353834,0 -0.724518,-0.12637 -0.973045,-0.3075 l -0.231677,0.51391 c 0.261163,0.20219 0.732942,0.34119 1.200511,0.34119 z"
|
|
425
|
-
id="path402-9"
|
|
426
|
-
style="font-weight:bold;font-size:29.9666px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro Bold';fill:#f6edf4;fill-opacity:1;stroke-width:0.401174"
|
|
427
|
-
clip-path="url(#clipPath33-2)"
|
|
428
|
-
transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
|
|
429
|
-
<path
|
|
430
|
-
id="path403-5"
|
|
431
|
-
style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.764537;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
432
|
-
d="m 77.489859,124.33454 a 3.0496839,3.0497585 45 0 0 -1.938694,0.88554 3.0496839,3.0497585 45 0 0 -2.85e-4,4.31306 3.0496839,3.0497585 45 0 0 4.313064,0 3.0496839,3.0497585 45 0 0 0,-4.31306 3.0496839,3.0497585 45 0 0 -2.374085,-0.88554 z m 0.217554,0.73407 0.676203,0.6762 h 0.955874 v 0.95588 l 0.67592,0.67592 -0.67592,0.67592 v 0.95615 l -0.955875,1e-5 -0.676168,0.67595 -0.67592,-0.67592 h -0.955875 v -0.95616 l -0.675919,-0.67592 0.675919,-0.67592 10e-7,-0.95587 h 0.955874 z m -0.205075,0.69237 v 0.69237 l 0.205108,0.20533 0.205323,-0.20511 v -0.69266 z m -0.792212,0.32818 -0.289917,0.29013 0.489567,0.48956 h 0.290166 v -0.29016 z m 1.994572,0 -0.489566,0.48956 v 0.29017 h 0.290166 l 0.489566,-0.48957 z m -0.806114,0.82568 -0.191172,0.19486 -0.191172,-0.19458 0.0026,0.27258 -0.272864,-0.002 0.194583,0.19117 -0.194574,0.19146 0.272864,-0.003 -0.0026,0.27286 0.191463,-0.19457 0.191179,0.19429 -0.0026,-0.27258 0.272863,0.002 -0.194581,-0.19117 0.194581,-0.19117 -0.272863,0.002 z m -1.806516,0.25669 -10e-7,0.41015 h 0.692371 l 0.205073,-0.20507 -0.205073,-0.20508 z m 2.538598,0 -0.205074,0.20508 0.205072,0.20507 h 0.692371 v -0.41015 z m -1.720858,0.7128 -0.489815,0.4896 0.290166,0.29016 0.489566,-0.48956 v -0.29017 z m 1.305322,-1e-5 -10e-7,0.29017 0.489566,0.48957 0.290167,-0.29017 -0.489566,-0.48957 z m -0.50772,0.21018 -0.205109,0.20533 -10e-7,0.69237 h 0.410431 v -0.69238 z"
|
|
433
|
-
clip-path="url(#clipPath40-2)"
|
|
434
|
-
transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
|
|
435
|
-
<rect
|
|
436
|
-
style="fill:#ecdce8;fill-opacity:1;stroke:#d9b9d1;stroke-width:0.145225;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
437
|
-
id="rect404-6"
|
|
438
|
-
width="9.556036"
|
|
439
|
-
height="6.0348539"
|
|
440
|
-
x="2670.1716"
|
|
441
|
-
y="357.93179"
|
|
442
|
-
rx="0.72612405"
|
|
443
|
-
ry="0.72612405"
|
|
444
|
-
clip-path="url(#clipPath8-7)"
|
|
445
|
-
transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
|
|
446
|
-
<path
|
|
447
|
-
style="fill:none;stroke:#d9b9d1;stroke-width:0.435674;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
448
|
-
d="m 232.48314,125.97153 h 6.87046"
|
|
449
|
-
id="path404-7"
|
|
450
|
-
clip-path="url(#clipPath24-9)"
|
|
451
|
-
transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
|
|
452
|
-
<path
|
|
453
|
-
style="fill:none;stroke:#d9b9d1;stroke-width:0.435674;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
454
|
-
d="m 232.48314,127.37659 h 6.87046"
|
|
455
|
-
id="path405-4"
|
|
456
|
-
clip-path="url(#clipPath23-2)"
|
|
457
|
-
transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
|
|
458
|
-
<path
|
|
459
|
-
style="fill:none;stroke:#d9b9d1;stroke-width:0.435674;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
460
|
-
d="m 232.48314,128.78165 h 6.87046"
|
|
461
|
-
id="path406-0"
|
|
462
|
-
clip-path="url(#clipPath22-9)"
|
|
463
|
-
transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
|
|
464
|
-
<path
|
|
465
|
-
style="fill:none;stroke:#d9b9d1;stroke-width:0.145225px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
466
|
-
d="m 2539.0625,357.24501 v 7.40839"
|
|
467
|
-
id="path407-6"
|
|
468
|
-
clip-path="url(#clipPath6-3)"
|
|
469
|
-
transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
|
|
470
|
-
<rect
|
|
471
|
-
style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.219454;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
472
|
-
id="rect407-4"
|
|
473
|
-
width="17.842903"
|
|
474
|
-
height="5.7480888"
|
|
475
|
-
x="2587.7869"
|
|
476
|
-
y="404.58148"
|
|
477
|
-
rx="2.4818907"
|
|
478
|
-
ry="2.4818907"
|
|
479
|
-
clip-path="url(#clipPath4-1)"
|
|
480
|
-
transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
|
|
481
|
-
<rect
|
|
482
|
-
style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:0.0549183;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
483
|
-
id="rect408-5"
|
|
484
|
-
width="18.290436"
|
|
485
|
-
height="4.3567443"
|
|
486
|
-
x="74.033859"
|
|
487
|
-
y="192.82527"
|
|
488
|
-
rx="0.72612411"
|
|
489
|
-
ry="0.72612411"
|
|
490
|
-
clip-path="url(#clipPath32-9)"
|
|
491
|
-
transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
|
|
492
|
-
<rect
|
|
493
|
-
style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:0.0549183;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
494
|
-
id="rect409-2"
|
|
495
|
-
width="18.290436"
|
|
496
|
-
height="4.3567443"
|
|
497
|
-
x="95.711349"
|
|
498
|
-
y="192.82527"
|
|
499
|
-
rx="0.72612411"
|
|
500
|
-
ry="0.72612411"
|
|
501
|
-
clip-path="url(#clipPath30-1)"
|
|
502
|
-
transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
|
|
503
|
-
<rect
|
|
504
|
-
style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:0.0549183;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
505
|
-
id="rect410-6"
|
|
506
|
-
width="18.290436"
|
|
507
|
-
height="4.3567443"
|
|
508
|
-
x="117.38888"
|
|
509
|
-
y="192.82527"
|
|
510
|
-
rx="0.72612411"
|
|
511
|
-
ry="0.72612411"
|
|
512
|
-
clip-path="url(#clipPath29-4)"
|
|
513
|
-
transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
|
|
514
|
-
<path
|
|
515
|
-
style="fill:none;stroke:#a14f8c;stroke-width:0.435674;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
516
|
-
d="m 93.5249,194.106 0.933603,0.89865 -0.863686,0.89865"
|
|
517
|
-
id="path410-0"
|
|
518
|
-
sodipodi:nodetypes="ccc"
|
|
519
|
-
clip-path="url(#clipPath28-8)"
|
|
520
|
-
transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
|
|
521
|
-
<path
|
|
522
|
-
style="fill:none;stroke:#a14f8c;stroke-width:0.435674;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
523
|
-
d="m 115.20241,194.106 0.9336,0.89865 -0.86369,0.89865"
|
|
524
|
-
id="path411-6"
|
|
525
|
-
sodipodi:nodetypes="ccc"
|
|
526
|
-
clip-path="url(#clipPath27-5)"
|
|
527
|
-
transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
|
|
528
|
-
<rect
|
|
529
|
-
style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.167923;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
530
|
-
id="rect411-4"
|
|
531
|
-
width="167.48431"
|
|
532
|
-
height="16.320366"
|
|
533
|
-
x="73.93502"
|
|
534
|
-
y="199.9595"
|
|
535
|
-
rx="2.9044964"
|
|
536
|
-
ry="2.9044964"
|
|
537
|
-
clip-path="url(#clipPath26-3)"
|
|
538
|
-
transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
|
|
539
|
-
<path
|
|
540
|
-
d="m 158.67747,204.80618 v 0.62518 c 0,0.13813 -0.11196,0.25008 -0.25008,0.25008 h -4.0012 c -0.13812,0 -0.25007,-0.11195 -0.25007,-0.25008 v -0.62518 c 0,-0.13813 0.11195,-0.25008 0.25007,-0.25008 h 4.0012 c 0.13812,0 0.25008,0.11195 0.25008,0.25008 z m -4.50135,2.0006 v 0.62518 c 0,0.13812 0.11195,0.25008 0.25007,0.25008 h 6.50196 c 0.13811,0 0.25007,-0.11196 0.25007,-0.25008 v -0.62518 c 0,-0.13812 -0.11196,-0.25008 -0.25007,-0.25008 h -6.50196 c -0.13812,0 -0.25007,0.11196 -0.25007,0.25008 z m 0.25007,4.87646 h 6.50196 c 0.13811,0 0.25007,-0.11195 0.25007,-0.25007 v -0.62519 c 0,-0.13812 -0.11196,-0.25008 -0.25007,-0.25008 h -6.50196 c -0.13812,0 -0.25007,0.11196 -0.25007,0.25008 v 0.62519 c 0,0.13812 0.11195,0.25007 0.25007,0.25007 z m 4.0012,-3.12594 h -4.0012 c -0.13812,0 -0.25007,0.11196 -0.25007,0.25008 v 0.62519 c 0,0.13811 0.11195,0.25007 0.25007,0.25007 h 4.0012 c 0.13812,0 0.25008,-0.11196 0.25008,-0.25007 v -0.62519 c 0,-0.13812 -0.11196,-0.25008 -0.25008,-0.25008 z"
|
|
541
|
-
id="path412-6"
|
|
542
|
-
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0156297"
|
|
543
|
-
clip-path="url(#clipPath25-1)"
|
|
544
|
-
transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
|
|
545
|
-
<rect
|
|
546
|
-
style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.145225;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
547
|
-
id="rect600-5"
|
|
548
|
-
width="167.48418"
|
|
549
|
-
height="16.320353"
|
|
550
|
-
x="73.935005"
|
|
551
|
-
y="219.0573"
|
|
552
|
-
rx="2.904494"
|
|
553
|
-
ry="2.904494"
|
|
554
|
-
clip-path="url(#clipPath20-6)"
|
|
555
|
-
transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
|
|
556
|
-
<path
|
|
557
|
-
d="m 158.67745,223.90402 v 0.62518 c 0,0.13812 -0.11195,0.25008 -0.25007,0.25008 h -4.0012 c -0.13812,0 -0.25008,-0.11196 -0.25008,-0.25008 v -0.62518 c 0,-0.13812 0.11196,-0.25008 0.25008,-0.25008 h 4.0012 c 0.13812,0 0.25007,0.11196 0.25007,0.25008 z m -4.50135,2.0006 v 0.62518 c 0,0.13812 0.11196,0.25008 0.25008,0.25008 h 6.50195 c 0.13812,0 0.25007,-0.11196 0.25007,-0.25008 v -0.62518 c 0,-0.13812 -0.11195,-0.25008 -0.25007,-0.25008 h -6.50195 c -0.13812,0 -0.25008,0.11196 -0.25008,0.25008 z m 0.25008,4.87646 h 6.50195 c 0.13812,0 0.25007,-0.11196 0.25007,-0.25008 v -0.62518 c 0,-0.13812 -0.11195,-0.25008 -0.25007,-0.25008 h -6.50195 c -0.13812,0 -0.25008,0.11196 -0.25008,0.25008 v 0.62518 c 0,0.13812 0.11196,0.25008 0.25008,0.25008 z m 4.0012,-3.12594 h -4.0012 c -0.13812,0 -0.25008,0.11196 -0.25008,0.25008 v 0.62518 c 0,0.13812 0.11196,0.25008 0.25008,0.25008 h 4.0012 c 0.13812,0 0.25007,-0.11196 0.25007,-0.25008 v -0.62518 c 0,-0.13812 -0.11195,-0.25008 -0.25007,-0.25008 z"
|
|
558
|
-
id="path601-2"
|
|
559
|
-
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0156297"
|
|
560
|
-
clip-path="url(#clipPath39-2)"
|
|
561
|
-
transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
|
|
562
|
-
<path
|
|
563
|
-
sodipodi:type="star"
|
|
564
|
-
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"
|
|
565
|
-
id="path602-9"
|
|
566
|
-
inkscape:flatsided="false"
|
|
567
|
-
sodipodi:sides="3"
|
|
568
|
-
sodipodi:cx="-499.8125"
|
|
569
|
-
sodipodi:cy="737.32031"
|
|
570
|
-
sodipodi:r1="36.465179"
|
|
571
|
-
sodipodi:r2="18.23259"
|
|
572
|
-
sodipodi:arg1="1.5707963"
|
|
573
|
-
sodipodi:arg2="2.6179939"
|
|
574
|
-
inkscape:rounded="0"
|
|
575
|
-
inkscape:randomized="0"
|
|
576
|
-
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"
|
|
577
|
-
transform="matrix(0.05075683,0,0,0.05075683,2986.7418,1073.4576)"
|
|
578
|
-
inkscape:transform-center-y="1.0197809"
|
|
579
|
-
inkscape:transform-center-x="-6.518711e-05"
|
|
580
|
-
clip-path="url(#clipPath18-61)" />
|
|
581
|
-
<path
|
|
582
|
-
id="path664"
|
|
583
|
-
style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.765518;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
584
|
-
d="m 2817.5053,1020.5506 c -1.4145,0 -2.5532,1.1387 -2.5532,2.5532 v 82.232 c 4.6478,-2.8786 9.8259,-5.323 14.009,-5.323 10.173,0 16.0595,14.458 26.2327,14.458 10.1731,0 16.0593,-14.458 26.2325,-14.458 10.1731,0 16.0594,14.458 26.2324,14.458 10.1732,0 16.0597,-14.458 26.2328,-14.458 10.1731,0 15.9365,14.6441 26.2324,14.458 7.1293,-0.1288 16.9631,-7.6417 22.3377,-12.2509 v -79.1161 c 0,-1.4145 -1.1387,-2.5532 -2.5531,-2.5532 z"
|
|
585
|
-
sodipodi:nodetypes="sscsssssscsss" />
|
|
586
|
-
<path
|
|
587
|
-
id="path12-5"
|
|
588
|
-
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"
|
|
589
|
-
d="m 2982.2914,1123.3928 v -18.8214 c -5.3636,4.5997 -15.1774,12.0973 -22.2921,12.226 -10.2752,0.1856 -16.0267,-14.4289 -26.1791,-14.4289 -10.1526,0 -16.0274,14.4289 -26.1799,14.4289 -10.1524,0 -16.0268,-14.4289 -26.1792,-14.4289 -10.1525,0 -16.0265,14.4289 -26.1789,14.4289 -10.1528,0 -16.0273,-14.4289 -26.1796,-14.4289 -4.1747,0 -9.3419,2.4396 -13.9804,5.3123 v 15.712"
|
|
590
|
-
sodipodi:nodetypes="ccsssssscc" />
|
|
591
|
-
<g
|
|
592
|
-
id="g6"
|
|
593
|
-
transform="translate(-3.9638617)">
|
|
594
|
-
<path
|
|
595
|
-
d="m 234.05916,193.5514 c 0,-0.4005 0.3256,-0.72612 0.72617,-0.72612 h 2.17829 0.5446 0.18157 16.87833 c 0.40046,0 0.72606,0.32562 0.72606,0.72612 v 2.9045 c 0,0.4005 -0.3256,0.72612 -0.72606,0.72612 h -16.87833 -0.18157 -0.5446 -2.17829 c -0.40057,0 -0.72617,-0.32562 -0.72617,-0.72612 z m 3.63063,0 v 2.9045 h 2.90452 v -2.9045 z m -1.60767,0.54346 c -0.0362,-0.0817 -0.11801,-0.13501 -0.20764,-0.13501 -0.0896,0 -0.17136,0.0533 -0.20765,0.13501 l -0.72617,1.63377 c -0.051,0.1146 0,0.24848 0.11576,0.29953 0.11461,0.0511 0.24848,-0.001 0.29953,-0.11572 l 0.10099,-0.22805 h 0.83507 l 0.10099,0.22805 c 0.0511,0.11458 0.18492,0.16564 0.29947,0.11572 0.11461,-0.0499 0.16566,-0.18493 0.11576,-0.29953 z m -0.20764,0.6501 0.21554,0.4856 h -0.43109 z m 3.26754,-0.78511 c 0.12482,0 0.22691,0.10211 0.22691,0.22691 v 0.0454 h 0.49921 0.18157 c 0.12476,0 0.2269,0.10212 0.2269,0.22692 0,0.1248 -0.10214,0.22691 -0.2269,0.22691 h -0.0231 l -0.0181,0.0511 c -0.10099,0.27683 -0.25413,0.52871 -0.44926,0.742 0.0104,0.007 0.0203,0.0125 0.0307,0.0182 l 0.21445,0.12821 c 0.10774,0.0647 0.14177,0.20422 0.0783,0.31087 -0.0636,0.10665 -0.20424,0.14182 -0.31089,0.0783 l -0.21439,-0.1282 c -0.0511,-0.0306 -0.0999,-0.0624 -0.1487,-0.0964 -0.1202,0.0851 -0.24842,0.15884 -0.38569,0.22011 l -0.0406,0.0182 c -0.11455,0.0511 -0.24848,-0.001 -0.29947,-0.11573 -0.0511,-0.11459 0,-0.24847 0.1157,-0.29953 l 0.0406,-0.0182 c 0.0726,-0.0329 0.14293,-0.0692 0.20995,-0.11119 l -0.13849,-0.13842 c -0.0885,-0.0885 -0.0885,-0.23258 0,-0.32108 0.0885,-0.0885 0.23257,-0.0885 0.3211,0 l 0.16565,0.16565 0.006,0.006 c 0.14068,-0.14863 0.25528,-0.32108 0.33811,-0.51055 h -0.39942 -0.81684 c -0.12482,0 -0.22697,-0.10211 -0.22697,-0.22691 0,-0.12481 0.10215,-0.22692 0.22697,-0.22692 h 0.58999 v -0.0454 c 0,-0.1248 0.10203,-0.22692 0.22685,-0.22692 z"
|
|
596
|
-
id="path408-8"
|
|
597
|
-
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.0113456"
|
|
598
|
-
clip-path="url(#clipPath31-5)"
|
|
599
|
-
transform="matrix(0.82665905,0,0,0.82665905,2760.4923,923.51292)"
|
|
600
|
-
sodipodi:nodetypes="sscccsssscccsssccccccscccccccccccccccsccsssccccccccccccccccssccccssscscc" />
|
|
601
|
-
<rect
|
|
602
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264572;stroke-linejoin:round;stroke-dasharray:none"
|
|
603
|
-
id="rect3-2"
|
|
604
|
-
width="6.7305856"
|
|
605
|
-
height="1.1906738"
|
|
606
|
-
x="2960.95"
|
|
607
|
-
y="1084.1317"
|
|
608
|
-
rx="0.52914494"
|
|
609
|
-
ry="0.52914494" />
|
|
610
|
-
<path
|
|
611
|
-
sodipodi:type="star"
|
|
612
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:18.7602;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
|
613
|
-
id="path602-9-2"
|
|
614
|
-
inkscape:flatsided="false"
|
|
615
|
-
sodipodi:sides="3"
|
|
616
|
-
sodipodi:cx="-499.8125"
|
|
617
|
-
sodipodi:cy="737.32031"
|
|
618
|
-
sodipodi:r1="36.465179"
|
|
619
|
-
sodipodi:r2="18.23259"
|
|
620
|
-
sodipodi:arg1="1.5707963"
|
|
621
|
-
sodipodi:arg2="2.6179939"
|
|
622
|
-
inkscape:rounded="0"
|
|
623
|
-
inkscape:randomized="0"
|
|
624
|
-
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"
|
|
625
|
-
transform="matrix(0.02176734,0,0,0.02176734,2981.0119,1068.4791)"
|
|
626
|
-
inkscape:transform-center-y="0.43727202"
|
|
627
|
-
inkscape:transform-center-x="4.3705878e-05"
|
|
628
|
-
clip-path="url(#clipPath18-6)" />
|
|
629
|
-
</g>
|
|
630
|
-
<rect
|
|
631
|
-
style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.219454;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
632
|
-
id="rect6"
|
|
633
|
-
width="17.842903"
|
|
634
|
-
height="5.7480888"
|
|
635
|
-
x="2587.7869"
|
|
636
|
-
y="404.58148"
|
|
637
|
-
rx="2.4818907"
|
|
638
|
-
ry="2.4818907"
|
|
639
|
-
clip-path="url(#clipPath4-1)"
|
|
640
|
-
transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
|
|
641
|
-
<rect
|
|
642
|
-
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.219454;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
643
|
-
id="rect7"
|
|
644
|
-
width="17.842903"
|
|
645
|
-
height="5.7480888"
|
|
646
|
-
x="2587.7869"
|
|
647
|
-
y="404.58148"
|
|
648
|
-
rx="2.4818907"
|
|
649
|
-
ry="2.4818907"
|
|
650
|
-
clip-path="url(#clipPath4-1)"
|
|
651
|
-
transform="matrix(0.82665905,0,0,0.82665905,752.1143,739.66949)" />
|
|
652
|
-
<rect
|
|
653
|
-
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.219454;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
654
|
-
id="rect8"
|
|
655
|
-
width="17.842903"
|
|
656
|
-
height="5.7480888"
|
|
657
|
-
x="2587.7869"
|
|
658
|
-
y="404.58148"
|
|
659
|
-
rx="2.4818907"
|
|
660
|
-
ry="2.4818907"
|
|
661
|
-
clip-path="url(#clipPath4-1)"
|
|
662
|
-
transform="matrix(0.82665905,0,0,0.82665905,734.71845,739.66949)" />
|
|
663
|
-
<rect
|
|
664
|
-
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.219454;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
665
|
-
id="rect9"
|
|
666
|
-
width="17.842903"
|
|
667
|
-
height="5.7480888"
|
|
668
|
-
x="2587.7869"
|
|
669
|
-
y="404.58148"
|
|
670
|
-
rx="2.4818907"
|
|
671
|
-
ry="2.4818907"
|
|
672
|
-
clip-path="url(#clipPath4-1)"
|
|
673
|
-
transform="matrix(0.82665905,0,0,0.82665905,769.51015,739.66949)" />
|
|
674
|
-
</g>
|
|
675
|
-
</g>
|
|
676
|
-
</svg>
|