@icij/murmur-next 4.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.
- package/.github/workflows/deploy-github-pages.yaml +50 -0
- package/.storybook/app.scss +14 -0
- package/.storybook/doc_variables.scss +20 -0
- package/.storybook/main.ts +35 -0
- package/.storybook/preview-head.html +2 -0
- package/.storybook/preview.ts +32 -0
- package/README.md +71 -0
- package/deploy.js +15 -0
- package/docs/components/ApiTable.vue +171 -0
- package/docs/components/App.vue +146 -0
- package/docs/components/CollapsibleBlock.vue +122 -0
- package/docs/components/DocsHeader.vue +68 -0
- package/docs/components/DocsMenu.vue +201 -0
- package/docs/components/DocsMenuSection.vue +109 -0
- package/docs/components/EditLink.vue +49 -0
- package/docs/components/OutboundLink.vue +13 -0
- package/docs/components/PalettePresenter.vue +96 -0
- package/docs/components/RepositoryLink.vue +28 -0
- package/docs/components/SampleCard.vue +119 -0
- package/docs/main.js +42 -0
- package/docs/pages/components/accordion/doc.md +96 -0
- package/docs/pages/components/active-text-truncate/doc.md +44 -0
- package/docs/pages/components/advanced-link-form/doc.md +105 -0
- package/docs/pages/components/brand/doc.md +30 -0
- package/docs/pages/components/brand-expansion/doc.md +70 -0
- package/docs/pages/components/confirm-button/doc.md +91 -0
- package/docs/pages/components/content-placeholder/doc.md +16 -0
- package/docs/pages/components/custom-pagination/doc.md +61 -0
- package/docs/pages/components/digits-input/doc.md +28 -0
- package/docs/pages/components/donate-form/doc.md +20 -0
- package/docs/pages/components/embed-form/doc.md +22 -0
- package/docs/pages/components/embeddable-footer/doc.md +60 -0
- package/docs/pages/components/follow-us-popover/doc.md +5 -0
- package/docs/pages/components/generic-footer/doc.md +21 -0
- package/docs/pages/components/generic-header/doc.md +24 -0
- package/docs/pages/components/haptic-copy/doc.md +27 -0
- package/docs/pages/components/imddb-header/doc.md +23 -0
- package/docs/pages/components/ordinal-legend/doc.md +44 -0
- package/docs/pages/components/range-picker/doc.md +86 -0
- package/docs/pages/components/responsive-iframe/doc.md +13 -0
- package/docs/pages/components/scale-legend/doc.md +65 -0
- package/docs/pages/components/secret-input/doc.md +12 -0
- package/docs/pages/components/selectable-dropdown/doc.md +156 -0
- package/docs/pages/components/sharing-options/doc.md +13 -0
- package/docs/pages/components/sharing-options-link/doc.md +36 -0
- package/docs/pages/components/sign-up-form/doc.md +13 -0
- package/docs/pages/components/slide-up-down/doc.md +28 -0
- package/docs/pages/components/textured-deck/doc.md +78 -0
- package/docs/pages/components/tiny-pagination/doc.md +92 -0
- package/docs/pages/datavisualisation/bars/doc.md +110 -0
- package/docs/pages/datavisualisation/columns/doc.md +165 -0
- package/docs/pages/datavisualisation/lines/doc.md +139 -0
- package/docs/pages/datavisualisation/stacked-bar/doc.md +160 -0
- package/docs/pages/datavisualisation/stacked-column/doc.md +191 -0
- package/docs/pages/getting-started/about-icij/doc.md +13 -0
- package/docs/pages/getting-started/custom-bootstrap/doc.md +36 -0
- package/docs/pages/getting-started/installation-guide/doc.md +59 -0
- package/docs/pages/getting-started/internationalization/doc.md +74 -0
- package/docs/pages/maps/choropleth-map/doc.md +420 -0
- package/docs/pages/maps/choropleth-map-annotation/doc.md +373 -0
- package/docs/pages/maps/symbol-map/doc.md +203 -0
- package/docs/pages/structure/breakpoints/doc.md +3 -0
- package/docs/pages/structure/grid/doc.md +3 -0
- package/docs/pages/utilities/assets/doc.md +138 -0
- package/docs/pages/utilities/config/doc.md +52 -0
- package/docs/pages/utilities/iframes/doc.md +3 -0
- package/docs/pages/visual/colors/doc.md +31 -0
- package/docs/pages/visual/iconography/doc.md +56 -0
- package/docs/pages/visual/states/doc.md +77 -0
- package/docs/pages/visual/themes/doc.md +3 -0
- package/docs/pages/visual/typography/doc.md +71 -0
- package/docs/routes.js +25 -0
- package/docs/store/index.js +21 -0
- package/docs/styles/app.scss +36 -0
- package/docs/styles/variables.scss +20 -0
- package/lib/assets/images/icij-full-white.svg +6 -0
- package/lib/assets/images/icij-full.svg +6 -0
- package/lib/assets/images/icij.png +0 -0
- package/lib/assets/images/icij.svg +46 -0
- package/lib/assets/images/icij@2x.png +0 -0
- package/lib/assets/images/murmur-dark.png +0 -0
- package/lib/assets/images/murmur-dark.svg +79 -0
- package/lib/assets/images/murmur-white.png +0 -0
- package/lib/assets/images/murmur-white.svg +68 -0
- package/lib/components/AccordionStep.vue +128 -0
- package/lib/components/AccordionWrapper.vue +138 -0
- package/lib/components/ActiveTextTruncate.vue +258 -0
- package/lib/components/AdvancedLinkForm.vue +273 -0
- package/lib/components/Brand.vue +150 -0
- package/lib/components/BrandExpansion.vue +237 -0
- package/lib/components/ConfirmButton.vue +204 -0
- package/lib/components/ContentPlaceholder.vue +100 -0
- package/lib/components/CustomPagination.vue +225 -0
- package/lib/components/DigitsInput.vue +180 -0
- package/lib/components/DonateForm.vue +367 -0
- package/lib/components/EmbedForm.vue +173 -0
- package/lib/components/EmbeddableFooter.vue +201 -0
- package/lib/components/Fa.js +3 -0
- package/lib/components/FollowUsPopover.vue +117 -0
- package/lib/components/GenericFooter.vue +218 -0
- package/lib/components/GenericHeader.vue +259 -0
- package/lib/components/HapticCopy.vue +256 -0
- package/lib/components/ImddbHeader.vue +336 -0
- package/lib/components/OrdinalLegend.vue +164 -0
- package/lib/components/RangePicker.vue +430 -0
- package/lib/components/ResponsiveIframe.vue +48 -0
- package/lib/components/ScaleLegend.vue +230 -0
- package/lib/components/SecretInput.vue +132 -0
- package/lib/components/SelectableDropdown.vue +368 -0
- package/lib/components/SharingOptions.vue +230 -0
- package/lib/components/SharingOptionsLink.vue +259 -0
- package/lib/components/SignUpForm.vue +181 -0
- package/lib/components/SlideUpDown.vue +131 -0
- package/lib/components/TexturedDeck.vue +101 -0
- package/lib/components/TinyPagination.vue +268 -0
- package/lib/components/index.js +31 -0
- package/lib/composables/chart.ts +182 -0
- package/lib/composables/resizeObserver.ts +37 -0
- package/lib/composables/sendEmail.ts +50 -0
- package/lib/config.default.ts +33 -0
- package/lib/config.ts +70 -0
- package/lib/d3-geo-projection.d.ts +1 -0
- package/lib/datavisualisations/BarChart.vue +275 -0
- package/lib/datavisualisations/ColumnChart.vue +527 -0
- package/lib/datavisualisations/LineChart.vue +274 -0
- package/lib/datavisualisations/StackedBarChart.vue +614 -0
- package/lib/datavisualisations/StackedColumnChart.vue +640 -0
- package/lib/datavisualisations/index.js +5 -0
- package/lib/enums.ts +25 -0
- package/lib/i18n.ts +16 -0
- package/lib/keys.ts +2 -0
- package/lib/locales/en.json +140 -0
- package/lib/locales/fr.json +117 -0
- package/lib/locales/locales/en.json +140 -0
- package/lib/locales/locales/fr.json +117 -0
- package/lib/main.ts +87 -0
- package/lib/maps/ChoroplethMap.vue +825 -0
- package/lib/maps/ChoroplethMapAnnotation.vue +336 -0
- package/lib/maps/SymbolMap.vue +628 -0
- package/lib/maps/index.js +3 -0
- package/lib/querystring-es3.d.ts +1 -0
- package/lib/shims-bootstrap-vue.d.ts +5 -0
- package/lib/shims-tsx.d.ts +11 -0
- package/lib/shims-vue.d.ts +14 -0
- package/lib/styles/functions.scss +20 -0
- package/lib/styles/lib.scss +19 -0
- package/lib/styles/mixins.scss +37 -0
- package/lib/styles/utilities.scss +18 -0
- package/lib/styles/variables.scss +94 -0
- package/lib/styles/variables_dark.scss +1 -0
- package/lib/types.ts +46 -0
- package/lib/utils/animation.ts +24 -0
- package/lib/utils/assets.ts +46 -0
- package/lib/utils/clipboard.ts +41 -0
- package/lib/utils/iframe-resizer.ts +49 -0
- package/lib/utils/placeholder.ts +66 -0
- package/lib/utils/placeholderTypes.ts +21 -0
- package/lib/utils/strings.ts +8 -0
- package/loaders/highlight-loader.js +13 -0
- package/loaders/markdown-loader.js +91 -0
- package/loaders/metadata-loader.js +18 -0
- package/loaders/sass-extract-loader.js +14 -0
- package/loaders/vue-docgen-loader.js +14 -0
- package/package.json +96 -0
- package/plugins/MdPluginTypes.ts +10 -0
- package/plugins/docs.ts +50 -0
- package/plugins/front-matter.ts +36 -0
- package/plugins/highlight.ts +27 -0
- package/plugins/markdown-it/api-table.ts +25 -0
- package/plugins/markdown-it/sample-card.ts +31 -0
- package/plugins/plugin-delete.ts +47 -0
- package/plugins/plugin-docgen.ts +23 -0
- package/plugins/sass-vars.ts +25 -0
- package/plugins/vue-docgen.ts +29 -0
- package/public/android-chrome-192x192.png +0 -0
- package/public/android-chrome-512x512.png +0 -0
- package/public/apple-touch-icon.png +0 -0
- package/public/assets/img/arrow-bottom.svg +3 -0
- package/public/assets/img/texture-brick-black.jpg +0 -0
- package/public/assets/img/texture-brick.jpg +0 -0
- package/public/assets/img/texture-carbon-black.jpg +0 -0
- package/public/assets/img/texture-carbon.jpg +0 -0
- package/public/assets/img/texture-crack-black.jpg +0 -0
- package/public/assets/img/texture-crack.jpg +0 -0
- package/public/assets/img/texture-rock-black.jpg +0 -0
- package/public/assets/img/texture-rock.jpg +0 -0
- package/public/assets/img/texture-sand-black.jpg +0 -0
- package/public/assets/img/texture-sand.jpg +0 -0
- package/public/assets/img/texture-silk-black.jpg +0 -0
- package/public/assets/img/texture-silk.jpg +0 -0
- package/public/assets/topojson/france-departments.json +1 -0
- package/public/assets/topojson/paris-arrondissements.json +1 -0
- package/public/assets/topojson/world-countries-sans-antarctica.json +1 -0
- package/public/favicon-16x16.png +0 -0
- package/public/favicon-32x32.png +0 -0
- package/public/favicon.ico +0 -0
- package/public/site.webmanifest +1 -0
- package/stories/assets/code-brackets.svg +1 -0
- package/stories/assets/colors.svg +1 -0
- package/stories/assets/comments.svg +1 -0
- package/stories/assets/direction.svg +1 -0
- package/stories/assets/flow.svg +1 -0
- package/stories/assets/plugin.svg +1 -0
- package/stories/assets/repo.svg +1 -0
- package/stories/assets/stackalt.svg +1 -0
- package/stories/getting-started/about-icij.mdx +14 -0
- package/stories/getting-started/custom-bootstrap.mdx +23 -0
- package/stories/getting-started/installation-guide.mdx +62 -0
- package/stories/getting-started/internationalization.mdx +63 -0
- package/stories/murmur/components/AccordionStep.stories.ts +33 -0
- package/stories/murmur/components/AccordionWrapper.stories.ts +69 -0
- package/stories/murmur/components/ActiveTextTruncate.stories.ts +32 -0
- package/stories/murmur/components/AdvancedLinkForm.stories.ts +77 -0
- package/stories/murmur/components/Brand.stories.ts +30 -0
- package/stories/murmur/components/BrandExpansion.stories.ts +41 -0
- package/stories/murmur/components/ConfirmButton.stories.ts +40 -0
- package/stories/murmur/components/ContentPlaceholder.stories.ts +41 -0
- package/stories/murmur/components/CustomPagination.stories.ts +42 -0
- package/stories/murmur/components/DigitsInput.stories.ts +29 -0
- package/stories/murmur/components/DonateForm.stories.ts +29 -0
- package/stories/murmur/components/EmbedForm.stories.ts +35 -0
- package/stories/murmur/components/EmbeddableFooter.stories.ts +59 -0
- package/stories/murmur/components/FollowUsPopover.stories.ts +24 -0
- package/stories/murmur/components/GenericFooter.stories.ts +27 -0
- package/stories/murmur/components/GenericHeader.stories.ts +27 -0
- package/stories/murmur/components/HapticCopy.stories.ts +40 -0
- package/stories/murmur/components/ImddbHeader.stories.ts +27 -0
- package/stories/murmur/components/OrdinalLegend.stories.ts +49 -0
- package/stories/murmur/components/RangePicker.stories.ts +98 -0
- package/stories/murmur/components/ResponsiveIframe.stories.ts +24 -0
- package/stories/murmur/components/ScaleLegend.stories.ts +65 -0
- package/stories/murmur/components/SecretInput.stories.ts +60 -0
- package/stories/murmur/components/SelectableDropdown.stories.ts +143 -0
- package/stories/murmur/components/SharingOptions.stories.ts +32 -0
- package/stories/murmur/components/SharingOptionsLink.stories.ts +53 -0
- package/stories/murmur/components/SignUpForm.stories.ts +51 -0
- package/stories/murmur/components/SlideUpDown.stories.ts +32 -0
- package/stories/murmur/components/TexturedDeck.stories.ts +83 -0
- package/stories/murmur/components/TinyPagination.stories.ts +65 -0
- package/stories/murmur/datavisualisations/BarChart.stories.ts +54 -0
- package/stories/murmur/datavisualisations/ColumnChart.stories.ts +88 -0
- package/stories/murmur/datavisualisations/LineChart.stories.ts +139 -0
- package/stories/murmur/datavisualisations/StackedBarChart.stories.ts +199 -0
- package/stories/murmur/datavisualisations/StackedColumnChart.stories.ts +136 -0
- package/stories/murmur/decorators.ts +108 -0
- package/stories/murmur/maps/ChoroplethMap.stories.ts +440 -0
- package/stories/murmur/maps/ChoroplethMapAnnotation.stories.ts +26 -0
- package/stories/murmur/maps/SymbolMap.stories.ts +24 -0
- package/stories/murmur/utils.ts +7 -0
- package/tests/unit/components/AccordionStep.spec.ts +157 -0
- package/tests/unit/components/AccordionWrapper.spec.ts +57 -0
- package/tests/unit/components/ActiveTextTruncate.spec.js +30 -0
- package/tests/unit/components/AdvancedLinkForm.spec.js +124 -0
- package/tests/unit/components/Brand.spec.js +50 -0
- package/tests/unit/components/ContentPlaceholder.spec.js +29 -0
- package/tests/unit/components/CustomPagination.spec.js +72 -0
- package/tests/unit/components/DigitsInput.spec.ts +157 -0
- package/tests/unit/components/DonateForm.spec.js +149 -0
- package/tests/unit/components/EmbedForm.spec.js +108 -0
- package/tests/unit/components/EmbeddableFooter.spec.js +11 -0
- package/tests/unit/components/Fa.spec.js +18 -0
- package/tests/unit/components/FollowUsPopover.spec.js +29 -0
- package/tests/unit/components/GenericFooter.spec.js +29 -0
- package/tests/unit/components/GenericHeader.spec.js +104 -0
- package/tests/unit/components/HapticCopy.spec.js +123 -0
- package/tests/unit/components/ImddbHeader.spec.js +96 -0
- package/tests/unit/components/OrdinalLegend.spec.js +120 -0
- package/tests/unit/components/RangePicker.spec.ts +87 -0
- package/tests/unit/components/ResponsiveIframe.spec.js +20 -0
- package/tests/unit/components/ScaleLegend.spec.js +139 -0
- package/tests/unit/components/SecretInput.spec.js +81 -0
- package/tests/unit/components/SelectableDropdown.spec.js +160 -0
- package/tests/unit/components/SharingOptions.spec.js +125 -0
- package/tests/unit/components/SharingOptionsLink.spec.js +184 -0
- package/tests/unit/components/SignUpForm.spec.js +145 -0
- package/tests/unit/components/SlideUpDown.spec.js +59 -0
- package/tests/unit/components/TinyPagination.spec.js +46 -0
- package/tests/unit/config.spec.js +136 -0
- package/tests/unit/datavisualisations/BarChart.spec.js +63 -0
- package/tests/unit/datavisualisations/ColumnChart.spec.js +344 -0
- package/tests/unit/datavisualisations/LineChart.spec.js +155 -0
- package/tests/unit/datavisualisations/StackedBarChart.spec.js +294 -0
- package/tests/unit/datavisualisations/StackedColumnChart.spec.js +443 -0
- package/tests/unit/i18n.spec.ts +19 -0
- package/tests/unit/main.spec.js +82 -0
- package/tests/unit/maps/ChoroplethMap.spec.js +214 -0
- package/tests/unit/maps/ChoroplethMapAnnotation.spec.ts +186 -0
- package/tests/unit/maps/SymbolMap.spec.js +92 -0
- package/tests/unit/require.spec.js +22 -0
- package/tests/unit/setup.js +13 -0
- package/tests/unit/utils/assets.spec.js +61 -0
- package/tests/unit/utils/clipboard.spec.js +18 -0
- package/tests/unit/utils/iframe-resizer.spec.js +71 -0
- package/tsconfig.json +35 -0
- package/vite.config.ts +79 -0
- package/vitest.config.ts +19 -0
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
Some components like `textured-deck` need to load images. Those images are not bundled with Murmur anymore and are available throught a public URL. Therefore, you might need to customize how those image are loaded.
|
|
2
|
+
|
|
3
|
+
## TexturedDeck
|
|
4
|
+
|
|
5
|
+
The `TexturedDeck` components allow you to quickly create a textured block following ICIJ branding with zero configuration:
|
|
6
|
+
|
|
7
|
+
<div class="row">
|
|
8
|
+
<div class=" col-6">
|
|
9
|
+
<textured-deck class="p-4 mb-3" value="carbon">
|
|
10
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
|
11
|
+
</textured-deck>
|
|
12
|
+
</div>
|
|
13
|
+
<div class=" col-6">
|
|
14
|
+
<textured-deck class="p-4 mb-3" black value="carbon">
|
|
15
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
|
16
|
+
</textured-deck>
|
|
17
|
+
</div>
|
|
18
|
+
<div class=" col-6">
|
|
19
|
+
<textured-deck class="p-4 mb-3" value="sand">
|
|
20
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
|
21
|
+
</textured-deck>
|
|
22
|
+
</div>
|
|
23
|
+
<div class=" col-6">
|
|
24
|
+
<textured-deck class="p-4 mb-3" black value="sand">
|
|
25
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
|
26
|
+
</textured-deck>
|
|
27
|
+
</div>
|
|
28
|
+
<div class=" col-6">
|
|
29
|
+
<textured-deck class="p-4 mb-3" value="rock">
|
|
30
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
|
31
|
+
</textured-deck>
|
|
32
|
+
</div>
|
|
33
|
+
<div class=" col-6">
|
|
34
|
+
<textured-deck class="p-4 mb-3" black value="rock">
|
|
35
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
|
36
|
+
</textured-deck>
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
39
|
+
|
|
40
|
+
Those background are currently loaded from a remote location:
|
|
41
|
+
|
|
42
|
+
<p><b-input type="text" :value="texturedDeckBackgroundBaseUrl" readonly /></p>
|
|
43
|
+
|
|
44
|
+
So everytime you pick a textured deck, the background is created using this host, such as:
|
|
45
|
+
|
|
46
|
+
<p><b-input type="text" :value="texturedDeckBackgroundRockUrl" readonly /></p>
|
|
47
|
+
|
|
48
|
+
This base location is configured using Murmur config object, in the property
|
|
49
|
+
called `textured-deck.background-base-url`. If for any reason you need to avoid
|
|
50
|
+
loading the image from a remote location, you can always change the base URL (please
|
|
51
|
+
ensure your base URL has not tailing slash):
|
|
52
|
+
|
|
53
|
+
```js
|
|
54
|
+
Murmur.config.set('textured-deck.background-base-url', 'https://projects.icij.org')
|
|
55
|
+
// Or from inside a Vue component:
|
|
56
|
+
this.$config.set('textured-deck.background-base-url', 'https://projects.icij.org')
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## ChoroplethMap and SymbolMap
|
|
60
|
+
|
|
61
|
+
Both `ChoroplethMap` and `SymbolMap` use a remote topojson file to draw the background
|
|
62
|
+
of the map. This topojson contains the features for every countries except Antarctica.
|
|
63
|
+
|
|
64
|
+
<symbol-map class="bg-light p-5 mb-3" hide-legend feature-color="#333" />
|
|
65
|
+
|
|
66
|
+
This topojson is currently loaded from a remote location:
|
|
67
|
+
|
|
68
|
+
<p><b-input type="text" :value="mapTopojsonWorldCountriesSansAntarctica" readonly /></p>
|
|
69
|
+
|
|
70
|
+
The default topojson is configured globally using Murmur config object, in the property
|
|
71
|
+
called `map.topojson.world-countries-sans-antarctica`. If for any reason you need to
|
|
72
|
+
use a different topojson by default **on every maps** you can change the configuration:
|
|
73
|
+
|
|
74
|
+
```js
|
|
75
|
+
Murmur.config.set('map.topojson.world-countries-sans-antarctica', 'https://raw.githubusercontent.com/deldersveld/topojson/master/world-continents.json')
|
|
76
|
+
// Or from inside a Vue component:
|
|
77
|
+
this.$config.set('map.topojson.world-countries-sans-antarctica', 'https://raw.githubusercontent.com/deldersveld/topojson/master/world-continents.json')
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
Alternativly, if you want to change the topojson on a specify maps, both `ChoroplethMap` and
|
|
81
|
+
`SymbolMap` can receive a `topojsonUrl` property.
|
|
82
|
+
|
|
83
|
+
::: sample-card
|
|
84
|
+
<div class="row">
|
|
85
|
+
<div class="col-6 text-center mb-3">
|
|
86
|
+
<symbol-map class="p-3"
|
|
87
|
+
feature-color="#333"
|
|
88
|
+
hide-legend
|
|
89
|
+
topojson-url="https://raw.githubusercontent.com/deldersveld/topojson/master/countries/italy/italy-provinces.json"
|
|
90
|
+
topojson-objects="ITA_adm2"
|
|
91
|
+
topojson-objects-path="properties.ID_2" />
|
|
92
|
+
Italy
|
|
93
|
+
</div>
|
|
94
|
+
<div class="col-6 text-center mb-3">
|
|
95
|
+
<symbol-map class="p-3"
|
|
96
|
+
feature-color="#333"
|
|
97
|
+
hide-legend
|
|
98
|
+
topojson-url="https://raw.githubusercontent.com/deldersveld/topojson/master/countries/japan/jp-prefectures.json"
|
|
99
|
+
topojson-objects="JPN_adm1"
|
|
100
|
+
topojson-objects-path="properties.ID_1" />
|
|
101
|
+
Japan
|
|
102
|
+
</div>
|
|
103
|
+
<div class="col-6 text-center mb-3">
|
|
104
|
+
<symbol-map class="p-3"
|
|
105
|
+
feature-color="#333"
|
|
106
|
+
hide-legend
|
|
107
|
+
topojson-url="https://raw.githubusercontent.com/deldersveld/topojson/master/countries/united-kingdom/uk-counties.json"
|
|
108
|
+
topojson-objects="GBR_adm2"
|
|
109
|
+
topojson-objects-path="properties.ID_2" />
|
|
110
|
+
United Kingdom
|
|
111
|
+
</div>
|
|
112
|
+
<div class="col-6 text-center mb-3">
|
|
113
|
+
<symbol-map class="p-3"
|
|
114
|
+
feature-color="#333"
|
|
115
|
+
hide-legend
|
|
116
|
+
topojson-url="https://raw.githubusercontent.com/deldersveld/topojson/master/countries/venezuela/venezuela-estados.json"
|
|
117
|
+
topojson-objects="VEN_adm1"
|
|
118
|
+
topojson-objects-path="properties.ID_1" />
|
|
119
|
+
Venezuela
|
|
120
|
+
</div>
|
|
121
|
+
</div>
|
|
122
|
+
:::
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
<script>
|
|
126
|
+
import config from '@/config.default'
|
|
127
|
+
|
|
128
|
+
export default {
|
|
129
|
+
data () {
|
|
130
|
+
return {
|
|
131
|
+
texturedDeckBackgroundBaseUrl: config['textured-deck.background-base-url'],
|
|
132
|
+
texturedDeckBackgroundRockUrl: `${config['textured-deck.background-base-url']}/assets/img/texture-rock.jpg`,
|
|
133
|
+
mapTopojsonWorldCountriesSansAntarctica: config['map.topojson.world-countries-sans-antarctica']
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
</script>
|
|
138
|
+
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Configure Murmur
|
|
3
|
+
order: 0
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Murmur comes with a built-in configuration system. To access the configuration
|
|
7
|
+
object, just use the `config` static property from the Murmur class:
|
|
8
|
+
|
|
9
|
+
```js
|
|
10
|
+
import Murmur from '@icij/murmur'
|
|
11
|
+
|
|
12
|
+
Murmur.config.set('project', 'Demo Project')
|
|
13
|
+
Murmur.config.get('project')
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
New key/value pair can be define using namespaces and dot notation:
|
|
17
|
+
|
|
18
|
+
```js
|
|
19
|
+
Murmur.config.set('foo.bar', 'value')
|
|
20
|
+
// same as...
|
|
21
|
+
Murmur.config.scope('foo').set('bar', 'value')
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Here is the list of default values:
|
|
25
|
+
|
|
26
|
+
<div class="table-responsive border border-top-0">
|
|
27
|
+
<table class="table table-sm table-striped text-nowrap m-0">
|
|
28
|
+
<tr v-for="(value, key) in config">
|
|
29
|
+
<td>
|
|
30
|
+
<haptic-copy class="btn-sm btn-info" hide-label :text="key" />
|
|
31
|
+
</td>
|
|
32
|
+
<td class="align-middle">
|
|
33
|
+
<code>{{ key }}</code>
|
|
34
|
+
</td>
|
|
35
|
+
<td class="small text-monospace text-muted align-middle">
|
|
36
|
+
{{ value }}
|
|
37
|
+
</td>
|
|
38
|
+
</tr>
|
|
39
|
+
</table>
|
|
40
|
+
</div>
|
|
41
|
+
|
|
42
|
+
<script>
|
|
43
|
+
import config from '@/config.default'
|
|
44
|
+
|
|
45
|
+
export default {
|
|
46
|
+
data () {
|
|
47
|
+
return {
|
|
48
|
+
config
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
</script>
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
### Theme
|
|
2
|
+
|
|
3
|
+
The default theme is extending Boostrap with custom colors. The primary color
|
|
4
|
+
comes from ICIJ graphical charter. Every color utility classes provided by
|
|
5
|
+
Boostrap (`bg-primary`, `text-primary`, ...) work as expected.
|
|
6
|
+
|
|
7
|
+
<palette-presenter :colors="themeColors" />
|
|
8
|
+
|
|
9
|
+
### Grays
|
|
10
|
+
|
|
11
|
+
The colour tones to be used are outlined below and are on a gray scale that
|
|
12
|
+
incorporates the new brand colour ways. Amount of gray was reduced
|
|
13
|
+
tones used in illustration to create higher contrast in images. Only the grays
|
|
14
|
+
outlined below should be used in any illustrations.
|
|
15
|
+
|
|
16
|
+
<palette-presenter :colors="grays" />
|
|
17
|
+
|
|
18
|
+
<script>
|
|
19
|
+
import sassVars from '@/styles/variables.scss?sass-vars'
|
|
20
|
+
|
|
21
|
+
export default {
|
|
22
|
+
computed: {
|
|
23
|
+
themeColors () {
|
|
24
|
+
return sassVars["$theme-colors"]
|
|
25
|
+
},
|
|
26
|
+
grays () {
|
|
27
|
+
return sassVars["$brand-grays"]
|
|
28
|
+
},
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
</script>
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
### FontAwesome
|
|
2
|
+
|
|
3
|
+
This library heavily relies on [Font Awesome](https://fontawesome.com/) to display icons.
|
|
4
|
+
As they state on their website "Font Awesome gives you scalable vector icons that
|
|
5
|
+
can instantly be customized — size, color, drop shadow, and anything that can be
|
|
6
|
+
done with the power of CSS".
|
|
7
|
+
|
|
8
|
+
All available icons [can be found here](https://fontawesome.com/icons?d=gallery&m=free).
|
|
9
|
+
|
|
10
|
+
### Adding icons to the library
|
|
11
|
+
|
|
12
|
+
Since all icons are not imported automaticly, you must indicate which icons are
|
|
13
|
+
available in your application. This documentation, like any application using this
|
|
14
|
+
package, has its own subset of icons:
|
|
15
|
+
|
|
16
|
+
<ul class="list-inline">
|
|
17
|
+
<li v-for="(icon, i) in fas" :key="i" class="p-1 text-primary list-inline-item mb-2">
|
|
18
|
+
<fa :icon="icon" fixed-width size="2x" />
|
|
19
|
+
</li>
|
|
20
|
+
</ul>
|
|
21
|
+
|
|
22
|
+
This way, your application stays small and doesn't load unecessary icon — especialy
|
|
23
|
+
if it only uses components that require only a few icons. Because icons are lazy
|
|
24
|
+
loaded, you might see this list grow while visiting other components. These icons
|
|
25
|
+
are added using the following method:
|
|
26
|
+
|
|
27
|
+
```js
|
|
28
|
+
// Target the icon you need to add to your library
|
|
29
|
+
import { faBars } from '@fortawesome/free-solid-svg-icons/faBars'
|
|
30
|
+
// Import the library instance provided by FontAwesome
|
|
31
|
+
import { library } from '@icij/murmur/lib/components/Fa'
|
|
32
|
+
|
|
33
|
+
// And add the bars to the library
|
|
34
|
+
library.add(faBars)
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
You can now use the `bars` icon in you templates using the Fa component:
|
|
38
|
+
|
|
39
|
+
```html
|
|
40
|
+
<fa icon="bars" />
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
<script>
|
|
44
|
+
import { get, uniqBy } from 'lodash'
|
|
45
|
+
import { library } from '@/components/Fa'
|
|
46
|
+
|
|
47
|
+
export default {
|
|
48
|
+
computed: {
|
|
49
|
+
fas () {
|
|
50
|
+
return uniqBy(Object.keys(library.definitions.fas || {}), key => {
|
|
51
|
+
return get(library.definitions.fas, [key, 2])
|
|
52
|
+
})
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
</script>
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
|
|
2
|
+
## Alerts
|
|
3
|
+
|
|
4
|
+
Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages.
|
|
5
|
+
|
|
6
|
+
:::sample-card
|
|
7
|
+
<template>
|
|
8
|
+
<div class="p-4 bg-white">
|
|
9
|
+
<b-alert variant="primary" show>
|
|
10
|
+
A simple primary alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
|
|
11
|
+
</b-alert>
|
|
12
|
+
<b-alert variant="secondary" show>
|
|
13
|
+
A simple secondary alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
|
|
14
|
+
</b-alert>
|
|
15
|
+
<b-alert variant="success" show>
|
|
16
|
+
A simple success alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
|
|
17
|
+
</b-alert>
|
|
18
|
+
<b-alert variant="danger" show>
|
|
19
|
+
A simple danger alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
|
|
20
|
+
</b-alert>
|
|
21
|
+
<b-alert variant="warning" show>
|
|
22
|
+
A simple warning alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
|
|
23
|
+
</b-alert>
|
|
24
|
+
<b-alert variant="info" show>
|
|
25
|
+
A simple info alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
|
|
26
|
+
</b-alert>
|
|
27
|
+
<hr />
|
|
28
|
+
<b-alert variant="light" show>
|
|
29
|
+
A simple light alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
|
|
30
|
+
</b-alert>
|
|
31
|
+
<b-alert variant="dark" show>
|
|
32
|
+
A simple dark alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
|
|
33
|
+
</b-alert>
|
|
34
|
+
</div>
|
|
35
|
+
</template>
|
|
36
|
+
:::
|
|
37
|
+
|
|
38
|
+
## Badges
|
|
39
|
+
|
|
40
|
+
Provide badges, our small count and labeling component.
|
|
41
|
+
|
|
42
|
+
:::sample-card
|
|
43
|
+
<template>
|
|
44
|
+
<div class="p-4 bg-white">
|
|
45
|
+
<b-badge variant="primary" class="mr-1">Primary</b-badge>
|
|
46
|
+
<b-badge variant="secondary" class="mr-1">Secondary</b-badge>
|
|
47
|
+
<b-badge variant="success" class="mr-1">Success</b-badge>
|
|
48
|
+
<b-badge variant="danger" class="mr-1">Danger</b-badge>
|
|
49
|
+
<b-badge variant="warning" class="mr-1">Warning</b-badge>
|
|
50
|
+
<b-badge variant="info" class="mr-1">Info</b-badge>
|
|
51
|
+
<hr />
|
|
52
|
+
<b-badge variant="light" class="mr-1">Light</b-badge>
|
|
53
|
+
<b-badge variant="dark" class="mr-1"">Dark</b-badge>
|
|
54
|
+
</div>
|
|
55
|
+
</template>
|
|
56
|
+
:::
|
|
57
|
+
|
|
58
|
+
## Buttons
|
|
59
|
+
|
|
60
|
+
Provide custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.
|
|
61
|
+
|
|
62
|
+
:::sample-card
|
|
63
|
+
<template>
|
|
64
|
+
<div class="p-4 bg-white">
|
|
65
|
+
<b-button variant="primary" class="mr-1">Primary</b-button>
|
|
66
|
+
<b-button variant="secondary" class="mr-1">Secondary</b-button>
|
|
67
|
+
<b-button variant="success" class="mr-1">Success</b-button>
|
|
68
|
+
<b-button variant="danger" class="mr-1">Danger</b-button>
|
|
69
|
+
<b-button variant="warning" class="mr-1">Warning</b-button>
|
|
70
|
+
<b-button variant="info" class="mr-1">Info</b-button>
|
|
71
|
+
<hr />
|
|
72
|
+
<b-button variant="light" class="mr-1">Light</b-button>
|
|
73
|
+
<b-button variant="dark" class="mr-1">Dark</b-button>
|
|
74
|
+
<b-button variant="link" class="mr-1">Link</b-button>
|
|
75
|
+
</div>
|
|
76
|
+
</template>
|
|
77
|
+
:::
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
## Headings
|
|
2
|
+
|
|
3
|
+
All HTML headings, `<h1>` through `<h6>`, are available with the <strong>{{ headingsFontFamily }}</strong> font.
|
|
4
|
+
|
|
5
|
+
Heading | Example
|
|
6
|
+
--- | ---
|
|
7
|
+
`<h1></h1>` | <h1>h1. Bootstrap heading</h1>
|
|
8
|
+
`<h2></h2>` | <h2>h2. Bootstrap heading</h2>
|
|
9
|
+
`<h3></h3>` | <h3>h3. Bootstrap heading</h3>
|
|
10
|
+
`<h4></h4>` | <h4>h4. Bootstrap heading</h4>
|
|
11
|
+
`<h5></h5>` | <h5>h5. Bootstrap heading</h5>
|
|
12
|
+
`<h6></h6>` | <h6>h6. Bootstrap heading</h6>
|
|
13
|
+
|
|
14
|
+
## Jumbotron
|
|
15
|
+
|
|
16
|
+
A lightweight, flexible component that can optionally extend the entire viewport to showcase key marketing messages on your site. Jumbotron main header uses the <strong>{{ jumbotronFontFamily }}</strong> font.
|
|
17
|
+
|
|
18
|
+
Bellow an example combined with a `textured-deck`:
|
|
19
|
+
|
|
20
|
+
:::sample-card
|
|
21
|
+
<div>
|
|
22
|
+
<textured-deck black value="brick">
|
|
23
|
+
<b-jumbotron header="ICIJ" lead="For more information visit ICIJ website" bg-variant="transparent" class="m-0">
|
|
24
|
+
<b-button variant="primary" href="https://icij.org">More Info</b-button>
|
|
25
|
+
</b-jumbotron>
|
|
26
|
+
</textured-deck>
|
|
27
|
+
</div>
|
|
28
|
+
:::
|
|
29
|
+
|
|
30
|
+
## Font utilities
|
|
31
|
+
|
|
32
|
+
Alternativly you can specify which font use with a class:
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
Class | Example | Font
|
|
36
|
+
--- | --- | ---
|
|
37
|
+
`text-jumbotron` | <div class="text-jumbotron">div. Text with font jumbotron</div> | {{ jumbotronFontFamily }}
|
|
38
|
+
`text-serif` | <div class="text-serif">div. Text with font serif</div> | {{ serifFontFamily }}
|
|
39
|
+
`text-sans-serif` | <div class="text-sans-serif">div. Text with font sans-serif</div> | {{ sansSerifFontFamily }}
|
|
40
|
+
`text-monospace` | <div class="text-monospace">div. Text with font monospace</div> | {{ monospaceFontFamily }}
|
|
41
|
+
|
|
42
|
+
<script>
|
|
43
|
+
import { get, trim } from 'lodash'
|
|
44
|
+
import mainVariables from '@/styles/variables.scss?sass-vars'
|
|
45
|
+
|
|
46
|
+
export default {
|
|
47
|
+
computed: {
|
|
48
|
+
headingsFontFamily () {
|
|
49
|
+
return this.getFontValue("$headings-font-family")
|
|
50
|
+
},
|
|
51
|
+
jumbotronFontFamily () {
|
|
52
|
+
return this.getFontValue("$jumbotron-font-family")
|
|
53
|
+
},
|
|
54
|
+
serifFontFamily () {
|
|
55
|
+
return this.getFontValue("$font-family-serif")
|
|
56
|
+
},
|
|
57
|
+
sansSerifFontFamily () {
|
|
58
|
+
return this.getFontValue("$font-family-sans-serif")
|
|
59
|
+
},
|
|
60
|
+
monospaceFontFamily () {
|
|
61
|
+
return this.getFontValue("$font-family-monospace")
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
methods: {
|
|
65
|
+
getFontValue (name) {
|
|
66
|
+
const [ font ] = get(mainVariables, name, [null])
|
|
67
|
+
return trim(font, '\'"')
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
</script>
|
package/docs/routes.js
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import filter from 'lodash/filter'
|
|
2
|
+
import docsFrontMatter from 'virtual:docs'
|
|
3
|
+
|
|
4
|
+
const PAGE_COMPONENTS = import.meta.glob(`./pages/**/*/doc.md`)
|
|
5
|
+
|
|
6
|
+
export function loadComponent(section, name) {
|
|
7
|
+
return PAGE_COMPONENTS[`./pages/${section}/${name}/doc.md`]
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export function filterRoutes(predicate = {}) {
|
|
11
|
+
return filter(routes, predicate)
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const routes = [
|
|
15
|
+
{
|
|
16
|
+
path: '/',
|
|
17
|
+
redirect: '/getting-started/installation-guide'
|
|
18
|
+
},
|
|
19
|
+
...docsFrontMatter.map(doc => {
|
|
20
|
+
const component = loadComponent(doc.meta.section, doc.name)
|
|
21
|
+
return { ...doc, component }
|
|
22
|
+
})
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
export default routes;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import Vue from 'vue'
|
|
2
|
+
import Vuex from 'vuex'
|
|
3
|
+
|
|
4
|
+
Vue.use(Vuex)
|
|
5
|
+
|
|
6
|
+
export default new Vuex.Store({
|
|
7
|
+
state: {
|
|
8
|
+
collapseMenu: true
|
|
9
|
+
},
|
|
10
|
+
mutations: {
|
|
11
|
+
toggleMenu (state) {
|
|
12
|
+
state.collapseMenu = !state.collapseMenu
|
|
13
|
+
},
|
|
14
|
+
collapseMenu (state) {
|
|
15
|
+
state.collapseMenu = true
|
|
16
|
+
},
|
|
17
|
+
showMenu (state) {
|
|
18
|
+
state.collapseMenu = false
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
})
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// Import your library's styles
|
|
2
|
+
@import './variables.scss';
|
|
3
|
+
@import '../../lib/styles/lib.scss';
|
|
4
|
+
@import 'node_modules/bootstrap/scss/bootstrap';
|
|
5
|
+
@import 'node_modules/bootstrap-vue/dist/bootstrap-vue';
|
|
6
|
+
@import 'node_modules/highlight.js/styles/base16/bright';
|
|
7
|
+
|
|
8
|
+
.app__main {
|
|
9
|
+
p a:not(.nav-link):not(.btn),
|
|
10
|
+
article a:not(.nav-link):not(.btn),
|
|
11
|
+
li:not(.ordinal-legend__item) a:not(.nav-link):not(.btn) {
|
|
12
|
+
border-bottom: 1px solid $primary;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
&__view {
|
|
16
|
+
table {
|
|
17
|
+
@extend .table;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.card-xs {
|
|
23
|
+
max-width: 330px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
@each $breakpoint, $width in $container-max-widths {
|
|
27
|
+
.card-#{$breakpoint} {
|
|
28
|
+
max-width: $width;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.header-anchor {
|
|
33
|
+
display: none
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
@import '@/styles/variables.scss';
|
|
2
|
+
|
|
3
|
+
$docs-menu-bg: #000;
|
|
4
|
+
$docs-menu-color: #fff;
|
|
5
|
+
$docs-menu-muted: mix($docs-menu-bg, $docs-menu-color, 50%);
|
|
6
|
+
|
|
7
|
+
$docs-header-bg: $jumbotron-bg;
|
|
8
|
+
$docs-header-border-color: darken($docs-header-bg, 10%);
|
|
9
|
+
|
|
10
|
+
$pre-color: $light;
|
|
11
|
+
$app-menu-max-width: 300px;
|
|
12
|
+
$app-main-max-width: 770px;
|
|
13
|
+
|
|
14
|
+
$modal-backdrop-bg: rgba(darken($dark, 10%), .5);
|
|
15
|
+
$code-color: $info;
|
|
16
|
+
|
|
17
|
+
$link-color: #000;
|
|
18
|
+
$link-decoration: none;
|
|
19
|
+
$link-hover-color: $primary;
|
|
20
|
+
$link-hover-decoration: none;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xml:space="preserve" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1047.01 200">
|
|
2
|
+
<path d="m45.153 200 28.423-46.424L101.999 200Z" fill="red"/>
|
|
3
|
+
<path d="M106.691 88.505c1.127-5.682 1.835-11.686 2.094-17.86h19.244a54.281 54.281 0 0 1-4.861 17.86Zm5.571 15.516a54.75 54.75 0 0 1-15.316 10.814 59.929 59.929 0 0 0 2.602-4.683c1.695-3.392 3.177-7.088 4.43-11.025h12.633a55.793 55.793 0 0 1-4.348 4.894M78.887 88.505v-17.86h19.267c-.284 6.244-1.064 12.261-2.304 17.86Zm11.159 16.896c-3.238 6.478-7.132 11.03-11.159 13.2V99.127h13.867a63.187 63.187 0 0 1-2.708 6.274m-32.94 0a63.163 63.163 0 0 1-2.708-6.274h13.866v19.474c-4.028-2.17-7.92-6.722-11.159-13.2m-8.107-34.756h19.266v17.86H51.303c-1.24-5.599-2.021-11.616-2.304-17.86m-14.11 33.376a55.755 55.755 0 0 1-4.347-4.894h12.631c1.254 3.937 2.737 7.633 4.432 11.025a60.067 60.067 0 0 0 2.602 4.683 54.74 54.74 0 0 1-15.317-10.814M23.984 88.505a54.282 54.282 0 0 1-4.861-17.86h19.244c.26 6.174.967 12.178 2.094 17.86ZM40.46 42.163c-1.126 5.682-1.834 11.686-2.093 17.86H19.123a54.282 54.282 0 0 1 4.861-17.86Zm-5.57-15.516a54.747 54.747 0 0 1 15.316-10.814 59.974 59.974 0 0 0-2.602 4.683c-1.695 3.392-3.177 7.089-4.43 11.025H30.541a55.67 55.67 0 0 1 4.348-4.894m33.375 15.516v17.86H48.999c.283-6.244 1.063-12.261 2.303-17.86ZM57.106 25.267c3.239-6.478 7.131-11.03 11.16-13.2V31.54H54.398a63.109 63.109 0 0 1 2.707-6.274m32.94 0a63.113 63.113 0 0 1 2.708 6.274H78.888V12.066c4.027 2.171 7.92 6.723 11.159 13.201m8.108 34.755H78.888v-17.86H95.85c1.24 5.6 2.021 11.617 2.304 17.86m14.109-33.375a55.867 55.867 0 0 1 4.348 4.894h-12.633c-1.253-3.936-2.735-7.633-4.43-11.025a59.782 59.782 0 0 0-2.602-4.683 54.77 54.77 0 0 1 15.317 10.814m10.906 15.516a54.306 54.306 0 0 1 4.861 17.86h-19.244c-.26-6.174-.967-12.178-2.094-17.86Zm-3.394-23.027C107.434 6.796 91.027 0 73.575 0c-17.45 0-33.857 6.796-46.197 19.136-12.34 12.34-19.136 28.747-19.136 46.198 0 17.452 6.796 33.858 19.136 46.198 12.34 12.34 28.746 19.136 46.198 19.136s33.858-6.796 46.198-19.136c12.34-12.34 19.136-28.746 19.136-46.198 0-17.451-6.796-33.858-19.136-46.198" fill="red"/>
|
|
4
|
+
<path d="M0 136.811H147.15v10.622H0Z" fill="#999"/>
|
|
5
|
+
<path d="M203.5 25.928h12.66v65.517H203.5zm16.618 65.517V25.928h13.5l6.026 31.348V25.928h12.661v65.517h-12.814l-6.559-32.796v32.796Zm42.955 0V38.513h-7.78V25.928h28.678v12.585h-7.78v52.932Zm23.887 0V25.928h26.237V38.59h-12.89v12.737h12.357v12.357h-12.357v15.024h13.73v12.738Zm46.853-41.262c1.83 0 2.745-1.984 2.745-5.95 0-1.728-.075-3.025-.228-3.89-.152-.864-.433-1.46-.839-1.792-.408-.33-.992-.495-1.755-.495h-3.05v12.127Zm-16.475-24.255h20.136c3.204 0 5.682.724 7.437 2.174 1.753 1.45 2.936 3.484 3.546 6.102.61 2.619.916 5.962.916 10.03 0 3.712-.485 6.61-1.45 8.694-.966 2.086-2.644 3.535-5.034 4.348 1.984.408 3.42 1.4 4.309 2.974.89 1.577 1.336 3.713 1.336 6.408l-.153 24.787h-12.814V65.818c0-1.83-.357-2.999-1.068-3.508-.712-.508-2.01-.763-3.89-.763v29.898h-13.271zm35.374 65.517V25.928h13.5l6.026 31.348V25.928H384.9v65.517h-12.815l-6.56-32.796v32.796Zm49.88-21.051h5.95l-2.898-33.33h-.61Zm-14.491 21.051 6.33-65.517h22.195l6.255 65.517h-12.433l-.915-10.601H401.6l-.762 10.601zm42.047 0V38.513h-7.78V25.928h28.678v12.585h-7.78v52.932Zm23.613-65.517h12.661v65.517h-12.66zm34.855 52.551c.407-1.017.611-2.441.611-4.27V42.173c0-1.423-.19-2.58-.572-3.47-.382-.89-1.158-1.335-2.327-1.335-2.187 0-3.279 1.653-3.279 4.957v31.958c0 1.881.228 3.306.687 4.272.457.966 1.296 1.448 2.517 1.448 1.168 0 1.956-.507 2.363-1.525m-14.414 8.733c-2.747-3.228-4.12-7.767-4.12-13.614V42.403c0-5.644 1.373-9.902 4.12-12.776 2.745-2.872 6.761-4.31 12.05-4.31 5.288 0 9.305 1.438 12.052 4.31 2.745 2.873 4.118 7.132 4.118 12.776v31.195c0 5.898-1.373 10.449-4.118 13.653-2.747 3.203-6.764 4.805-12.051 4.805-5.29 0-9.306-1.614-12.051-4.844m32.032 4.233V25.928h13.5l6.026 31.348V25.928h12.661v65.517h-12.814l-6.559-32.796v32.796Zm49.88-21.051h5.95l-2.898-33.33h-.61Zm-14.491 21.051 6.33-65.517h22.195l6.254 65.517H563.97l-.915-10.601h-7.932l-.763 10.601zm37.951 0V25.928h13.118V80.31h13.501v11.136Zm51.901-3.889c-2.873-3-4.308-7.119-4.308-12.356V44.996c0-6.508 1.296-11.414 3.89-14.72 2.592-3.305 6.659-4.958 12.202-4.958 4.83 0 8.72 1.323 11.67 3.966 2.949 2.645 4.424 6.458 4.424 11.44v11.289H646.31v-9.687c0-1.88-.23-3.176-.687-3.89-.458-.71-1.246-1.067-2.365-1.067-1.17 0-1.97.408-2.402 1.22-.433.814-.649 2.01-.649 3.585v32.873c0 1.73.255 2.988.764 3.775.507.79 1.27 1.183 2.287 1.183 2.033 0 3.052-1.652 3.052-4.958V63.225h13.194v12.356c0 10.983-5.517 16.475-16.55 16.475-4.78 0-8.607-1.5-11.48-4.5m49.623-9.077c.407-1.017.61-2.441.61-4.27V42.173c0-1.423-.19-2.58-.571-3.47-.382-.89-1.158-1.335-2.327-1.335-2.187 0-3.279 1.653-3.279 4.957v31.958c0 1.881.228 3.306.687 4.272.457.966 1.296 1.448 2.517 1.448 1.168 0 1.955-.507 2.363-1.525m-14.414 8.733c-2.747-3.228-4.12-7.767-4.12-13.614V42.403c0-5.644 1.373-9.902 4.12-12.776 2.745-2.872 6.76-4.31 12.05-4.31 5.288 0 9.305 1.438 12.051 4.31 2.746 2.873 4.118 7.132 4.118 12.776v31.195c0 5.898-1.372 10.449-4.118 13.653-2.746 3.203-6.762 4.805-12.05 4.805-5.29 0-9.306-1.614-12.051-4.844m32.033 4.233V25.928h13.5l6.025 31.348V25.928h12.661v65.517H718.09l-6.56-32.796v32.796Zm39.524-3.814c-2.645-2.947-3.967-7.703-3.967-14.262v-6.406h12.89v8.16c0 3.255 1.04 4.882 3.127 4.882 1.169 0 1.983-.343 2.44-1.03.459-.687.687-1.843.687-3.47 0-2.136-.256-3.902-.763-5.301-.508-1.398-1.157-2.567-1.945-3.509-.789-.94-2.2-2.402-4.232-4.385l-5.645-5.645c-4.373-4.27-6.56-9-6.56-14.186 0-5.592 1.284-9.85 3.851-12.776 2.568-2.922 6.319-4.385 11.25-4.385 5.9 0 10.145 1.563 12.738 4.691 2.594 3.127 3.89 8.021 3.89 14.682h-13.347l-.076-4.5c0-.864-.242-1.55-.725-2.06-.483-.507-1.156-.762-2.02-.762-1.018 0-1.782.28-2.288.84-.51.56-.764 1.322-.764 2.287 0 2.135 1.22 4.347 3.66 6.635l7.628 7.323c1.78 1.729 3.254 3.369 4.424 4.92 1.17 1.551 2.11 3.382 2.822 5.49.712 2.111 1.068 4.616 1.068 7.514 0 6.458-1.182 11.352-3.547 14.681-2.363 3.331-6.267 4.997-11.708 4.997-5.948 0-10.246-1.475-12.889-4.424m49.781-9.153c.407-1.017.611-2.441.611-4.27V42.173c0-1.423-.191-2.58-.572-3.47-.381-.89-1.158-1.335-2.326-1.335-2.187 0-3.28 1.653-3.28 4.957v31.958c0 1.881.229 3.306.686 4.272.456.966 1.296 1.448 2.517 1.448 1.169 0 1.957-.507 2.365-1.525m-14.416 8.733c-2.745-3.228-4.118-7.767-4.118-13.614V42.403c0-5.644 1.373-9.902 4.118-12.776 2.745-2.872 6.762-4.31 12.05-4.31s9.306 1.438 12.052 4.31c2.745 2.873 4.118 7.132 4.118 12.776v31.195c0 5.898-1.373 10.449-4.118 13.653-2.746 3.203-6.763 4.805-12.051 4.805-5.289 0-9.306-1.614-12.05-4.844m48.507-37.029c1.83 0 2.746-1.984 2.746-5.95 0-1.728-.076-3.025-.229-3.89-.153-.864-.432-1.46-.838-1.792-.408-.33-.993-.495-1.755-.495h-3.05v12.127Zm-16.475-24.255h20.136c3.203 0 5.682.724 7.436 2.174 1.755 1.45 2.937 3.484 3.547 6.102.61 2.619.915 5.962.915 10.03 0 3.712-.484 6.61-1.45 8.694-.965 2.086-2.643 3.535-5.033 4.348 1.983.408 3.419 1.4 4.31 2.974.888 1.577 1.334 3.713 1.334 6.408l-.152 24.787h-12.814V65.818c0-1.83-.356-2.999-1.068-3.508-.712-.508-2.009-.763-3.89-.763v29.898h-13.271zm42.071 65.517V38.513h-7.78V25.928h28.678v12.585h-7.78v52.932Zm23.613-65.517h12.66v65.517h-12.66zm20.15 61.551c-2.62-3.051-3.928-7.576-3.928-13.576V25.928h12.738v47.44c0 2.086.203 3.714.61 4.883.406 1.17 1.27 1.753 2.593 1.753s2.185-.571 2.593-1.716c.406-1.144.61-2.783.61-4.92v-47.44h12.737v47.975c0 6-1.31 10.525-3.928 13.576-2.62 3.051-6.623 4.576-12.012 4.576-5.39 0-9.395-1.525-12.013-4.576m31.698 3.966V25.928h19.983l5.493 39.966 5.49-39.966h20.136v65.517h-11.974V44.234l-7.551 47.211h-11.745l-8.01-47.212v47.212ZM222.11 153.69c.406-1.016.61-2.44.61-4.27v-32.035c0-1.422-.19-2.58-.573-3.47-.381-.89-1.157-1.334-2.326-1.334-2.187 0-3.28 1.652-3.28 4.957v31.958c0 1.881.229 3.306.687 4.271.457.966 1.296 1.45 2.517 1.45 1.17 0 1.956-.509 2.364-1.526m-14.414 8.733c-2.747-3.229-4.12-7.767-4.12-13.615v-31.194c0-5.644 1.373-9.902 4.12-12.777 2.745-2.871 6.76-4.308 12.05-4.308 5.288 0 9.305 1.437 12.051 4.308 2.746 2.875 4.118 7.133 4.118 12.777v31.194c0 5.9-1.372 10.449-4.118 13.653-2.746 3.203-6.763 4.805-12.05 4.805-5.29 0-9.306-1.613-12.051-4.843m32.033 4.233v-65.518h26.236v12.738h-13.04v10.45h12.355v12.584h-12.356v29.746Zm47.668-65.517h12.66v65.517h-12.66zm16.618 65.517v-65.518h13.5l6.026 31.35v-31.35h12.661v65.518h-12.814l-6.559-32.797v32.797Zm43.261 0-8.085-65.593h12.508l4.805 44.619 4.272-44.62h12.508l-8.085 65.594Zm28.989 0v-65.518h26.238V113.8h-12.89v12.738h12.356v12.357h-12.356v15.024h13.73v12.738Zm33.673-3.814c-2.644-2.948-3.965-7.703-3.965-14.263v-6.406h12.89v8.161c0 3.254 1.04 4.882 3.126 4.882 1.17 0 1.983-.344 2.441-1.03.457-.686.686-1.843.686-3.47 0-2.136-.255-3.902-.762-5.3-.51-1.4-1.158-2.568-1.945-3.51-.79-.94-2.2-2.402-4.233-4.385l-5.644-5.644c-4.375-4.272-6.56-9-6.56-14.187 0-5.592 1.283-9.85 3.852-12.775 2.566-2.923 6.318-4.386 11.25-4.386 5.898 0 10.145 1.564 12.737 4.691 2.593 3.127 3.89 8.021 3.89 14.681h-13.347l-.077-4.498c0-.865-.242-1.551-.724-2.06-.484-.508-1.158-.763-2.021-.763-1.018 0-1.78.28-2.289.839-.508.56-.762 1.322-.762 2.288 0 2.136 1.22 4.348 3.661 6.636l7.627 7.323c1.78 1.727 3.253 3.367 4.424 4.918 1.169 1.552 2.11 3.383 2.822 5.492.712 2.11 1.067 4.614 1.067 7.512 0 6.458-1.182 11.353-3.546 14.683-2.365 3.33-6.268 4.996-11.708 4.996-5.949 0-10.246-1.474-12.89-4.425m37.93 3.814v-52.932h-7.78v-12.586h28.678v12.586h-7.779v52.932Zm23.613-65.517h12.661v65.517H471.48zm19.792 61.131c-2.314-3.33-3.47-8.377-3.47-15.14v-28.22c0-6.051 1.346-10.626 4.042-13.729 2.695-3.101 6.712-4.652 12.051-4.652 4.321 0 7.676.865 10.068 2.593 2.39 1.729 4.042 4.246 4.957 7.55.916 3.307 1.373 7.551 1.373 12.739h-12.814v-5.873c0-1.577-.216-2.797-.648-3.662-.433-.864-1.208-1.296-2.325-1.296-2.492 0-3.738 1.627-3.738 4.88v31.73c0 1.983.254 3.483.762 4.5.508 1.018 1.399 1.526 2.67 1.526 1.27 0 2.16-.508 2.67-1.526.507-1.017.763-2.517.763-4.5v-9.382h-3.51v-11.287h16.018v38.135h-5.263l-2.212-5.492c-2.34 4.069-5.949 6.102-10.831 6.102-4.728 0-8.25-1.665-10.563-4.996m46.288-16.665h5.949l-2.899-33.33H540Zm-14.492 21.05 6.33-65.516h22.195l6.255 65.517h-12.433l-.915-10.602h-7.932l-.763 10.602zm42.047.001v-52.932h-7.78v-12.586h28.679v12.586h-7.78v52.932Zm23.613-65.517h12.662v65.517h-12.662zm23.529 65.517-8.084-65.593h12.509l4.805 44.619 4.27-44.62h12.51l-8.085 65.594Zm28.99 0v-65.518h26.238V113.8h-12.89v12.738h12.356v12.357h-12.357v15.024h13.73v12.738Zm55.677-1.144c-2.44-1.169-4.36-2.885-5.758-5.148-1.4-2.262-2.098-4.996-2.098-8.2v-16.398h12.89v15.635c0 1.17.241 2.099.725 2.785.482.686 1.232 1.03 2.25 1.03.965 0 1.69-.318 2.174-.954.482-.635.724-1.537.724-2.707V101.14h13.195v49.119c0 3.407-.675 6.395-2.021 8.961-1.349 2.569-3.23 4.552-5.645 5.95-2.415 1.4-5.174 2.097-8.275 2.097-3 0-5.72-.585-8.161-1.754m46.044-11.823c.407-1.016.61-2.44.61-4.27v-32.035c0-1.422-.191-2.58-.571-3.47-.382-.89-1.158-1.334-2.327-1.334-2.187 0-3.28 1.652-3.28 4.957v31.958c0 1.881.23 3.306.686 4.271.457.966 1.297 1.45 2.517 1.45 1.17 0 1.957-.509 2.365-1.526m-14.415 8.733c-2.746-3.229-4.12-7.767-4.12-13.615v-31.194c0-5.644 1.374-9.902 4.12-12.777 2.745-2.871 6.762-4.308 12.05-4.308 5.289 0 9.306 1.437 12.051 4.308 2.746 2.875 4.119 7.133 4.119 12.777v31.194c0 5.9-1.373 10.449-4.119 13.653-2.745 3.203-6.762 4.805-12.05 4.805s-9.306-1.613-12.051-4.843m35.573.267c-2.62-3.05-3.928-7.575-3.928-13.577V101.14h12.737v47.44c0 2.086.203 3.714.61 4.882.406 1.17 1.27 1.755 2.594 1.755 1.32 0 2.185-.573 2.593-1.717.406-1.144.61-2.783.61-4.92v-47.44h12.737v47.974c0 6.002-1.31 10.526-3.928 13.577-2.62 3.051-6.623 4.576-12.012 4.576-5.391 0-9.395-1.525-12.013-4.576m48.172-37.297c1.831 0 2.746-1.983 2.746-5.95 0-1.727-.076-3.024-.229-3.89-.152-.863-.432-1.46-.84-1.792-.406-.33-.99-.495-1.753-.495h-3.05v12.127Zm-16.474-24.255h20.135c3.205 0 5.683.726 7.438 2.175 1.753 1.448 2.935 3.483 3.545 6.101.61 2.62.917 5.962.917 10.03 0 3.713-.485 6.61-1.45 8.694-.967 2.086-2.644 3.535-5.034 4.349 1.983.407 3.42 1.398 4.309 2.974.89 1.576 1.335 3.712 1.335 6.407l-.153 24.788h-12.813V141.03c0-1.83-.357-3-1.068-3.508-.712-.509-2.01-.764-3.89-.764v29.899h-13.271zm35.373 65.518v-65.518h13.5l6.026 31.35v-31.35h12.662v65.518H850.57l-6.559-32.797v32.797Zm49.881-21.051h5.95l-2.899-33.33h-.61Zm-14.492 21.05 6.331-65.516h22.194l6.255 65.517h-12.432l-.915-10.602h-7.932l-.763 10.602zm37.952.001v-65.518h13.118v54.381h13.5v11.137Zm29.372-65.517h12.66v65.517h-12.66zm19.79 61.703c-2.644-2.948-3.965-7.703-3.965-14.263v-6.406h12.89v8.161c0 3.254 1.04 4.882 3.126 4.882 1.17 0 1.983-.344 2.441-1.03.457-.686.686-1.843.686-3.47 0-2.136-.255-3.902-.762-5.3-.51-1.4-1.158-2.568-1.945-3.51-.79-.94-2.2-2.402-4.233-4.385l-5.644-5.644c-4.375-4.272-6.56-9-6.56-14.187 0-5.592 1.283-9.85 3.852-12.775 2.566-2.923 6.318-4.386 11.25-4.386 5.898 0 10.145 1.564 12.737 4.691 2.593 3.127 3.89 8.021 3.89 14.681h-13.347l-.077-4.498c0-.865-.242-1.551-.724-2.06-.485-.508-1.158-.763-2.02-.763-1.02 0-1.782.28-2.29.839-.509.56-.762 1.322-.762 2.288 0 2.136 1.22 4.348 3.661 6.636l7.627 7.323c1.78 1.727 3.253 3.367 4.423 4.918 1.17 1.552 2.11 3.383 2.823 5.492.712 2.11 1.067 4.614 1.067 7.512 0 6.458-1.182 11.353-3.546 14.683-2.365 3.33-6.268 4.996-11.709 4.996-5.948 0-10.244-1.474-12.89-4.425m37.931 3.814v-52.932h-7.78v-12.586h28.678v12.586h-7.78v52.932Zm27.236-3.814c-2.645-2.948-3.967-7.703-3.967-14.263v-6.406h12.89v8.161c0 3.254 1.042 4.882 3.128 4.882 1.168 0 1.983-.344 2.44-1.03.458-.686.687-1.843.687-3.47 0-2.136-.256-3.902-.764-5.3-.507-1.4-1.156-2.568-1.945-3.51-.788-.94-2.199-2.402-4.231-4.385l-5.645-5.644c-4.374-4.272-6.56-9-6.56-14.187 0-5.592 1.285-9.85 3.852-12.775 2.567-2.923 6.318-4.386 11.25-4.386 5.899 0 10.144 1.564 12.737 4.691 2.594 3.127 3.89 8.021 3.89 14.681h-13.348l-.075-4.498c0-.865-.242-1.551-.725-2.06-.484-.508-1.156-.763-2.02-.763-1.018 0-1.782.28-2.289.839-.509.56-.764 1.322-.764 2.288 0 2.136 1.221 4.348 3.662 6.636l7.627 7.323c1.78 1.727 3.254 3.367 4.424 4.918 1.17 1.552 2.109 3.383 2.822 5.492.712 2.11 1.068 4.614 1.068 7.512 0 6.458-1.182 11.353-3.547 14.683-2.364 3.33-6.267 4.996-11.708 4.996-5.949 0-10.246-1.474-12.89-4.425" fill="#fff"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xml:space="preserve" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1047.01 200">
|
|
2
|
+
<path d="m45.153 200 28.423-46.424L101.999 200Z" fill="red"/>
|
|
3
|
+
<path d="M106.691 88.505c1.127-5.682 1.835-11.686 2.094-17.86h19.244a54.281 54.281 0 0 1-4.861 17.86Zm5.571 15.516a54.75 54.75 0 0 1-15.316 10.814 59.929 59.929 0 0 0 2.602-4.683c1.695-3.392 3.177-7.088 4.43-11.025h12.633a55.793 55.793 0 0 1-4.348 4.894M78.887 88.505v-17.86h19.267c-.284 6.244-1.064 12.261-2.304 17.86Zm11.159 16.896c-3.238 6.478-7.132 11.03-11.159 13.2V99.127h13.867a63.187 63.187 0 0 1-2.708 6.274m-32.94 0a63.163 63.163 0 0 1-2.708-6.274h13.866v19.474c-4.028-2.17-7.92-6.722-11.159-13.2m-8.107-34.756h19.266v17.86H51.303c-1.24-5.599-2.021-11.616-2.304-17.86m-14.11 33.376a55.755 55.755 0 0 1-4.347-4.894h12.631c1.254 3.937 2.737 7.633 4.432 11.025a60.067 60.067 0 0 0 2.602 4.683 54.74 54.74 0 0 1-15.317-10.814M23.984 88.505a54.282 54.282 0 0 1-4.861-17.86h19.244c.26 6.174.967 12.178 2.094 17.86ZM40.46 42.163c-1.126 5.682-1.834 11.686-2.093 17.86H19.123a54.282 54.282 0 0 1 4.861-17.86Zm-5.57-15.516a54.747 54.747 0 0 1 15.316-10.814 59.974 59.974 0 0 0-2.602 4.683c-1.695 3.392-3.177 7.089-4.43 11.025H30.541a55.67 55.67 0 0 1 4.348-4.894m33.375 15.516v17.86H48.999c.283-6.244 1.063-12.261 2.303-17.86ZM57.106 25.267c3.239-6.478 7.131-11.03 11.16-13.2V31.54H54.398a63.109 63.109 0 0 1 2.707-6.274m32.94 0a63.113 63.113 0 0 1 2.708 6.274H78.888V12.066c4.027 2.171 7.92 6.723 11.159 13.201m8.108 34.755H78.888v-17.86H95.85c1.24 5.6 2.021 11.617 2.304 17.86m14.109-33.375a55.867 55.867 0 0 1 4.348 4.894h-12.633c-1.253-3.936-2.735-7.633-4.43-11.025a59.782 59.782 0 0 0-2.602-4.683 54.77 54.77 0 0 1 15.317 10.814m10.906 15.516a54.306 54.306 0 0 1 4.861 17.86h-19.244c-.26-6.174-.967-12.178-2.094-17.86Zm-3.394-23.027C107.434 6.796 91.027 0 73.575 0c-17.45 0-33.857 6.796-46.197 19.136-12.34 12.34-19.136 28.747-19.136 46.198 0 17.452 6.796 33.858 19.136 46.198 12.34 12.34 28.746 19.136 46.198 19.136s33.858-6.796 46.198-19.136c12.34-12.34 19.136-28.746 19.136-46.198 0-17.451-6.796-33.858-19.136-46.198" fill="red"/>
|
|
4
|
+
<path d="M0 136.811H147.15v10.622H0Z" fill="#999"/>
|
|
5
|
+
<path d="M203.5 25.928h12.66v65.517H203.5zm16.618 65.517V25.928h13.5l6.026 31.348V25.928h12.661v65.517h-12.814l-6.559-32.796v32.796Zm42.955 0V38.513h-7.78V25.928h28.678v12.585h-7.78v52.932Zm23.887 0V25.928h26.237V38.59h-12.89v12.737h12.357v12.357h-12.357v15.024h13.73v12.738Zm46.853-41.262c1.83 0 2.745-1.984 2.745-5.95 0-1.728-.075-3.025-.228-3.89-.152-.864-.433-1.46-.839-1.792-.408-.33-.992-.495-1.755-.495h-3.05v12.127Zm-16.475-24.255h20.136c3.204 0 5.682.724 7.437 2.174 1.753 1.45 2.936 3.484 3.546 6.102.61 2.619.916 5.962.916 10.03 0 3.712-.485 6.61-1.45 8.694-.966 2.086-2.644 3.535-5.034 4.348 1.984.408 3.42 1.4 4.309 2.974.89 1.577 1.336 3.713 1.336 6.408l-.153 24.787h-12.814V65.818c0-1.83-.357-2.999-1.068-3.508-.712-.508-2.01-.763-3.89-.763v29.898h-13.271zm35.374 65.517V25.928h13.5l6.026 31.348V25.928H384.9v65.517h-12.815l-6.56-32.796v32.796Zm49.88-21.051h5.95l-2.898-33.33h-.61Zm-14.491 21.051 6.33-65.517h22.195l6.255 65.517h-12.433l-.915-10.601H401.6l-.762 10.601zm42.047 0V38.513h-7.78V25.928h28.678v12.585h-7.78v52.932Zm23.613-65.517h12.661v65.517h-12.66zm34.855 52.551c.407-1.017.611-2.441.611-4.27V42.173c0-1.423-.19-2.58-.572-3.47-.382-.89-1.158-1.335-2.327-1.335-2.187 0-3.279 1.653-3.279 4.957v31.958c0 1.881.228 3.306.687 4.272.457.966 1.296 1.448 2.517 1.448 1.168 0 1.956-.507 2.363-1.525m-14.414 8.733c-2.747-3.228-4.12-7.767-4.12-13.614V42.403c0-5.644 1.373-9.902 4.12-12.776 2.745-2.872 6.761-4.31 12.05-4.31 5.288 0 9.305 1.438 12.052 4.31 2.745 2.873 4.118 7.132 4.118 12.776v31.195c0 5.898-1.373 10.449-4.118 13.653-2.747 3.203-6.764 4.805-12.051 4.805-5.29 0-9.306-1.614-12.051-4.844m32.032 4.233V25.928h13.5l6.026 31.348V25.928h12.661v65.517h-12.814l-6.559-32.796v32.796Zm49.88-21.051h5.95l-2.898-33.33h-.61Zm-14.491 21.051 6.33-65.517h22.195l6.254 65.517H563.97l-.915-10.601h-7.932l-.763 10.601zm37.951 0V25.928h13.118V80.31h13.501v11.136Zm51.901-3.889c-2.873-3-4.308-7.119-4.308-12.356V44.996c0-6.508 1.296-11.414 3.89-14.72 2.592-3.305 6.659-4.958 12.202-4.958 4.83 0 8.72 1.323 11.67 3.966 2.949 2.645 4.424 6.458 4.424 11.44v11.289H646.31v-9.687c0-1.88-.23-3.176-.687-3.89-.458-.71-1.246-1.067-2.365-1.067-1.17 0-1.97.408-2.402 1.22-.433.814-.649 2.01-.649 3.585v32.873c0 1.73.255 2.988.764 3.775.507.79 1.27 1.183 2.287 1.183 2.033 0 3.052-1.652 3.052-4.958V63.225h13.194v12.356c0 10.983-5.517 16.475-16.55 16.475-4.78 0-8.607-1.5-11.48-4.5m49.623-9.077c.407-1.017.61-2.441.61-4.27V42.173c0-1.423-.19-2.58-.571-3.47-.382-.89-1.158-1.335-2.327-1.335-2.187 0-3.279 1.653-3.279 4.957v31.958c0 1.881.228 3.306.687 4.272.457.966 1.296 1.448 2.517 1.448 1.168 0 1.955-.507 2.363-1.525m-14.414 8.733c-2.747-3.228-4.12-7.767-4.12-13.614V42.403c0-5.644 1.373-9.902 4.12-12.776 2.745-2.872 6.76-4.31 12.05-4.31 5.288 0 9.305 1.438 12.051 4.31 2.746 2.873 4.118 7.132 4.118 12.776v31.195c0 5.898-1.372 10.449-4.118 13.653-2.746 3.203-6.762 4.805-12.05 4.805-5.29 0-9.306-1.614-12.051-4.844m32.033 4.233V25.928h13.5l6.025 31.348V25.928h12.661v65.517H718.09l-6.56-32.796v32.796Zm39.524-3.814c-2.645-2.947-3.967-7.703-3.967-14.262v-6.406h12.89v8.16c0 3.255 1.04 4.882 3.127 4.882 1.169 0 1.983-.343 2.44-1.03.459-.687.687-1.843.687-3.47 0-2.136-.256-3.902-.763-5.301-.508-1.398-1.157-2.567-1.945-3.509-.789-.94-2.2-2.402-4.232-4.385l-5.645-5.645c-4.373-4.27-6.56-9-6.56-14.186 0-5.592 1.284-9.85 3.851-12.776 2.568-2.922 6.319-4.385 11.25-4.385 5.9 0 10.145 1.563 12.738 4.691 2.594 3.127 3.89 8.021 3.89 14.682h-13.347l-.076-4.5c0-.864-.242-1.55-.725-2.06-.483-.507-1.156-.762-2.02-.762-1.018 0-1.782.28-2.288.84-.51.56-.764 1.322-.764 2.287 0 2.135 1.22 4.347 3.66 6.635l7.628 7.323c1.78 1.729 3.254 3.369 4.424 4.92 1.17 1.551 2.11 3.382 2.822 5.49.712 2.111 1.068 4.616 1.068 7.514 0 6.458-1.182 11.352-3.547 14.681-2.363 3.331-6.267 4.997-11.708 4.997-5.948 0-10.246-1.475-12.889-4.424m49.781-9.153c.407-1.017.611-2.441.611-4.27V42.173c0-1.423-.191-2.58-.572-3.47-.381-.89-1.158-1.335-2.326-1.335-2.187 0-3.28 1.653-3.28 4.957v31.958c0 1.881.229 3.306.686 4.272.456.966 1.296 1.448 2.517 1.448 1.169 0 1.957-.507 2.365-1.525m-14.416 8.733c-2.745-3.228-4.118-7.767-4.118-13.614V42.403c0-5.644 1.373-9.902 4.118-12.776 2.745-2.872 6.762-4.31 12.05-4.31s9.306 1.438 12.052 4.31c2.745 2.873 4.118 7.132 4.118 12.776v31.195c0 5.898-1.373 10.449-4.118 13.653-2.746 3.203-6.763 4.805-12.051 4.805-5.289 0-9.306-1.614-12.05-4.844m48.507-37.029c1.83 0 2.746-1.984 2.746-5.95 0-1.728-.076-3.025-.229-3.89-.153-.864-.432-1.46-.838-1.792-.408-.33-.993-.495-1.755-.495h-3.05v12.127Zm-16.475-24.255h20.136c3.203 0 5.682.724 7.436 2.174 1.755 1.45 2.937 3.484 3.547 6.102.61 2.619.915 5.962.915 10.03 0 3.712-.484 6.61-1.45 8.694-.965 2.086-2.643 3.535-5.033 4.348 1.983.408 3.419 1.4 4.31 2.974.888 1.577 1.334 3.713 1.334 6.408l-.152 24.787h-12.814V65.818c0-1.83-.356-2.999-1.068-3.508-.712-.508-2.009-.763-3.89-.763v29.898h-13.271zm42.071 65.517V38.513h-7.78V25.928h28.678v12.585h-7.78v52.932Zm23.613-65.517h12.66v65.517h-12.66zm20.15 61.551c-2.62-3.051-3.928-7.576-3.928-13.576V25.928h12.738v47.44c0 2.086.203 3.714.61 4.883.406 1.17 1.27 1.753 2.593 1.753s2.185-.571 2.593-1.716c.406-1.144.61-2.783.61-4.92v-47.44h12.737v47.975c0 6-1.31 10.525-3.928 13.576-2.62 3.051-6.623 4.576-12.012 4.576-5.39 0-9.395-1.525-12.013-4.576m31.698 3.966V25.928h19.983l5.493 39.966 5.49-39.966h20.136v65.517h-11.974V44.234l-7.551 47.211h-11.745l-8.01-47.212v47.212ZM222.11 153.69c.406-1.016.61-2.44.61-4.27v-32.035c0-1.422-.19-2.58-.573-3.47-.381-.89-1.157-1.334-2.326-1.334-2.187 0-3.28 1.652-3.28 4.957v31.958c0 1.881.229 3.306.687 4.271.457.966 1.296 1.45 2.517 1.45 1.17 0 1.956-.509 2.364-1.526m-14.414 8.733c-2.747-3.229-4.12-7.767-4.12-13.615v-31.194c0-5.644 1.373-9.902 4.12-12.777 2.745-2.871 6.76-4.308 12.05-4.308 5.288 0 9.305 1.437 12.051 4.308 2.746 2.875 4.118 7.133 4.118 12.777v31.194c0 5.9-1.372 10.449-4.118 13.653-2.746 3.203-6.763 4.805-12.05 4.805-5.29 0-9.306-1.613-12.051-4.843m32.033 4.233v-65.518h26.236v12.738h-13.04v10.45h12.355v12.584h-12.356v29.746Zm47.668-65.517h12.66v65.517h-12.66zm16.618 65.517v-65.518h13.5l6.026 31.35v-31.35h12.661v65.518h-12.814l-6.559-32.797v32.797Zm43.261 0-8.085-65.593h12.508l4.805 44.619 4.272-44.62h12.508l-8.085 65.594Zm28.989 0v-65.518h26.238V113.8h-12.89v12.738h12.356v12.357h-12.356v15.024h13.73v12.738Zm33.673-3.814c-2.644-2.948-3.965-7.703-3.965-14.263v-6.406h12.89v8.161c0 3.254 1.04 4.882 3.126 4.882 1.17 0 1.983-.344 2.441-1.03.457-.686.686-1.843.686-3.47 0-2.136-.255-3.902-.762-5.3-.51-1.4-1.158-2.568-1.945-3.51-.79-.94-2.2-2.402-4.233-4.385l-5.644-5.644c-4.375-4.272-6.56-9-6.56-14.187 0-5.592 1.283-9.85 3.852-12.775 2.566-2.923 6.318-4.386 11.25-4.386 5.898 0 10.145 1.564 12.737 4.691 2.593 3.127 3.89 8.021 3.89 14.681h-13.347l-.077-4.498c0-.865-.242-1.551-.724-2.06-.484-.508-1.158-.763-2.021-.763-1.018 0-1.78.28-2.289.839-.508.56-.762 1.322-.762 2.288 0 2.136 1.22 4.348 3.661 6.636l7.627 7.323c1.78 1.727 3.253 3.367 4.424 4.918 1.169 1.552 2.11 3.383 2.822 5.492.712 2.11 1.067 4.614 1.067 7.512 0 6.458-1.182 11.353-3.546 14.683-2.365 3.33-6.268 4.996-11.708 4.996-5.949 0-10.246-1.474-12.89-4.425m37.93 3.814v-52.932h-7.78v-12.586h28.678v12.586h-7.779v52.932Zm23.613-65.517h12.661v65.517H471.48zm19.792 61.131c-2.314-3.33-3.47-8.377-3.47-15.14v-28.22c0-6.051 1.346-10.626 4.042-13.729 2.695-3.101 6.712-4.652 12.051-4.652 4.321 0 7.676.865 10.068 2.593 2.39 1.729 4.042 4.246 4.957 7.55.916 3.307 1.373 7.551 1.373 12.739h-12.814v-5.873c0-1.577-.216-2.797-.648-3.662-.433-.864-1.208-1.296-2.325-1.296-2.492 0-3.738 1.627-3.738 4.88v31.73c0 1.983.254 3.483.762 4.5.508 1.018 1.399 1.526 2.67 1.526 1.27 0 2.16-.508 2.67-1.526.507-1.017.763-2.517.763-4.5v-9.382h-3.51v-11.287h16.018v38.135h-5.263l-2.212-5.492c-2.34 4.069-5.949 6.102-10.831 6.102-4.728 0-8.25-1.665-10.563-4.996m46.288-16.665h5.949l-2.899-33.33H540Zm-14.492 21.05 6.33-65.516h22.195l6.255 65.517h-12.433l-.915-10.602h-7.932l-.763 10.602zm42.047.001v-52.932h-7.78v-12.586h28.679v12.586h-7.78v52.932Zm23.613-65.517h12.662v65.517h-12.662zm23.529 65.517-8.084-65.593h12.509l4.805 44.619 4.27-44.62h12.51l-8.085 65.594Zm28.99 0v-65.518h26.238V113.8h-12.89v12.738h12.356v12.357h-12.357v15.024h13.73v12.738Zm55.677-1.144c-2.44-1.169-4.36-2.885-5.758-5.148-1.4-2.262-2.098-4.996-2.098-8.2v-16.398h12.89v15.635c0 1.17.241 2.099.725 2.785.482.686 1.232 1.03 2.25 1.03.965 0 1.69-.318 2.174-.954.482-.635.724-1.537.724-2.707V101.14h13.195v49.119c0 3.407-.675 6.395-2.021 8.961-1.349 2.569-3.23 4.552-5.645 5.95-2.415 1.4-5.174 2.097-8.275 2.097-3 0-5.72-.585-8.161-1.754m46.044-11.823c.407-1.016.61-2.44.61-4.27v-32.035c0-1.422-.191-2.58-.571-3.47-.382-.89-1.158-1.334-2.327-1.334-2.187 0-3.28 1.652-3.28 4.957v31.958c0 1.881.23 3.306.686 4.271.457.966 1.297 1.45 2.517 1.45 1.17 0 1.957-.509 2.365-1.526m-14.415 8.733c-2.746-3.229-4.12-7.767-4.12-13.615v-31.194c0-5.644 1.374-9.902 4.12-12.777 2.745-2.871 6.762-4.308 12.05-4.308 5.289 0 9.306 1.437 12.051 4.308 2.746 2.875 4.119 7.133 4.119 12.777v31.194c0 5.9-1.373 10.449-4.119 13.653-2.745 3.203-6.762 4.805-12.05 4.805s-9.306-1.613-12.051-4.843m35.573.267c-2.62-3.05-3.928-7.575-3.928-13.577V101.14h12.737v47.44c0 2.086.203 3.714.61 4.882.406 1.17 1.27 1.755 2.594 1.755 1.32 0 2.185-.573 2.593-1.717.406-1.144.61-2.783.61-4.92v-47.44h12.737v47.974c0 6.002-1.31 10.526-3.928 13.577-2.62 3.051-6.623 4.576-12.012 4.576-5.391 0-9.395-1.525-12.013-4.576m48.172-37.297c1.831 0 2.746-1.983 2.746-5.95 0-1.727-.076-3.024-.229-3.89-.152-.863-.432-1.46-.84-1.792-.406-.33-.99-.495-1.753-.495h-3.05v12.127Zm-16.474-24.255h20.135c3.205 0 5.683.726 7.438 2.175 1.753 1.448 2.935 3.483 3.545 6.101.61 2.62.917 5.962.917 10.03 0 3.713-.485 6.61-1.45 8.694-.967 2.086-2.644 3.535-5.034 4.349 1.983.407 3.42 1.398 4.309 2.974.89 1.576 1.335 3.712 1.335 6.407l-.153 24.788h-12.813V141.03c0-1.83-.357-3-1.068-3.508-.712-.509-2.01-.764-3.89-.764v29.899h-13.271zm35.373 65.518v-65.518h13.5l6.026 31.35v-31.35h12.662v65.518H850.57l-6.559-32.797v32.797Zm49.881-21.051h5.95l-2.899-33.33h-.61Zm-14.492 21.05 6.331-65.516h22.194l6.255 65.517h-12.432l-.915-10.602h-7.932l-.763 10.602zm37.952.001v-65.518h13.118v54.381h13.5v11.137Zm29.372-65.517h12.66v65.517h-12.66zm19.79 61.703c-2.644-2.948-3.965-7.703-3.965-14.263v-6.406h12.89v8.161c0 3.254 1.04 4.882 3.126 4.882 1.17 0 1.983-.344 2.441-1.03.457-.686.686-1.843.686-3.47 0-2.136-.255-3.902-.762-5.3-.51-1.4-1.158-2.568-1.945-3.51-.79-.94-2.2-2.402-4.233-4.385l-5.644-5.644c-4.375-4.272-6.56-9-6.56-14.187 0-5.592 1.283-9.85 3.852-12.775 2.566-2.923 6.318-4.386 11.25-4.386 5.898 0 10.145 1.564 12.737 4.691 2.593 3.127 3.89 8.021 3.89 14.681h-13.347l-.077-4.498c0-.865-.242-1.551-.724-2.06-.485-.508-1.158-.763-2.02-.763-1.02 0-1.782.28-2.29.839-.509.56-.762 1.322-.762 2.288 0 2.136 1.22 4.348 3.661 6.636l7.627 7.323c1.78 1.727 3.253 3.367 4.423 4.918 1.17 1.552 2.11 3.383 2.823 5.492.712 2.11 1.067 4.614 1.067 7.512 0 6.458-1.182 11.353-3.546 14.683-2.365 3.33-6.268 4.996-11.709 4.996-5.948 0-10.244-1.474-12.89-4.425m37.931 3.814v-52.932h-7.78v-12.586h28.678v12.586h-7.78v52.932Zm27.236-3.814c-2.645-2.948-3.967-7.703-3.967-14.263v-6.406h12.89v8.161c0 3.254 1.042 4.882 3.128 4.882 1.168 0 1.983-.344 2.44-1.03.458-.686.687-1.843.687-3.47 0-2.136-.256-3.902-.764-5.3-.507-1.4-1.156-2.568-1.945-3.51-.788-.94-2.199-2.402-4.231-4.385l-5.645-5.644c-4.374-4.272-6.56-9-6.56-14.187 0-5.592 1.285-9.85 3.852-12.775 2.567-2.923 6.318-4.386 11.25-4.386 5.899 0 10.144 1.564 12.737 4.691 2.594 3.127 3.89 8.021 3.89 14.681h-13.348l-.075-4.498c0-.865-.242-1.551-.725-2.06-.484-.508-1.156-.763-2.02-.763-1.018 0-1.782.28-2.289.839-.509.56-.764 1.322-.764 2.288 0 2.136 1.221 4.348 3.662 6.636l7.627 7.323c1.78 1.727 3.254 3.367 4.424 4.918 1.17 1.552 2.109 3.383 2.822 5.492.712 2.11 1.068 4.614 1.068 7.512 0 6.458-1.182 11.353-3.547 14.683-2.364 3.33-6.267 4.996-11.708 4.996-5.949 0-10.246-1.474-12.89-4.425"/>
|
|
6
|
+
</svg>
|
|
Binary file
|