@limetech/lime-elements 36.3.0-next.9 → 36.3.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/README.md +2 -2
- package/dist/cjs/lime-elements.cjs.js +1 -1
- package/dist/cjs/limel-badge.cjs.entry.js +4 -6
- package/dist/cjs/limel-button-group.cjs.entry.js +21 -6
- package/dist/cjs/limel-button.cjs.entry.js +1 -1
- package/dist/cjs/limel-callout.cjs.entry.js +54 -0
- package/dist/cjs/limel-chip-set.cjs.entry.js +13 -3
- package/dist/cjs/limel-code-editor.cjs.entry.js +1 -1
- package/dist/cjs/limel-collapsible-section.cjs.entry.js +3 -12
- package/dist/cjs/limel-color-picker-palette.cjs.entry.js +1 -1
- package/dist/cjs/limel-color-picker.cjs.entry.js +1 -1
- package/dist/cjs/limel-date-picker.cjs.entry.js +47 -7
- package/dist/cjs/limel-dialog.cjs.entry.js +1 -1
- package/dist/cjs/limel-dock-button.cjs.entry.js +7 -2
- package/dist/cjs/limel-dock.cjs.entry.js +1 -1
- package/dist/cjs/limel-file.cjs.entry.js +1 -1
- package/dist/cjs/limel-flatpickr-adapter.cjs.entry.js +99 -118
- package/dist/cjs/limel-form.cjs.entry.js +79 -1
- package/dist/cjs/limel-icon-button.cjs.entry.js +1 -1
- package/dist/cjs/limel-info-tile.cjs.entry.js +4 -1
- package/dist/cjs/limel-input-field.cjs.entry.js +2 -2
- package/dist/cjs/limel-list_2.cjs.entry.js +1 -1
- package/dist/cjs/limel-menu-list.cjs.entry.js +7 -1
- package/dist/cjs/limel-menu.cjs.entry.js +10 -2
- package/dist/cjs/limel-portal.cjs.entry.js +3 -4
- package/dist/cjs/limel-select.cjs.entry.js +1 -1
- package/dist/cjs/limel-shortcut.cjs.entry.js +1 -1
- package/dist/cjs/limel-slider.cjs.entry.js +5 -5
- package/dist/cjs/limel-snackbar.cjs.entry.js +2 -2
- package/dist/cjs/limel-spinner.cjs.entry.js +1 -1
- package/dist/cjs/limel-split-button.cjs.entry.js +1 -1
- package/dist/cjs/limel-tab-bar.cjs.entry.js +1 -1
- package/dist/cjs/limel-tab-panel.cjs.entry.js +1 -1
- package/dist/cjs/limel-table.cjs.entry.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/{dateFormatter-d7a8d40d.js → sv-dffe48b5.js} +222 -173
- package/dist/cjs/{translations-ca7279bc.js → translations-f8080c48.js} +30 -0
- package/dist/collection/collection-manifest.json +1 -0
- package/dist/collection/components/badge/badge.css +34 -19
- package/dist/collection/components/badge/badge.js +7 -7
- package/dist/collection/components/banner/banner.css +1 -2
- package/dist/collection/components/button/button.css +31 -41
- package/dist/collection/components/button-group/button-group.css +44 -42
- package/dist/collection/components/button-group/button-group.js +25 -6
- package/dist/collection/components/callout/callout.css +77 -0
- package/dist/collection/components/callout/callout.helpers.js +27 -0
- package/dist/collection/components/callout/callout.js +139 -0
- package/dist/collection/components/callout/callout.types.js +1 -0
- package/dist/collection/components/checkbox/checkbox.css +22 -45
- package/dist/collection/components/chip-set/chip-set.css +219 -405
- package/dist/collection/components/chip-set/chip-set.js +6 -2
- package/dist/collection/components/circular-progress/circular-progress.css +8 -0
- package/dist/collection/components/code-editor/code-editor.css +11 -8
- package/dist/collection/components/collapsible-section/collapsible-section.css +87 -55
- package/dist/collection/components/collapsible-section/collapsible-section.js +2 -11
- package/dist/collection/components/color-picker/color-picker-palette.css +16 -14
- package/dist/collection/components/color-picker/color-picker.css +7 -5
- package/dist/collection/components/date-picker/date-picker.js +30 -5
- package/dist/collection/components/date-picker/dateFormatter.js +7 -3
- package/dist/collection/components/date-picker/flatpickr-adapter/flatpickr-adapter.css +11 -1
- package/dist/collection/components/date-picker/flatpickr-adapter/flatpickr-adapter.js +23 -8
- package/dist/collection/components/date-picker/pickers/Picker.js +11 -8
- package/dist/collection/components/dialog/dialog.css +14 -27
- package/dist/collection/components/dock/dock-button/dock-button.css +17 -2
- package/dist/collection/components/dock/dock-button/dock-button.js +6 -1
- package/dist/collection/components/dock/dock.css +19 -1
- package/dist/collection/components/dock/dock.js +1 -0
- package/dist/collection/components/file/file.js +1 -1
- package/dist/collection/components/form/form.css +122 -18
- package/dist/collection/components/form/form.js +1 -0
- package/dist/collection/components/form/form.types.js +8 -0
- package/dist/collection/components/form/row/row.js +47 -0
- package/dist/collection/components/form/templates/object-field.js +5 -0
- package/dist/collection/components/form/templates/row-layout.js +20 -0
- package/dist/collection/components/header/header.css +8 -0
- package/dist/collection/components/icon-button/icon-button.css +15 -12
- package/dist/collection/components/info-tile/info-tile.css +13 -17
- package/dist/collection/components/info-tile/info-tile.js +3 -0
- package/dist/collection/components/input-field/input-field.css +197 -363
- package/dist/collection/components/input-field/input-field.js +1 -1
- package/dist/collection/components/linear-progress/linear-progress.css +7 -14
- package/dist/collection/components/list/list.css +388 -751
- package/dist/collection/components/menu/menu.css +19 -1
- package/dist/collection/components/menu/menu.js +10 -1
- package/dist/collection/components/menu-list/menu-list-renderer.js +6 -1
- package/dist/collection/components/menu-list/menu-list.css +400 -752
- package/dist/collection/components/menu-surface/menu-surface.css +13 -26
- package/dist/collection/components/popover-surface/popover-surface.css +8 -0
- package/dist/collection/components/progress-flow/progress-flow-item/progress-flow-item.css +8 -0
- package/dist/collection/components/select/select.css +174 -323
- package/dist/collection/components/shortcut/shortcut.css +9 -7
- package/dist/collection/components/slider/slider.css +87 -98
- package/dist/collection/components/slider/slider.js +5 -5
- package/dist/collection/components/snackbar/snackbar.css +19 -34
- package/dist/collection/components/snackbar/snackbar.js +1 -1
- package/dist/collection/components/spinner/spinner.css +4 -0
- package/dist/collection/components/split-button/split-button.css +15 -4
- package/dist/collection/components/switch/switch.css +21 -49
- package/dist/collection/components/tab-bar/tab-bar.css +20 -19
- package/dist/collection/components/tab-panel/tab-panel.css +5 -0
- package/dist/collection/components/table/table.css +33 -0
- package/dist/collection/icons/idea.svg +593 -0
- package/dist/collection/icons/info.svg +593 -0
- package/dist/collection/style/internal/z-index.scss +0 -1
- package/dist/collection/style/mixins.scss +15 -4
- package/dist/collection/translations/da.js +5 -0
- package/dist/collection/translations/en.js +5 -0
- package/dist/collection/translations/fi.js +5 -0
- package/dist/collection/translations/nl.js +5 -0
- package/dist/collection/translations/no.js +5 -0
- package/dist/collection/translations/sv.js +5 -0
- package/dist/esm/{keycodes-9f971b46.js → keycodes-44c01beb.js} +1 -1
- package/dist/esm/lime-elements.js +1 -1
- package/dist/esm/limel-badge.entry.js +4 -6
- package/dist/esm/limel-button-group.entry.js +21 -6
- package/dist/esm/limel-button.entry.js +1 -1
- package/dist/esm/limel-callout.entry.js +50 -0
- package/dist/esm/limel-chip-set.entry.js +14 -4
- package/dist/esm/limel-code-editor.entry.js +1 -1
- package/dist/esm/limel-collapsible-section.entry.js +3 -12
- package/dist/esm/limel-color-picker-palette.entry.js +1 -1
- package/dist/esm/limel-color-picker.entry.js +1 -1
- package/dist/esm/limel-date-picker.entry.js +46 -6
- package/dist/esm/limel-dialog.entry.js +1 -1
- package/dist/esm/limel-dock-button.entry.js +7 -2
- package/dist/esm/limel-dock.entry.js +1 -1
- package/dist/esm/limel-file.entry.js +1 -1
- package/dist/esm/limel-flatpickr-adapter.entry.js +99 -118
- package/dist/esm/limel-form.entry.js +79 -1
- package/dist/esm/limel-icon-button.entry.js +1 -1
- package/dist/esm/limel-info-tile.entry.js +4 -1
- package/dist/esm/limel-input-field.entry.js +3 -3
- package/dist/esm/limel-list_2.entry.js +2 -2
- package/dist/esm/limel-menu-list.entry.js +7 -1
- package/dist/esm/limel-menu.entry.js +10 -2
- package/dist/esm/limel-picker.entry.js +1 -1
- package/dist/esm/limel-popover_4.entry.js +1 -1
- package/dist/esm/limel-portal.entry.js +3 -4
- package/dist/esm/limel-select.entry.js +2 -2
- package/dist/esm/limel-shortcut.entry.js +1 -1
- package/dist/esm/limel-slider.entry.js +6 -6
- package/dist/esm/limel-snackbar.entry.js +2 -2
- package/dist/esm/limel-spinner.entry.js +1 -1
- package/dist/esm/limel-split-button.entry.js +1 -1
- package/dist/esm/limel-tab-bar.entry.js +1 -1
- package/dist/esm/limel-tab-panel.entry.js +1 -1
- package/dist/esm/limel-table.entry.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/{dateFormatter-784c3334.js → sv-336c4576.js} +222 -173
- package/dist/esm/{translations-0d0ee941.js → translations-f88bb584.js} +30 -0
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/{p-a8d38277.entry.js → p-10e259de.entry.js} +1 -1
- package/dist/lime-elements/{p-934456bc.entry.js → p-123f5fbb.entry.js} +1 -1
- package/dist/lime-elements/{p-c234a991.entry.js → p-157e0417.entry.js} +2 -2
- package/dist/lime-elements/p-2f9918a3.entry.js +1 -0
- package/dist/lime-elements/p-2fd478df.entry.js +1 -0
- package/dist/lime-elements/p-3be2dfc7.entry.js +1 -0
- package/dist/lime-elements/{p-06f2f6b4.entry.js → p-3fda3473.entry.js} +1 -1
- package/dist/lime-elements/p-46a76d55.entry.js +1 -0
- package/dist/lime-elements/p-4a62273c.entry.js +1 -0
- package/dist/lime-elements/{p-73df4d83.js → p-4dd9a5a5.js} +5 -3
- package/dist/lime-elements/{p-d1187867.entry.js → p-4eeabc1f.entry.js} +1 -1
- package/dist/lime-elements/{p-2f2ea041.entry.js → p-4fcd3337.entry.js} +1 -1
- package/dist/lime-elements/{p-029360c8.entry.js → p-50dbd665.entry.js} +1 -1
- package/dist/lime-elements/{p-e5213a54.entry.js → p-55c8cb64.entry.js} +4 -4
- package/dist/lime-elements/{p-cad7cda1.entry.js → p-58e9df30.entry.js} +1 -1
- package/dist/lime-elements/p-73613abb.entry.js +82 -0
- package/dist/lime-elements/{p-6784c5c3.entry.js → p-7d7d19de.entry.js} +1 -1
- package/dist/lime-elements/{p-9ec08ebc.entry.js → p-8178b348.entry.js} +3 -3
- package/dist/lime-elements/{p-004aad18.entry.js → p-9336fd7f.entry.js} +1 -1
- package/dist/lime-elements/{p-a0c78744.entry.js → p-a88f2922.entry.js} +2 -2
- package/dist/lime-elements/p-b1ae3d1f.entry.js +126 -0
- package/dist/lime-elements/p-b40f37d7.entry.js +1 -0
- package/dist/lime-elements/p-b59e4287.js +1 -0
- package/dist/lime-elements/{p-405207fa.entry.js → p-b80de0ea.entry.js} +1 -1
- package/dist/lime-elements/p-c47cb4c3.entry.js +1 -0
- package/dist/lime-elements/{p-b079fc71.entry.js → p-cc3529bb.entry.js} +1 -1
- package/dist/lime-elements/{p-93ad8b90.entry.js → p-d0084a70.entry.js} +1 -1
- package/dist/lime-elements/p-d16b27b9.entry.js +1 -0
- package/dist/lime-elements/{p-216ffe20.js → p-d7801e00.js} +1 -1
- package/dist/lime-elements/p-d87e2f26.entry.js +1 -0
- package/dist/lime-elements/p-d955c169.entry.js +59 -0
- package/dist/lime-elements/p-da536426.entry.js +1 -0
- package/dist/lime-elements/p-e69231c2.entry.js +16 -0
- package/dist/lime-elements/p-eda87f8c.entry.js +1 -0
- package/dist/lime-elements/{p-0bf916a0.entry.js → p-edbd8d62.entry.js} +1 -1
- package/dist/lime-elements/p-f11e7ce1.entry.js +1 -0
- package/dist/lime-elements/{p-5409b92f.entry.js → p-f979c0f2.entry.js} +1 -1
- package/dist/lime-elements/style/internal/z-index.scss +0 -1
- package/dist/lime-elements/style/mixins.scss +15 -4
- package/dist/scss/mixins.scss +186 -0
- package/dist/types/components/badge/badge.d.ts +4 -2
- package/dist/types/components/button/button.types.d.ts +4 -0
- package/dist/types/components/button-group/button-group.d.ts +4 -0
- package/dist/types/components/callout/callout.d.ts +52 -0
- package/dist/types/components/callout/callout.helpers.d.ts +2 -0
- package/dist/types/components/callout/callout.types.d.ts +11 -0
- package/dist/types/components/chip-set/chip-set.d.ts +1 -1
- package/dist/types/components/collapsible-section/collapsible-section.d.ts +0 -1
- package/dist/types/components/date-picker/date-picker.d.ts +10 -0
- package/dist/types/components/date-picker/date.types.d.ts +1 -1
- package/dist/types/components/date-picker/dateFormatter.d.ts +3 -2
- package/dist/types/components/date-picker/flatpickr-adapter/flatpickr-adapter.d.ts +1 -1
- package/dist/types/components/date-picker/pickers/Picker.d.ts +4 -2
- package/dist/types/components/dock/dock-button/dock-button.d.ts +1 -0
- package/dist/types/components/dock/dock.d.ts +1 -0
- package/dist/types/components/dock/dock.types.d.ts +4 -0
- package/dist/types/components/form/form.d.ts +1 -0
- package/dist/types/components/form/form.types.d.ts +16 -1
- package/dist/types/components/form/row/row.d.ts +16 -0
- package/dist/types/components/form/templates/row-layout.d.ts +11 -0
- package/dist/types/components/form/templates/types.d.ts +3 -0
- package/dist/types/components/menu/menu.d.ts +3 -0
- package/dist/types/components/menu/menu.types.d.ts +4 -0
- package/dist/types/components/menu-list/menu-list-renderer.d.ts +1 -0
- package/dist/types/components.d.ts +57 -1
- package/dist/types/interface.d.ts +1 -0
- package/dist/types/translations/da.d.ts +5 -0
- package/dist/types/translations/en.d.ts +5 -0
- package/dist/types/translations/fi.d.ts +5 -0
- package/dist/types/translations/nl.d.ts +5 -0
- package/dist/types/translations/no.d.ts +5 -0
- package/dist/types/translations/sv.d.ts +5 -0
- package/package.json +23 -20
- package/dist/lime-elements/p-15c3ec8e.entry.js +0 -1
- package/dist/lime-elements/p-246862ec.js +0 -1
- package/dist/lime-elements/p-52e18d94.entry.js +0 -1
- package/dist/lime-elements/p-5393213b.entry.js +0 -1
- package/dist/lime-elements/p-61b3352f.entry.js +0 -1
- package/dist/lime-elements/p-65a3be2c.entry.js +0 -1
- package/dist/lime-elements/p-90961075.entry.js +0 -1
- package/dist/lime-elements/p-91604294.entry.js +0 -1
- package/dist/lime-elements/p-95fd48d0.entry.js +0 -82
- package/dist/lime-elements/p-c4a89055.entry.js +0 -16
- package/dist/lime-elements/p-cc9f89a9.entry.js +0 -1
- package/dist/lime-elements/p-d379f4d6.entry.js +0 -59
- package/dist/lime-elements/p-d512656b.entry.js +0 -1
- package/dist/lime-elements/p-e6a11b73.entry.js +0 -1
- package/dist/lime-elements/p-f9958763.entry.js +0 -1
- package/dist/lime-elements/p-ff340a70.entry.js +0 -126
|
@@ -0,0 +1,593 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
version="1.1"
|
|
6
|
+
id="svg13588"
|
|
7
|
+
width="800"
|
|
8
|
+
height="800"
|
|
9
|
+
viewBox="0 0 800 800"
|
|
10
|
+
sodipodi:docname="yoga-exercise-5-publicdomainvectors.org.svg"
|
|
11
|
+
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
|
|
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
|
+
<defs
|
|
17
|
+
id="defs13592">
|
|
18
|
+
<clipPath
|
|
19
|
+
clipPathUnits="userSpaceOnUse"
|
|
20
|
+
id="clipPath13604">
|
|
21
|
+
<path
|
|
22
|
+
d="M 0,600 H 600 V 0 H 0 Z"
|
|
23
|
+
id="path13602" />
|
|
24
|
+
</clipPath>
|
|
25
|
+
</defs>
|
|
26
|
+
<sodipodi:namedview
|
|
27
|
+
id="namedview13590"
|
|
28
|
+
pagecolor="#ffffff"
|
|
29
|
+
bordercolor="#000000"
|
|
30
|
+
borderopacity="0.25"
|
|
31
|
+
inkscape:showpageshadow="2"
|
|
32
|
+
inkscape:pageopacity="0.0"
|
|
33
|
+
inkscape:pagecheckerboard="0"
|
|
34
|
+
inkscape:deskcolor="#d1d1d1"
|
|
35
|
+
showgrid="false"
|
|
36
|
+
inkscape:zoom="1.04625"
|
|
37
|
+
inkscape:cx="400"
|
|
38
|
+
inkscape:cy="400.4779"
|
|
39
|
+
inkscape:window-width="1920"
|
|
40
|
+
inkscape:window-height="1017"
|
|
41
|
+
inkscape:window-x="-8"
|
|
42
|
+
inkscape:window-y="-8"
|
|
43
|
+
inkscape:window-maximized="1"
|
|
44
|
+
inkscape:current-layer="g13596">
|
|
45
|
+
<inkscape:page
|
|
46
|
+
x="0"
|
|
47
|
+
y="0"
|
|
48
|
+
id="page13594"
|
|
49
|
+
width="800"
|
|
50
|
+
height="800" />
|
|
51
|
+
</sodipodi:namedview>
|
|
52
|
+
<g
|
|
53
|
+
id="g13596"
|
|
54
|
+
inkscape:groupmode="layer"
|
|
55
|
+
inkscape:label="Page 1"
|
|
56
|
+
transform="matrix(1.3333333,0,0,-1.3333333,0,800)">
|
|
57
|
+
<g
|
|
58
|
+
id="g13598">
|
|
59
|
+
<g
|
|
60
|
+
id="g13600"
|
|
61
|
+
clip-path="url(#clipPath13604)">
|
|
62
|
+
<g
|
|
63
|
+
id="g13606"
|
|
64
|
+
transform="translate(578.1914,386.9897)">
|
|
65
|
+
<path
|
|
66
|
+
d="m 0,0 c -0.485,0.142 -1.749,-0.009 -2.118,-0.805 -0.135,-0.289 -0.265,-0.568 -0.391,-0.84 L 1.248,-2.419 C 1.076,-0.893 0.722,-0.488 0,0"
|
|
67
|
+
style="fill:#b4281c;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
68
|
+
id="path13608" />
|
|
69
|
+
</g>
|
|
70
|
+
<g
|
|
71
|
+
id="g13610"
|
|
72
|
+
transform="translate(516.7393,323.3911)">
|
|
73
|
+
<path
|
|
74
|
+
d="m 0,0 c 8.265,6.945 15.04,12.196 19.5,14.237 10.155,4.67 35.493,11.545 39.625,13.864 0.943,0.516 14.303,9.853 14.684,10.425 -0.098,0.981 -0.378,1.987 -0.901,2.823 -2.305,0.126 -4.492,0.99 -5.66,-0.311 -0.594,-0.488 -0.775,-1.254 -1.141,-1.888 -0.596,-0.578 -1.405,-0.848 -2.122,-1.236 -0.458,0.824 -1.155,1.538 -1.358,2.481 -0.084,0.8 -0.041,1.598 0.027,2.396 L -9.285,2.777 Z"
|
|
75
|
+
style="fill:#ab8fa7;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
76
|
+
id="path13612" />
|
|
77
|
+
</g>
|
|
78
|
+
<g
|
|
79
|
+
id="g13614"
|
|
80
|
+
transform="translate(506.0645,314.2578)">
|
|
81
|
+
<path
|
|
82
|
+
d="M 0,0 C 3.766,3.255 7.341,6.332 10.675,9.133 L 1.39,11.911 Z"
|
|
83
|
+
style="fill:#5898c4;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
84
|
+
id="path13616" />
|
|
85
|
+
</g>
|
|
86
|
+
<g
|
|
87
|
+
id="g13618"
|
|
88
|
+
transform="translate(542.9297,375.9956)">
|
|
89
|
+
<path
|
|
90
|
+
d="m 0,0 c 0.396,0.003 0.803,0.003 1.212,0.006 1.118,-6.253 7.396,-9.463 2.804,-18.155 -2.629,2.69 -5.165,5.469 -7.77,8.178 C -2.536,-6.635 -1.227,-3.333 0,0 m 36.464,-9.814 c 0.09,1.05 0.227,2.101 0.194,3.155 C 36.641,2.424 36.741,6.518 36.51,8.575 L 32.753,9.349 C 29.245,1.765 29.028,0.082 29.318,-3.117 c 0.044,-4.188 -0.11,-6.974 -4.405,-8.84 -1.442,-0.683 -3.037,-1.885 -4.11,-1.685 -1.323,0.443 -2.27,2.665 -2.423,4.089 -0.148,2.113 0.974,7.868 -6.611,13.23 C 5.387,7.579 7.566,16.667 -1.915,15.505 -5.617,15.143 -5.384,11.813 -5.531,10.57 -5.709,9.602 -5.59,9.583 -13.534,-4.541 c -6.705,-12.148 -9.663,-11.606 -10.61,-16.477 -0.427,-1.395 0.406,-3.207 -1.485,-4.977 -4.624,-4.6 -8.894,-8.37 -12.996,-11.593 l 3.149,-12.239 z"
|
|
91
|
+
style="fill:#b28e76;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
92
|
+
id="path13620" />
|
|
93
|
+
</g>
|
|
94
|
+
<g
|
|
95
|
+
id="g13622"
|
|
96
|
+
transform="translate(444.6328,294.9004)">
|
|
97
|
+
<path
|
|
98
|
+
d="M 0,0 13.263,-20.008 C 30.065,-7.961 47.111,6.977 61.432,19.357 l 1.389,11.911 z"
|
|
99
|
+
style="fill:#6dc9cd;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
100
|
+
id="path13624" />
|
|
101
|
+
</g>
|
|
102
|
+
<g
|
|
103
|
+
id="g13626"
|
|
104
|
+
transform="translate(507.4541,326.1685)">
|
|
105
|
+
<path
|
|
106
|
+
d="M 0,0 -3.149,12.239 C -10.905,6.146 -18.054,2.011 -25.83,-2.068 -44.614,-12.122 -52.949,-16.987 -58.164,-19.485 l -4.657,-11.783 z"
|
|
107
|
+
style="fill:#abc38b;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
108
|
+
id="path13628" />
|
|
109
|
+
</g>
|
|
110
|
+
<g
|
|
111
|
+
id="g13630"
|
|
112
|
+
transform="translate(449.29,306.6836)">
|
|
113
|
+
<path
|
|
114
|
+
d="m 0,0 c -3.591,-1.721 -5.704,-2.318 -8.728,-2.715 l 4.071,-9.068 z"
|
|
115
|
+
style="fill:#c8c46c;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
116
|
+
id="path13632" />
|
|
117
|
+
</g>
|
|
118
|
+
<g
|
|
119
|
+
id="g13634"
|
|
120
|
+
transform="translate(418.6631,157.9316)">
|
|
121
|
+
<path
|
|
122
|
+
d="M 0,0 C 11.132,9.652 20.939,20.578 29.581,31.682 L 3.797,56.238 Z"
|
|
123
|
+
style="fill:#0097de;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
124
|
+
id="path13636" />
|
|
125
|
+
</g>
|
|
126
|
+
<g
|
|
127
|
+
id="g13638"
|
|
128
|
+
transform="translate(448.2441,189.6133)">
|
|
129
|
+
<path
|
|
130
|
+
d="m 0,0 c 0.379,0.486 0.757,0.973 1.131,1.459 3.886,5.062 3.449,6.111 5.46,8.9 1.073,1.479 5.215,4.541 3.137,11.524 -0.078,0.267 -0.748,2.26 -1.842,4.918 l -33.67,-2.244 z"
|
|
131
|
+
style="fill:#008dde;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
132
|
+
id="path13640" />
|
|
133
|
+
</g>
|
|
134
|
+
<g
|
|
135
|
+
id="g13642"
|
|
136
|
+
transform="translate(456.1299,216.4141)">
|
|
137
|
+
<path
|
|
138
|
+
d="m 0,0 c -1.766,4.285 -4.641,10.299 -7.939,13.605 -4.687,4.918 -12.329,9.075 -18.967,8.778 L -33.67,-2.244 Z"
|
|
139
|
+
style="fill:#169ee2;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
140
|
+
id="path13644" />
|
|
141
|
+
</g>
|
|
142
|
+
<g
|
|
143
|
+
id="g13646"
|
|
144
|
+
transform="translate(435.6045,262.0293)">
|
|
145
|
+
<path
|
|
146
|
+
d="m 0,0 c 4.052,1.113 5.959,3.859 6.686,4.307 3.06,2.017 6.854,2.531 9.904,4.576 1.894,1.283 3.797,2.613 5.701,3.98 L 9.028,32.871 Z"
|
|
147
|
+
style="fill:#169ee2;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
148
|
+
id="path13648" />
|
|
149
|
+
</g>
|
|
150
|
+
<g
|
|
151
|
+
id="g13650"
|
|
152
|
+
transform="translate(344.5723,276.9902)">
|
|
153
|
+
<path
|
|
154
|
+
d="m 0,0 3.646,9.332 c 0,0.129 0,0.252 10e-4,0.383 1.077,13.767 0.874,7.99 4.692,20.359 0.224,0.184 0.498,0.332 0.634,0.604 7.217,13.488 5.145,10.521 9.594,16.842 l 21.942,56.157 c -0.112,0.141 -0.224,0.283 -0.339,0.42 -6.587,7.817 -12.498,9.928 -18.669,10.813 L -32.406,88.975 Z"
|
|
155
|
+
style="fill:#dae262;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
156
|
+
id="path13652" />
|
|
157
|
+
</g>
|
|
158
|
+
<g
|
|
159
|
+
id="g13654"
|
|
160
|
+
transform="translate(384.5479,85.0684)">
|
|
161
|
+
<path
|
|
162
|
+
d="m 0,0 c 0.72,0.219 1.31,0.449 1.722,0.67 9.897,5.273 7.686,12.971 7.195,24.621 -0.08,0.568 0.076,3.545 -1.021,3.701 -2.269,0.584 -2.601,2.041 -2.583,4.342 -0.311,4.213 0.387,2.619 -6.684,11.029 l -24.96,-12.48 z"
|
|
163
|
+
style="fill:#008ad9;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
164
|
+
id="path13656" />
|
|
165
|
+
</g>
|
|
166
|
+
<g
|
|
167
|
+
id="g13658"
|
|
168
|
+
transform="translate(429.2236,238.7969)">
|
|
169
|
+
<path
|
|
170
|
+
d="m 0,0 c -0.978,-0.045 -1.934,-0.184 -2.855,-0.434 0,0 0.9,0.18 -21.882,-6.609 -0.606,-0.205 -1.431,-0.613 -2.411,-1.143 l 20.384,-16.441 z"
|
|
171
|
+
style="fill:#74e0e0;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
172
|
+
id="path13660" />
|
|
173
|
+
</g>
|
|
174
|
+
<g
|
|
175
|
+
id="g13662"
|
|
176
|
+
transform="translate(348.2188,274.0508)">
|
|
177
|
+
<path
|
|
178
|
+
d="M 0,0 C -0.009,1.127 -0.015,2.322 -0.017,3.59 L -3.646,2.939 Z"
|
|
179
|
+
style="fill:#74e0e0;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
180
|
+
id="path13664" />
|
|
181
|
+
</g>
|
|
182
|
+
<g
|
|
183
|
+
id="g13666"
|
|
184
|
+
transform="translate(394.0088,285.8398)">
|
|
185
|
+
<path
|
|
186
|
+
d="M 0,0 C 4.135,-3.971 8.962,-8.229 14.681,-12.848 28.211,-24.057 36.56,-25.195 41.596,-23.811 L 50.624,9.061 Z"
|
|
187
|
+
style="fill:#74e0e0;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
188
|
+
id="path13668" />
|
|
189
|
+
</g>
|
|
190
|
+
<g
|
|
191
|
+
id="g13670"
|
|
192
|
+
transform="translate(364.4443,326.3667)">
|
|
193
|
+
<path
|
|
194
|
+
d="m 0,0 c 0.849,-0.372 1.78,-0.771 2.321,-1.565 0.775,-1.99 0.28,-4.357 1.614,-6.159 5.67,-9.397 11.731,-19.461 25.629,-32.803 l 50.624,9.061 -4.07,9.068 c -0.803,-0.103 -1.67,-0.195 -2.646,-0.289 -4.493,-0.166 -4.938,0.219 -8.271,3.572 -9.275,10.226 -14.161,26.168 -20.166,33.657 -2.34,3.004 -4.916,5.839 -6.899,9.101 -5.15,8.855 -7.877,19.108 -10.539,22.186 -1.212,1.427 -2.512,2.773 -3.717,4.206 -1.171,1.352 -2.13,2.869 -3.243,4.266 L -1.305,-1.856 C -0.922,-1.311 -0.49,-0.699 0,0"
|
|
195
|
+
style="fill:#afdf7b;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
196
|
+
id="path13672" />
|
|
197
|
+
</g>
|
|
198
|
+
<g
|
|
199
|
+
id="g13674"
|
|
200
|
+
transform="translate(348.2021,277.6406)">
|
|
201
|
+
<path
|
|
202
|
+
d="M 0,0 C -0.006,2.57 0.001,5.447 0.016,8.682 L -3.63,-0.65 Z"
|
|
203
|
+
style="fill:#afdf7b;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
204
|
+
id="path13676" />
|
|
205
|
+
</g>
|
|
206
|
+
<g
|
|
207
|
+
id="g13678"
|
|
208
|
+
transform="translate(326.9551,481.7827)">
|
|
209
|
+
<path
|
|
210
|
+
d="m 0,0 c -1.489,8.546 -3.643,17.625 -6.05,23.015 -4.362,9.577 -11.904,10.8 -17.282,15.756 -1.261,1.333 -2.633,2.275 -4.04,2.898 l 2.065,-68.797 z"
|
|
211
|
+
style="fill:#df2200;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
212
|
+
id="path13680" />
|
|
213
|
+
</g>
|
|
214
|
+
<g
|
|
215
|
+
id="g13682"
|
|
216
|
+
transform="translate(358.2168,116.9512)">
|
|
217
|
+
<path
|
|
218
|
+
d="m 0,0 24.96,12.48 c -0.54,0.643 -1.124,1.342 -1.759,2.108 -0.691,0.85 -2.932,3.281 -2.155,4.496 3.416,2.367 5.94,-0.412 12.111,2.818 9.886,5.338 18.958,11.852 27.289,19.078 l 3.797,56.239 z"
|
|
219
|
+
style="fill:#009be2;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
220
|
+
id="path13684" />
|
|
221
|
+
</g>
|
|
222
|
+
<g
|
|
223
|
+
id="g13686"
|
|
224
|
+
transform="translate(358.2168,116.9512)">
|
|
225
|
+
<path
|
|
226
|
+
d="m 0,0 64.243,97.219 -38.941,7.929 c -1.491,-0.529 -2.939,-1.154 -4.268,-2.031 -6.223,-4.517 -10.297,-2.685 -16.513,-3.756 -3.008,-0.422 -3.884,3.998 -5.599,11.16 l -58.901,11.997 z"
|
|
227
|
+
style="fill:#14b4ec;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
228
|
+
id="path13688" />
|
|
229
|
+
</g>
|
|
230
|
+
<g
|
|
231
|
+
id="g13690"
|
|
232
|
+
transform="translate(327.0127,455.6626)">
|
|
233
|
+
<path
|
|
234
|
+
d="M 0,0 C 1.056,1.846 1.834,4.053 2.053,7.606 2.06,11.404 1.262,18.553 -0.058,26.12 L -25.364,-1.008 Z"
|
|
235
|
+
style="fill:#dc2b00;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
236
|
+
id="path13692" />
|
|
237
|
+
</g>
|
|
238
|
+
<g
|
|
239
|
+
id="g13694"
|
|
240
|
+
transform="translate(320.665,444.6831)">
|
|
241
|
+
<path
|
|
242
|
+
d="M 0,0 C 2.002,5.78 4.568,7.867 6.348,10.979 L -19.017,9.972 Z"
|
|
243
|
+
style="fill:#df5e00;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
244
|
+
id="path13696" />
|
|
245
|
+
</g>
|
|
246
|
+
<g
|
|
247
|
+
id="g13698"
|
|
248
|
+
transform="translate(298.2373,239.4687)">
|
|
249
|
+
<path
|
|
250
|
+
d="m 0,0 58.901,-11.996 c -0.567,2.369 -1.225,5.039 -2.084,7.934 -5.329,19.917 -6.67,17.406 -6.836,38.644 l -3.646,2.939 z"
|
|
251
|
+
style="fill:#67d7ef;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
252
|
+
id="path13700" />
|
|
253
|
+
</g>
|
|
254
|
+
<g
|
|
255
|
+
id="g13702"
|
|
256
|
+
transform="translate(402.0752,230.6113)">
|
|
257
|
+
<path
|
|
258
|
+
d="m 0,0 c -3.558,-1.924 -9.174,-5.475 -13.905,-6.996 -1.537,-0.522 -3.117,-0.969 -4.652,-1.516 l 38.942,-7.929 z"
|
|
259
|
+
style="fill:#67d7ef;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
260
|
+
id="path13704" />
|
|
261
|
+
</g>
|
|
262
|
+
<g
|
|
263
|
+
id="g13706"
|
|
264
|
+
transform="translate(355.9492,90.625)">
|
|
265
|
+
<path
|
|
266
|
+
d="m 0,0 c 12.19,-3.049 8.91,-3.252 13.257,-5.043 5.149,-2.332 11.83,-1.578 15.342,-0.514 L 2.268,26.326 Z"
|
|
267
|
+
style="fill:#0074d4;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
268
|
+
id="path13708" />
|
|
269
|
+
</g>
|
|
270
|
+
<g
|
|
271
|
+
id="g13710"
|
|
272
|
+
transform="translate(312.166,365.9653)">
|
|
273
|
+
<path
|
|
274
|
+
d="M 0,0 53.907,25.935 C 45.898,27.082 37.452,26.165 26.52,32.973 16.573,38.858 5.767,41.569 5.446,51.589 5.408,65.657 6.734,73.622 8.499,78.718 l -19.017,9.971 z"
|
|
275
|
+
style="fill:#e88200;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
276
|
+
id="path13712" />
|
|
277
|
+
</g>
|
|
278
|
+
<g
|
|
279
|
+
id="g13714"
|
|
280
|
+
transform="translate(312.166,365.9653)">
|
|
281
|
+
<path
|
|
282
|
+
d="M 0,0 -42.923,-65.096 32.406,-88.975 Z"
|
|
283
|
+
style="fill:#dcf07c;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
284
|
+
id="path13716" />
|
|
285
|
+
</g>
|
|
286
|
+
<g
|
|
287
|
+
id="g13718"
|
|
288
|
+
transform="translate(225.1816,138.5547)">
|
|
289
|
+
<path
|
|
290
|
+
d="M 0,0 133.035,-21.604 73.056,100.914 Z"
|
|
291
|
+
style="fill:#31bded;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
292
|
+
id="path13720" />
|
|
293
|
+
</g>
|
|
294
|
+
<g
|
|
295
|
+
id="g13722"
|
|
296
|
+
transform="translate(355.9492,90.625)">
|
|
297
|
+
<path
|
|
298
|
+
d="M 0,0 2.268,26.326 -20.757,6.762 c 8,-2.766 15.308,-5.459 19.29,-6.401 C -0.953,0.236 -0.467,0.115 0,0"
|
|
299
|
+
style="fill:#0069d5;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
300
|
+
id="path13724" />
|
|
301
|
+
</g>
|
|
302
|
+
<g
|
|
303
|
+
id="g13726"
|
|
304
|
+
transform="translate(225.1816,138.5547)">
|
|
305
|
+
<path
|
|
306
|
+
d="m 0,0 8.559,-58.115 c 4.263,0.603 8.996,1.705 14.864,4.004 5.525,2.033 11.453,2.527 17.073,4.213 6.626,2.05 12.966,4.882 19.431,7.369 15.21,6.023 17.269,9.484 22.973,8.716 7.048,-0.658 17.572,-4.058 27.111,-7.355 l 23.024,19.564 z"
|
|
307
|
+
style="fill:#0181dd;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
308
|
+
id="path13728" />
|
|
309
|
+
</g>
|
|
310
|
+
<g
|
|
311
|
+
id="g13730"
|
|
312
|
+
transform="translate(216.0854,183.4687)">
|
|
313
|
+
<path
|
|
314
|
+
d="M 0,0 9.096,-44.914 82.152,56 Z"
|
|
315
|
+
style="fill:#8bebdb;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
316
|
+
id="path13732" />
|
|
317
|
+
</g>
|
|
318
|
+
<g
|
|
319
|
+
id="g13734"
|
|
320
|
+
transform="translate(301.6484,454.6548)">
|
|
321
|
+
<path
|
|
322
|
+
d="M 0,0 -36.386,-71.918 10.518,-88.689 Z"
|
|
323
|
+
style="fill:#f38900;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
324
|
+
id="path13736" />
|
|
325
|
+
</g>
|
|
326
|
+
<g
|
|
327
|
+
id="g13738"
|
|
328
|
+
transform="translate(269.2427,300.8691)">
|
|
329
|
+
<path
|
|
330
|
+
d="M 0,0 28.995,-61.4 75.33,-23.879 Z"
|
|
331
|
+
style="fill:#b7f3bb;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
332
|
+
id="path13740" />
|
|
333
|
+
</g>
|
|
334
|
+
<g
|
|
335
|
+
id="g13742"
|
|
336
|
+
transform="translate(265.4712,515.9917)">
|
|
337
|
+
<path
|
|
338
|
+
d="m 0,0 c -5.74,-5.332 -5.494,-13.276 -7.929,-20.031 -2.488,-6.871 -0.271,-14.435 -3.022,-21.654 -0.332,-0.95 -1.548,-2.81 -1.973,-5.643 l 0.931,-7.638 c 0.022,-0.059 0.041,-0.118 0.064,-0.179 1.682,-4.462 3.688,-6.111 5.816,-8.281 L 14.817,4.458 C 9.663,4.323 5.518,5.767 0,0"
|
|
339
|
+
style="fill:#ef3500;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
340
|
+
id="path13744" />
|
|
341
|
+
</g>
|
|
342
|
+
<g
|
|
343
|
+
id="g13746"
|
|
344
|
+
transform="translate(299.583,523.4517)">
|
|
345
|
+
<path
|
|
346
|
+
d="m 0,0 c -3.692,1.637 -7.625,1.069 -10.417,-0.463 -3.42,-2.001 -6.277,-2.471 -8.877,-2.539 l -20.931,-67.884 c 1.127,-1.148 2.288,-2.443 3.454,-4.38 0.842,-1.365 1.515,-2.792 2.068,-4.264 l 36.768,10.733 z"
|
|
347
|
+
style="fill:#f43800;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
348
|
+
id="path13748" />
|
|
349
|
+
</g>
|
|
350
|
+
<g
|
|
351
|
+
id="g13750"
|
|
352
|
+
transform="translate(301.6484,454.6548)">
|
|
353
|
+
<path
|
|
354
|
+
d="m 0,0 -36.768,-10.733 c 1.894,-5.034 2.391,-10.602 3.426,-16.089 0.347,-1.888 0.184,-3.81 0.224,-5.716 -0.475,-7.014 1.782,-11.357 -6.969,-16.273 l 3.701,-23.107 z"
|
|
355
|
+
style="fill:#f77700;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
356
|
+
id="path13752" />
|
|
357
|
+
</g>
|
|
358
|
+
<g
|
|
359
|
+
id="g13754"
|
|
360
|
+
transform="translate(265.2627,382.7368)">
|
|
361
|
+
<path
|
|
362
|
+
d="m 0,0 3.98,-81.868 42.923,65.097 z"
|
|
363
|
+
style="fill:#f2da4a;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
364
|
+
id="path13756" />
|
|
365
|
+
</g>
|
|
366
|
+
<g
|
|
367
|
+
id="g13758"
|
|
368
|
+
transform="translate(253.478,461.0259)">
|
|
369
|
+
<path
|
|
370
|
+
d="M 0,0 -0.931,7.638 C -1.237,5.602 -1.132,3.064 0,0"
|
|
371
|
+
style="fill:#fb6100;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
372
|
+
id="path13760" />
|
|
373
|
+
</g>
|
|
374
|
+
<g
|
|
375
|
+
id="g13762"
|
|
376
|
+
transform="translate(269.2427,300.8691)">
|
|
377
|
+
<path
|
|
378
|
+
d="m 0,0 -34.43,-11.291 c 4.375,-19.814 1.914,-25.602 0.369,-32.424 L 28.995,-61.4 Z"
|
|
379
|
+
style="fill:#d8f890;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
380
|
+
id="path13764" />
|
|
381
|
+
</g>
|
|
382
|
+
<g
|
|
383
|
+
id="g13766"
|
|
384
|
+
transform="translate(183.2183,271.7305)">
|
|
385
|
+
<path
|
|
386
|
+
d="M 0,0 C 0.559,0.451 1.134,0.947 1.728,1.496 L -1.529,0.428 Z"
|
|
387
|
+
style="fill:#d8f890;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
388
|
+
id="path13768" />
|
|
389
|
+
</g>
|
|
390
|
+
<g
|
|
391
|
+
id="g13770"
|
|
392
|
+
transform="translate(298.2373,239.4687)">
|
|
393
|
+
<path
|
|
394
|
+
d="m 0,0 -63.056,17.686 c -0.217,-0.959 -0.416,-1.94 -0.575,-2.981 -4.827,-28.373 -3.895,-27.422 -7.923,-36.496 -0.886,-2.527 -4.431,-1.537 -17.768,3.27 -4.097,1.519 -6.828,2.607 -8.685,3.404 L -82.152,-56 Z"
|
|
395
|
+
style="fill:#c5f5c1;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
396
|
+
id="path13772" />
|
|
397
|
+
</g>
|
|
398
|
+
<g
|
|
399
|
+
id="g13774"
|
|
400
|
+
transform="translate(182.1704,270.9199)">
|
|
401
|
+
<path
|
|
402
|
+
d="M 0,0 C 0.343,0.254 0.692,0.523 1.048,0.811 L -0.481,1.238 Z"
|
|
403
|
+
style="fill:#c5f5c1;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
404
|
+
id="path13776" />
|
|
405
|
+
</g>
|
|
406
|
+
<g
|
|
407
|
+
id="g13778"
|
|
408
|
+
transform="translate(178.2236,77.3145)">
|
|
409
|
+
<path
|
|
410
|
+
d="m 0,0 c 1.748,-0.338 3.177,-0.359 3.87,-0.437 9.577,-0.79 19.166,-1.26 28.525,0.898 C 41.31,2.6 47.604,2.004 55.517,3.125 L 46.958,61.24 Z"
|
|
411
|
+
style="fill:#6cb0c4;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
412
|
+
id="path13780" />
|
|
413
|
+
</g>
|
|
414
|
+
<g
|
|
415
|
+
id="g13782"
|
|
416
|
+
transform="translate(212.9209,392.1343)">
|
|
417
|
+
<path
|
|
418
|
+
d="m 0,0 c -7.358,-3.378 -11.848,-9.501 -15.415,-12.913 -3.459,-3.684 -2.798,-1.984 -5.258,-8.591 -1.752,-4.541 -4.212,-8.777 -5.869,-13.361 -0.621,-1.584 -0.969,-3.253 -1.559,-4.849 -3.336,-9.049 -11.784,-15.183 -16.209,-23.89 -10e-4,-10e-4 -0.003,-0.004 -0.004,-0.007 l 13.083,-56.365 36.298,48.028 c 0.446,1.161 0.907,2.314 1.402,3.45 0.192,0.404 0.393,1.573 2.82,2.136 l 43.053,56.964 z"
|
|
419
|
+
style="fill:#ffd100;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
420
|
+
id="path13784" />
|
|
421
|
+
</g>
|
|
422
|
+
<g
|
|
423
|
+
id="g13786"
|
|
424
|
+
transform="translate(184.9458,273.2266)">
|
|
425
|
+
<path
|
|
426
|
+
d="m 0,0 c 2.113,1.949 4.474,4.564 7.256,8.246 6.137,7.947 13.187,15.176 18.881,23.467 3.187,4.646 4.897,10.023 6.905,15.246 L -3.256,-1.068 Z"
|
|
427
|
+
style="fill:#f9ed2d;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
428
|
+
id="path13788" />
|
|
429
|
+
</g>
|
|
430
|
+
<g
|
|
431
|
+
id="g13790"
|
|
432
|
+
transform="translate(265.2627,382.7368)">
|
|
433
|
+
<path
|
|
434
|
+
d="m 0,0 -43.053,-56.965 c 0.032,0.007 0.059,0.016 0.092,0.023 1.473,-2.116 3.247,-4.095 4.089,-6.579 4.089,-12.477 6.753,-22.079 8.422,-29.638 l 34.43,11.291 z"
|
|
435
|
+
style="fill:#f9ed2d;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
436
|
+
id="path13792" />
|
|
437
|
+
</g>
|
|
438
|
+
<g
|
|
439
|
+
id="g13794"
|
|
440
|
+
transform="translate(261.561,405.8433)">
|
|
441
|
+
<path
|
|
442
|
+
d="m 0,0 c -2.75,-1.545 -6.583,-3.145 -11.933,-4.904 -20.513,-6.807 -23.499,-5.765 -29.432,-6.675 -2.707,-0.38 -5.114,-1.138 -7.275,-2.13 l 52.342,-9.398 z"
|
|
443
|
+
style="fill:#fd9d00;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
444
|
+
id="path13796" />
|
|
445
|
+
</g>
|
|
446
|
+
<g
|
|
447
|
+
id="g13798"
|
|
448
|
+
transform="translate(216.0854,183.4687)">
|
|
449
|
+
<path
|
|
450
|
+
d="m 0,0 -15.855,40.883 c -9.291,3.988 3.366,0.662 -22.866,7.346 L -43.208,6.254 Z"
|
|
451
|
+
style="fill:#cbf387;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
452
|
+
id="path13800" />
|
|
453
|
+
</g>
|
|
454
|
+
<g
|
|
455
|
+
id="g13802"
|
|
456
|
+
transform="translate(181.5063,270.4414)">
|
|
457
|
+
<path
|
|
458
|
+
d="M 0,0 C 0.219,0.152 0.44,0.312 0.664,0.478 L 0.183,1.717 Z"
|
|
459
|
+
style="fill:#cbf387;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
460
|
+
id="path13804" />
|
|
461
|
+
</g>
|
|
462
|
+
<g
|
|
463
|
+
id="g13806"
|
|
464
|
+
transform="translate(208.02,135.877)">
|
|
465
|
+
<path
|
|
466
|
+
d="M 0,0 C 3.134,-1.705 5.926,-3.359 7.395,-4.527 6.783,-5.061 6.337,-5.752 5.719,-6.275 c -1.337,-1.192 -23.474,-3.84 -24.076,-4.055 -4.022,-1.281 -13.359,-10.352 -15.739,-14.982 -1.006,-1.821 -1.362,-3.893 -2.164,-5.792 -2.845,-7.011 -8.646,-14.029 -2.605,-21.931 2.726,-3.654 6.299,-4.99 9.069,-5.528 L 17.162,2.678 Z"
|
|
467
|
+
style="fill:#8bcfa3;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
468
|
+
id="path13808" />
|
|
469
|
+
</g>
|
|
470
|
+
<g
|
|
471
|
+
id="g13810"
|
|
472
|
+
transform="translate(172.8774,189.7227)">
|
|
473
|
+
<path
|
|
474
|
+
d="M 0,0 52.304,-51.168 43.208,-6.254 Z"
|
|
475
|
+
style="fill:#96eaa2;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
476
|
+
id="path13812" />
|
|
477
|
+
</g>
|
|
478
|
+
<g
|
|
479
|
+
id="g13814"
|
|
480
|
+
transform="translate(172.8774,189.7227)">
|
|
481
|
+
<path
|
|
482
|
+
d="m 0,0 -7.637,-31.27 c 3.667,-2.658 6.324,-4.375 7.192,-4.82 7.389,-3.402 14.389,-7.594 21.821,-10.904 2.728,-1.201 8.696,-4.094 13.767,-6.852 l 17.161,2.678 z"
|
|
483
|
+
style="fill:#9ae292;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
484
|
+
id="path13816" />
|
|
485
|
+
</g>
|
|
486
|
+
<g
|
|
487
|
+
id="g13818"
|
|
488
|
+
transform="translate(168.6074,328.5229)">
|
|
489
|
+
<path
|
|
490
|
+
d="m 0,0 c -11.738,-23.529 -11.302,-31.66 -21.896,-24.757 -18.937,10.683 -32.469,18.709 -42.418,25.002 l -12.992,-20.584 c 4.429,-4.291 9.657,-9.283 15.89,-15.086 l 74.498,-20.94 z"
|
|
491
|
+
style="fill:#ffce00;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
492
|
+
id="path13820" />
|
|
493
|
+
</g>
|
|
494
|
+
<g
|
|
495
|
+
id="g13822"
|
|
496
|
+
transform="translate(137.1387,234.541)">
|
|
497
|
+
<path
|
|
498
|
+
d="m 0,0 c -1.537,-1.059 -2.47,-2.176 -3.458,-3.123 -10.068,-10.852 -9.165,-13.883 -9.26,-23.637 0.043,-3.965 0.834,-8.011 2.866,-11.465 1.019,-1.714 2.16,-3.427 3.393,-5.127 l 42.198,-1.466 z"
|
|
499
|
+
style="fill:#f0d03c;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
500
|
+
id="path13824" />
|
|
501
|
+
</g>
|
|
502
|
+
<g
|
|
503
|
+
id="g13826"
|
|
504
|
+
transform="translate(107.1909,293.0977)">
|
|
505
|
+
<path
|
|
506
|
+
d="m 0,0 c 7.815,-7.275 17.21,-15.828 28.605,-25.885 9.381,-8.099 9.154,-10.064 19.65,-9.246 3.198,0.342 7.985,1.262 10.469,3.293 6.432,5.234 10.463,5.602 15.591,9.182 l 0.184,1.717 z"
|
|
507
|
+
style="fill:#f6e63a;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
508
|
+
id="path13828" />
|
|
509
|
+
</g>
|
|
510
|
+
<g
|
|
511
|
+
id="g13830"
|
|
512
|
+
transform="translate(177.3643,231.6973)">
|
|
513
|
+
<path
|
|
514
|
+
d="M 0,0 C -1.25,0.318 -2.586,0.66 -4.019,1.025 -4.932,1.332 -5.602,2.145 -6.576,2.311 -14.828,4.234 -20.919,7.525 -29.362,6.232 -35.081,5.557 -38.186,4.25 -40.226,2.844 L -4.487,-41.975 Z"
|
|
515
|
+
style="fill:#f6e63a;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
516
|
+
id="path13832" />
|
|
517
|
+
</g>
|
|
518
|
+
<g
|
|
519
|
+
id="g13834"
|
|
520
|
+
transform="translate(130.6802,191.1895)">
|
|
521
|
+
<path
|
|
522
|
+
d="m 0,0 c 9.73,-13.412 25.341,-26.055 34.56,-32.736 l 7.637,31.269 z"
|
|
523
|
+
style="fill:#c7df6f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
524
|
+
id="path13836" />
|
|
525
|
+
</g>
|
|
526
|
+
<g
|
|
527
|
+
id="g13838"
|
|
528
|
+
transform="translate(56.7227,368.0815)">
|
|
529
|
+
<path
|
|
530
|
+
d="m 0,0 c -4.445,3.398 -7.547,6.24 -9.778,8.602 l -14.208,-3.612 4.815,-6.731 c 0.309,1.335 0.768,2.766 1.413,4.3 8.121,-3.178 6.81,-9.274 5.773,-14.345 L 3.873,-33.953 c 6.915,-1.379 10.594,-6.458 30.706,-25.945 l 12.992,20.585 C 14.247,-18.236 21.153,-16.635 0,0"
|
|
531
|
+
style="fill:#feb200;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
532
|
+
id="path13840" />
|
|
533
|
+
</g>
|
|
534
|
+
<g
|
|
535
|
+
id="g13842"
|
|
536
|
+
transform="translate(46.9448,376.6831)">
|
|
537
|
+
<path
|
|
538
|
+
d="M 0,0 C -6,6.35 -5.693,9.213 -8.216,10.023 L -14.209,-3.611 Z"
|
|
539
|
+
style="fill:#fe9400;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
540
|
+
id="path13844" />
|
|
541
|
+
</g>
|
|
542
|
+
<g
|
|
543
|
+
id="g13846"
|
|
544
|
+
transform="translate(44.2983,353.9419)">
|
|
545
|
+
<path
|
|
546
|
+
d="M 0,0 C -4.392,-0.536 -8.714,3.901 -6.747,12.398 L -11.562,19.13 -21.876,4.264 c 0.042,-0.755 0.105,-1.526 0.151,-2.371 0.043,-1.914 -1.115,-3.187 -3.419,-2.41 -0.012,0.005 -0.024,0.011 -0.038,0.016 l -9.97,-14.371 c 3.016,-2.116 5.047,-1.11 7.693,-1.097 11.549,-0.04 11.379,0.704 12.926,-0.741 4.452,-3.88 12.301,-1.605 19.468,-2.537 5.205,-0.057 8.551,-0.006 11.362,-0.567 L 0.439,2.354 C 0.272,1.537 0.112,0.747 0,0"
|
|
547
|
+
style="fill:#ffa300;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
548
|
+
id="path13848" />
|
|
549
|
+
</g>
|
|
550
|
+
<g
|
|
551
|
+
id="g13850"
|
|
552
|
+
transform="translate(38.729,386.7065)">
|
|
553
|
+
<path
|
|
554
|
+
d="M 0,0 C -0.873,0.28 -2.083,0.315 -4.011,0.164 -5.262,0.213 -7.534,0.788 -8.336,-1.61 -9.564,-5.017 -8.434,-5.657 -9.828,-9.336 l 3.835,-4.299 z"
|
|
555
|
+
style="fill:#fd7700;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
556
|
+
id="path13852" />
|
|
557
|
+
</g>
|
|
558
|
+
<g
|
|
559
|
+
id="g13854"
|
|
560
|
+
transform="translate(3.2769,370.0132)">
|
|
561
|
+
<path
|
|
562
|
+
d="m 0,0 -3.018,-0.312 c -1.925,-10.076 7.434,-14.539 9.35,-23.095 -1.796,-0.753 -3.579,-1.54 -5.381,-2.269 1.949,-2.675 3.537,-4.299 4.918,-5.267 l 9.97,14.371 C 8.256,-13.681 5.736,-8.311 0,0"
|
|
563
|
+
style="fill:#ff8800;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
564
|
+
id="path13856" />
|
|
565
|
+
</g>
|
|
566
|
+
<g
|
|
567
|
+
id="g13858"
|
|
568
|
+
transform="translate(26.4971,372.4243)">
|
|
569
|
+
<path
|
|
570
|
+
d="M 0,0 C -4.024,-7.823 -4.262,-10.867 -4.075,-14.219 L 6.239,0.648 Z"
|
|
571
|
+
style="fill:#ff8800;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
572
|
+
id="path13860" />
|
|
573
|
+
</g>
|
|
574
|
+
<g
|
|
575
|
+
id="g13862"
|
|
576
|
+
transform="translate(28.9014,377.3706)">
|
|
577
|
+
<path
|
|
578
|
+
d="M 0,0 C -0.405,-1.069 -1.022,-2.393 -1.974,-4.117 -2.123,-4.4 -2.265,-4.676 -2.404,-4.946 l 6.239,0.647 z"
|
|
579
|
+
style="fill:#fd7400;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
580
|
+
id="path13864" />
|
|
581
|
+
</g>
|
|
582
|
+
<g
|
|
583
|
+
id="g13866"
|
|
584
|
+
transform="translate(1.2061,372.9331)">
|
|
585
|
+
<path
|
|
586
|
+
d="M 0,0 C -0.444,-1.142 -0.752,-2.216 -0.947,-3.232 L 2.071,-2.92 C 1.424,-1.983 0.74,-1.012 0,0"
|
|
587
|
+
style="fill:#fd7400;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
588
|
+
id="path13868" />
|
|
589
|
+
</g>
|
|
590
|
+
</g>
|
|
591
|
+
</g>
|
|
592
|
+
</g>
|
|
593
|
+
</svg>
|