cja-phoenix 1.2.39 → 1.2.41
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/dist/module.d.mts +6 -2
- package/dist/module.json +1 -1
- package/dist/module.mjs +29 -16
- package/dist/runtime/assets/iconia/fonts/CGG-icomoon.svg +94 -0
- package/dist/runtime/assets/iconia/fonts/CGG-icomoon.ttf +0 -0
- package/dist/runtime/assets/iconia/fonts/CGG-icomoon.woff +0 -0
- package/dist/runtime/assets/iconia/selection.json +1 -0
- package/dist/runtime/assets/iconia/style.css +281 -0
- package/dist/runtime/assets/scss/main.scss +6 -0
- package/dist/runtime/assets/scss/mixins/_funnel.scss +15 -0
- package/dist/runtime/assets/scss/mixins/_index.scss +46 -0
- package/dist/runtime/assets/scss/mixins/_media-queries.scss +109 -0
- package/dist/runtime/assets/scss/mixins/_results.scss +235 -0
- package/dist/runtime/assets/scss/tippy.scss +31 -0
- package/dist/runtime/assets/scss/variables/_breakpoints.scss +18 -0
- package/dist/runtime/assets/scss/variables/_colors.scss +100 -0
- package/dist/runtime/assets/scss/variables/_forms.scss +121 -0
- package/dist/runtime/assets/scss/variables/_grid.scss +12 -0
- package/dist/runtime/assets/scss/variables/_index.scss +6 -0
- package/dist/runtime/assets/scss/variables/_shadows.scss +7 -0
- package/dist/runtime/assets/scss/variables/_z-index.scss +6 -0
- package/dist/runtime/components/CjaButton.d.vue.ts +33 -0
- package/dist/runtime/components/CjaButton.vue +437 -0
- package/dist/runtime/components/CjaButton.vue.d.ts +33 -0
- package/dist/runtime/components/CollapseContainer.d.vue.ts +35 -0
- package/dist/runtime/components/CollapseContainer.vue +112 -0
- package/dist/runtime/components/CollapseContainer.vue.d.ts +35 -0
- package/dist/runtime/components/ContentTabs.d.vue.ts +23 -0
- package/dist/runtime/components/ContentTabs.vue +103 -0
- package/dist/runtime/components/ContentTabs.vue.d.ts +23 -0
- package/dist/runtime/components/Drawer.d.vue.ts +52 -0
- package/dist/runtime/components/Drawer.vue +169 -0
- package/dist/runtime/components/Drawer.vue.d.ts +52 -0
- package/dist/runtime/components/FixedContainer.d.vue.ts +37 -0
- package/dist/runtime/components/FixedContainer.vue +95 -0
- package/dist/runtime/components/FixedContainer.vue.d.ts +37 -0
- package/dist/runtime/components/GridContainer.d.vue.ts +13 -0
- package/dist/runtime/components/GridContainer.vue +37 -0
- package/dist/runtime/components/GridContainer.vue.d.ts +13 -0
- package/dist/runtime/components/GridItem.d.vue.ts +29 -0
- package/dist/runtime/components/GridItem.vue +93 -0
- package/dist/runtime/components/GridItem.vue.d.ts +29 -0
- package/dist/runtime/components/InfoMessage.d.vue.ts +28 -0
- package/dist/runtime/components/InfoMessage.vue +141 -0
- package/dist/runtime/components/InfoMessage.vue.d.ts +28 -0
- package/dist/runtime/components/LoadingSpinner.d.vue.ts +10 -0
- package/dist/runtime/components/LoadingSpinner.vue +39 -0
- package/dist/runtime/components/LoadingSpinner.vue.d.ts +10 -0
- package/dist/runtime/components/Modal.d.vue.ts +39 -0
- package/dist/runtime/components/Modal.vue +195 -0
- package/dist/runtime/components/Modal.vue.d.ts +39 -0
- package/dist/runtime/components/Scaffold.d.vue.ts +13 -0
- package/dist/runtime/components/Scaffold.vue +3 -0
- package/dist/runtime/components/Scaffold.vue.d.ts +13 -0
- package/dist/runtime/components/StickyContainer.d.vue.ts +21 -0
- package/dist/runtime/components/StickyContainer.vue +57 -0
- package/dist/runtime/components/StickyContainer.vue.d.ts +21 -0
- package/dist/runtime/components/form/CheckboxInput.d.vue.ts +42 -0
- package/dist/runtime/components/form/CheckboxInput.vue +163 -0
- package/dist/runtime/components/form/CheckboxInput.vue.d.ts +42 -0
- package/dist/runtime/components/form/CheckboxInputList.d.vue.ts +37 -0
- package/dist/runtime/components/form/CheckboxInputList.vue +84 -0
- package/dist/runtime/components/form/CheckboxInputList.vue.d.ts +37 -0
- package/dist/runtime/components/form/CurrencyInput.d.vue.ts +37 -0
- package/dist/runtime/components/form/CurrencyInput.vue +134 -0
- package/dist/runtime/components/form/CurrencyInput.vue.d.ts +37 -0
- package/dist/runtime/components/form/DateInput.d.vue.ts +40 -0
- package/dist/runtime/components/form/DateInput.vue +325 -0
- package/dist/runtime/components/form/DateInput.vue.d.ts +40 -0
- package/dist/runtime/components/form/FileInput.d.vue.ts +46 -0
- package/dist/runtime/components/form/FileInput.vue +202 -0
- package/dist/runtime/components/form/FileInput.vue.d.ts +46 -0
- package/dist/runtime/components/form/NumberInput.d.vue.ts +41 -0
- package/dist/runtime/components/form/NumberInput.vue +162 -0
- package/dist/runtime/components/form/NumberInput.vue.d.ts +41 -0
- package/dist/runtime/components/form/PhoneInput.d.vue.ts +44 -0
- package/dist/runtime/components/form/PhoneInput.vue +143 -0
- package/dist/runtime/components/form/PhoneInput.vue.d.ts +44 -0
- package/dist/runtime/components/form/RadioInput.d.vue.ts +42 -0
- package/dist/runtime/components/form/RadioInput.vue +181 -0
- package/dist/runtime/components/form/RadioInput.vue.d.ts +42 -0
- package/dist/runtime/components/form/RadioInputList.d.vue.ts +57 -0
- package/dist/runtime/components/form/RadioInputList.vue +130 -0
- package/dist/runtime/components/form/RadioInputList.vue.d.ts +57 -0
- package/dist/runtime/components/form/SelectInput.d.vue.ts +46 -0
- package/dist/runtime/components/form/SelectInput.vue +362 -0
- package/dist/runtime/components/form/SelectInput.vue.d.ts +46 -0
- package/dist/runtime/components/form/SelectionTiles.d.vue.ts +44 -0
- package/dist/runtime/components/form/SelectionTiles.vue +329 -0
- package/dist/runtime/components/form/SelectionTiles.vue.d.ts +44 -0
- package/dist/runtime/components/form/SliderInput.d.vue.ts +51 -0
- package/dist/runtime/components/form/SliderInput.vue +175 -0
- package/dist/runtime/components/form/SliderInput.vue.d.ts +51 -0
- package/dist/runtime/components/form/TextInput.d.vue.ts +56 -0
- package/dist/runtime/components/form/TextInput.vue +227 -0
- package/dist/runtime/components/form/TextInput.vue.d.ts +56 -0
- package/dist/runtime/components/form/TextareaInput.d.vue.ts +37 -0
- package/dist/runtime/components/form/TextareaInput.vue +76 -0
- package/dist/runtime/components/form/TextareaInput.vue.d.ts +37 -0
- package/dist/runtime/components/form/TileCheckboxInput.d.vue.ts +40 -0
- package/dist/runtime/components/form/TileCheckboxInput.vue +108 -0
- package/dist/runtime/components/form/TileCheckboxInput.vue.d.ts +40 -0
- package/dist/runtime/components/form/ToggleInput.d.vue.ts +43 -0
- package/dist/runtime/components/form/ToggleInput.vue +119 -0
- package/dist/runtime/components/form/ToggleInput.vue.d.ts +43 -0
- package/dist/runtime/components/form/structure/Container.d.vue.ts +16 -0
- package/dist/runtime/components/form/structure/Container.vue +31 -0
- package/dist/runtime/components/form/structure/Container.vue.d.ts +16 -0
- package/dist/runtime/components/form/structure/Description.d.vue.ts +9 -0
- package/dist/runtime/components/form/structure/Description.vue +26 -0
- package/dist/runtime/components/form/structure/Description.vue.d.ts +9 -0
- package/dist/runtime/components/form/structure/Error.d.vue.ts +9 -0
- package/dist/runtime/components/form/structure/Error.vue +23 -0
- package/dist/runtime/components/form/structure/Error.vue.d.ts +9 -0
- package/dist/runtime/components/form/structure/Title.d.vue.ts +12 -0
- package/dist/runtime/components/form/structure/Title.vue +43 -0
- package/dist/runtime/components/form/structure/Title.vue.d.ts +12 -0
- package/dist/runtime/components/funnel/Header.d.vue.ts +18 -0
- package/dist/runtime/components/funnel/Header.vue +62 -0
- package/dist/runtime/components/funnel/Header.vue.d.ts +18 -0
- package/dist/runtime/composables/useCjaGtm.d.ts +19 -0
- package/dist/runtime/composables/useCjaGtm.js +164 -0
- package/dist/runtime/composables/useFunnelConfig.d.ts +11 -0
- package/dist/runtime/composables/useFunnelConfig.js +51 -0
- package/dist/runtime/composables/useFunnelSummary.d.ts +14 -0
- package/dist/runtime/composables/useFunnelSummary.js +16 -0
- package/dist/runtime/composables/useHeaderHeight.d.ts +3 -0
- package/dist/runtime/composables/useHeaderHeight.js +24 -0
- package/dist/runtime/composables/useJourneyConfig.d.ts +11 -0
- package/dist/runtime/composables/useJourneyConfig.js +13 -0
- package/dist/runtime/composables/useValidateForm.d.ts +11 -0
- package/dist/runtime/composables/useValidateForm.js +33 -0
- package/dist/runtime/data/dialCodes.d.ts +7 -0
- package/dist/runtime/data/dialCodes.js +1466 -0
- package/dist/runtime/data/phoneDigits.d.ts +2 -0
- package/dist/runtime/data/phoneDigits.js +231 -0
- package/dist/runtime/plugins/tippy.d.ts +4 -0
- package/dist/runtime/plugins/tippy.js +12 -0
- package/dist/runtime/plugins/v-calendar.d.ts +3 -0
- package/dist/runtime/plugins/v-calendar.js +6 -0
- package/dist/runtime/server/tsconfig.json +3 -0
- package/dist/runtime/types/Form.d.ts +34 -0
- package/dist/runtime/types/Form.js +20 -0
- package/dist/runtime/types/Grid.d.ts +4 -0
- package/dist/runtime/types/Grid.js +0 -0
- package/dist/runtime/types/Icon.d.ts +2 -0
- package/dist/runtime/types/Icon.js +85 -0
- package/dist/runtime/types/JourneyConfig.d.ts +9 -0
- package/dist/runtime/types/JourneyConfig.js +0 -0
- package/dist/runtime/types/index.d.ts +4 -0
- package/dist/runtime/types/index.js +4 -0
- package/dist/runtime/utils/applyProductData.d.ts +10 -0
- package/dist/runtime/utils/applyProductData.js +22 -0
- package/dist/runtime/utils/convertDate.d.ts +5 -0
- package/dist/runtime/utils/convertDate.js +17 -0
- package/dist/runtime/utils/findScrollAncestor.d.ts +1 -0
- package/dist/runtime/utils/findScrollAncestor.js +14 -0
- package/dist/runtime/utils/formValidations.d.ts +78 -0
- package/dist/runtime/utils/formValidations.js +180 -0
- package/dist/runtime/utils/formatValue.d.ts +4 -0
- package/dist/runtime/utils/formatValue.js +20 -0
- package/dist/runtime/utils/getAbTestVersion.d.ts +9 -0
- package/dist/runtime/utils/getAbTestVersion.js +48 -0
- package/dist/runtime/utils/getCalendarUrl.d.ts +8 -0
- package/dist/runtime/utils/getCalendarUrl.js +24 -0
- package/dist/runtime/utils/getFromUrl.d.ts +2 -0
- package/dist/runtime/utils/getFromUrl.js +25 -0
- package/dist/runtime/utils/getStoryblokUrl.d.ts +71 -0
- package/dist/runtime/utils/getStoryblokUrl.js +35 -0
- package/dist/runtime/utils/jsonReviver.d.ts +1 -0
- package/dist/runtime/utils/jsonReviver.js +18 -0
- package/dist/runtime/utils/mediaBreakpoints.d.ts +28 -0
- package/dist/runtime/utils/mediaBreakpoints.js +28 -0
- package/dist/runtime/utils/toggleScroll.d.ts +1 -0
- package/dist/runtime/utils/toggleScroll.js +6 -0
- package/dist/runtime/utils/updateForm.d.ts +11 -0
- package/dist/runtime/utils/updateForm.js +74 -0
- package/dist/runtime/utils/updateMarketingConsent.d.ts +4 -0
- package/dist/runtime/utils/updateMarketingConsent.js +13 -0
- package/dist/runtime/utils/uploadFile.d.ts +8 -0
- package/dist/runtime/utils/uploadFile.js +13 -0
- package/dist/types.d.mts +6 -10
- package/package.json +9 -8
- package/dist/module.d.cts +0 -2
package/dist/module.d.mts
CHANGED
|
@@ -1,2 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
1
|
+
import * as _nuxt_schema from '@nuxt/schema';
|
|
2
|
+
export * from '../dist/runtime/types/index.js';
|
|
3
|
+
|
|
4
|
+
declare const module$1: _nuxt_schema.NuxtModule<_nuxt_schema.ModuleOptions, _nuxt_schema.ModuleOptions, false>;
|
|
5
|
+
|
|
6
|
+
export { module$1 as default };
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -1,20 +1,33 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { defineNuxtModule, createResolver, addImportsDir, addComponentsDir, addPlugin } from '@nuxt/kit';
|
|
2
|
+
export * from '../dist/runtime/types/index.js';
|
|
2
3
|
|
|
3
|
-
const
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
"cja-phoenix"
|
|
4
|
+
const module$1 = defineNuxtModule({
|
|
5
|
+
meta: {
|
|
6
|
+
name: "cja-phoenix",
|
|
7
|
+
configKey: "cja-phoenix"
|
|
7
8
|
},
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
setup(_options, nuxt) {
|
|
10
|
+
const { resolve } = createResolver(import.meta.url);
|
|
11
|
+
nuxt.options.vite.css ??= {
|
|
12
|
+
preprocessorOptions: { scss: { additionalData: "" } }
|
|
13
|
+
};
|
|
14
|
+
nuxt.options.vite.css.preprocessorOptions ??= {
|
|
15
|
+
scss: { additionalData: "" }
|
|
16
|
+
};
|
|
17
|
+
nuxt.options.vite.css.preprocessorOptions.scss ??= { additionalData: "" };
|
|
18
|
+
nuxt.options.vite.css.preprocessorOptions.scss.additionalData = (nuxt.options.vite.css.preprocessorOptions.scss.additionalData || "") + `
|
|
19
|
+
@use "${resolve("./runtime/assets/scss/variables")}" as *;
|
|
20
|
+
@use "${resolve("./runtime/assets/scss/mixins")}" as *;
|
|
21
|
+
`;
|
|
22
|
+
nuxt.options.css.push(resolve("./runtime/assets/iconia/style.css"));
|
|
23
|
+
nuxt.options.css.push(resolve("./runtime/assets/scss/main.scss"));
|
|
24
|
+
addImportsDir(resolve("./runtime/composables"));
|
|
25
|
+
addImportsDir(resolve("./runtime/utils"));
|
|
26
|
+
addImportsDir(resolve("./runtime/data"));
|
|
27
|
+
addComponentsDir({ path: resolve("./runtime/components") });
|
|
28
|
+
addPlugin(resolve("./runtime/plugins/tippy"));
|
|
29
|
+
addPlugin(resolve("./runtime/plugins/v-calendar"));
|
|
12
30
|
}
|
|
13
|
-
})
|
|
31
|
+
});
|
|
14
32
|
|
|
15
|
-
|
|
16
|
-
const _module = await jiti.import("/home/runner/work/phoenix/phoenix/src/module.ts");
|
|
17
|
-
|
|
18
|
-
export default _module?.default ?? _module;
|
|
19
|
-
export const FileModel = _module.FileModel;
|
|
20
|
-
export const icons = _module.icons;
|
|
33
|
+
export { module$1 as default };
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
+
<metadata>Generated by IcoMoon</metadata>
|
|
5
|
+
<defs>
|
|
6
|
+
<font id="CGG-icomoon" horiz-adv-x="1024">
|
|
7
|
+
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
|
8
|
+
<missing-glyph horiz-adv-x="1024" />
|
|
9
|
+
<glyph unicode=" " horiz-adv-x="512" d="" />
|
|
10
|
+
<glyph unicode="" glyph-name="arrow-down" d="M511.995 938.667c-21.752 0-39.385-17.632-39.385-39.385v-945.226c0-21.752 17.632-39.385 39.385-39.385 21.756 0 39.385 17.632 39.385 39.385v945.226c0 21.752-17.628 39.385-39.385 39.385zM11.538 454.515c-15.38-15.38-15.38-40.313 0-55.693l472.615-472.615c15.38-15.38 40.319-15.38 55.699 0l472.615 472.615c15.38 15.38 15.38 40.313 0 55.693s-40.319 15.38-55.699 0l-444.767-444.761-444.762 444.761c-15.38 15.38-40.316 15.38-55.698 0z" />
|
|
11
|
+
<glyph unicode="" glyph-name="arrow-left" d="M1024.003 426.668c0 21.752-17.628 39.384-39.384 39.384h-945.23c-21.752 0-39.384-17.63-39.384-39.384s17.63-39.384 39.384-39.384h945.23c21.756 0 39.384 17.63 39.384 39.384zM539.852 927.131c-15.377 15.377-40.319 15.377-55.696 0l-472.62-472.62c-15.377-15.377-15.377-40.311 0-55.693l472.62-472.62c15.377-15.377 40.319-15.377 55.696 0s15.377 40.311 0 55.693l-444.769 444.769 444.769 444.767c15.377 15.377 15.377 40.318 0 55.695z" />
|
|
12
|
+
<glyph unicode="" glyph-name="arrow-right" d="M-0.001 426.666c0-21.752 17.632-39.385 39.385-39.385h945.225c21.756 0 39.385 17.632 39.385 39.385s-17.628 39.385-39.385 39.385h-945.225c-21.752 0-39.385-17.632-39.385-39.385zM484.148-73.794c15.38-15.38 40.319-15.38 55.699 0l472.616 472.616c15.38 15.38 15.38 40.313 0 55.693l-472.616 472.617c-15.38 15.38-40.319 15.38-55.699 0s-15.38-40.318 0-55.698l444.768-444.765-444.768-444.768c-15.38-15.38-15.38-40.313 0-55.693z" />
|
|
13
|
+
<glyph unicode="" glyph-name="arrow-up" d="M511.998-85.332c21.756 0 39.385 17.632 39.385 39.385v945.224c0 21.752-17.628 39.385-39.385 39.385-21.752 0-39.385-17.632-39.385-39.385v-945.224c0-21.752 17.632-39.385 39.385-39.385zM1012.462 398.819c15.38 15.38 15.38 40.313 0 55.693l-472.615 472.616c-15.38 15.38-40.319 15.38-55.699 0l-472.615-472.616c-15.38-15.38-15.38-40.313 0-55.693s40.317-15.38 55.698 0l444.761 444.761 444.766-444.761c15.38-15.38 40.319-15.38 55.699 0z" />
|
|
14
|
+
<glyph unicode="" glyph-name="chevron-down" d="M1024 646.069c0 18.527-7.313 37.542-21.452 51.682-28.766 28.766-75.085 28.766-103.363 0l-387.124-387.124-387.124 387.124c-28.766 28.766-75.085 28.766-103.363 0-28.766-28.766-28.766-75.085 0-103.363l438.805-438.805c28.766-28.766 75.085-28.766 103.363 0l438.805 438.805c14.139 14.139 21.452 33.154 21.452 51.682z" />
|
|
15
|
+
<glyph unicode="" glyph-name="chevron-left" d="M731.402-85.332c18.527 0 37.542 7.313 51.682 21.452 28.766 28.766 28.766 75.085 0 103.363l-387.124 387.124 387.124 387.124c28.766 28.766 28.766 75.085 0 103.363-28.766 28.766-75.085 28.766-103.363 0l-438.805-438.805c-28.766-28.766-28.766-75.085 0-103.363l438.805-438.805c14.139-14.139 33.154-21.452 51.682-21.452z" />
|
|
16
|
+
<glyph unicode="" glyph-name="chevron-right" d="M292.598-85.332c-18.527 0-37.542 7.313-51.682 21.452-28.766 28.766-28.766 75.085 0 103.363l387.124 387.124-387.124 387.124c-28.766 28.766-28.766 75.085 0 103.363 28.766 28.766 75.085 28.766 103.363 0l438.805-438.805c28.766-28.766 28.766-75.085 0-103.363l-438.805-438.805c-14.139-14.139-33.154-21.452-51.682-21.452z" />
|
|
17
|
+
<glyph unicode="" glyph-name="chevron-up" d="M1024 207.265c0-18.527-7.313-37.542-21.452-51.682-28.766-28.766-75.085-28.766-103.363 0l-387.124 387.124-387.124-387.124c-28.766-28.766-75.085-28.766-103.363 0-28.766 28.766-28.766 75.085 0 103.363l438.805 438.805c28.766 28.766 75.085 28.766 103.363 0l438.805-438.805c14.139-14.139 21.452-33.154 21.452-51.682z" />
|
|
18
|
+
<glyph unicode="" glyph-name="change" d="M984.613 807.388c21.759 0 39.387-17.637 39.387-39.387v-262.57c0-21.751-17.628-39.387-39.387-39.387h-210.055c-21.751 0-39.387 17.637-39.387 39.387s17.637 39.387 39.387 39.387h170.664v223.174c0 21.751 17.637 39.387 39.387 39.387zM0.009 347.903c0 21.751 17.637 39.387 39.387 39.387h157.538c21.751 0 39.387-17.637 39.387-39.387s-17.637-39.387-39.387-39.387h-118.158v-170.664c0-21.751-17.637-39.387-39.387-39.387s-39.387 17.637-39.387 39.387v210.055zM608.762 768.058c-56.628 15.576-116.536 17.262-174.049 4.885s-110.627-38.371-154.411-75.372c-43.773-36.993-76.787-83.76-96.158-135.823-7.586-20.381-30.268-30.756-50.649-23.179s-30.756 30.268-23.179 50.649c24.208 65.056 65.264 122.976 119.136 168.505 53.858 45.52 118.791 77.18 188.691 92.225 69.889 15.039 142.65 12.997 211.517-5.941 68.656-18.885 131.393-54.008 182.294-102.28l198.906-177.724c16.215-14.489 17.618-39.387 3.118-55.613s-39.387-17.618-55.613-3.128l-199.352 178.125c-0.305 0.275-0.609 0.556-0.903 0.84-41.369 39.358-92.715 68.265-149.348 83.841zM10.021 344.939c14.489 16.215 39.387 17.618 55.613 3.129l199.352-178.125c0.306-0.275 0.608-0.556 0.903-0.84 41.377-39.363 92.726-68.265 149.354-83.841s116.536-17.262 174.049-4.885c57.522 12.377 110.627 38.371 154.411 75.372 43.773 37 76.785 83.76 96.153 135.817 7.586 20.381 30.268 30.756 50.649 23.181 20.381-7.586 30.756-30.268 23.179-50.649-24.21-65.056-65.264-122.985-119.136-168.505-53.858-45.52-118.791-77.18-188.691-92.228-69.889-15.039-142.65-12.997-211.517 5.941-68.664 18.876-131.393 54.008-182.294 102.28l-198.906 177.724c-16.215 14.489-17.618 39.387-3.128 55.613z" />
|
|
19
|
+
<glyph unicode="" glyph-name="swap" d="M214.798 675.595c-13.332 13.332-13.332 34.941 0 48.273l204.8 204.799c13.332 13.332 34.942 13.332 48.269 0 13.332-13.332 13.332-34.941 0-48.272l-180.659-180.66 180.659-180.659c13.332-13.332 13.332-34.939 0-48.271-13.327-13.332-34.938-13.332-48.269 0l-204.8 204.798zM204.802 699.731c0 18.852 15.281 34.134 34.134 34.134h546.128c18.852 0 34.134-15.281 34.134-34.134s-15.281-34.134-34.134-34.134h-546.128c-18.852 0-34.134 15.281-34.134 34.134zM809.203 177.741c13.332-13.332 13.332-34.942 0-48.275l-204.8-204.8c-13.332-13.332-34.942-13.332-48.275 0s-13.332 34.942 0 48.275l180.663 180.659-180.663 180.663c-13.332 13.332-13.332 34.938 0 48.269s34.942 13.332 48.275 0l204.8-204.794zM819.195 153.603c0-18.852-15.276-34.134-34.134-34.134h-546.126c-18.852 0-34.134 15.281-34.134 34.134s15.281 34.134 34.134 34.134h546.126c18.854 0 34.134-15.281 34.134-34.134z" />
|
|
20
|
+
<glyph unicode="" glyph-name="sort" d="M263.071 129.465c-13.326-13.33-34.943-13.33-48.272 0l-204.8 204.797c-13.33 13.33-13.33 34.943 0 48.275s34.943 13.33 48.272 0l180.664-180.661 180.663 180.661c13.33 13.33 34.943 13.33 48.275 0s13.33-34.943 0-48.275l-204.802-204.797zM238.933 119.465c-18.852 0-34.134 15.283-34.134 34.134v546.13c0 18.852 15.283 34.134 34.134 34.134s34.134-15.283 34.134-34.134v-546.13c0-18.851-15.283-34.134-34.134-34.134zM760.932 723.871c13.33 13.326 34.943 13.326 48.269 0l204.802-204.798c13.33-13.33 13.33-34.943 0-48.275s-34.943-13.33-48.269 0l-180.666 180.664-180.661-180.664c-13.33-13.33-34.943-13.33-48.275 0s-13.33 34.943 0 48.275l204.802 204.798zM785.066 733.869c18.858 0 34.134-15.283 34.134-34.134v-546.13c0-18.851-15.278-34.134-34.134-34.134-18.851 0-34.134 15.283-34.134 34.134v546.13c0 18.852 15.283 34.134 34.134 34.134z" />
|
|
21
|
+
<glyph unicode="" glyph-name="download" d="M984.618 308.516c-21.53 0-39.386-17.854-39.386-39.386v-210.053c0-17.329-6.826-34.134-19.432-46.212-12.077-12.077-28.883-19.432-46.212-19.432h-735.18c-17.329 0-34.134 6.826-46.212 19.432s-19.432 28.883-19.432 46.212v210.053c0 21.53-17.854 39.386-39.386 39.386s-39.386-17.854-39.386-39.386v-210.053c0-38.335 15.229-75.095 42.535-101.875 27.309-27.309 64.063-42.535 101.875-42.535h735.18c38.335 0 75.095 15.229 101.875 42.535 27.309 27.309 42.535 64.063 42.535 101.875v210.053c0 21.53-17.854 39.386-39.386 39.386zM484.52 249.608s0 0 0 0c3.63-3.63 7.777-6.223 12.444-8.294s9.852-3.109 15.036-3.109v0s0 0 0 0c5.185 0 9.852 1.038 14.518 3.109s9.332 4.668 12.444 8.294l259.239 259.239c15.036 15.036 15.036 39.924 0 54.959s-39.924 15.036-54.959 0l-192.875-192.875v528.852c0 21.257-17.628 38.887-38.887 38.887s-38.887-17.628-38.887-38.887v-528.33l-192.875 192.875c-15.036 15.036-39.924 15.036-54.959 0s-15.036-39.924 0-54.959l259.239-259.239z" />
|
|
22
|
+
<glyph unicode="" glyph-name="upload" d="M984.615 308.512c-21.532 0-39.386-17.853-39.386-39.386v-210.049c0-17.331-6.827-34.133-19.428-46.213-12.079-12.079-28.881-19.428-46.213-19.428h-735.179c-17.331 0-34.133 6.827-46.213 19.428s-19.428 28.881-19.428 46.213v210.049c0 21.532-17.853 39.386-39.386 39.386s-39.386-17.853-39.386-39.386v-210.049c0-38.335 15.227-75.094 42.535-101.875 27.306-27.306 64.065-42.535 101.875-42.535h735.179c38.335 0 75.094 15.227 101.875 42.535 27.306 27.306 42.535 64.065 42.535 101.875v210.049c0 21.532-17.853 39.386-39.386 39.386zM280.123 612.896l192.973 192.973v-528.6c0-21.27 17.636-38.907 38.907-38.907s38.907 17.636 38.907 38.907v528.6l192.973-192.973c15.042-15.042 39.945-15.042 54.988 0s15.042 39.945 0 54.988l-259.374 259.374c-3.632 3.632-7.782 6.227-12.448 8.299s-9.854 3.112-14.526 3.112c0 0 0 0 0 0v0c-5.188 0-10.376-1.038-15.042-3.112s-8.82-4.668-12.448-8.299c0 0 0 0 0 0l-259.374-259.374c-15.042-15.042-15.042-39.945 0-54.988s39.945-15.042 54.988 0z" />
|
|
23
|
+
<glyph unicode="" glyph-name="check" d="M1012.892 769.161c15.14-15.615 14.756-40.551-0.857-55.692l-649.848-630.152c-15.279-14.814-39.558-14.814-54.836 0l-295.384 286.43c-15.615 15.146-15.999 40.078-0.857 55.695 15.143 15.609 40.076 15.994 55.69 0.857l267.966-259.849 622.426 603.567c15.618 15.143 40.551 14.76 55.695-0.857z" />
|
|
24
|
+
<glyph unicode="" glyph-name="check-fill" d="M512 938.667c-282.623 0-512-229.377-512-512s229.377-512 512-512c282.623 0 512 229.377 512 512s-229.377 512-512 512zM744.956 541.353l-316.929-329.724c-7.166-7.68-17.41-11.774-28.162-11.774s-20.99 4.094-28.162 11.774l-143.869 150.013c-14.338 14.846-13.31 37.886 2.558 51.71s39.936 12.802 54.273-2.050l115.713-120.321 288.252 300.54c14.338 14.846 38.4 15.874 54.273 2.050s16.896-36.864 2.558-51.71l-0.514-0.514z" />
|
|
25
|
+
<glyph unicode="" glyph-name="cross" d="M1011.143 925.81c17.14-17.14 17.14-44.925 0-62.064l-936.225-936.225c-17.14-17.14-44.925-17.14-62.064 0s-17.14 44.919 0 62.059l936.225 936.225c17.14 17.14 44.919 17.14 62.059 0zM12.857 925.81c17.14 17.14 44.925 17.14 62.064 0l936.225-936.225c17.14-17.14 17.14-44.919 0-62.059s-44.919-17.14-62.059 0l-936.225 936.225c-17.14 17.14-17.14 44.925 0 62.064z" />
|
|
26
|
+
<glyph unicode="" glyph-name="edit-1" d="M38.879 794.765c24.895 24.895 58.656 38.879 93.86 38.879h326.747c21.752 0 39.385-17.632 39.385-39.385s-17.632-39.385-39.385-39.385h-326.747c-14.316 0-28.044-5.687-38.165-15.806s-15.806-23.849-15.806-38.165v-653.491c0-14.316 5.686-28.044 15.806-38.161 10.121-10.123 23.849-15.811 38.165-15.811h653.489c14.316 0 28.044 5.687 38.168 15.811 10.117 10.117 15.804 23.844 15.804 38.161v326.745c0 21.756 17.632 39.385 39.385 39.385s39.385-17.628 39.385-39.385v-326.745c0-35.204-13.984-68.964-38.881-93.86-24.892-24.892-58.656-38.881-93.86-38.881h-653.489c-35.204 0-68.966 13.99-93.86 38.881-24.895 24.898-38.879 58.656-38.879 93.86v653.491c0 35.204 13.984 68.966 38.879 93.86zM889.956 859.899c-14.662 0-28.723-5.822-39.090-16.189l-416.217-416.218-26.054-104.233 104.233 26.054 416.217 416.219c10.367 10.367 16.188 24.426 16.188 39.085s-5.821 28.718-16.188 39.085c-10.367 10.367-24.428 16.189-39.084 16.189zM795.168 899.406c25.14 25.14 59.228 39.26 94.788 39.26 35.552 0 69.641-14.124 94.788-39.26 25.14-25.14 39.258-59.233 39.258-94.788s-14.122-69.645-39.258-94.785l-423.928-423.928c-5.052-5.047-11.374-8.628-18.3-10.358l-178.497-44.628c-13.423-3.354-27.618 0.578-37.403 10.358s-13.716 23.983-10.358 37.402l44.626 178.5c1.732 6.924 5.315 13.249 10.358 18.296l423.932 423.928z" />
|
|
27
|
+
<glyph unicode="" glyph-name="edit-2" d="M476.279-25.807c0 19.737 15.991 35.721 35.721 35.721h476.282c19.737 0 35.721-15.984 35.721-35.721 0-19.73-15.984-35.721-35.721-35.721h-476.282c-19.73 0-35.721 15.991-35.721 35.721zM828.54 843.419c-20.264 0-39.696-8.047-54.022-22.375l-653.683-653.687-36.013-144.065 144.063 36.015 653.682 653.685c7.099 7.094 12.721 15.516 16.563 24.788 3.835 9.27 5.817 19.205 5.817 29.234s-1.979 19.966-5.817 29.234c-3.843 9.269-9.467 17.694-16.563 24.788-7.092 7.094-15.517 12.722-24.788 16.56s-19.205 5.818-29.234 5.818zM723.999 871.556c27.724 27.724 65.325 43.305 104.54 43.305 19.417 0 38.64-3.826 56.581-11.251 17.935-7.426 34.235-18.319 47.962-32.049s24.617-30.028 32.049-47.963c7.427-17.935 11.253-37.162 11.253-56.581s-3.826-38.64-11.253-56.581c-7.427-17.935-18.319-34.235-32.049-47.963l-660.679-660.681c-4.578-4.577-10.311-7.826-16.597-9.394l-211.415-52.855c-12.173-3.043-25.047 0.524-33.926 9.394s-12.437 21.751-9.394 33.925l52.852 211.42c1.568 6.282 4.817 12.016 9.394 16.595l660.681 660.678z" />
|
|
28
|
+
<glyph unicode="" glyph-name="edit-3" d="M849.786 859.902c-12.536 0-24.948-2.468-36.528-7.264s-22.103-11.826-30.969-20.692l-636.156-636.157-50.62-185.604 185.604 50.617 636.156 636.157c8.866 8.864 15.898 19.385 20.691 30.966s7.267 23.989 7.267 36.527c0 12.536-2.473 24.948-7.267 36.527s-11.825 22.103-20.691 30.966c-8.866 8.864-19.386 15.895-30.969 20.692s-23.993 7.264-36.522 7.264zM783.115 925.408c21.135 8.754 43.789 13.26 66.67 13.26 22.875 0 45.528-4.505 66.664-13.26 21.141-8.754 40.347-21.588 56.525-37.764 16.174-16.177 29.007-35.383 37.763-56.52 8.759-21.136 13.262-43.789 13.262-66.669s-4.504-45.534-13.262-66.67c-8.753-21.136-21.588-40.342-37.763-56.52l-643.555-643.548c-4.846-4.847-10.874-8.344-17.484-10.151l-262.188-71.508c-13.637-3.718-28.217 0.156-38.212 10.151s-13.866 24.576-10.146 38.208l71.507 262.191c1.805 6.612 5.3 12.638 10.146 17.485l643.548 643.548c16.18 16.178 35.385 29.009 56.525 37.764z" />
|
|
29
|
+
<glyph unicode="" glyph-name="minus" d="M1024.001 426.667c0-21.752-17.628-39.385-39.385-39.385h-945.229c-21.752 0-39.385 17.632-39.385 39.385s17.632 39.385 39.385 39.385h945.229c21.756 0 39.385-17.632 39.385-39.385z" />
|
|
30
|
+
<glyph unicode="" glyph-name="plus" d="M1024.003 426.667c0-21.756-17.628-39.386-39.386-39.386h-945.227c-21.756 0-39.386 17.628-39.386 39.386s17.628 39.386 39.386 39.386h945.227c21.756 0 39.386-17.628 39.386-39.386zM511.998 938.67c21.756 0 39.386-17.628 39.386-39.386v-945.227c0-21.756-17.628-39.386-39.386-39.386s-39.386 17.628-39.386 39.386v945.227c0 21.756 17.628 39.386 39.386 39.386z" />
|
|
31
|
+
<glyph unicode="" glyph-name="info-line" d="M511.999-8.533c-240.351 0-435.198 194.843-435.198 435.2s194.843 435.2 435.198 435.2c240.358 0 435.2-194.843 435.2-435.2s-194.842-435.2-435.2-435.2zM511.999-85.333c282.773 0 512 229.234 512 512 0 282.77-229.228 512-512 512-282.767 0-511.998-229.23-511.998-512 0-282.767 229.23-512 511.998-512zM511.999 509.865c28.279 0 51.201-22.924 51.201-51.201v-287.999c0-28.279-22.924-51.201-51.201-51.201-28.273 0-51.201 22.924-51.201 51.201v287.999c0 28.279 22.93 51.201 51.201 51.201zM443.289 640c0 37.703 30.564 68.268 68.267 68.268h0.43c37.698 0 68.267-30.564 68.267-68.268s-30.564-68.268-68.267-68.268h-0.43c-37.698 0-68.267 30.564-68.267 68.268z" />
|
|
32
|
+
<glyph unicode="" glyph-name="info-fill" d="M512 938.667c-282.623 0-512-229.377-512-512s229.377-512 512-512c282.623 0 512 229.377 512 512s-229.377 512-512 512zM563.201 170.671c0-28.162-23.040-51.201-51.201-51.201s-51.201 23.040-51.201 51.201v287.745c0 28.162 23.040 51.201 51.201 51.201s51.201-23.040 51.201-51.201v-287.745zM512 571.564c-37.886 0-68.097 30.72-68.097 68.097s30.72 68.097 68.097 68.097c37.886 0 68.097-30.72 68.097-68.097s-30.72-68.097-68.097-68.097z" />
|
|
33
|
+
<glyph unicode="" glyph-name="warning-line" d="M449.238 873.974c19.070 11.156 40.689 17.070 62.76 17.070s43.695-5.912 62.766-17.070c19.059-11.15 34.873-27.115 46.037-46.234l0.098-0.168 386.385-670.124c10.926-19.65 16.657-41.836 16.712-64.356 0.061-22.522-5.549-44.738-16.364-64.449-10.822-19.716-26.514-36.319-45.657-48.024-19.156-11.706-41.037-18.060-63.46-18.317l-0.408-0.006h-772.628c-22.424 0.256-44.306 6.614-63.458 18.321-19.144 11.7-34.839 28.308-45.657 48.024-10.815 19.711-16.427 41.928-16.367 64.449 0.059 22.519 5.794 44.7 16.716 64.356l0.272 0.49 386.21 669.803c11.165 19.121 26.98 35.085 46.038 46.234zM511.999 819.6c-9.262 0-18.455-2.476-26.692-7.294-8.226-4.81-15.279-11.831-20.37-20.516-0.012-0.025-0.031-0.050-0.043-0.075l-385.855-669.196c-4.921-8.939-7.57-19.15-7.599-29.624-0.031-10.554 2.607-20.864 7.56-29.886 4.948-9.017 11.984-16.364 20.284-21.436 8.237-5.035 17.479-7.694 26.832-7.835h771.767c9.349 0.141 18.595 2.798 26.828 7.835 8.303 5.072 15.34 12.419 20.284 21.436 4.952 9.023 7.586 19.334 7.559 29.886-0.031 10.474-2.677 20.686-7.597 29.619l-385.859 669.203c-0.012 0.025-0.031 0.050-0.043 0.075-5.086 8.685-12.14 15.705-20.364 20.516-8.237 4.821-17.425 7.294-26.697 7.294zM511.999 330.19c-26.301 0-47.628 21.321-47.628 47.628v190.513c0 26.306 21.327 47.628 47.628 47.628 26.306 0 47.628-21.322 47.628-47.628v-190.513c0-26.306-21.321-47.628-47.628-47.628zM448.080 187.312c0-35.074 28.435-63.507 63.503-63.507h0.402c35.069 0 63.503 28.435 63.503 63.507s-28.435 63.503-63.503 63.503h-0.402c-35.069 0-63.503-28.429-63.503-63.503z" />
|
|
34
|
+
<glyph unicode="" glyph-name="warning-fill" d="M1007.803 157.205l-386.445 670.441c-10.959 19.058-27.159 35.261-46.221 46.221s-40.502 17.155-62.897 17.155c-22.395 0-43.838-5.717-62.897-17.155-19.058-10.959-34.786-27.159-46.221-46.221l-386.445-669.962c-10.959-20.014-16.678-42.41-16.678-64.806s5.717-44.79 16.203-64.329c10.959-19.535 26.684-36.213 45.742-48.126s40.978-18.107 63.373-18.107h773.363c22.395 0 44.314 6.671 63.373 18.107 19.058 11.915 34.786 28.111 45.742 48.126 10.959 19.535 16.203 41.933 16.203 64.329s-5.717 44.79-16.678 64.329h0.477zM464.588 616.077c0 26.208 21.443 47.651 47.651 47.651s47.651-21.443 47.651-47.651v-238.252c0-26.208-21.443-47.651-47.651-47.651s-47.651 21.443-47.651 47.651v238.252zM512.239 123.848c-35.261 0-63.373 28.59-63.373 63.373s28.59 63.373 63.373 63.373c35.261 0 63.373-28.59 63.373-63.373s-28.59-63.373-63.373-63.373z" />
|
|
35
|
+
<glyph unicode="" glyph-name="question" d="M512 938.667c-282.623 0-512-229.377-512-512s229.377-512 512-512 512 229.377 512 512-229.377 512-512 512zM498.688 170.671c-23.554 0-42.494 18.946-42.494 42.494s18.946 42.494 42.494 42.494 42.494-18.946 42.494-42.494-18.946-42.494-42.494-42.494zM658.941 510.124c-4.608-13.824-11.774-28.162-22.018-42.494-10.238-13.824-24.062-29.184-42.494-45.566-15.874-14.338-28.67-27.134-38.4-39.422-9.216-11.774-16.382-23.040-20.482-33.792s-7.166-22.018-8.702-34.305c0-7.166-3.586-13.31-9.216-17.918-5.122-4.608-12.288-7.166-21.504-7.166-9.73 0-17.41 3.072-23.040 9.216-5.122 6.658-7.68 15.36-7.68 26.112 0 15.874 1.536 30.72 5.122 44.544 4.094 14.338 10.752 28.67 19.454 43.008s20.482 29.698 34.305 45.566c10.752 12.288 19.454 23.040 25.090 32.256 6.658 9.73 11.266 18.946 13.824 27.648 3.072 8.702 4.608 17.918 4.608 27.134 0 16.896-6.144 30.206-18.432 39.936s-29.698 14.846-52.224 14.846c-20.482 0-39.422-2.558-56.318-8.702-16.382-5.122-33.278-12.288-50.174-22.018-11.266-6.658-21.504-9.73-30.72-9.216-8.702 1.022-15.874 4.608-21.504 10.238s-9.216 12.288-10.752 20.99c-1.536 8.194 0 16.382 4.094 25.090s11.266 16.382 22.018 23.554c20.99 13.824 45.057 24.576 72.192 31.233 27.134 7.68 52.737 11.774 76.8 11.774 32.256 0 60.417-5.63 84.48-16.382 24.576-10.752 43.521-25.598 56.832-44.544 13.824-18.946 20.99-40.958 20.99-66.561 0-15.874-2.050-31.233-7.166-45.566z" />
|
|
36
|
+
<glyph unicode="" glyph-name="star-line" d="M512 914.852c13.587 0 26.001-7.713 32.026-19.897l138.859-281.023 310.552-45.344c13.455-1.964 24.629-11.4 28.822-24.337 4.199-12.937 0.675-27.129-9.070-36.613l-224.661-218.588 53.014-308.804c2.304-13.398-3.2-26.945-14.199-34.939-11.001-7.993-25.58-9.050-37.615-2.73l-277.728 145.902-277.728-145.902c-12.036-6.321-26.62-5.263-37.615 2.73-10.996 7.998-16.504 21.544-14.2 34.939l53.018 308.804-224.661 218.588c-9.747 9.485-13.261 23.675-9.073 36.613s15.366 22.369 28.822 24.337l310.551 45.344 138.865 281.023c6.020 12.186 18.433 19.897 32.026 19.897zM512 798.494l-115.147-233.027c-5.204-10.527-15.245-17.826-26.864-19.522l-257.471-37.592 186.249-181.216c8.434-8.204 12.287-20.046 10.294-31.643l-43.955-256.012 230.278 120.971c10.4 5.467 22.825 5.467 33.226 0l230.276-120.971-43.955 256.012c-1.991 11.597 1.858 23.438 10.291 31.643l186.253 181.216-257.473 37.592c-11.614 1.698-21.66 8.995-26.861 19.522l-115.144 233.027z" />
|
|
37
|
+
<glyph unicode="" glyph-name="star-fill" d="M511.994 879.132l147.171-297.838 329.108-48.052-238.139-231.703 56.201-327.339-294.341 154.63-294.339-154.63 56.201 327.339-238.139 231.703 329.108 48.052 147.168 297.838zM512 914.852c13.587 0 26.001-7.713 32.026-19.897l138.859-281.023 310.552-45.344c13.455-1.964 24.629-11.4 28.822-24.337 4.199-12.937 0.675-27.129-9.070-36.613l-224.661-218.588 53.014-308.804c2.304-13.398-3.2-26.945-14.199-34.939-11.001-7.993-25.58-9.050-37.615-2.73l-277.728 145.902-277.728-145.902c-12.036-6.321-26.62-5.263-37.615 2.73-10.996 7.998-16.504 21.544-14.2 34.939l53.018 308.804-224.661 218.588c-9.747 9.485-13.261 23.675-9.073 36.613s15.366 22.369 28.822 24.337l310.551 45.344 138.865 281.023c6.020 12.186 18.433 19.897 32.026 19.897zM512 798.494l-115.147-233.027c-5.204-10.527-15.245-17.826-26.864-19.522l-257.471-37.592 186.249-181.216c8.434-8.204 12.287-20.046 10.294-31.643l-43.955-256.012 230.278 120.971c10.4 5.467 22.825 5.467 33.226 0l230.276-120.971-43.955 256.012c-1.991 11.597 1.858 23.438 10.291 31.643l186.253 181.216-257.473 37.592c-11.614 1.698-21.66 8.995-26.861 19.522l-115.144 233.027z" />
|
|
38
|
+
<glyph unicode="" glyph-name="euro-line" d="M511.999-8.533c-240.351 0-435.198 194.843-435.198 435.2s194.843 435.2 435.198 435.2c240.358 0 435.2-194.843 435.2-435.2s-194.842-435.2-435.2-435.2zM511.999-85.333c282.773 0 512 229.234 512 512 0 282.77-229.228 512-512 512-282.767 0-511.998-229.23-511.998-512 0-282.767 229.23-512 511.998-512zM523.987 170.669c-35.829 0-68.025 7.276-96.588 21.829-28.572 14.556-52.29 35.679-71.172 63.385-16.058 23.957-27.738 52.327-35.043 85.111-0.929 4.178 4.351 6.371 6.775 2.843 1.823-2.65-0.076-6.254-3.295-6.254h-42.372c-14.518 0-26.287 11.767-26.287 26.287v19.454c0 12.079 9.79 21.869 21.866 21.869h39.187c4.375 0 6.626-5.233 3.623-8.412-3.014-3.19-8.388-1.205-8.62 3.18-0.288 5.513-0.575 10.778-0.863 15.796 0 8.917 0.244 17.372 0.727 25.356 0.258 4.511 0.588 9.026 0.983 13.538 0.396 4.524 5.995 6.275 8.969 2.843 2.926-3.378 0.526-8.632-3.944-8.632h-38.931c-12.704 0-23.002 10.296-23.002 23v19.524c0 13.856 11.233 25.090 25.090 25.090h44.652c4.476 0 6.84-5.298 3.851-8.632-3.458-3.852-9.619-0.826-8.509 4.23 7.298 33.26 19.014 61.725 35.145 85.393 18.882 27.702 42.605 48.828 71.172 63.384 28.566 14.556 60.757 21.832 96.588 21.832 27.595 0 53.987-4.932 79.161-14.791 16.363-5.988 30.76-13.792 43.191-23.412 12.725-9.85 14.78-27.541 7.86-42.065l-7.374-15.468c-8.26-17.317-31.079-20.988-48.036-12.014-10.655 5.633-21.544 9.625-32.679 11.972s-22.513 3.52-34.136 3.52c-16.46 0-31.469-3.286-45.025-9.859-13.069-6.106-24.452-15.965-34.136-29.58-7.478-11.076-13.681-24.946-18.601-41.609-1.38-4.66-7.577-5.864-10.428-1.932-2.728 3.756-0.040 9.032 4.608 9.032h75.588c18.673 0 33.806-15.133 33.806-33.806 0-18.667-15.133-33.804-33.806-33.804h-84.467c-4.668 0-6.763 5.858-3.156 8.82 3.247 2.663 8.084 0.353 7.952-3.846-0.124-3.769-0.301-7.778-0.547-12.020 0-8.448 0-16.902 0-25.35 0.324-5.291 0.54-10.368 0.644-15.244 0.071-3.15-3.398-5.045-6.046-3.332-3.324 2.147-1.804 7.308 2.161 7.308h87.474c16.452 0 29.79-13.337 29.79-29.79v-4.020c0-18.667-15.133-33.804-33.806-33.804h-75.127c-4.094 0-6.58 4.517-4.381 7.972 2.454 3.872 8.423 2.91 9.718-1.49 4.92-16.7 11.13-30.604 18.626-41.7 9.684-13.615 21.062-23.711 34.136-30.284 13.558-6.104 28.566-9.156 45.025-9.156 11.624 0 23 1.178 34.136 3.522 11.136 2.35 22.025 6.34 32.679 11.969 16.988 8.987 39.828 5.364 48.163-11.95l7.29-15.145c6.907-14.357 5.012-31.857-7.394-41.85-12.542-10.1-27.108-18.347-43.704-24.719-25.175-9.391-51.564-14.084-79.161-14.084z" />
|
|
39
|
+
<glyph unicode="" glyph-name="euro-fill" d="M512 938.667c-282.623 0-512-229.377-512-512s229.377-512 512-512c282.623 0 512 229.377 512 512s-229.377 512-512 512zM672.257 209.578c-12.288-10.238-27.134-18.432-43.521-24.576-25.090-9.216-51.71-14.338-79.358-14.338-35.841 0-68.097 7.166-96.768 22.018-28.67 14.338-52.224 35.841-71.169 63.489-15.36 23.040-26.626 50.688-33.792 81.921h-39.936c-14.338 0-26.112 11.774-26.112 26.112v19.454c0 12.288 9.728 22.018 22.016 22.018h33.792c0 3.586 0 7.166-0.514 10.752 0 8.702 0 17.41 0.514 25.598 0 2.558 0 5.122 0.514 7.68h-33.279c-12.802 0-23.040 10.238-23.040 23.040v19.454c0 13.824 11.266 25.090 25.090 25.090h41.472c7.166 31.233 18.432 58.368 33.792 80.894 18.946 27.648 42.494 48.638 71.168 63.489 28.67 14.338 60.926 22.018 96.768 22.018 27.648 0 53.76-5.122 79.358-14.846 16.382-6.144 30.72-13.824 43.008-23.554 12.802-9.73 14.846-27.648 7.68-41.985l-7.166-15.36c-8.194-17.41-31.233-20.99-48.129-11.774-10.752 5.63-21.504 9.73-32.769 11.774-11.266 2.558-22.526 3.586-34.305 3.586-16.382 0-31.233-3.072-45.057-9.73-13.31-6.144-24.576-15.874-34.305-29.698-6.144-9.216-11.266-20.99-15.874-34.305h67.070c18.432 0 33.792-15.36 33.792-33.792s-15.36-33.792-33.792-33.792h-79.872c0 0 0-4.608 0-7.166v-25.598c0-4.094 0-7.68 0-11.266h83.966c16.382 0 29.698-13.31 29.698-29.698v-4.094c0-18.432-15.36-33.792-33.792-33.792h-67.584c4.608-13.824 9.73-25.598 16.382-35.328 9.73-13.824 20.99-23.554 34.305-30.206 13.31-6.144 28.67-9.216 45.057-9.216 11.774 0 23.040 1.022 34.305 3.586s22.018 6.144 32.769 11.774c16.896 9.216 39.936 5.122 48.129-11.774l7.166-15.36c7.166-14.338 5.122-31.742-7.166-41.985l-0.514-0.514z" />
|
|
40
|
+
<glyph unicode="" glyph-name="hamburger" d="M0.004 426.667c0 21.751 17.634 39.386 39.386 39.386h945.228c21.757 0 39.386-17.634 39.386-39.386s-17.628-39.386-39.386-39.386h-945.228c-21.751 0-39.386 17.634-39.386 39.386zM0.004 741.744c0 21.751 17.634 39.386 39.386 39.386h945.228c21.757 0 39.386-17.634 39.386-39.386s-17.628-39.386-39.386-39.386h-945.228c-21.751 0-39.386 17.634-39.386 39.386zM0.004 111.59c0 21.751 17.634 39.386 39.386 39.386h945.228c21.757 0 39.386-17.634 39.386-39.386s-17.628-39.386-39.386-39.386h-945.228c-21.751 0-39.386 17.634-39.386 39.386z" />
|
|
41
|
+
<glyph unicode="" glyph-name="reorder" d="M284.444 711.111c-62.839 0-113.777 50.94-113.777 113.777s50.94 113.777 113.777 113.777c62.839 0 113.773-50.94 113.773-113.777s-50.94-113.777-113.773-113.777zM284.444 312.89c-62.839 0-113.777 50.94-113.777 113.777s50.94 113.777 113.777 113.777c62.839 0 113.773-50.94 113.773-113.777s-50.94-113.777-113.773-113.777zM284.444-85.335c-62.839 0-113.777 50.94-113.777 113.777s50.94 113.777 113.777 113.777c62.839 0 113.773-50.94 113.773-113.777s-50.94-113.777-113.773-113.777zM739.556 711.111c-62.833 0-113.777 50.94-113.777 113.777s50.942 113.777 113.777 113.777c62.84 0 113.777-50.94 113.777-113.777s-50.94-113.777-113.777-113.777zM739.556 312.89c-62.833 0-113.777 50.94-113.777 113.777s50.942 113.777 113.777 113.777c62.84 0 113.777-50.94 113.777-113.777s-50.94-113.777-113.777-113.777zM739.556-85.335c-62.833 0-113.777 50.94-113.777 113.777s50.942 113.777 113.777 113.777c62.84 0 113.777-50.94 113.777-113.777s-50.94-113.777-113.777-113.777z" />
|
|
42
|
+
<glyph unicode="" glyph-name="filters" d="M165.62 375.797c19.729 0 35.722-15.993 35.722-35.722v-303.086c0-19.729-15.993-35.722-35.722-35.722s-35.722 15.993-35.722 35.722v303.086c0 19.729 15.993 35.722 35.722 35.722zM165.62 852.070c19.729 0 35.722-15.993 35.722-35.722v-303.084c0-19.729-15.993-35.722-35.722-35.722s-35.722 15.993-35.722 35.722v303.084c0 19.729 15.993 35.722 35.722 35.722zM511.989 462.393c19.73 0 35.722-15.993 35.722-35.722v-389.677c0-19.729-15.987-35.722-35.722-35.722-19.729 0-35.722 15.993-35.722 35.722v389.677c0 19.729 15.993 35.722 35.722 35.722zM511.989 852.070c19.73 0 35.722-15.993 35.722-35.722v-216.487c0-19.729-15.987-35.722-35.722-35.722-19.729 0-35.722 15.993-35.722 35.722v216.487c0 19.729 15.993 35.722 35.722 35.722zM858.373 289.194c19.73 0 35.722-15.993 35.722-35.722v-216.487c0-19.729-15.987-35.722-35.722-35.722-19.729 0-35.722 15.993-35.722 35.722v216.487c0 19.729 15.993 35.722 35.722 35.722zM858.373 852.070c19.73 0 35.722-15.993 35.722-35.722v-389.672c0-19.73-15.987-35.722-35.722-35.722-19.729 0-35.722 15.987-35.722 35.722v389.672c0 19.729 15.993 35.722 35.722 35.722zM0.002 340.075c0 19.729 15.993 35.722 35.722 35.722h259.783c19.729 0 35.722-15.993 35.722-35.722 0-19.73-15.993-35.722-35.722-35.722h-259.783c-19.729 0-35.722 15.987-35.722 35.722zM346.375 599.861c0 19.729 15.993 35.722 35.722 35.722h259.783c19.729 0 35.722-15.993 35.722-35.722s-15.993-35.722-35.722-35.722h-259.783c-19.729 0-35.722 15.993-35.722 35.722zM692.772 253.472c0 19.729 15.993 35.722 35.722 35.722h259.786c19.729 0 35.722-15.993 35.722-35.722s-15.993-35.722-35.722-35.722h-259.786c-19.729 0-35.722 15.993-35.722 35.722z" />
|
|
43
|
+
<glyph unicode="" glyph-name="categories" d="M0.008 829.267c0 60.42 48.979 109.4 109.4 109.4h214.434c60.42 0 109.399-48.979 109.399-109.4v-214.43c0-60.42-48.977-109.399-109.399-109.399h-214.434c-60.42 0-109.4 48.977-109.4 109.399v214.43zM109.407 859.9c-16.918 0-30.632-13.716-30.632-30.632v-214.43c0-16.918 13.716-30.632 30.632-30.632h214.434c16.918 0 30.632 13.716 30.632 30.632v214.43c0 16.918-13.716 30.632-30.632 30.632h-214.434zM590.761 829.267c0 60.42 48.976 109.4 109.399 109.4h214.435c60.42 0 109.399-48.979 109.399-109.4v-214.43c0-60.42-48.976-109.399-109.399-109.399h-214.435c-60.42 0-109.399 48.977-109.399 109.399v214.43zM700.16 859.9c-16.913 0-30.631-13.716-30.631-30.632v-214.43c0-16.918 13.716-30.632 30.631-30.632h214.435c16.919 0 30.631 13.716 30.631 30.632v214.43c0 16.918-13.712 30.632-30.631 30.632h-214.435zM0.008 238.5c0 60.42 48.979 109.399 109.4 109.399h214.434c60.42 0 109.399-48.976 109.399-109.399v-214.429c0-60.42-48.977-109.404-109.399-109.404h-214.434c-60.42 0-109.4 48.982-109.4 109.404v214.429zM109.407 269.131c-16.918 0-30.632-13.716-30.632-30.631v-214.429c0-16.919 13.716-30.636 30.632-30.636h214.434c16.918 0 30.632 13.716 30.632 30.636v214.429c0 16.913-13.716 30.631-30.632 30.631h-214.434zM590.761 238.5c0 60.42 48.976 109.399 109.399 109.399h214.435c60.42 0 109.399-48.976 109.399-109.399v-214.429c0-60.42-48.976-109.404-109.399-109.404h-214.435c-60.42 0-109.399 48.982-109.399 109.404v214.429zM700.16 269.131c-16.913 0-30.631-13.716-30.631-30.631v-214.429c0-16.919 13.716-30.636 30.631-30.636h214.435c16.919 0 30.631 13.716 30.631 30.636v214.429c0 16.913-13.712 30.631-30.631 30.631h-214.435z" />
|
|
44
|
+
<glyph unicode="" glyph-name="save" d="M144.414 859.897c-17.411 0-34.105-6.916-46.415-19.226s-19.226-29.004-19.226-46.415v-735.179c0-17.41 6.916-34.109 19.226-46.417s29.004-19.224 46.415-19.224h735.176c17.412 0 34.109 6.916 46.417 19.224s19.224 29.006 19.224 46.417v561.324l-239.488 239.493h-561.324zM42.302 896.368c27.084 27.084 63.813 42.299 102.111 42.299h577.638c10.452 0 20.462-4.15 27.852-11.534l262.564-262.564c7.381-7.385 11.532-17.405 11.532-27.851v-577.64c0-38.295-15.212-75.032-42.295-102.11-27.083-27.084-63.813-42.3-102.116-42.3h-735.176c-38.299 0-75.032 15.212-102.111 42.3-27.084 27.083-42.299 63.813-42.299 102.11v735.179c0 38.299 15.215 75.032 42.299 102.111zM262.568 374.154c0 21.752 17.632 39.385 39.385 39.385h472.612c21.756 0 39.385-17.632 39.385-39.385v-420.103c0-21.752-17.628-39.385-39.385-39.385-21.752 0-39.385 17.632-39.385 39.385v380.717h-393.843v-380.717c0-21.752-17.632-39.385-39.385-39.385s-39.385 17.632-39.385 39.385v420.103zM301.952 938.666c21.752 0 39.385-17.632 39.385-39.385v-223.18h380.714c21.756 0 39.385-17.632 39.385-39.385s-17.628-39.385-39.385-39.385h-420.099c-21.752 0-39.385 17.632-39.385 39.385v262.564c0 21.752 17.632 39.385 39.385 39.385z" />
|
|
45
|
+
<glyph unicode="" glyph-name="search" d="M426.078 859.901c-191.813 0-347.305-155.491-347.305-347.302s155.492-347.299 347.305-347.299c191.809 0 347.305 155.491 347.305 347.299 0 191.81-155.497 347.302-347.305 347.302zM0.005 512.599c0 235.312 190.76 426.070 426.072 426.070s426.072-190.758 426.072-426.070c0-235.308-190.759-426.066-426.072-426.066s-426.072 190.759-426.072 426.066zM698.971 239.691c15.379 15.379 40.318 15.379 55.698 0l257.796-257.796c15.373-15.373 15.373-40.312 0-55.692-15.379-15.379-40.318-15.379-55.698 0l-257.796 257.79c-15.379 15.379-15.379 40.318 0 55.698z" />
|
|
46
|
+
<glyph unicode="" glyph-name="link" d="M548.588 866.018c53.2 47.434 123.852 73.222 196.622 72.636 72.779-0.584 142.956-27.506 195.289-75.815 52.433-48.401 82.829-114.571 83.489-184.472 0.658-69.904-28.495-136.586-80.046-185.856l-0.492-0.472-145.092-133.923c0-0.006 0 0 0 0-28.643-26.452-62.916-46.726-100.404-59.638-37.482-12.907-77.446-18.197-117.207-15.564-39.768 2.629-78.574 13.122-113.805 30.895-35.237 17.772-66.173 42.45-90.564 72.557-13.693 16.9-11.098 41.7 5.803 55.397s41.7 11.098 55.397-5.802c17.147-21.162 39.204-38.894 64.834-51.82 25.632-12.926 54.125-20.684 83.532-22.627s58.878 1.98 86.372 11.447c27.486 9.468 52.218 24.204 72.611 43.028l144.835 133.693c36.392 34.902 55.908 80.894 55.464 127.947-0.443 47.155-20.911 92.964-58.146 127.332-37.336 34.465-88.455 54.493-142.494 54.926-53.94 0.433-105.375-18.708-143.369-52.487l-82.97-76.14c-16.026-14.707-40.937-13.639-55.645 2.388-14.702 16.025-13.638 40.939 2.388 55.645l83.604 76.721zM326.040 554.854c37.486 12.907 77.447 18.197 117.215 15.566 39.762-2.628 78.574-13.126 113.798-30.895 35.237-17.772 66.173-42.45 90.564-72.559 13.693-16.9 11.098-41.7-5.802-55.397s-41.7-11.098-55.397 5.802c-17.147 21.162-39.204 38.894-64.834 51.82-25.632 12.926-54.125 20.684-83.532 22.627s-58.879-1.98-86.369-11.447c-27.492-9.468-52.223-24.204-72.612-43.028l-144.833-133.695c-36.396-34.901-55.908-80.894-55.468-127.947 0.444-47.155 20.916-92.958 58.15-127.332 37.336-34.464 88.458-54.492 142.494-54.926 53.918-0.431 105.338 18.695 143.333 52.453l82.44 76.094c15.978 14.755 40.897 13.76 55.651-2.22 14.749-15.985 13.76-40.903-2.226-55.66l-83.199-76.8c-53.206-47.436-123.853-73.218-196.627-72.636s-142.956 27.506-195.291 75.812c-52.435 48.406-82.83 114.572-83.485 184.472-0.66 69.904 28.49 136.586 80.044 185.859l0.492 0.472 145.092 133.923c-0.001 0 0.004 0.006 0 0 28.644 26.452 62.916 46.728 100.404 59.636z" />
|
|
47
|
+
<glyph unicode="" glyph-name="copy" d="M281.836 753.561c20.864 22.255 49.694 35.247 80.313 35.247h262.239c10.358 0 20.249-4.285 27.332-11.842l262.242-279.724c6.51-6.948 10.13-16.111 10.13-25.622v-439.571c0-30.38-11.291-59.964-32.075-82.136-20.867-22.255-49.694-35.249-80.316-35.249h-449.555c-30.614 0-59.449 12.996-80.313 35.249-20.787 22.166-32.076 51.756-32.076 82.136v639.371c0 30.38 11.292 59.964 32.076 82.138zM362.15 713.885c-9.128 0-18.41-3.846-25.649-11.568-7.316-7.806-11.814-18.876-11.814-30.89v-639.371c0-12.012 4.498-23.088 11.814-30.89 7.238-7.721 16.524-11.568 25.649-11.568h449.555c9.132 0 18.413 3.847 25.655 11.568 7.312 7.802 11.809 18.876 11.809 30.89v424.753l-241.009 257.077h-246.012zM137.757 904.148c23.839 22.349 55.678 34.517 88.414 34.517h310.804c20.696 0 37.463-16.772 37.463-37.463s-16.766-37.463-37.463-37.463h-310.804c-14.366 0-27.701-5.372-37.169-14.25-9.389-8.8-14.172-20.199-14.172-31.538v-666.012c0-20.69-16.772-37.463-37.463-37.463s-37.463 16.772-37.463 37.463v666.012c0 32.822 13.932 63.775 37.85 86.197zM586.925 788.812c20.696 0 37.463-16.772 37.463-37.463v-262.242h262.242c20.696 0 37.463-16.772 37.463-37.463s-16.766-37.463-37.463-37.463h-299.706c-20.69 0-37.463 16.772-37.463 37.463v299.706c0 20.69 16.772 37.463 37.463 37.463z" />
|
|
48
|
+
<glyph unicode="" glyph-name="user" d="M82.436 237.044c51.962 46.187 121.543 71.471 193.259 71.471h472.612c71.724 0 141.3-25.284 193.261-71.471 52.116-46.322 82.428-110.215 82.428-177.965v-105.026c0-21.752-17.628-39.385-39.385-39.385-21.752 0-39.385 17.632-39.385 39.385v105.026c0 43.665-19.474 86.629-55.989 119.095-36.674 32.595-87.301 51.572-140.934 51.572h-472.612c-53.628 0-104.258-18.977-140.928-51.572-36.519-32.461-55.995-75.428-55.995-119.095v-105.026c0-21.752-17.632-39.385-39.385-39.385s-39.385 17.632-39.385 39.385v105.026c0 67.753 30.32 131.646 82.43 177.965zM538.255 859.898c-108.756 0-196.921-88.164-196.921-196.923s88.165-196.923 196.921-196.923c108.757 0 196.923 88.164 196.923 196.923s-88.164 196.923-196.923 196.923zM262.565 662.975c0 152.263 123.432 275.692 275.69 275.692 152.263 0 275.692-123.43 275.692-275.692s-123.43-275.692-275.692-275.692c-152.258 0-275.69 123.43-275.69 275.692z" />
|
|
49
|
+
<glyph unicode="" glyph-name="settings" d="M511.984 231.122c-108.59 0-196.719 88.13-196.719 196.722s88.13 196.722 196.719 196.722c108.592 0 196.722-88.13 196.722-196.722s-88.13-196.722-196.722-196.722zM511.984 545.875c-65.048 0-118.033-52.984-118.033-118.034s52.981-118.034 118.033-118.034c65.048 0 118.034 52.984 118.034 118.034s-52.984 118.034-118.034 118.034zM515.674-83.632c-33.574 0-65.048 13.114-88.654 36.719s-36.722 55.083-36.722 88.654c0 9.445-2.096 15.215-5.771 20.46s-8.919 8.919-14.69 11.018c-7.867 3.674-14.69 4.198-20.46 3.149-6.295-1.048-11.541-4.198-16.264-8.392-14.163-14.163-27.805-23.081-43.016-29.378-30.425-12.589-65.048-12.589-96.002 0-15.215 6.295-28.852 15.739-40.918 27.279-11.541 11.541-20.986 25.18-27.279 40.393s-9.445 31.475-9.445 47.737c0 16.264 3.149 32.526 9.445 47.737s15.215 28.852 27.279 40.393c6.819 6.819 9.445 12.589 10.493 18.36 1.048 6.295 0 12.589-2.096 18.36-2.622 6.295-6.295 11.018-11.541 14.163s-11.018 5.246-17.312 5.246h-7.343c-33.050 0-65.048 13.114-88.654 36.719s-36.719 55.083-36.719 88.654c0 33.574 13.114 65.048 36.719 88.654s55.609 36.719 88.654 36.719c9.445 0 15.215 2.096 20.46 5.771s8.919 8.919 11.018 14.69c3.674 7.867 4.198 14.69 3.149 20.46-1.048 6.295-4.198 12.066-8.392 16.264-14.163 14.163-23.081 27.805-29.378 43.016s-9.445 31.475-9.445 47.737c0 16.264 3.149 32.526 9.445 47.737s15.739 28.852 27.279 40.918c11.541 11.541 25.18 20.986 40.393 27.279 30.425 12.589 65.048 12.589 96.002 0 15.215-6.295 28.852-15.739 40.918-27.279 6.819-6.819 12.589-9.445 18.36-10.493 6.295-1.048 12.589 0 18.36 2.096 2.622 1.048 5.771 2.096 8.392 2.622 3.674 2.096 6.819 5.246 8.919 8.919 3.149 5.246 5.246 11.018 5.246 17.312v7.343c0 33.050 13.114 65.048 36.722 88.654 47.212 47.212 129.575 47.212 177.315 0 23.081-23.081 36.719-55.609 36.719-88.654 0-9.968 2.096-15.739 5.246-20.986s8.392-8.919 13.638-11.541c6.295-2.622 12.589-3.674 18.885-2.096 6.295 1.048 12.066 4.198 16.264 8.392 14.163 14.163 27.805 23.081 43.016 29.378 30.948 12.589 65.048 12.589 96.002 0 15.215-6.295 28.852-15.215 40.918-27.279 11.541-11.541 20.986-25.18 27.279-40.918 6.295-15.215 9.445-31.475 9.445-47.737s-3.149-32.526-9.445-48.261c-6.295-15.215-15.215-28.852-27.279-40.393-6.819-6.819-9.445-12.589-10.493-18.36-1.048-6.295 0-12.589 2.096-18.36 1.048-2.622 2.096-5.771 2.622-8.392 2.096-3.674 5.246-6.819 8.919-9.445 5.246-3.674 11.018-5.246 17.312-5.246h7.343c33.574 0 65.048-13.114 88.654-36.719s36.719-55.083 36.719-88.654c0-33.574-13.114-65.048-36.719-88.654s-55.083-36.719-88.654-36.719c-9.968 0-15.739-2.096-20.986-5.246s-8.919-8.392-11.541-13.638c-2.622-5.771-3.149-12.066-2.096-18.36s4.198-11.541 8.392-16.264c13.638-13.638 23.081-27.279 29.378-42.491s9.445-31.475 9.445-48.261c0-16.788-3.149-32.526-9.445-47.737s-15.215-28.852-27.279-40.393c-11.541-11.541-25.18-20.986-40.393-27.279-30.948-12.589-65.048-12.589-96.002 0-15.215 6.295-29.378 15.739-40.918 27.279-6.819 6.819-12.589 9.445-18.36 10.493-6.295 1.048-12.589 0-18.36-2.096-5.771-2.622-11.018-6.819-14.163-11.541-3.674-5.246-5.246-11.018-5.246-17.312v-7.343c0-33.574-13.114-65.048-36.719-88.654s-55.083-36.719-88.654-36.719v0.525zM354.622 155.582c15.215 0 30.425-3.149 44.592-9.445 18.362-6.819 36.196-20.46 49.313-38.297s19.933-39.345 20.46-61.379c0-17.312 4.722-28.852 13.638-37.772 17.312-17.312 48.261-17.312 65.573 0 8.919 8.919 13.638 20.46 13.638 33.050v7.343c0 22.034 6.295 42.491 18.36 60.327s28.327 32.001 48.261 40.393c19.933 8.919 41.966 11.541 64 7.343 21.511-4.198 41.441-14.163 57.181-29.9 7.343-7.343 12.066-10.493 17.836-13.114 11.018-4.722 24.131-4.722 35.671 0 5.771 2.096 10.493 5.771 15.215 9.968 4.198 4.198 7.867 9.445 9.968 15.215s3.674 11.541 3.674 17.836c0 6.295-1.048 12.066-3.674 17.836-2.096 5.771-5.771 11.018-9.968 15.215-18.36 18.885-28.852 38.82-32.526 60.327s-1.048 43.542 7.343 64c8.392 19.933 22.559 36.195 40.393 48.261s38.82 18.36 60.327 18.36c16.264 0 28.327 4.722 36.719 13.638 8.919 8.919 13.638 20.46 13.638 33.050s-4.722 24.131-13.638 33.050c-8.919 8.919-20.46 13.638-33.050 13.638h-7.343c-21.511 0-42.491 6.295-60.327 18.36s-32.001 28.852-40.393 48.261c-1.573 3.674-2.622 6.819-3.149 11.018-6.295 17.836-7.867 37.245-4.722 56.657 4.198 22.034 14.163 41.441 29.9 57.705 7.343 7.343 10.493 12.066 13.114 17.836s3.674 11.541 3.674 17.836c0 6.295-1.048 12.066-3.674 17.836s-5.771 11.018-9.968 15.215c-4.198 4.198-9.445 7.867-15.215 9.968-11.541 4.722-24.131 4.722-35.671 0-5.771-2.096-10.493-5.771-15.215-9.968-18.885-18.36-38.297-28.852-60.327-32.526-21.511-3.674-44.067-1.573-64 7.867-19.408 8.392-36.195 22.034-48.261 40.393-12.066 17.836-18.36 38.82-18.36 60.327 0 16.264-4.722 28.327-13.638 36.719-17.312 17.312-48.261 17.312-65.573 0-8.392-8.919-13.638-20.46-13.638-33.050v-7.343c0-21.511-6.295-42.491-18.36-60.327s-28.852-32.001-48.262-40.393c-3.674-1.573-6.819-2.622-10.493-3.149-18.36-6.295-37.772-7.867-56.657-4.722-21.511 3.674-41.441 14.163-57.181 29.9-7.343 7.343-12.066 10.493-17.836 13.114-11.541 4.722-24.131 4.722-35.671 0-5.771-2.096-10.493-5.771-15.215-9.968s-7.867-9.445-9.968-15.215c-2.096-5.771-3.674-11.541-3.674-17.836s1.048-12.066 3.674-17.836c2.096-5.771 5.771-10.493 9.968-15.215 18.36-18.885 28.852-38.297 32.526-60.327 4.198-21.511 1.048-44.067-7.867-64-6.819-18.36-20.46-36.195-38.297-49.313-18.36-13.114-39.345-19.933-61.379-20.46-16.788 0-28.852-4.722-37.772-13.638s-13.638-20.46-13.638-33.050c0-12.589 4.722-24.131 13.638-33.050s20.46-13.638 33.050-13.638h7.343c21.511 0 42.491-6.295 60.327-18.36s32.001-28.852 40.393-48.261c8.919-19.933 11.541-41.966 7.343-64-3.674-21.511-14.163-41.441-29.378-57.181-7.343-7.343-10.493-12.589-13.114-17.836-2.096-5.771-3.674-11.541-3.674-17.836s1.048-12.066 3.674-17.836c2.096-5.771 5.771-11.018 9.968-15.215 4.198-4.722 9.445-7.867 15.215-9.968 11.541-4.722 24.131-4.722 35.671 0 5.771 2.096 10.493 5.771 15.215 9.968 18.885 18.36 38.82 28.852 60.327 32.526 6.295 1.048 13.114 1.573 19.933 1.573v-0.525z" />
|
|
50
|
+
<glyph unicode="" glyph-name="trash" d="M47.63 712.434c0 19.728 15.995 35.723 35.723 35.723h857.3c19.734 0 35.723-15.995 35.723-35.723s-15.989-35.723-35.723-35.723h-857.3c-19.728 0-35.723 15.995-35.723 35.723zM416.743 867.223c-15.786 0-30.929-6.274-42.095-17.436s-17.436-26.309-17.436-42.098v-77.938c0-19.728-15.995-35.723-35.723-35.723s-35.723 15.995-35.723 35.723v77.938c0 34.739 13.8 68.052 38.364 92.614s57.876 38.364 92.612 38.364h190.512c34.74 0 68.054-13.799 92.617-38.364s38.36-57.876 38.36-92.614v-77.938c0-19.728-15.989-35.723-35.723-35.723-19.728 0-35.723 15.995-35.723 35.723v77.938c0 15.79-6.274 30.932-17.436 42.098s-26.305 17.436-42.1 17.436h-190.512zM178.604 748.157c19.728 0 35.723-15.995 35.723-35.723v-666.791c0-15.787 6.274-30.935 17.436-42.1s26.309-17.436 42.098-17.436h476.277c15.793 0 30.935 6.274 42.1 17.436s17.436 26.31 17.436 42.1v666.791c0 19.728 15.995 35.723 35.723 35.723 19.734 0 35.723-15.995 35.723-35.723v-666.791c0-34.736-13.798-68.052-38.36-92.612-24.564-24.564-57.876-38.364-92.617-38.364h-476.277c-34.739 0-68.052 13.798-92.614 38.364-24.564 24.564-38.364 57.876-38.364 92.612v666.791c0 19.728 15.995 35.723 35.723 35.723zM416.732 510.015c19.728 0 35.723-15.995 35.723-35.723v-285.767c0-19.728-15.995-35.723-35.723-35.723s-35.723 15.995-35.723 35.723v285.767c0 19.728 15.995 35.723 35.723 35.723zM607.244 510.015c19.728 0 35.723-15.995 35.723-35.723v-285.767c0-19.728-15.995-35.723-35.723-35.723s-35.723 15.995-35.723 35.723v285.767c0 19.728 15.995 35.723 35.723 35.723z" />
|
|
51
|
+
<glyph unicode="" glyph-name="calendar" d="M178.604 771.973c-32.88 0-59.533-26.653-59.533-59.533v-666.795c0-32.877 26.653-59.533 59.533-59.533h666.791c32.877 0 59.533 26.656 59.533 59.533v666.795c0 32.881-26.656 59.533-59.533 59.533h-666.791zM47.629 712.44c0 72.337 58.643 130.978 130.978 130.978h666.791c72.332 0 130.978-58.643 130.978-130.978v-666.795c0-72.332-58.644-130.978-130.978-130.978h-666.791c-72.337 0-130.978 58.644-130.978 130.978v666.795zM702.499 938.667c19.728 0 35.723-15.995 35.723-35.723v-190.513c0-19.728-15.995-35.723-35.723-35.723s-35.723 15.995-35.723 35.723v190.513c0 19.728 15.995 35.723 35.723 35.723zM321.487 938.667c19.728 0 35.723-15.995 35.723-35.723v-190.513c0-19.728-15.995-35.723-35.723-35.723s-35.723 15.995-35.723 35.723v190.513c0 19.728 15.995 35.723 35.723 35.723zM47.629 521.935c0 19.728 15.995 35.723 35.723 35.723h857.302c19.728 0 35.723-15.995 35.723-35.723s-15.995-35.724-35.723-35.724h-857.302c-19.728 0-35.723 15.995-35.723 35.724z" />
|
|
52
|
+
<glyph unicode="" glyph-name="email" d="M133.907 754.874c-31.291 0-55.14-24.758-55.14-52.512v-551.386c0-27.752 23.849-52.512 55.14-52.512h756.182c31.293 0 55.14 24.76 55.14 52.512v551.386c0 27.753-23.846 52.512-55.14 52.512h-756.182zM0.002 702.358c0 73.334 61.223 131.281 133.909 131.281h756.182c72.69 0 133.909-57.948 133.909-131.281v-551.386c0-73.336-61.219-131.281-133.909-131.281h-756.182c-72.686 0-133.909 57.945-133.909 131.281v551.386zM61.335 792.837c13.717 16.882 38.523 19.45 55.404 5.734l395.269-321.156 395.263 321.156c16.883 13.717 41.691 11.149 55.41-5.734s11.149-41.686-5.734-55.404l-420.103-341.334c-14.468-11.759-35.199-11.759-49.671 0l-420.103 341.334c-16.881 13.717-19.45 38.522-5.734 55.404z" />
|
|
53
|
+
<glyph unicode="" glyph-name="location" d="M512.005 867.224c-91.318 0-179.058-37.092-243.881-103.387-64.848-66.324-101.418-156.444-101.418-250.572 0-137.485 87.222-269.589 180.996-370.821 46.206-49.882 92.526-90.684 127.332-119.028 14.742-12.008 27.368-21.736 36.972-28.932 9.612 7.196 22.236 16.928 36.977 28.932 34.808 28.343 81.125 69.148 127.33 119.028 93.777 101.233 180.996 233.336 180.996 370.821 0 94.132-36.568 184.252-101.418 250.572-64.822 66.297-152.561 103.387-243.884 103.387zM512.005-49.615c-20.124-29.514-20.132-29.508-20.143-29.502l-0.030 0.018-0.083 0.059-0.272 0.185-0.948 0.659c-0.808 0.564-1.967 1.373-3.452 2.424-2.971 2.104-7.26 5.18-12.668 9.18-10.814 7.992-26.15 19.667-44.5 34.613-36.636 29.834-85.572 72.924-134.625 125.875-96.735 104.43-200.028 253.766-200.028 419.368 0 112.57 43.716 220.684 121.78 300.519 78.089 79.863 184.176 124.884 294.964 124.884 110.794 0 216.876-45.018 294.971-124.884 78.060-79.836 121.776-187.954 121.776-300.519 0-165.603-103.29-314.941-200.025-419.368-49.051-52.954-97.99-96.041-134.628-125.875-18.349-14.944-33.684-26.621-44.5-34.613-5.412-3.996-9.697-7.072-12.668-9.18-1.486-1.051-2.65-1.861-3.452-2.424l-0.948-0.659-0.272-0.185-0.083-0.059-0.030-0.018c-0.012-0.006-0.023-0.012-20.148 29.502zM512.005-49.615l20.124-29.514c-12.134-8.272-28.105-8.272-40.244 0l20.124 29.514zM512.005 581.455c-32.878 0-59.533-26.653-59.533-59.533 0-32.884 26.656-59.533 59.533-59.533 32.884 0 59.533 26.652 59.533 59.533s-26.652 59.533-59.533 59.533zM381.028 521.922c0 72.336 58.644 130.979 130.977 130.979 72.337 0 130.979-58.643 130.979-130.979s-58.642-130.979-130.979-130.979c-72.333 0-130.977 58.642-130.977 130.979z" />
|
|
54
|
+
<glyph unicode="" glyph-name="document" d="M143.085 899.052c24.529 25.232 58.039 39.613 93.22 39.613h367.589c10.639 0 20.826-4.306 28.24-11.932l275.694-283.572c7.146-7.352 11.146-17.2 11.146-27.454v-567.138c0-35.164-13.571-69.102-38.062-94.291-24.528-25.234-58.038-39.613-93.222-39.613h-551.385c-35.182 0-68.692 14.384-93.22 39.613-24.492 25.189-38.063 59.128-38.063 94.291v756.186c0 35.162 13.571 69.101 38.063 94.291zM236.308 859.901c-13.565 0-26.803-5.532-36.742-15.756-9.974-10.26-15.772-24.408-15.772-39.383v-756.186c0-14.977 5.796-29.124 15.772-39.385 9.938-10.224 23.178-15.756 36.742-15.756h551.385c13.565 0 26.808 5.531 36.744 15.756 9.976 10.26 15.769 24.408 15.769 39.385v551.148l-252.946 260.173h-350.952zM564.512 886.157c21.756 0 39.385-17.632 39.385-39.385v-223.18h275.694c21.756 0 39.385-17.632 39.385-39.385s-17.628-39.385-39.385-39.385h-315.079c-21.752 0-39.385 17.632-39.385 39.385v262.566c0 21.752 17.632 39.385 39.385 39.385zM262.564 269.128c0 21.752 17.632 39.385 39.385 39.385h262.563c21.756 0 39.385-17.632 39.385-39.385s-17.628-39.385-39.385-39.385h-262.563c-21.752 0-39.385 17.632-39.385 39.385zM262.564 111.588c0 21.752 17.632 39.385 39.385 39.385h262.563c21.756 0 39.385-17.632 39.385-39.385s-17.628-39.385-39.385-39.385h-262.563c-21.752 0-39.385 17.632-39.385 39.385zM262.564 426.667c0 21.752 17.632 39.385 39.385 39.385h52.513c21.752 0 39.382-17.632 39.382-39.385s-17.629-39.385-39.382-39.385h-52.513c-21.752 0-39.385 17.632-39.385 39.385z" />
|
|
55
|
+
<glyph unicode="" glyph-name="credit-cards" d="M270.524 556.378c-36.392 0-49.241-21.924-49.241-30.678v-494.387c0-8.752 12.85-30.676 49.241-30.676h624.334c36.392 0 49.241 21.925 49.241 30.676v494.387c0 8.758-12.848 30.678-49.241 30.678h-624.334zM141.381 525.7c0 69.262 67.012 110.579 129.142 110.579h624.334c62.131 0 129.142-41.32 129.142-110.579v-494.387c0-69.259-67.009-110.576-129.142-110.576h-624.334c-62.127 0-129.142 41.321-129.142 110.576v494.387zM160.876 387.082c0 22.066 17.888 39.949 39.949 39.949h758.123c22.066 0 39.949-17.888 39.949-39.949s-17.888-39.949-39.949-39.949h-758.123c-22.066 0-39.949 17.888-39.949 39.949zM78.671 611.342l129.498-556.16c4.999-21.475-7.961-44.431-28.952-51.275-20.991-6.841-42.060 5.029-47.064 26.502l-129.608 556.625c-15.321 67.914 41.106 127.971 100.042 146.727l603.063 191.937c58.448 18.605 131.87 0.557 148.015-66.007l67.315-219.188c6.439-20.953-5.044-44.671-25.638-52.975-20.597-8.306-42.511 1.952-48.946 22.903l-67.702 220.455c-0.296 0.96-0.556 1.933-0.777 2.921-1.677 7.435-18.459 25.477-54.684 13.946l-603.058-191.937c-36.106-11.49-43.116-36.942-41.5-44.479z" />
|
|
56
|
+
<glyph unicode="" glyph-name="eye" d="M76.781 426.666c4.921 8.273 11.739 19.276 20.407 32.192 20.098 29.955 49.892 69.826 88.613 109.583 77.999 80.082 188.407 155.902 326.207 155.902 137.805 0 248.21-75.821 326.209-155.902 38.721-39.753 68.511-79.63 88.613-109.583 8.669-12.917 15.488-23.921 20.409-32.192-4.922-8.273-11.739-19.276-20.409-32.192-20.096-29.955-49.892-69.825-88.613-109.585-77.995-80.077-188.407-155.902-326.209-155.902s-248.208 75.825-326.207 155.902c-38.721 39.753-68.51 79.63-88.613 109.585-8.663 12.917-15.486 23.921-20.407 32.192zM988.283 426.666c31.701 16.464 31.697 16.481 31.69 16.494l-0.060 0.123-0.621 1.165c-0.406 0.755-0.977 1.82-1.721 3.167-1.486 2.7-3.649 6.552-6.479 11.396-5.658 9.68-13.998 23.335-24.942 39.649-21.845 32.557-54.296 76.034-96.756 119.627-84.369 86.618-212.1 177.497-377.392 177.497-165.28 0-293.015-90.878-377.384-177.497-42.463-43.594-74.911-87.070-96.76-119.627-10.943-16.308-19.284-29.968-24.942-39.649-2.828-4.844-4.991-8.695-6.479-11.396-0.742-1.348-1.315-2.412-1.721-3.167l-0.618-1.161-0.046-0.093c-0.008-0.014-0.031-0.060 31.669-16.527l-31.699 16.464c-5.363-10.32-5.363-22.607 0-32.931l31.699 16.464c-31.699-16.464-31.706-16.456-31.699-16.464l0.077-0.154 0.142-0.269 0.475-0.893c0.405-0.755 0.977-1.82 1.721-3.167 1.485-2.7 3.645-6.552 6.479-11.396 5.657-9.68 13.998-23.335 24.942-39.649 21.845-32.556 54.296-76.036 96.76-119.626 84.369-86.622 212.1-177.497 377.384-177.497 165.288 0 293.022 90.876 377.392 177.497 42.461 43.594 74.911 87.070 96.756 119.626 10.943 16.308 19.284 29.968 24.942 39.649 2.828 4.844 4.991 8.695 6.479 11.396 0.743 1.348 1.314 2.412 1.721 3.167l0.62 1.166 0.044 0.093c0.008 0.014 0.034 0.060-31.669 16.527zM988.283 426.666l31.701-16.464c5.363 10.32 5.349 22.633-0.014 32.957l-31.69-16.494zM67.405 410.167c-0.002-0.007-0.002-0.007 0 0v0zM67.405 443.16c-0.002 0.007-0.002 0.007 0 0v0zM512.016 515.972c-53.311 0-94.174-41.258-94.174-89.304s40.864-89.304 94.174-89.304c53.311 0 94.169 41.258 94.169 89.304s-40.86 89.304-94.169 89.304zM346.4 426.666c0 90.051 75.446 160.746 165.617 160.746 90.164 0 165.61-70.694 165.61-160.746s-75.446-160.746-165.61-160.746c-90.17 0-165.617 70.694-165.617 160.746z" />
|
|
57
|
+
<glyph unicode="" glyph-name="eye-off" d="M1019.942 440.91c-7.621 14.288-186.696 352.439-507.702 352.439h-0.952c-32.863 0-65.725-3.808-97.634-10.952-19.050-4.286-31.438-23.339-27.146-42.864s23.337-31.438 42.864-27.146c27.146 6.192 57.152 9.050 82.872 9.050 240.043 0 396.257-232.896 435.31-297.671-22.862-38.579-49.531-75.253-79.061-109.543-12.858-14.765-11.427-37.627 3.333-50.485 6.667-5.714 15.24-9.050 23.339-9.050 10.002 0 20.002 4.286 26.67 12.382 37.627 42.864 70.487 89.54 97.634 139.072 5.714 10.477 6.192 23.339 0.477 33.814v0.952zM155.984 878.129c-13.811 13.811-36.672 13.811-50.485 0s-13.811-36.672 0-50.485l127.64-127.64c-95.255-70.011-171.932-157.167-228.608-258.612-5.714-10.477-6.192-23.339-0.477-33.814 7.621-14.288 186.696-352.438 508.654-352.438 100.017 1.43 194.795 32.863 274.808 90.965l128.115-128.115c7.144-7.144 16.195-10.477 25.244-10.477s18.096 3.333 25.244 10.477c13.811 13.811 13.811 36.672 0 50.485l-810.132 809.655zM422.219 457.11c5.238 10.952 12.382 20.479 21.432 29.053 0.477 0.477 0.952 1.43 1.43 1.906l129.545-129.545c-8.096-7.621-17.15-13.811-27.623-18.571-11.906-5.238-24.294-7.621-37.15-8.096-13.811 0-25.244 1.906-37.15 6.667s-22.384 11.427-31.438 20.002c-9.050 8.574-15.718 18.571-20.479 30.006-4.761 10.952-6.665 22.384-6.665 34.29s2.858 23.339 8.095 34.29zM511.758 126.578c-240.043 0-396.257 232.896-435.31 297.671 50.485 85.251 117.642 159.073 199.081 218.61 2.858 1.906 4.761 4.762 6.665 7.621l112.399-112.395c-15.718-14.765-28.576-31.438-37.627-50.96-9.050-20.002-14.288-40.958-14.765-62.867 0-21.909 3.808-43.341 12.383-63.343s20.955-38.102 36.672-53.342c15.718-15.24 34.29-27.146 55.246-35.244 19.526-7.621 40.482-11.427 61.436-11.427 0.952 0 1.906 0 3.333 0 22.384 0 43.816 4.762 64.296 13.811 18.571 8.096 35.244 19.526 50.008 33.814l110.019-110.019c-66.203-44.771-142.88-70.011-223.371-70.963l-0.477-0.952z" />
|
|
58
|
+
<glyph unicode="" glyph-name="flag" d="M169.229 911.152c34.069 14.46 85.323 27.515 158.98 27.515 76.973 0 140.743-27.078 196.787-50.874 0.802-0.341 1.596-0.682 2.394-1.020 58.247-24.725 108.628-45.632 168.401-45.632 64.189 0 104.838 11.333 128.203 21.252 11.724 4.98 19.312 9.69 23.508 12.66 2.102 1.49 3.388 2.556 3.924 3.029 0.084 0.077 0.156 0.133 0.204 0.18 11.078 11.172 27.796 14.699 42.483 8.868 15.011-5.956 24.852-20.461 24.852-36.607v-585.136c0-10.044-3.83-19.703-10.716-27.012l-28.668 27.012c28.668-27.012 28.644-27.036 28.621-27.058l-0.040-0.040-0.084-0.088-0.18-0.196-0.431-0.444c-0.31-0.316-0.672-0.672-1.090-1.069-0.828-0.802-1.861-1.762-3.119-2.864-2.514-2.196-5.909-4.933-10.26-8.020-8.725-6.172-21.241-13.654-38.228-20.866-34.075-14.46-85.323-27.515-158.983-27.515-76.968 0-140.74 27.077-196.787 50.871l-2.394 1.020c-58.247 24.724-108.63 45.629-168.404 45.629-64.188 0-104.836-11.333-128.197-21.247-11.725-4.98-19.318-9.694-23.512-12.66-2.102-1.492-3.383-2.556-3.922-3.030-0.084-0.073-0.156-0.133-0.204-0.18-11.082-11.172-27.802-14.695-42.488-8.867-15.005 5.956-24.852 20.461-24.852 36.607v585.136c0 10.044 3.834 19.703 10.718 27.012l28.667-27.012c-28.667 27.012-28.644 27.034-28.62 27.054l0.038 0.043 0.269 0.282 0.427 0.44c0.31 0.314 0.673 0.673 1.088 1.070 0.828 0.802 1.861 1.763 3.122 2.858 2.514 2.196 5.905 4.936 10.26 8.022 8.724 6.176 21.24 13.649 38.228 20.867zM183.799 830.636v-498.939c33.579 12.026 80.58 21.827 144.41 21.827 76.973 0 140.743-27.077 196.787-50.871l2.394-1.020c58.247-24.724 108.628-45.629 168.401-45.629 64.189 0 104.838 11.333 128.203 21.252 6.709 2.844 12.067 5.606 16.206 8.005v498.936c-33.577-12.028-80.58-21.828-144.41-21.828-76.968 0-140.74 27.078-196.787 50.874-0.802 0.341-1.596 0.68-2.394 1.020-58.247 24.725-108.63 45.632-168.404 45.632-64.188 0-104.836-11.333-128.197-21.252-6.71-2.846-12.068-5.611-16.212-8.008zM144.415 308.513c21.754 0 39.385-17.63 39.385-39.385v-315.076c0-21.754-17.63-39.385-39.385-39.385s-39.385 17.63-39.385 39.385v315.076c0 21.754 17.63 39.385 39.385 39.385z" />
|
|
59
|
+
<glyph unicode="" glyph-name="plane" d="M652.938 644.060c-1.957-2.221-3.887-4.404-5.772-6.541-8.563-9.702-21.534-13.638-33.708-10.233-16.479 4.612-35.254 9.933-55.636 15.708-65.661 18.612-148.036 41.964-224.361 61.582-50.003 12.852-96.773 23.938-134.062 30.972-18.679 3.524-34.433 5.928-46.742 7.080-6.146 0.575-11.040 0.802-14.767 0.758-3.449-0.036-5.018-0.298-5.264-0.337-0.036-0.008-0.022-0.007 0 0-13.236-3.306-23.411-14.037-31.128-28.822-0.701-1.339-1.356-2.676-1.979-3.996l308.435-200.345c1.996-1.297 3.853-2.807 5.556-4.502l16.584-16.572c11.014-11.008 13.738-28.356 6.662-42.491l-16.584-33.14c-1.448-2.891-3.26-5.556-5.398-7.931l-149.245-165.718c-11.191-12.423-29.196-14.778-42.949-5.616-14.133 9.413-37.76 21.472-61.046 26.718-24.466 5.515-38.97 1.679-46.516-5.862-2.602-2.6-4.723-4.895-6.45-6.886l137.631-122.259c0.372-0.336 0.739-0.671 1.098-1.020l137.58-133.308c2.274 2.215 5.104 5.24 8.508 9.352 5.988 7.236 8.616 20.119 1.1 43.081-7.218 22.060-21.204 44.11-31.86 57.219-11.381 13.995-10.769 34.779 1.41 48.013l151.039 164.091c2.1 2.281 4.486 4.262 7.086 5.885l31.457 19.621c12.093 7.546 27.368 6.492 38.421-2.646l18.066-14.939c1.862-1.544 3.569-3.284 5.090-5.196l229.965-289.656c2.27 1.242 4.62 2.628 6.964 4.145 14.794 9.587 23.705 20.601 25.5 32.388-0.005-0.005-0.005-0.034 0 0 0.005 0.498 0.090 5.738-2.276 18.207-2.268 11.929-6.102 27.222-11.355 45.406-10.477 36.3-25.887 81.68-43.393 130.188-26.714 74.034-57.706 153.71-82.43 217.283-7.68 19.745-14.755 37.935-20.914 53.918-5.080 13.206-2.209 28.322 7.31 38.463 3.746 3.989 7.644 8.128 11.673 12.408 42.755 45.421 100.104 106.356 142.5 163.848 23.38 31.703 40.294 59.86 48.226 81.998 3.926 10.974 4.844 18.286 4.609 22.57-0.174 3.112-0.834 4.039-1.415 4.655l-14.34 14.328c-2.635 1.418-10.594 3.516-30.539-5.579-21.652-9.869-48.208-29.102-77.462-54.841-55.509-48.842-113.293-114.334-154.885-161.467zM834.921-16.749l9.060-34.433c-12.875-3.732-26.642 0.784-35.193 11.556l-241.202 303.812-6.756-4.212-127.824-138.876c9.761-15.623 19.342-34.32 25.83-54.143 10.452-31.932 15.795-77.054-14.089-113.159-19.476-23.532-40.362-39.51-63.644-39.13-12.285 0.2-21.954 5.035-28.596 10.528-2.74 2.26-4.892 4.57-6.538 6.588l-144.278 139.8-146.409 130.055c-2.026 1.375-4.373 3.204-6.767 5.598-6.108 6.102-12.451 15.9-13.963 29.499-2.843 25.548 12.514 48.763 33.552 69.788 32.253 32.234 75.785 31.16 107.702 23.964 21.156-4.766 41.496-13.068 58.39-21.756l127.911 142.031 1.846 3.686-323.463 210.111c-12.084 7.85-18.251 22.758-15.461 37.385l33.36-7.009c-33.36 7.009-33.363 6.996-33.36 7.009l0.012 0.054 0.038 0.202 0.071 0.358 0.212 1.020c0.174 0.806 0.414 1.876 0.726 3.167 0.623 2.58 1.548 6.088 2.832 10.264 2.546 8.268 6.643 19.572 12.901 31.558 12.18 23.332 35.193 54.032 75.022 63.981 12.445 3.108 27.856 2.545 41.84 1.236 15.132-1.416 33.087-4.216 52.741-7.926 39.372-7.428 87.745-18.924 138.206-31.896 77.196-19.842 160.77-43.535 226.503-62.172 12.372-3.506 24.108-6.833 35.054-9.924 40.716 46.111 97.475 109.62 152.917 158.407 30.858 27.156 63.378 51.629 94.068 65.616 29.372 13.385 67.903 21.759 99.712-3.672 0.995-0.793 1.94-1.644 2.844-2.546l16.987-16.975c29.728-30.699 24.023-72.468 12.924-103.464-11.584-32.34-33.554-67.287-58.109-100.589-43.718-59.286-101.726-121.279-143.793-165.96 3.815-9.831 7.886-20.303 12.16-31.284 24.756-63.652 56.258-144.638 83.316-219.628 17.686-49.009 33.732-96.156 44.881-134.77 5.561-19.264 10.091-37.023 12.965-52.157 2.628-13.822 4.805-29.852 2.741-43.443-6.42-42.251-35.652-68.132-56.956-81.937-11.182-7.237-21.864-12.288-29.688-15.533-3.955-1.633-7.284-2.852-9.721-3.691-1.219-0.42-2.221-0.744-2.976-0.985l-0.946-0.29-0.449-0.132-0.055-0.017c-0.011-0.005-0.044-0.012-9.106 34.42zM87.891 263.987c0.060-0.029 0.125-0.055 0.185-0.084l-0.125 0.055-0.060 0.029zM400.487-25.954c-0.004 0.011 0.004-0.005 0 0v0z" />
|
|
60
|
+
<glyph unicode="" glyph-name="electricity" d="M616.722 934.809c16.784-8.024 25.665-26.693 21.3-44.772l-77.908-322.76h253.847c15.158 0 28.979-8.7 35.525-22.373s4.668-29.889-4.836-41.7l-461.666-573.845c-11.788-14.647-32.284-18.924-48.945-10.211-16.661 8.711-24.835 27.991-19.524 46.020l104.077 353.402h-234.78c-15 0-28.698 8.518-35.328 21.976-6.632 13.452-5.041 29.508 4.098 41.401l415.927 541.323c11.333 14.748 31.44 19.559 48.216 11.534zM263.736 397.345h207.509c12.415 0 24.106-5.855 31.541-15.797s9.746-22.807 6.238-34.716l-62.772-213.17 285.48 354.851h-221.641c-12.067 0-23.473 5.533-30.942 15.018s-10.177 21.874-7.34 33.606l46.107 191.007-254.173-330.803z" />
|
|
61
|
+
<glyph unicode="" glyph-name="gas" d="M477.045 932.101l-21.767-32.82c21.767 32.82 21.756 32.827 21.767 32.82l0.054-0.036 0.089-0.060 1.204-0.809c0.8-0.539 1.928-1.308 3.376-2.31 2.898-2.002 7.068-4.914 12.324-8.7 10.501-7.566 25.382-18.618 43.19-32.786 35.552-28.285 83.091-69.23 130.891-119.84 94.169-99.696 195.86-243.71 198.212-406.557 2.268-157.212-48.828-263.435-113.052-333.23-63.355-68.854-137.047-99.687-177.468-111.516-17.175-5.028-35.58 2.158-44.809 17.497-9.202 15.299-6.964 34.861 5.446 47.686 0.026 0.026 0.067 0.067 0.089 0.095l28.213-27.479c-28.213 27.479-28.2 27.494-28.213 27.479l0.101 0.107c0.215 0.229 0.612 0.658 1.17 1.277 1.116 1.236 2.872 3.226 5.124 5.934 4.5 5.418 10.937 13.66 18.157 24.393 14.508 21.565 31.782 52.621 43.161 90.68 18.977 63.469 22.574 149.067-36.54 247.114-1.975-3.496-4.027-7.099-6.164-10.788-22.627-39.102-54.98-89.618-92.536-131.555-62.938-70.286-78.093-166.552-19.284-227.224 12.666-13.067 14.727-33.105 5-48.472-9.732-15.374-28.723-22.082-45.948-16.227l12.672 37.289c-12.672-37.289-12.656-37.295-12.672-37.289l-0.073 0.020-0.095 0.036-0.248 0.084-0.731 0.257c-0.588 0.209-1.38 0.492-2.366 0.862-1.969 0.731-4.705 1.788-8.099 3.173-6.784 2.772-16.241 6.904-27.494 12.536-22.425 11.22-52.459 28.622-82.827 53.458-60.847 49.75-125.012 131.255-127.87 252.587l-0.006 0.248c-0.049 2.844-0.242 5.687-0.58 8.508-4.301 36.366 0.49 150.995 161.309 345.13 85.42 103.733 107.375 178.872 110.627 224.38 1.633 22.896-1.38 39.231-4.236 49.048-1.438 4.95-2.868 8.338-3.718 10.146-0.364 0.779-0.618 1.266-0.731 1.464-9.54 15.567-7.132 35.72 5.916 48.602 13.27 13.094 33.9 15.095 49.435 4.789zM334.975 49.646c-8.004 77.147 26.196 156.637 75.405 211.596 32.339 36.111 61.56 81.337 83.043 118.463 10.639 18.378 19.165 34.404 25.011 45.79 2.917 5.681 5.162 10.19 6.655 13.243 0.746 1.524 1.304 2.676 1.666 3.436l0.479 1.001c5.782 12.302 17.511 20.778 31.015 22.38s26.875-3.876 35.378-14.486c112.997-141.060 115.122-272.8 86.147-369.707-2.378-7.951-4.956-15.643-7.682-23.058 7.872 6.952 15.677 14.54 23.286 22.812 50.038 54.375 94.25 140.873 92.26 278.762-1.91 132.256-86.089 257.655-176.716 353.603-36.036 38.147-72.059 70.556-102.227 95.651-5.472-65.338-36.607-154.402-128.171-265.576l-0.073-0.086c-151.74-183.156-144.814-276.933-143.788-285.624 0.649-5.43 1.020-10.843 1.116-16.308 2.159-90.047 48.416-151.441 97.197-191.886z" />
|
|
62
|
+
<glyph unicode="" glyph-name="green-energy" d="M621.691 643.192c14.364-13.523 15.050-36.129 1.528-50.493-93.787-99.655-126.384-223.691-128.017-340.765-1.639-117.492 28.044-225.155 55.324-287.153 7.944-18.057-0.252-39.133-18.312-47.077-18.057-7.944-39.133 0.252-47.077 18.307-30.928 70.299-63.162 188.076-61.362 316.927 1.8 129.259 38.004 272.468 147.424 388.729 13.524 14.364 36.132 15.052 50.494 1.529zM685.756 937.473c9.9-2.628 18.201-9.385 22.781-18.547 22.509-45.013 52.865-123.241 72.807-214.757 19.911-91.377 30.012-198.572 9.649-300.375-21.348-106.753-81.78-169.759-148.261-203.46-64.788-32.844-134.251-37.475-177.578-31.285-0.976 0.143-1.937 0.32-2.881 0.535-6.839-1.568-14.201-1.14-21.207 1.668-82.144 32.853-176.844 89.348-211.266 196.908-14.188 44.333-7.752 89.811 6.612 130.365 14.388 40.627 37.696 79.139 61.404 111.778 23.841 32.821 48.971 60.915 68.037 80.73 9.565 9.944 17.689 17.889 23.475 23.393 2.892 2.754 5.208 4.907 6.828 6.396l1.907 1.736 0.54 0.486 0.215 0.192c0.010 0.008 0.036 0.032 23.765-26.669l-23.070 27.271 9.005 7.601c5.752 4.853 14.023 11.816 24.089 20.268 20.131 16.903 47.488 39.78 76.347 63.663 56.775 46.983 122.076 100.131 147.829 117.301 8.526 5.681 19.080 7.43 28.98 4.802zM422.573 696.562l-23.070 27.271-0.335-0.283-0.359-0.322 23.765-26.669zM446.038 669.628l-0.107-0.098-1.474-1.336c-1.325-1.214-3.322-3.072-5.882-5.51-5.134-4.884-12.502-12.086-21.253-21.18-17.565-18.257-40.367-43.791-61.712-73.182-21.479-29.573-40.606-61.86-51.864-93.639-11.281-31.854-13.703-60.399-5.915-84.743 23.891-74.643 90.434-119.892 165.21-150.516 3.916 0.802 8.027 0.95 12.205 0.356 30.761-4.397 85.13-1.092 135.177 24.279 48.355 24.516 93.758 69.989 110.513 153.752 17.743 88.706 9.317 185.248-9.401 271.154-13.618 62.481-32.377 117.972-49.228 158.827-29.043-22.71-69.174-55.474-107.819-87.454-28.692-23.746-55.908-46.507-75.96-63.344-10.024-8.413-18.253-15.346-23.969-20.169l-8.526-7.193z" />
|
|
63
|
+
<glyph unicode="" glyph-name="heart" d="M626.124 839.034c34.827 13.787 72.101 20.865 109.699 20.865 37.603 0 74.873-7.076 109.706-20.865 34.821-13.786 66.577-34.036 93.406-59.675 26.845-25.637 48.242-56.175 62.873-89.916 14.635-33.746 22.191-69.987 22.191-106.63s-7.556-72.885-22.191-106.629c-14.633-33.74-36.031-64.276-62.867-89.913-0.006 0 0 0.006 0 0l-399.747-381.926c-15.222-14.541-39.189-14.541-54.413 0l-399.743 381.926c-54.223 51.81-85.037 122.464-85.037 196.544s30.818 144.736 85.037 196.542c54.163 51.75 127.255 80.524 203.111 80.524s148.945-28.774 203.108-80.524l20.726-19.804 20.725 19.795c26.828 25.646 58.589 45.9 93.416 59.69zM735.822 781.128c-27.736 0-55.17-5.225-80.708-15.333-25.533-10.108-48.617-24.882-67.982-43.389l-47.938-45.805c-15.222-14.545-39.189-14.545-54.413 0l-47.934 45.796c-39.144 37.398-92.6 58.705-148.697 58.705s-109.553-21.309-148.699-58.705c-39.081-37.339-60.686-87.592-60.686-139.588s21.602-102.25 60.686-139.586l372.535-355.934 372.535 355.934c19.366 18.494 34.636 40.366 45.013 64.296 10.377 23.924 15.69 49.503 15.69 75.292s-5.313 51.364-15.69 75.292c-10.377 23.934-25.641 45.795-45.010 64.291-19.362 18.509-42.462 33.293-67.999 43.404s-52.964 15.333-80.708 15.333z" />
|
|
64
|
+
<glyph unicode="" glyph-name="home" d="M487.632 930.224c14.292 11.256 34.445 11.256 48.736 0l420.105-330.83c9.478-7.469 15.012-18.874 15.012-30.943v-519.876c0-35.357-13.861-69.365-38.701-94.513-24.858-25.164-58.672-39.396-94.036-39.396h-653.496c-35.364 0-69.18 14.231-94.036 39.396-24.838 25.148-38.705 59.154-38.705 94.513v519.876c0 12.071 5.534 23.474 15.017 30.943l420.103 330.83zM131.281 549.337v-500.763c0-14.782 5.803-28.858 15.98-39.163 10.162-10.285 23.837-15.972 37.991-15.972h653.496c14.152 0 27.828 5.687 37.986 15.972 10.177 10.308 15.978 24.382 15.978 39.163v500.763l-380.72 299.817-380.716-299.817zM367.591 374.154c0 21.752 17.632 39.385 39.382 39.385h210.052c21.756 0 39.385-17.632 39.385-39.385v-367.592c0-21.752-17.628-39.385-39.385-39.385-21.752 0-39.385 17.632-39.385 39.385v328.206h-131.283v-328.206c0-21.752-17.628-39.385-39.385-39.385-21.75 0-39.382 17.632-39.382 39.385v367.592z" />
|
|
65
|
+
<glyph unicode="" glyph-name="lock" d="M178.604 438.573c-32.88 0-59.533-26.652-59.533-59.533v-333.396c0-32.883 26.653-59.533 59.533-59.533h666.784c32.883 0 59.533 26.652 59.533 59.533v333.396c0 32.883-26.652 59.533-59.533 59.533h-666.784zM47.633 379.039c0 72.337 58.643 130.978 130.978 130.978h666.784c72.337 0 130.978-58.641 130.978-130.978v-333.396c0-72.337-58.641-130.978-130.978-130.978h-666.784c-72.336 0-130.978 58.641-130.978 130.978v333.396zM511.998 867.223c-53.679 0-105.166-21.325-143.127-59.288-37.958-37.958-59.288-89.445-59.288-143.13v-190.511c0-19.728-15.995-35.723-35.723-35.723s-35.723 15.995-35.723 35.723v190.511c0 72.635 28.854 142.288 80.213 193.647s121.015 80.213 193.643 80.213c72.635 0 142.292-28.854 193.648-80.213s80.21-121.017 80.21-193.647v-190.511c0-19.728-15.989-35.723-35.723-35.723-19.728 0-35.723 15.995-35.723 35.723v190.511c0 53.684-21.324 105.171-59.288 143.13-37.957 37.958-89.444 59.288-143.13 59.288z" />
|
|
66
|
+
<glyph unicode="" glyph-name="open-quote" d="M0.004 288.484c0-201.259 107.593-312.164 230.028-312.164 111.303 0 196.634 98.577 196.634 217.696 0 123.225-74.201 209.475-178.084 209.475-18.55 0-44.521-4.107-48.231-4.107 8.491 100.259 73.11 219.64 155.982 308.913 38.383 41.348 41.878 108.606-0.106 146.293-32.165 28.873-80.861 30.702-111.844 0.561-142.204-138.327-244.381-344.42-244.381-566.673zM593.622 288.484c0-201.259 107.597-312.164 230.031-312.164 111.301 0 200.346 98.577 200.346 217.696 0 123.225-77.912 209.475-181.796 209.475-18.549 0-44.521-4.107-48.234-4.107 11.309 100.161 74.336 219.411 156.227 308.661 38.141 41.571 41.634 108.863-0.35 146.549-32.164 28.873-80.861 30.702-111.842 0.561-142.208-138.327-244.383-344.42-244.383-566.673z" />
|
|
67
|
+
<glyph unicode="" glyph-name="mobile-phone" d="M286.945 859.9c-26.177 0-50.636-22.855-50.636-55.14v-756.184c0-32.286 24.461-55.14 50.636-55.14h450.111c26.177 0 50.632 22.855 50.632 55.14v756.184c0 32.286-24.455 55.14-50.632 55.14h-450.111zM157.539 804.758c0 72.122 56.148 133.908 129.406 133.908h450.111c73.256 0 129.402-61.788 129.402-133.908v-756.184c0-72.121-56.148-133.908-129.402-133.908h-450.111c-73.26 0-129.406 61.788-129.406 133.908v756.184zM420.1 111.589c0 21.752 17.632 39.385 39.385 39.385h105.026c21.756 0 39.385-17.632 39.385-39.385s-17.628-39.385-39.385-39.385h-105.026c-21.752 0-39.385 17.632-39.385 39.385z" />
|
|
68
|
+
<glyph unicode="" glyph-name="phone-call" d="M848.994-84.742c-4.198 0-7.87 0-12.068 0-145.338 15.741-285.958 65.587-408.211 144.814-113.33 71.882-210.923 169.477-283.333 282.81-79.228 121.727-129.075 263.395-144.814 408.21-1.572 18.89 0 36.727 6.298 53.519 5.771 17.314 15.216 33.055 27.284 46.174s26.761 23.611 43.549 30.956c16.265 7.345 34.106 11.020 51.942 11.020h136.944c30.433 0 60.867-11.020 84.478-31.481 24.135-20.461 39.352-48.797 44.073-80.28 5.245-40.926 15.216-80.803 29.384-118.58 8.917-23.086 10.496-48.269 5.245-72.41s-17.314-46.174-34.629-64.011l-35.678-35.677c54.567-87.097 128.548-160.555 215.646-215.122l35.678 35.678c17.841 17.314 39.876 29.384 64.011 34.631 24.658 5.245 49.321 3.15 72.933-5.245 38.304-14.168 78.178-24.135 118.58-29.384 32.006-4.198 60.34-20.461 81.328-44.598 20.461-24.135 31.481-55.092 30.956-86.573v-134.847c0-17.841-3.673-35.678-11.020-52.469-7.345-16.265-17.841-31.481-30.956-43.549s-28.856-21.513-46.174-27.284c-13.642-4.721-27.284-6.822-41.452-6.822v0.524zM266.585 814.581h-136.42c-6.822 0-14.168-1.572-20.461-4.198s-12.068-6.822-17.314-12.068c-4.721-5.245-8.395-11.543-11.020-18.365-2.1-6.822-3.15-13.642-2.624-20.461 14.168-132.222 59.812-261.295 132.747-373.578 66.112-103.891 155.833-193.089 259.199-259.199 111.761-72.41 240.834-118.054 373.581-132.747 6.298-0.524 13.642 0 20.461 2.624 6.822 2.1 13.115 5.771 18.365 10.496s9.443 10.496 12.068 17.314c2.624 6.298 4.198 13.642 4.198 20.461v136.42c0 12.591-3.673 24.658-12.068 34.106-7.87 9.443-19.413 15.741-32.006 17.314-46.174 6.298-91.823 17.314-135.372 33.582-9.443 3.673-19.413 4.198-28.856 2.1s-18.365-6.822-25.185-13.642l-57.193-57.193c-12.591-12.591-32.006-15.216-47.221-6.298-119.632 67.683-218.271 166.329-285.958 285.43-8.917 15.216-6.298 34.631 6.298 47.22l57.193 57.193c6.822 6.822 11.543 15.741 13.642 25.185s1.572 19.413-2.1 28.332c-16.265 43.549-27.808 89.197-33.582 135.372-1.572 11.543-7.87 23.086-17.314 30.956s-20.986 12.068-33.582 12.068l0.524 1.572zM803.345 500.815c-18.365 0-35.154 13.115-38.827 32.004-7.345 36.727-24.658 69.784-51.419 96.021-26.236 26.236-59.812 44.073-96.021 50.895-21.513 4.198-35.154 24.658-30.956 46.174s24.658 35.154 46.174 30.956c51.942-9.971 99.166-35.154 136.944-72.41 37.778-37.778 62.962-85.001 72.933-136.944 4.198-21.513-9.971-41.975-30.956-46.173-2.624 0-5.245-0.524-7.345-0.524h-0.524zM984.364 501.338c-19.939 0-36.727 14.693-38.827 35.153-9.443 82.375-46.697 160.031-105.463 218.795s-136.42 96.021-219.32 104.938c-21.513 2.624-37.255 22.039-34.631 43.549 2.1 21.513 21.513 36.727 43.549 34.631 100.217-11.020 194.661-56.668 266.017-127.501 71.357-71.357 117.006-165.277 128.025-265.494 2.624-21.513-13.115-40.926-34.631-43.547-1.572 0-3.15 0-4.198 0l-0.524-0.524z" />
|
|
69
|
+
<glyph unicode="" glyph-name="phone" d="M888.194-84.522c-4.195 0-7.865 0-12.060 0-152.047 16.256-299.373 68.686-427.304 151.524-118.491 74.974-221.255 177.738-296.754 296.229-82.839 127.926-135.269 275.78-151.524 427.304-1.571 19.397 0 38.275 6.29 55.577 5.767 17.825 15.204 33.556 27.787 47.188 12.583 14.155 27.787 24.643 45.089 32.504 17.303 8.39 35.652 12.060 54.526 12.060h142.611c30.933 0 63.44-11.010 88.605-32.504 24.643-20.973 40.894-50.858 45.613-82.839 5.767-42.47 16.256-84.411 30.933-124.782 8.913-24.118 11.010-49.807 5.767-74.974s-17.825-48.236-35.652-66.061l-38.799-38.798c58.196-92.799 136.317-170.921 229.117-228.593l38.798 38.798c18.349 18.349 41.418 30.41 66.585 35.652s50.858 3.671 75.497-5.767c40.369-15.204 82.315-25.691 124.782-30.933 33.031-4.718 62.389-20.973 83.887-46.14 20.973-24.643 32.504-56.625 31.981-89.654v-141.559c0-18.874-3.671-37.226-11.010-54.001-7.342-17.303-18.349-32.504-31.981-45.089-14.155-12.583-29.885-22.020-47.712-28.311-13.632-4.718-28.311-6.817-42.993-6.817h-2.097zM277.391 859.214h-143.135c-7.865 0-15.204-1.571-22.020-4.718-7.342-3.147-13.632-7.865-18.874-13.107-5.242-5.767-8.913-12.060-11.536-19.397s-3.147-14.678-2.623-23.067c14.678-138.94 62.914-274.732 139.464-392.699 69.208-109.055 163.578-202.901 272.633-272.108 117.967-76.547 253.237-124.257 392.699-139.464 6.817-0.525 14.678 0 22.020 2.623s14.155 6.29 19.924 11.536c5.767 5.242 9.96 11.536 13.107 18.349 3.147 7.342 4.718 14.678 4.718 22.545v143.135c0 13.632-4.195 26.739-13.107 37.226s-20.973 17.303-34.605 18.874c-48.236 6.29-95.947 18.349-141.559 35.127-9.96 3.671-20.973 4.718-31.456 2.097-10.484-2.097-19.924-7.342-27.262-14.678l-60.295-59.771c-12.583-12.583-31.981-15.204-47.188-6.29-124.782 70.779-228.593 174.067-299.373 298.848-8.913 15.204-6.29 34.605 6.29 47.188l60.295 60.295c7.342 7.342 12.583 16.778 14.678 27.262s1.571 20.973-2.097 30.933c-17.303 46.14-28.838 93.848-35.127 142.084-2.097 13.107-8.39 25.168-18.874 34.080-9.96 8.913-23.067 13.632-36.175 13.632l-0.525-0.525z" />
|
|
70
|
+
<glyph unicode="" glyph-name="results" d="M78.771 794.258c0 36.252 29.388 65.641 65.641 65.641h735.177c36.253 0 65.641-29.388 65.641-65.641v-735.18c0-36.253-29.388-65.641-65.641-65.641h-735.177c-36.252 0-65.641 29.388-65.641 65.641v735.18zM144.412 938.668c-79.755 0-144.41-64.655-144.41-144.41v-735.18c0-79.757 64.655-144.41 144.41-144.41h735.177c79.757 0 144.41 64.653 144.41 144.41v735.18c0 79.755-64.653 144.41-144.41 144.41h-735.177zM196.924 781.13c-21.752 0-39.385-17.632-39.385-39.385v-262.564c0-21.752 17.632-39.385 39.385-39.385h630.151c21.756 0 39.385 17.632 39.385 39.385v262.564c0 21.752-17.628 39.385-39.385 39.385h-630.151zM236.309 702.359h551.382v-183.795h-551.382v183.795zM196.924 361.026c-21.752 0-39.385-17.632-39.385-39.385v-210.051c0-21.752 17.632-39.385 39.385-39.385h315.074c21.756 0 39.385 17.632 39.385 39.385v210.051c0 21.752-17.628 39.385-39.385 39.385h-315.074zM236.309 282.257h236.305v-131.282h-236.305v131.282z" />
|
|
71
|
+
<glyph unicode="" glyph-name="thumbs-up" d="M565.937 752.486c0 24.689-9.816 48.36-27.276 65.818-10.603 10.606-23.515 18.343-37.543 22.818l-167.909-377.819v-455.545h479.001c11.227-0.126 22.127 3.822 30.683 11.092 8.545 7.266 14.177 17.366 15.862 28.453l0.047 0.093 64.182 418.815 0.498 5.045c0.214 5.036-0.405 10.095-1.815 14.955-1.885 6.469-5.13 12.46-9.547 17.548-4.426 5.092-9.937 9.147-16.091 11.907s-12.847 4.17-19.591 4.091h-263.954c-25.707 0-46.545 20.839-46.545 46.547v186.182zM100.482 54.304c0-12.344 4.907-24.181 13.636-32.908s20.565-13.637 32.909-13.637h93.091v418.909h-93.091c-12.344 0-24.18-4.906-32.909-13.637-8.73-8.727-13.636-20.564-13.636-32.908v-325.818zM659.028 612.85h216.907c20.061 0.15 39.922-4.011 58.228-12.227 18.465-8.287 34.9-20.501 48.184-35.773 13.275-15.27 23.082-33.251 28.723-52.683 5.645-19.437 6.995-39.894 3.957-59.909l-64.228-418.955c-5.059-33.27-21.989-63.609-47.634-85.407-25.52-21.685-57.977-33.434-91.457-33.182l-664.679-0.047c-37.034 0-72.54 14.723-98.727 40.909s-40.909 61.695-40.909 98.727v325.818c0 37.036 14.723 72.541 40.909 98.727s61.693 40.909 98.727 40.909h109.364l173.909 391.273 3.226 6c8.448 13.339 23.222 21.636 39.322 21.636 49.375 0 96.721-19.63 131.635-54.545s54.547-82.258 54.547-131.636v-139.636z" />
|
|
72
|
+
<glyph unicode="" glyph-name="time" d="M511.999-8.533c-240.351 0-435.198 194.843-435.198 435.2s194.843 435.2 435.198 435.2c240.358 0 435.2-194.843 435.2-435.2s-194.842-435.2-435.2-435.2zM511.999-85.333c282.773 0 512 229.234 512 512 0 282.77-229.228 512-512 512-282.767 0-511.998-229.23-511.998-512 0-282.767 229.23-512 511.998-512zM511.999 721.064c21.212 0 38.4-17.195 38.4-38.4v-286.647l136.502-91.002c17.645-11.761 22.409-35.604 10.649-53.246-11.767-17.651-35.604-22.415-53.252-10.649l-153.6 102.398c-10.68 7.122-17.1 19.109-17.1 31.95v307.199c0 21.206 17.195 38.4 38.4 38.4z" />
|
|
73
|
+
<glyph unicode="" d="M875.49 718.741l-46.271-67.135c26.528-43.583 40.477-94.11 40.477-145.659 0-153.275-122.843-277.812-273.91-277.812s-273.91 124.54-273.91 277.812c0.35 153.275 123.163 277.812 274.231 277.812 47.293 0 93.564-12.446 134.395-35.965l50.685 58.461c-55.452 35.293-119.419 53.628-185.080 53.628-192.568 0-349.428-158.811-349.428-354.292 0-80.958 27.551-159.833 77.565-222.456l0.672-1.022 0.35-4.162-67.039-67.807-19.391 16.256-238.839-235.959 67.039-75.775 240.215 235.608-15.997 17.984 73.821 71.613 2.722-2.434c63.295-55.356 144.251-86.142 228.312-86.142 192.568 0 349.075 159.161 349.075 354.292 0 78.204-24.157 151.547-69.756 213.111z" />
|
|
74
|
+
<glyph unicode="" d="M433.236 642.774c0 0 130.523-130.139 197.498-294.871 0 0 230.103 457.906 393.267 590.763 0 0-131.195-46.429-393.267-371.124 0-0.35-117.275 75.228-197.498 75.228z" />
|
|
75
|
+
<glyph unicode="" glyph-name="whatsapp" d="M268.761 613.127c4.644 36.82 52.369 86.86 90.246 81.305l-0.060 0.060c36.86-7.021 66.036-70.631 82.497-99.232 11.652-20.75 4.087-41.777-6.787-50.65-14.669-11.854-37.608-28.212-32.796-44.637 8.556-29.196 110.142-131.044 160.109-159.996 18.908-10.961 32.628 17.942 44.335 32.753 8.508 11.388 29.502 18.199 50.149 6.953 30.842-18.010 59.892-38.939 86.763-62.493 13.42-11.244 16.565-27.863 7.27-45.425-16.38-30.934-63.742-71.727-98.124-63.441-60.051 14.478-302.898 108.865-380.904 382.316-4.386 12.937-3.281 17.826-2.696 22.483zM511.999-50.857c269.308 0 487.62 221.515 487.62 494.764 0 273.252-218.313 494.764-487.62 494.764-269.302 0-487.619-221.512-487.619-494.764 0-142.884 37.524-247.019 132.988-337.333v-101.83c0-66.874 69.358-110.367 128.308-80.46l93.339 47.358c48.732-16.583 78.748-22.495 132.984-22.495zM246.027 145.686l-28.194 26.676c-74.166 70.164-104.793 148.613-104.793 271.542 0 223.571 178.62 404.805 398.959 404.805 220.346 0 398.964-181.236 398.964-404.805s-178.62-404.802-398.964-404.802c-43.692 0-64.188 4.003-104.796 17.82l-34.908 11.879-126.272-64.059v140.945z" />
|
|
76
|
+
<glyph unicode="" glyph-name="twitter" d="M806.46 887.467h157.022l-343.041-390.381 403.56-531.221h-315.986l-247.49 322.18-283.187-322.18h-157.116l366.92 417.557-387.141 504.045h324.008l223.708-294.486 258.743 294.486zM751.352 59.445h87.004l-561.625 739.358h-93.367l567.987-739.358z" />
|
|
77
|
+
<glyph unicode="" glyph-name="youtube" d="M811.33 785.070h-598.657c-117.456 0-212.673-94.189-212.673-210.379v-296.041c0-116.189 95.215-210.381 212.673-210.381h598.657c117.457 0 212.67 94.192 212.67 210.381v296.041c0 116.19-95.212 210.379-212.67 210.379zM667.504 412.266l-280.015-132.11c-7.461-3.519-16.079 1.864-16.079 10.039v272.473c0 8.292 8.845 13.667 16.321 9.92l280.014-140.371c8.324-4.168 8.181-15.98-0.242-19.952z" />
|
|
78
|
+
<glyph unicode="" glyph-name="tiktok" d="M919.773 698.774c-52.797 10.934-100.607 37.915-136.465 77.006-35.849 39.090-57.873 88.25-62.852 140.311v22.575h-182.135v-699.917c-0.11-30.987-10.25-61.161-28.983-86.277-18.732-25.123-45.129-43.926-75.473-53.773-30.342-9.847-63.107-10.236-93.689-1.12s-57.45 27.277-76.824 51.943c-19.673 25.077-30.588 55.569-31.158 87.057-0.569 31.481 9.229 62.332 27.984 88.060s45.481 45.006 76.308 55.030c30.828 10.030 64.155 10.284 95.147 0.736v179.177c-69.108 9.252-139.474-2.647-201.253-34.025s-111.887-80.676-143.313-140.989c-31.426-60.315-42.589-128.627-31.944-195.392 10.648-66.759 42.582-128.629 91.332-176.953 46.491-46.067 106.102-77.666 171.228-90.773s132.805-7.133 194.402 17.172c61.598 24.304 114.321 65.832 151.434 119.282s56.94 116.391 56.94 180.799v357.637c73.611-50.955 161.866-78.278 252.347-78.12v175.236c-17.819-0.020-35.589 1.764-53.028 5.323z" />
|
|
79
|
+
<glyph unicode="" glyph-name="telegram" d="M70.248 486.784c274.915 122.874 458.241 203.977 549.987 243.313 261.941 111.68 316.395 131.146 351.868 131.752 13.021 0.297 25.805-3.622 36.536-11.191 7.5-6.691 12.288-16.024 13.404-26.157 1.906-12.595 2.42-25.367 1.545-38.076-14.239-152.923-75.571-524.098-106.773-695.386-13.167-72.997-39.264-97.326-64.414-99.151-54.81-5.109-96.333 37.105-149.361 72.992-83.040 55.84-129.906 90.511-210.457 145.012-93.128 62.901-32.742 97.326 20.286 154.015 13.881 14.842 255.183 239.911 259.927 260.348 0.63 3.011 0.558 6.129-0.205 9.11s-2.195 5.732-4.182 8.042c-2.883 1.882-6.159 3.039-9.556 3.375-3.405 0.338-6.835-0.154-10.015-1.43-8.305-1.947-140.897-91.809-397.781-269.592-37.649-26.521-71.737-39.415-102.261-38.688-33.69 0.732-98.466 19.467-146.632 35.523-59.315 19.713-106.060 30.049-101.907 63.51 1.977 16.864 25.308 34.426 69.995 52.676z" />
|
|
80
|
+
<glyph unicode="" glyph-name="reddit" d="M109.23 320.27l37.287-9.183c2.322 9.425 0.987 19.383-3.738 27.862-4.726 8.485-12.486 14.858-21.72 17.853l-11.827-36.529zM221.537 480.703l-30.26-23.642c6.203-7.937 15.271-13.117 25.257-14.428 9.986-1.317 20.087 1.35 28.125 7.415l-23.122 30.659zM802.467 480.703l-23.128-30.659c8.043-6.062 18.144-8.73 28.128-7.415 9.985 1.311 19.056 6.491 25.26 14.428l-30.26 23.642zM914.774 320.27l-11.827 36.529c-9.235-2.994-16.997-9.372-21.724-17.853-4.722-8.479-6.060-18.438-3.738-27.862l37.29 9.183zM511.999-81.493c120.616 0 231.285 36.62 312.672 97.652 81.399 61.051 135.328 148.315 135.328 247.947h-76.801c0-70.037-37.761-136.366-104.605-186.5-66.863-50.146-160.992-82.299-266.593-82.299v-76.801zM64.003 264.109c0-99.628 53.934-186.895 135.33-247.947 81.388-61.036 192.064-97.652 312.672-97.652v76.801c-105.601 0-199.728 32.153-266.59 82.299-66.851 50.134-104.607 116.467-104.607 186.5h-76.801zM71.943 329.448c-5.276-21.379-7.944-43.318-7.944-65.341h76.801c0 16.031 1.96 31.717 5.715 46.976l-74.571 18.365zM0.004 417.707c0-62.675 40.921-115.685 97.401-133.971l23.655 73.064c-12.863 4.18-24.072 12.32-32.026 23.26s-12.232 24.118-12.232 37.647h-76.801zM140.802 558.506c-77.76 0-140.8-63.040-140.8-140.798h76.801c0 35.343 28.652 63.999 63.999 63.999v76.799zM251.798 504.343c-25.71 32.896-65.88 54.163-110.993 54.163v-76.799c20.479 0 38.7-9.575 50.479-24.647l60.517 47.284zM511.999 609.712c-121.061 0-232.113-36.888-313.584-98.349l46.246-61.319c66.904 50.459 161.345 82.867 267.34 82.867v76.801zM825.589 511.361c-81.476 61.454-192.526 98.349-313.59 98.349v-76.801c106.006 0 200.436-32.407 267.342-82.867l46.247 61.319zM832.724 457.061c5.974 7.683 13.631 13.905 22.379 18.176 8.752 4.276 18.359 6.49 28.096 6.469v76.799c-45.118 0-85.285-21.259-110.99-54.163l60.517-47.284zM883.198 481.706c35.349 0 63.999-28.656 63.999-63.999h76.801c0 77.76-63.040 140.798-140.8 140.798v-76.799zM947.201 417.707c0-28.405-18.522-52.579-44.252-60.908l23.655-73.064c56.479 18.282 97.397 71.296 97.397 133.971h-76.801zM959.997 264.109c0 22.022-2.668 43.96-7.943 65.341l-74.571-18.365c3.757-15.257 5.713-30.945 5.713-46.976h76.801zM332.801 251.303c42.413 0 76.798 34.383 76.798 76.801 0 42.412-34.384 76.801-76.798 76.801s-76.801-34.384-76.801-76.801c0-42.418 34.384-76.801 76.801-76.801zM691.212 251.303c42.412 0 76.801 34.383 76.801 76.801 0 42.412-34.384 76.801-76.801 76.801s-76.801-34.384-76.801-76.801c0-42.418 34.384-76.801 76.801-76.801zM391.477 194.497c-24.839 18.021-59.638 12.841-78.118-11.803-18.663-24.882-13.619-60.183 11.263-78.849l33.791 45.055c-33.791-45.055-33.77-45.072-33.749-45.085l0.043-0.036 0.093-0.065 0.201-0.15 0.46-0.339 1.16-0.829c0.881-0.62 1.981-1.37 3.295-2.232 2.63-1.727 6.124-3.895 10.491-6.348 8.73-4.911 20.945-10.964 36.636-16.852 31.494-11.804 76.572-22.784 134.976-22.784 58.397 0 103.481 10.977 134.976 22.784 15.692 5.889 27.905 11.941 36.634 16.852 4.37 2.453 7.865 4.625 10.493 6.348 1.317 0.867 2.412 1.612 3.294 2.232l1.162 0.829 0.463 0.339 0.202 0.15 0.093 0.065 0.040 0.036c0.019 0.013 0.046 0.032-33.745 45.085l33.791-45.055c24.882 18.663 29.928 53.964 11.263 78.849-18.484 24.642-53.284 29.824-78.119 11.803-0.058-0.036-0.131-0.093-0.234-0.157-0.574-0.373-1.878-1.203-3.912-2.348-4.069-2.289-11.060-5.836-20.967-9.548-19.71-7.396-51.424-15.614-95.42-15.614-44.002 0-75.719 8.224-95.426 15.614-9.908 3.712-16.897 7.259-20.964 9.548-2.037 1.149-3.34 1.976-3.912 2.348-0.105 0.065-0.179 0.124-0.236 0.157zM832.008 822.185c-11.309 0-20.479-9.169-20.479-20.479s9.17-20.479 20.479-20.479c11.309 0 20.479 9.17 20.479 20.479s-9.17 20.479-20.479 20.479zM698.888 801.705c0 73.52 59.604 133.118 133.118 133.118s133.118-59.6 133.118-133.118c0-73.52-59.604-133.118-133.118-133.118s-133.118 59.6-133.118 133.118zM583.524 890.554c-9.821 1.965-20.015 0.017-28.416-5.424s-14.347-13.952-16.566-23.713l-63.999-281.6c-2.257-9.931-0.482-20.354 4.944-28.975s14.055-14.731 23.988-16.986c9.933-2.257 20.354-0.478 28.97 4.948 8.623 5.425 14.732 14.055 16.99 23.986l55.703 245.118 154.078-30.814c-2.68 7.93-4.038 16.245-4.031 24.617 0 19.429 7.213 37.171 19.115 50.701l-190.777 38.146z" />
|
|
81
|
+
<glyph unicode="" glyph-name="instagram" d="M512.3 846.448c136.879 0 153.086-0.6 206.918-3.001 50.031-2.198 77.047-10.602 95.057-17.604 23.814-9.203 41.022-20.405 58.836-38.208 18.012-18.005 29.015-35.004 38.22-58.812 7.003-18.005 15.412-45.207 17.612-95.019 2.401-54.012 3-70.212 3-206.84 0-136.828-0.599-153.032-3-206.843-2.2-50.006-10.609-77.015-17.612-95.018-9.204-23.808-20.411-41.010-38.22-58.812-18.012-18.004-35.022-29.004-58.836-38.204-18.012-7.003-45.227-15.406-95.057-17.604-54.032-2.401-70.239-3-206.918-3-136.881 0-153.088 0.599-206.919 3-50.028 2.196-77.046 10.597-95.054 17.604-23.815 9.203-41.025 20.405-58.836 38.204-18.012 18.004-29.018 35.004-38.221 58.812-7.003 18.004-15.409 45.209-17.609 95.018-2.401 54.012-3.001 70.214-3.001 206.843 0 136.825 0.6 153.028 3.001 206.84 2.2 50.009 10.606 77.015 17.609 95.019 9.204 23.804 20.412 41.007 38.221 58.812 18.012 18.005 35.021 29.004 58.836 38.208 18.012 7 45.228 15.402 95.054 17.604 53.831 2.401 70.043 3.001 206.919 3.001zM512.3 938.667c-139.081 0-156.492-0.6-211.123-3.001-54.433-2.4-91.855-11.202-124.274-23.804-33.821-13.204-62.436-30.607-90.852-59.211-28.618-28.404-46.027-57.012-59.235-90.617-12.61-32.604-21.414-69.813-23.815-124.225-2.401-54.809-3.001-72.213-3.001-211.243 0-139.022 0.6-156.424 3.001-211.042 2.401-54.41 11.206-91.817 23.815-124.22 13.21-33.806 30.617-62.412 59.235-90.819 28.416-28.404 57.036-46.009 90.655-59.012 32.619-12.6 69.841-21.4 124.273-23.802 54.635-2.401 72.042-3 211.123-3s156.492 0.599 211.123 3c54.431 2.401 91.854 11.202 124.273 23.802 33.617 13.004 62.24 30.61 90.656 59.012s46.022 57.012 59.033 90.618c12.606 32.604 21.412 69.81 23.814 124.22 2.401 54.613 3 72.017 3 211.042 0 139.028-0.599 156.433-3 211.043-2.401 54.411-11.208 91.817-23.814 124.224-12.606 34.008-30.018 62.612-58.634 91.020-28.416 28.404-57.032 46.009-90.656 59.010-32.621 12.604-69.843 21.403-124.273 23.804-54.828 2.602-72.245 3.202-211.323 3.202zM512.305 689.622c-145.284 0-263.153-117.824-263.153-263.051 0-145.224 117.87-263.051 263.153-263.051s263.151 117.828 263.151 263.051c0 145.231-117.868 263.051-263.151 263.051zM512.305 255.944c-94.255 0-170.699 76.41-170.699 170.627s76.447 170.633 170.699 170.633c94.255 0 170.699-76.418 170.699-170.633s-76.447-170.627-170.699-170.627zM847.314 700.037c0-34.005-27.617-61.41-61.44-61.41-34.020 0-61.434 27.606-61.434 61.41 0 34.005 27.617 61.412 61.434 61.412 33.824 0 61.44-27.606 61.44-61.412z" />
|
|
82
|
+
<glyph unicode="" glyph-name="linkedin" d="M565.475 506.247c14.194 15.985 25.89 32.225 40.457 45.996 44.809 42.345 97.807 63.708 159.688 63.18 34.001-0.29 67.622-2.747 100.405-12.251 74.989-21.739 118.572-73.502 139.363-146.96 15.581-55.092 18.457-111.638 18.556-168.389 0.204-119.676-0.348-239.363-0.084-359.028 0.019-11.213-3.11-14.148-14.111-14.053-61.484 0.514-122.988 0.521-184.472-0.012-10.812-0.097-13.154 3.266-13.116 13.517 0.337 113.882 0.436 227.76 0.060 341.636-0.097 28.532-1.908 57.059-9.892 84.804-14.71 51.11-51.2 77.157-104.595 74.325-72.901-3.853-110.824-40.058-120.123-114.42-2.22-17.749-3.272-35.522-3.254-53.406 0.097-110.748-0.108-221.508 0.286-332.263 0.036-11.039-2.724-14.305-13.973-14.196-61.933 0.54-123.867 0.487-185.797 0.036-9.936-0.071-12.794 2.61-12.78 12.685 0.276 219.266 0.276 438.546 0 657.809-0.012 10.846 3.535 13.36 13.76 13.288 58.812-0.437 117.628-0.485 176.439 0.036 10.812 0.096 13.615-3.41 13.382-13.688-0.605-26.202-0.204-52.417-0.204-78.632v-0.025zM228.592 255.664c0-108.475-0.18-216.956 0.252-325.43 0.049-12.053-2.94-15.708-15.386-15.562-61.461 0.677-122.924 0.516-184.384 0.097-9.852-0.077-12.817 2.389-12.804 12.612 0.289 219.629 0.276 439.267 0.049 658.901 0 9.091 2.182 12.334 11.819 12.276 62.354-0.397 124.719-0.533 187.065 0.072 11.975 0.121 13.616-4.548 13.578-14.837-0.3-109.366-0.18-218.732-0.18-328.116v-0.012zM245.551 816.193c0.072-68.1-55.068-123.6-122.826-123.612-66.9-0.036-122.503 55.5-122.721 122.547-0.217 67.787 55.335 123.612 122.971 123.54 67.154-0.060 122.503-55.367 122.56-122.475h0.012z" />
|
|
83
|
+
<glyph unicode="" glyph-name="facebook" d="M756.699 367.017l29.19 183.922h-182.596v119.299c0 50.316 25.513 99.42 107.293 99.42h83.009v156.585c0 0-75.336 12.427-147.371 12.427-150.379 0-248.67-88.085-248.67-247.548v-140.178h-167.161v-183.922h167.161v-444.621c68.164-10.308 137.569-10.308 205.732 0v444.621h153.405z" />
|
|
84
|
+
<glyph unicode="" glyph-name="not-found" d="M773.379 512.617c-0.011 191.802-155.495 347.28-347.281 347.281-191.79 0-347.272-155.479-347.282-347.281 0-191.807 155.486-347.329 347.282-347.329 191.791 0 347.281 155.522 347.281 347.329zM852.147 512.617c0-235.309-190.752-426.098-426.050-426.098-235.302 0-426.051 190.789-426.051 426.098 0.010 235.301 190.754 426.050 426.051 426.050 235.294-0.001 426.040-190.75 426.050-426.050zM698.948 239.688c14.42 14.42 37.247 15.339 52.717 2.72l2.972-2.72 257.795-257.79 2.667-2.977c12.629-15.465 11.753-38.293-2.667-52.717-14.415-14.415-37.247-15.323-52.717-2.715l-2.972 2.715-260.515 260.767c-12.619 15.471-11.7 38.298 2.72 52.717zM459.999 326.538c0-19.792-16.043-35.84-35.835-35.84-19.794 0-35.839 16.048-35.839 35.84s16.044 35.835 35.839 35.835c19.792 0 35.835-16.043 35.835-35.835zM421.965 391.119c-8.171 0-14.619 2.578-19.35 7.74-4.3 5.588-6.45 12.902-6.45 21.93 0 13.333 1.505 25.804 4.516 37.415 3.44 12.041 8.814 24.082 16.129 36.123 7.31 12.041 16.982 24.729 29.024 38.060 9.033 10.321 16.127 19.353 21.289 27.093 5.593 8.171 9.463 15.911 11.611 23.222 2.583 7.311 3.871 14.837 3.871 22.577 0 14.192-5.157 25.372-15.481 33.543-10.319 8.171-24.944 12.256-43.863 12.256-17.201 0-32.898-2.366-47.089-7.097-13.761-4.3-27.738-10.537-41.93-18.706-9.461-5.591-18.063-8.171-25.803-7.74-7.311 0.86-13.332 3.655-18.063 8.385s-7.74 10.537-9.030 17.417c-1.29 6.881-0.215 13.977 3.226 21.287s9.676 13.977 18.706 19.996c17.632 11.611 37.845 20.427 60.636 26.448 22.793 6.45 44.296 9.676 64.508 9.676 27.092 0 50.743-4.516 70.955-13.547 20.642-9.030 36.554-21.501 47.734-37.414 11.611-15.911 17.419-34.619 17.419-56.12 0-13.332-1.937-26.017-5.808-38.059-3.871-11.611-10.103-23.437-18.705-35.478-8.602-11.61-20.427-24.297-35.478-38.060-13.333-12.041-24.082-23.005-32.253-32.9-7.74-9.888-13.548-19.351-17.419-28.383-3.44-9.026-5.803-18.705-7.094-29.024-0.431-6.023-3.009-10.97-7.74-14.841-4.3-3.871-10.324-5.803-18.064-5.803z" />
|
|
85
|
+
<glyph unicode="" glyph-name="entry" d="M905.846 938.666h-577.64c-50.938 0-91.898-40.96-91.898-91.898v-69.842c2.101-19.954 18.905-35.184 39.385-35.184s37.284 15.228 39.385 35.184v4.201s0 65.641 0 65.641c0 7.351 5.776 13.129 13.129 13.129h577.64c7.351 0 13.129-5.776 13.129-13.129v-853.332h-603.897v78.769c0 21.53-17.855 39.385-39.385 39.385s-39.385-17.855-39.385-39.385v-118.154c0-21.53 17.855-39.385 39.385-39.385h682.666c21.53 0 39.385 17.855 39.385 39.385v892.716c0 50.938-40.96 91.898-91.898 91.898zM326.629 296.96l-2.625-3.151c-12.603-15.228-11.553-38.335 2.625-52.513s37.284-15.228 52.513-2.625l3.151 2.625 157.538 157.538s0 0 0 0.526c2.625 3.151 5.252 6.302 6.827 10.502 0 0.526 1.050 1.575 1.575 2.101 1.575 4.201 2.625 9.452 2.625 14.178 0 0 0 0.526 0 1.050 0 4.726-1.050 9.452-2.625 13.653 0 1.050-1.050 1.575-1.575 2.625-1.575 3.676-3.676 7.351-6.827 9.978 0 0 0 0.526 0 0.526l-157.538 157.538c-15.228 15.228-40.434 15.228-55.664 0s-15.228-40.434 0-55.664l90.322-90.322h-351.31c-21.53 0-39.385-17.855-39.385-39.385s17.855-39.385 39.385-39.385h351.31l-90.322-90.322z" />
|
|
86
|
+
<glyph unicode="" glyph-name="phone-fill" d="M512 938.667c282.767 0 512-229.23 512-512 0-282.767-229.232-512-512-512-282.77 0-512 229.232-512 512 0 282.77 229.23 512 512 512zM293.201 708.267c-35.419-0.011-64.894-29.478-62.7-64.9 16.616-267.746 230.766-481.582 498.199-498.198 35.42-2.196 64.891 27.28 64.901 62.7v54.246c0.312 31.667-23.537 58.337-55.199 62.1l-79.601 9.103c-19.123 2.191-37.97-4.418-51.451-17.905l-57.652-57.697c-88.724 45.148-161.502 117.612-206.648 206.648l58 58c13.481 13.483 20.095 32.278 17.899 51.402l-9.098 79c-3.763 31.666-30.422 55.5-62.401 55.5h-54.25z" />
|
|
87
|
+
<glyph unicode="" glyph-name="external-link" d="M827.178 413.283c-21.519 0-39.365-17.846-39.365-39.365v-314.916c0-17.32-6.824-34.115-19.42-46.188s-28.868-19.42-46.188-19.42h-577.346c-17.32 0-34.115 6.824-46.188 19.42s-19.42 28.868-19.42 46.188v577.346c0 17.32 6.824 34.115 19.42 46.188 12.597 12.597 28.868 19.42 46.188 19.42h314.916c21.519 0 39.365 17.846 39.365 39.365s-17.846 39.365-39.365 39.365h-314.916c-38.315 0-75.055-15.221-101.822-42.514-27.293-27.293-42.514-63.508-42.514-101.822v-577.346c0-38.315 15.221-74.531 42.514-101.822s63.508-42.514 101.822-42.514h577.346c38.315 0 74.531 15.221 101.822 42.514s42.514 63.508 42.514 101.822v314.916c0 21.519-17.846 39.365-39.365 39.365zM1020.851 914c-4.198 9.447-11.547 17.32-21.519 21.519-4.724 2.1-9.973 3.149-15.221 3.149h-314.916c-21.519 0-39.365-17.846-39.365-39.365s17.846-39.365 39.365-39.365h219.916l-510.164-510.164c-15.221-15.221-15.221-40.414 0-55.636 7.873-7.873 17.846-11.547 27.817-11.547s19.944 3.674 27.817 11.547l510.164 510.164v-219.916c0-21.519 17.846-39.365 39.365-39.365s39.365 17.846 39.365 39.365v314.391c0 5.249-1.049 9.973-3.149 15.221z" />
|
|
88
|
+
<glyph unicode="" glyph-name="close-quote" d="M1023.997 564.85c0 201.259-107.593 312.164-230.028 312.164-111.303 0-196.634-98.577-196.634-217.696 0-123.225 74.201-209.475 178.084-209.475 18.55 0 44.521 4.107 48.231 4.107-8.491-100.259-73.11-219.64-155.982-308.913-38.383-41.348-41.878-108.606 0.106-146.293 32.165-28.873 80.861-30.702 111.844-0.561 142.204 138.327 244.381 344.42 244.381 566.673zM430.379 564.85c0 201.259-107.597 312.164-230.031 312.164-111.301 0-200.346-98.577-200.346-217.696 0-123.225 77.912-209.475 181.796-209.475 18.549 0 44.521 4.107 48.234 4.107-11.309-100.161-74.336-219.411-156.227-308.661-38.141-41.571-41.634-108.863 0.35-146.549 32.164-28.873 80.861-30.702 111.842-0.561 142.208 138.327 244.383 344.42 244.383 566.673z" />
|
|
89
|
+
<glyph unicode="" glyph-name="sim" d="M210.825 818.196c-8.316-0.001-15.845-3.374-21.294-8.824l-180.706-180.706c-5.45-5.45-8.822-12.978-8.824-21.294v0-421.646c0-82.812 67.778-150.588 150.588-150.588h722.823c82.812 0 150.588 67.777 150.588 150.588v481.882c0 82.81-67.776 150.588-150.588 150.588zM223.297 757.96h650.117c50.259 0 90.353-40.095 90.353-90.353v-481.882c0-50.26-40.093-90.353-90.353-90.353h-722.823c-50.258 0-90.353 40.094-90.353 90.353v409.176l111.647 111.647zM391.531 517.020c-49.534 0-90.353-40.818-90.353-90.353v-120.471c0-49.534 40.818-90.353 90.353-90.353h361.411c49.534 0 90.353 40.818 90.353 90.353v120.471c0 49.534-40.818 90.353-90.353 90.353zM391.531 456.785h361.411c17.206 0 30.118-12.911 30.118-30.118v-120.471c0-17.206-12.911-30.118-30.118-30.118h-361.411c-17.206 0-30.118 12.911-30.118 30.118v120.471c0 17.206 12.911 30.118 30.118 30.118zM500.708 496.197l-57.058-19.294c23.382-69.097 21.216-144.314-6-212l-3.883-9.765 55.882-22.47 3.883 9.765c32.573 81.011 35.164 171.058 7.177 253.765zM647.884 499.609l-3.412-9.882c-28.262-82.614-26.070-172.646 6.236-253.765l56 22.235c-26.99 67.771-28.79 142.974-5.177 212l3.412 9.882z" />
|
|
90
|
+
<glyph unicode="" glyph-name="monitor" d="M125.552 890.382c-69.017 0-125.552-56.533-125.552-125.552v-483.075c0-69.018 56.535-125.552 125.552-125.552h772.896c69.020 0 125.552 56.533 125.552 125.552v483.075c0 69.018-56.533 125.552-125.552 125.552zM125.552 832.418h772.896c37.693 0 67.587-29.895 67.587-67.587v-483.075c0-37.693-29.894-67.587-67.587-67.587h-772.896c-37.691 0-67.587 29.894-67.587 67.587v483.075c0 37.692 29.896 67.587 67.587 67.587zM318.805 20.916c-16.006 0-28.982-12.976-28.982-28.982v0c0-16.006 12.976-28.982 28.982-28.982v0h386.392c16.006 0 28.982 12.976 28.982 28.982v0c0 16.006-12.976 28.982-28.982 28.982v0zM511.944 214.168c-16.006 0-28.982-12.976-28.982-28.982v0-193.252c0-16.006 12.976-28.982 28.982-28.982v0c16.006 0 28.982 12.976 28.982 28.982v0 193.252c0 16.006-12.976 28.982-28.982 28.982v0z" />
|
|
91
|
+
<glyph unicode="" glyph-name="wifi" d="M513.802 568.57c-124.234 0-244.488-43.505-339.944-123.011-6.083-5.076-9.925-12.66-9.925-21.141 0-6.72 2.412-12.877 6.418-17.651l-0.035 0.043c5.074-6.015 12.616-9.809 21.045-9.809 6.715 0 12.868 2.409 17.641 6.41l-0.043-0.035c85.589 71.288 193.45 110.238 304.844 110.238 111.387 0 219.257-38.95 304.844-110.238 4.74-3.998 10.917-6.427 17.661-6.427 8.452 0 16.013 3.816 21.054 9.82l0.035 0.043c3.971 4.733 6.383 10.889 6.383 17.608 0 8.481-3.842 16.065-9.881 21.105l-0.044 0.036c-95.454 79.507-215.824 123.011-340.051 123.011zM511.977 797.525c-185.102 0-363.815-67.486-502.671-189.883-5.719-5.059-9.306-12.417-9.306-20.612 0-6.965 2.591-13.325 6.863-18.168l-0.026 0.030c5.059-5.719 12.417-9.306 20.612-9.306 6.965 0 13.325 2.591 18.168 6.863l-0.030-0.026c128.828 113.557 294.654 176.144 466.391 176.144 171.731 0 337.565-62.587 466.391-176.144 4.814-4.246 11.173-6.837 18.138-6.837 8.195 0 15.551 3.587 20.586 9.277l0.025 0.029c4.274 4.82 6.884 11.202 6.884 18.192 0 8.167-3.563 15.501-9.218 20.534l-0.028 0.024c-138.853 122.397-317.679 189.883-502.778 189.883zM512.192 339.615c-62.732 0-123.93-19.486-175.070-55.817-7.018-5.044-11.536-13.184-11.536-22.381 0-5.978 1.909-11.511 5.152-16.021l-0.056 0.082c5.044-7.018 13.184-11.536 22.381-11.536 5.978 0 11.511 1.909 16.021 5.152l-0.082-0.056c41.848 29.729 91.858 45.619 143.191 45.619 51.336 0 101.45-15.89 143.298-45.619 4.428-3.186 9.961-5.095 15.939-5.095 9.196 0 17.337 4.517 22.325 11.453l0.056 0.082c3.164 4.418 5.059 9.932 5.059 15.888 0 9.227-4.548 17.392-11.523 22.374l-0.083 0.056c-51.142 36.331-112.336 55.817-175.070 55.817zM511.977 110.767c-15.176 0-27.479-12.303-27.479-27.479v0c0-15.176 12.303-27.479 27.479-27.479v0h0.428c15.176 0 27.479 12.303 27.479 27.479v0c0 15.176-12.303 27.479-27.479 27.479v0z" />
|
|
92
|
+
<glyph unicode="" glyph-name="education" d="M488.094 807.684l-440.598-197.785c-31.496-14.141-48.499-46.2-47.45-76.154s20.245-60.75 52.653-72.656l440.598-161.815c18.239-6.702 38.362-6.593 56.51 0.358l422.568 161.816c31.789 12.175 50.509 42.588 51.577 72.206s-15.452 61.273-46.284 75.706l-422.659 197.785c-21.169 9.907-45.592 10.111-66.915 0.538zM516.26 744.895c3.073 1.379 6.545 1.338 9.598-0.089l422.659-197.874c5.863-2.744 6.717-6.058 6.548-10.763s-1.312-8-7.355-10.315l-422.568-161.906c-2.592-0.993-5.462-0.959-8.073 0l-440.598 161.815c-6.235 2.29-7.367 5.62-7.534 10.405s0.668 8.133 6.727 10.853zM199.894 440.459v-251.872c0-10.834 2.157-24.158 10.315-36.597 22.071-33.64 100.428-113.378 299.682-113.378s277.612 79.736 299.682 113.378c8.124 12.421 10.315 25.791 10.315 36.597v251.872h-68.888v-251.515c-11.152-16.812-61.004-81.446-241.109-81.446s-229.956 64.632-241.109 81.446v251.515zM923.221 233.794c25.443 0 45.925-20.482 45.925-45.925v-45.925c0-25.443-20.482-45.925-45.925-45.925s-45.925 20.482-45.925 45.925v45.925c0 25.443 20.482 45.925 45.925 45.925zM923.221 268.238c-43.929 0-80.37-36.441-80.37-80.37v-45.925c0-43.929 36.441-80.37 80.37-80.37s80.37 36.441 80.37 80.37v45.925c0 43.929-36.441 80.37-80.37 80.37zM923.221 199.351c6.956 0 11.481-4.525 11.481-11.481v-45.925c0-6.956-4.525-11.481-11.481-11.481s-11.481 4.525-11.481 11.481v45.925c0 6.956 4.525 11.481 11.481 11.481zM888.776 463.422v-229.627h68.888v229.627z" />
|
|
93
|
+
<glyph unicode="" glyph-name="ribbon" d="M512 938.666c-203.434 0-369.115-165.682-369.115-369.115s165.682-369.115 369.115-369.115c203.434 0 369.115 165.681 369.115 369.115s-165.681 369.115-369.115 369.115zM512 867.224c164.824 0 297.674-132.85 297.674-297.674s-132.85-297.674-297.674-297.674c-164.824 0-297.674 132.85-297.674 297.674s132.85 297.674 297.674 297.674zM686.418 318.946c-16.934-3.012-29.626-17.622-29.626-35.197 0-2.124 0.185-4.205 0.541-6.227l-0.032 0.215 45.303-261.953-173.953 91.535c-4.827 2.594-10.561 4.118-16.651 4.118s-11.825-1.524-16.843-4.212l0.191 0.094-173.953-91.535 45.303 261.487c0.335 1.835 0.525 3.947 0.525 6.103 0 17.581-12.7 32.194-29.426 35.168l-0.216 0.032c-1.835 0.335-3.947 0.525-6.103 0.525-17.581 0-32.194-12.7-35.168-29.426l-0.032-0.216-57.582-333.023c-0.327-1.817-0.515-3.908-0.515-6.043 0-19.73 15.994-35.725 35.725-35.725 6.072 0 11.79 1.514 16.797 4.187l-0.192-0.094 221.488 116.558 221.488-116.558c4.814-2.579 10.532-4.093 16.604-4.093 19.73 0 35.725 15.994 35.725 35.725 0 2.135-0.187 4.226-0.546 6.258l0.032-0.215-57.582 333.395c-3.005 16.942-17.619 29.642-35.2 29.642-2.156 0-4.268-0.191-6.319-0.557l0.216 0.032z" />
|
|
94
|
+
</font></defs></svg>
|
|
Binary file
|
|
Binary file
|