@progressio_resources/gravity-design-system 2.0.8 → 2.0.10

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.
Files changed (45) hide show
  1. package/esm2022/lib/components/gravity-attach-file/gravity-attach-file.component.mjs +1 -1
  2. package/esm2022/lib/components/gravity-button/gravity-button.component.mjs +6 -3
  3. package/esm2022/lib/components/gravity-calendar/gravity-calendar.component.mjs +3 -3
  4. package/esm2022/lib/components/gravity-checkbox/gravity-checkbox.component.mjs +10 -4
  5. package/esm2022/lib/components/gravity-dialog/gravity-dialog.component.mjs +1 -1
  6. package/esm2022/lib/components/gravity-dropdown-list/gravity-dropdown-list.component.mjs +3 -3
  7. package/esm2022/lib/components/gravity-icon/gravity-icon.component.mjs +8 -3
  8. package/esm2022/lib/components/gravity-notification/gravity-notification.component.mjs +1 -1
  9. package/esm2022/lib/components/gravity-notification-instant/gravity-notification-instant-container.component.mjs +1 -1
  10. package/esm2022/lib/components/gravity-text-field/gravity-text-field.component.mjs +3 -3
  11. package/fesm2022/progressio_resources-gravity-design-system.mjs +30 -16
  12. package/fesm2022/progressio_resources-gravity-design-system.mjs.map +1 -1
  13. package/lib/components/gravity-button/gravity-button.component.d.ts +4 -3
  14. package/lib/components/gravity-checkbox/gravity-checkbox.component.d.ts +5 -1
  15. package/lib/components/gravity-dropdown-list/gravity-dropdown-list.component.d.ts +1 -1
  16. package/lib/components/gravity-icon/gravity-icon.component.d.ts +2 -1
  17. package/package.json +1 -1
  18. package/src/lib/assets/icons/calendar.svg +4 -13
  19. package/src/lib/assets/icons/copy.svg +4 -7
  20. package/src/lib/assets/icons/download.svg +4 -6
  21. package/src/lib/assets/icons/eye_closed.svg +4 -7
  22. package/src/lib/assets/icons/eye_open.svg +10 -4
  23. package/src/lib/assets/icons/forgot_password.svg +10 -6
  24. package/src/lib/assets/icons/lock.svg +4 -5
  25. package/src/lib/assets/icons/log_out.svg +5 -0
  26. package/src/lib/assets/icons/mail.svg +4 -5
  27. package/src/lib/assets/icons/my_profile.svg +8 -0
  28. package/src/lib/assets/icons/search.svg +4 -7
  29. package/src/lib/assets/icons/settings.svg +7 -11
  30. package/src/lib/assets/icons/show_less.svg +7 -5
  31. package/src/lib/assets/icons/show_more.svg +7 -5
  32. package/src/lib/assets/icons/success.svg +5 -0
  33. package/src/lib/assets/icons/unlock.svg +5 -0
  34. package/src/lib/assets/icons/unsuccess.svg +5 -0
  35. package/src/lib/assets/icons/update.svg +12 -0
  36. package/src/lib/assets/json/icons.json +17 -17
  37. package/src/lib/styles/foundations/spacing/_spacing.scss +11 -10
  38. package/src/lib/assets/icons/check.svg +0 -3
  39. package/src/lib/assets/icons/edit.svg +0 -8
  40. package/src/lib/assets/icons/logout.svg +0 -9
  41. package/src/lib/assets/icons/notifications/error.svg +0 -6
  42. package/src/lib/assets/icons/notifications/success.svg +0 -3
  43. package/src/lib/assets/icons/user.svg +0 -6
  44. package/src/lib/assets/icons/x.svg +0 -6
  45. /package/src/lib/assets/icons/{notifications/warning.svg → warning.svg} +0 -0
@@ -2,11 +2,12 @@ import * as i0 from "@angular/core";
2
2
  export declare class GravityButtonComponent {
3
3
  cypressTag: string;
4
4
  disabled: boolean;
5
- customState: 'active' | 'hover' | 'pressed';
6
- iconName: string;
5
+ customState: 'active' | 'hover' | 'pressed' | null;
6
+ iconName: string | undefined;
7
7
  isLoading: boolean;
8
+ showContent: boolean;
8
9
  size: 'sm' | 'md' | 'lg';
9
10
  type: 'primary' | 'secondary' | 'tertiary' | 'positive' | 'negative' | 'disabled';
10
11
  static ɵfac: i0.ɵɵFactoryDeclaration<GravityButtonComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<GravityButtonComponent, "gravity-button", never, { "cypressTag": { "alias": "cypressTag"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "customState": { "alias": "customState"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<GravityButtonComponent, "gravity-button", never, { "cypressTag": { "alias": "cypressTag"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "customState": { "alias": "customState"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "showContent": { "alias": "showContent"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
12
13
  }
@@ -1,8 +1,12 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { PrettyRadioChange } from "ngx-pretty-checkbox";
1
3
  import * as i0 from "@angular/core";
2
4
  export declare class GravityCheckboxComponent {
3
5
  value: any;
4
6
  disabled: boolean;
5
7
  checked: boolean;
8
+ change: EventEmitter<PrettyRadioChange>;
9
+ onChange(event: PrettyRadioChange): void;
6
10
  static ɵfac: i0.ɵɵFactoryDeclaration<GravityCheckboxComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<GravityCheckboxComponent, "gravity-checkbox", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, {}, never, ["*"], false, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<GravityCheckboxComponent, "gravity-checkbox", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, { "change": "change"; }, never, ["*"], false, never>;
8
12
  }
@@ -4,7 +4,7 @@ export declare class GravityDropdownListComponent {
4
4
  selectedItemResponse: EventEmitter<any>;
5
5
  currentLang: string;
6
6
  customPlaceholder: string;
7
- customValue: number;
7
+ customValue: number | string;
8
8
  cypressTag: string;
9
9
  iconColor?: string;
10
10
  iconNames: string[];
@@ -3,6 +3,7 @@ export declare class GravityIconComponent {
3
3
  customIconColorVariable: string;
4
4
  iconName: string;
5
5
  hoverIcon: boolean;
6
+ size: 'sm' | 'md' | 'lg';
6
7
  static ɵfac: i0.ɵɵFactoryDeclaration<GravityIconComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<GravityIconComponent, "gravity-icon", never, { "customIconColorVariable": { "alias": "customIconColorVariable"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "hoverIcon": { "alias": "hoverIcon"; "required": false; }; }, {}, never, never, false, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<GravityIconComponent, "gravity-icon", never, { "customIconColorVariable": { "alias": "customIconColorVariable"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "hoverIcon": { "alias": "hoverIcon"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, false, never>;
8
9
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progressio_resources/gravity-design-system",
3
3
  "description": "Gravity Design System",
4
- "version": "2.0.8",
4
+ "version": "2.0.10",
5
5
  "license": "SEE LICENSE IN LIBRARY-LICENSE",
6
6
  "peerDependencies": {
7
7
  "@angular/common": "^16.2.12",
@@ -1,14 +1,5 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="16.668" height="18.333" viewBox="0 0 16.668 18.333">
2
- <g transform="translate(0 1.666)">
3
- <path d="M65.77,39.657h-11a2.837,2.837,0,0,1-2.834-2.834v-11A2.837,2.837,0,0,1,54.77,22.99h11A2.837,2.837,0,0,1,68.6,25.823v11A2.837,2.837,0,0,1,65.77,39.657Zm-11-15A1.167,1.167,0,0,0,53.6,25.823v11A1.167,1.167,0,0,0,54.77,37.99h11a1.168,1.168,0,0,0,1.166-1.167v-11a1.167,1.167,0,0,0-1.166-1.166Z" transform="translate(-51.936 -22.99)" fill="var(--icon-color, #888)"/>
4
- </g>
5
- <g transform="translate(10.833)">
6
- <path d="M63.6,26.324a.834.834,0,0,1-.834-.834V22.157a.834.834,0,0,1,1.668,0V25.49A.834.834,0,0,1,63.6,26.324Z" transform="translate(-62.769 -21.324)" fill="var(--icon-color, #888)"/>
7
- </g>
8
- <g transform="translate(4.167)">
9
- <path d="M56.937,26.324a.834.834,0,0,1-.834-.834V22.157a.834.834,0,0,1,1.668,0V25.49A.835.835,0,0,1,56.937,26.324Z" transform="translate(-56.103 -21.324)" fill="var(--icon-color, #888)"/>
10
- </g>
11
- <g transform="translate(0 6.666)">
12
- <path d="M67.77,29.657h-15a.834.834,0,1,1,0-1.667h15a.834.834,0,1,1,0,1.667Z" transform="translate(-51.936 -27.99)" fill="var(--icon-color, #888)"/>
13
- </g>
1
+ <svg width="33" height="33" viewBox="0 0 33 33" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M10.0575 0.784668C10.6378 0.784668 11.1083 1.25512 11.1083 1.83545V5.28802H21.0156V1.83545C21.0156 1.25512 21.4861 0.784668 22.0664 0.784668C22.6467 0.784668 23.1172 1.25512 23.1172 1.83545V5.28802H31.0731C31.6534 5.28802 32.1239 5.75847 32.1239 6.3388V31.8578C32.1239 32.4381 31.6534 32.9086 31.0731 32.9086H1.05078C0.470451 32.9086 0 32.4381 0 31.8578V6.3388C0 5.75847 0.470451 5.28802 1.05078 5.28802H9.0067V1.83545C9.0067 1.25512 9.47715 0.784668 10.0575 0.784668ZM9.0067 7.38958H2.10156V12.7936H30.0223V7.38958H23.1172V9.34103C23.1172 9.92136 22.6467 10.3918 22.0664 10.3918C21.4861 10.3918 21.0156 9.92136 21.0156 9.34103V7.38958H11.1083V9.34103C11.1083 9.92136 10.6378 10.3918 10.0575 10.3918C9.47715 10.3918 9.0067 9.92136 9.0067 9.34103V7.38958ZM30.0223 14.8952H2.10156V30.807H30.0223V14.8952Z"
4
+ fill="var(--icon-color, #888)"/>
14
5
  </svg>
@@ -1,8 +1,5 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12">
2
- <g transform="translate(1.29 2.499)">
3
- <rect width="6.5" height="6.5" rx="2" transform="translate(3.21 2.001)" fill="none" stroke="var(--icon-color, #888)"
4
- stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
5
- <path d="M2.5,7.5H2a1,1,0,0,1-1-1V2A1,1,0,0,1,2,1H6.5a1,1,0,0,1,1,1v.5" transform="translate(-1.29 -2.499)"
6
- fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
7
- </g>
1
+ <svg width="33" height="33" viewBox="0 0 33 33" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M9.69625 1.97444C9.69625 1.31735 10.2289 0.784668 10.886 0.784668H24.271C24.5411 0.784668 24.8033 0.876615 25.0142 1.04538L32.4503 6.99425C32.7325 7.22004 32.8968 7.56188 32.8968 7.92331V24.2827C32.8968 24.9398 32.3642 25.4725 31.7071 25.4725H23.9735V31.7188C23.9735 32.3759 23.4409 32.9086 22.7838 32.9086H1.96272C1.30563 32.9086 0.772949 32.3759 0.772949 31.7188V9.41053C0.772949 8.75343 1.30563 8.22076 1.96272 8.22076H9.69625V1.97444ZM9.69625 10.6003H3.1525V30.529H21.594V25.4725H10.886C10.2289 25.4725 9.69625 24.9398 9.69625 24.2827V10.6003ZM30.5173 23.0929V9.11308H24.271C23.6139 9.11308 23.0812 8.58041 23.0812 7.92331V3.16422H12.0758V23.0929H30.5173ZM25.4608 4.44992L28.3153 6.73354H25.4608V4.44992Z"
4
+ fill="var(--icon-color, #888)"/>
8
5
  </svg>
@@ -1,7 +1,5 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="20.206" height="16.695" viewBox="0 0 20.206 16.695">
2
- <g transform="translate(1.428 0.86)">
3
- <path d="M6.667,14.167,10,17.5l3.333-3.333" transform="translate(-1.29 -2.499)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.667"/>
4
- <line y2="7.5" transform="translate(8.71 7.501)" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.667"/>
5
- <path d="M17.4,15.075A4.167,4.167,0,0,0,15,7.5H13.95A6.667,6.667,0,1,0,2.5,13.575" transform="translate(-1.29 -2.499)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.667"/>
6
- </g>
1
+ <svg width="36" height="35" viewBox="0 0 36 35" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M18.5465 2C14.0083 2 10.1418 4.85583 8.71434 8.86596C3.87453 9.12444 0 13.0615 0 17.9312C0 22.9677 4.1459 27.0214 9.2213 27.0214C9.89832 27.0214 10.5538 26.9431 11.1734 26.8161C11.7652 26.6948 12.1465 26.1167 12.0253 25.525C11.904 24.9332 11.3259 24.5518 10.7342 24.6731C10.2375 24.7749 9.73027 24.8339 9.2213 24.8339C5.32035 24.8339 2.1875 21.7262 2.1875 17.9312C2.1875 14.1382 5.31829 11.04 9.2213 11.04H9.52361C10.0197 11.04 10.4537 10.7061 10.5808 10.2265C11.5005 6.75793 14.707 4.1875 18.5465 4.1875C23.0977 4.1875 26.7663 7.82053 26.7663 12.2685C26.7663 12.9075 26.694 13.5304 26.5526 14.117C26.4666 14.4733 26.5649 14.849 26.8143 15.1176C27.0637 15.3862 27.4311 15.5121 27.7928 15.4528C27.8301 15.4466 27.8806 15.4443 28.0344 15.4443C30.6927 15.4443 32.8125 17.5467 32.8125 20.1276C32.8125 22.7114 30.6898 24.8224 28.0344 24.8224C27.54 24.8224 27.0765 24.7557 26.6506 24.6282C26.0719 24.4549 25.4623 24.7835 25.289 25.3622C25.1158 25.9409 25.4444 26.5505 26.0231 26.7237C26.6668 26.9165 27.3428 27.0099 28.0344 27.0099C31.8671 27.0099 35 23.9502 35 20.1276C35 16.5957 32.3267 13.7285 28.9021 13.3095C28.9366 12.9652 28.9538 12.6175 28.9538 12.2685C28.9538 6.58077 24.2739 2 18.5465 2ZM18.9512 14.5838C19.5552 14.5838 20.0449 15.0735 20.0449 15.6776V27.8591L22.3702 25.5713C22.8008 25.1477 23.4933 25.1533 23.917 25.5839C24.3406 26.0145 24.335 26.707 23.9044 27.1306L19.7302 31.2375C19.5151 31.4491 19.2344 31.5538 18.9543 31.5516L18.9512 31.5516C18.6042 31.5516 18.2949 31.39 18.0946 31.138L13.9996 27.1202C13.5684 26.6972 13.5618 26.0047 13.9849 25.5735C14.4079 25.1423 15.1004 25.1357 15.5316 25.5588L17.8574 27.8408V15.6776C17.8574 15.0735 18.3471 14.5838 18.9512 14.5838Z"
4
+ fill="var(--icon-color, #888)"/>
7
5
  </svg>
@@ -1,8 +1,5 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="21.162" height="21.162" viewBox="0 0 21.162 21.162">
2
- <g transform="translate(0.581 0.581)">
3
- <g transform="translate(1.29 2.499)">
4
- <path d="M14.95,14.95A8.4,8.4,0,0,1,10,16.667C4.167,16.667.833,10,.833,10A15.389,15.389,0,0,1,5.05,5.05m3.2-1.517a7.639,7.639,0,0,1,1.75-.2c5.833,0,9.167,6.667,9.167,6.667a15.427,15.427,0,0,1-1.8,2.658m-5.6-.891A2.5,2.5,0,1,1,8.233,8.233" transform="translate(-1.29 -2.499)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
5
- <line x2="18.333" y2="18.333" transform="translate(-0.457 -1.666)" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
6
- </g>
7
- </g>
1
+ <svg width="35" height="35" viewBox="0 0 35 35" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="Vector"
3
+ d="M34.7794 17.3295H34.7402C34.5441 17.0549 31.5049 13.0244 26.9657 10.0531L30.9167 6.02259C31.3775 5.55188 31.3775 4.81639 30.9167 4.34568C30.4657 3.88477 29.7402 3.88477 29.2892 4.34568L24.8676 8.85667C22.652 7.71911 20.1618 6.91498 17.5147 6.91498C8.04412 6.91498 0.563725 16.8882 0.220588 17.2903C-0.0735294 17.6923 -0.0735294 18.2905 0.220588 18.6926C0.416667 18.9574 3.45588 23.0271 8.03431 25.9984L4.08333 29.9995C3.62255 30.4702 3.62255 31.2057 4.08333 31.6666C4.30882 31.9019 4.60294 32 4.89706 32C5.19118 32 5.48529 31.9019 5.72059 31.6666L10.1324 27.1948C12.348 28.3324 14.8382 29.1365 17.4853 29.1365C26.9265 29.1365 34.4461 19.1633 34.7794 18.722C35.0735 18.3297 35.0735 17.7217 34.7794 17.3295ZM9.7402 24.2627C6.35784 22.1739 3.7402 19.3202 2.62255 18.0159C4.45588 15.8095 10.5343 9.24893 17.5147 9.24893C19.5147 9.24893 21.3775 9.8177 23.1422 10.6218L20.7892 13.0244C19.8382 12.387 18.7304 12.0242 17.5147 12.0242C14.2794 12.0242 11.6618 14.721 11.6618 17.9963C11.6618 19.2221 12.0245 20.3597 12.6422 21.2913L9.7402 24.2627ZM20.652 16.4273C20.8873 16.9274 21.0441 17.457 21.0441 18.0257H21.0833C21.0833 20.0263 19.4755 21.664 17.4853 21.664C16.9265 21.664 16.4069 21.4972 15.9167 21.2619L20.652 16.4273ZM14.3088 19.6242C14.0833 19.1241 13.9167 18.6239 13.9167 18.0257C13.9167 16.0252 15.5245 14.3875 17.4853 14.3875C18.0441 14.3875 18.5637 14.5542 19.0539 14.7896L14.3088 19.6242ZM17.4559 26.8026C15.4853 26.8026 13.5931 26.2338 11.8578 25.4296L14.25 22.9976C15.1912 23.6253 16.3088 23.9979 17.5147 23.9979C20.75 23.9979 23.3676 21.3305 23.3676 18.0257C23.3676 16.7901 23.0049 15.6624 22.3873 14.6915L25.2598 11.7594C28.6618 13.858 31.25 16.6921 32.3578 18.0257C30.5245 20.2322 24.4461 26.8026 17.4559 26.8026Z"
4
+ fill="var(--icon-color, #888)"/>
8
5
  </svg>
@@ -1,6 +1,12 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="19.581" height="14.786" viewBox="0 0 19.581 14.786">
2
- <g transform="translate(-0.5 -5)">
3
- <path d="M1.5,12.393S4.7,6,10.291,6s8.791,6.393,8.791,6.393-3.2,6.393-8.791,6.393S1.5,12.393,1.5,12.393Z" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
4
- <path d="M18.295,15.9a2.4,2.4,0,1,1-2.4-2.4A2.4,2.4,0,0,1,18.295,15.9Z" transform="translate(-5.607 -3.504)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
1
+ <svg width="35" height="35" viewBox="0 0 35 35" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_667_3469)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd"
4
+ d="M34.7539 17.1785C34.7656 17.1935 34.7746 17.2051 34.7809 17.2131C35.073 17.6095 35.073 18.1937 34.7809 18.5902C34.7759 18.5965 34.7693 18.605 34.761 18.6156C34.3178 19.182 29.1726 25.7579 22.1475 28.0313C20.6662 28.5112 19.0909 28.8033 17.4635 28.8033C15.7317 28.8033 14.0626 28.4694 12.4978 27.927C5.51863 25.5276 0.479881 18.9344 0.219076 18.5902C-0.0730253 18.1937 -0.0730253 17.6095 0.219076 17.2131C0.479881 16.8689 5.51863 10.307 12.4978 7.88674C14.0939 7.33383 15.7839 7 17.5365 7C19.1431 7 20.687 7.28167 22.1475 7.76155C29.157 9.99277 34.2661 16.5522 34.7539 17.1785ZM17.4635 26.5291C19.0805 26.5291 20.6662 26.1744 22.1475 25.611C27.0507 23.7437 30.9836 19.5499 32.4128 17.9016C31.0045 16.2429 27.0715 12.0179 22.1475 10.1714C20.687 9.61848 19.1326 9.27422 17.5365 9.27422C15.7839 9.27422 14.0939 9.68107 12.4978 10.3279C7.76155 12.2578 3.97466 16.2951 2.58718 17.9016C3.96423 19.5186 7.75112 23.5872 12.4978 25.5067C14.0626 26.1326 15.7317 26.5291 17.4635 26.5291ZM12.4977 14.9285C13.52 13.1967 15.3978 12.0388 17.5364 12.0388C19.4142 12.0388 21.0834 12.9359 22.1474 14.313C22.9299 15.304 23.3889 16.5559 23.3889 17.9016C23.3889 19.2474 22.9299 20.4993 22.1474 21.4903C21.0834 22.8674 19.4142 23.7645 17.5364 23.7645C15.3978 23.7645 13.52 22.6066 12.4977 20.8748C11.9761 19.9985 11.6735 18.9866 11.6735 17.9016C11.6735 16.8167 11.9761 15.8048 12.4977 14.9285ZM13.9477 17.8703C13.9477 19.8212 15.5752 21.4486 17.5364 21.4486C19.4872 21.4486 21.1147 19.8212 21.1147 17.8703C21.1147 15.9195 19.529 14.2921 17.5364 14.2921C15.5439 14.2921 13.9477 15.9195 13.9477 17.8703Z"
5
+ fill="var(--icon-color, #888)"/>
5
6
  </g>
7
+ <defs>
8
+ <clipPath id="clip0_667_3469">
9
+ <rect width="35" height="35" fill="white"/>
10
+ </clipPath>
11
+ </defs>
6
12
  </svg>
@@ -1,7 +1,11 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
2
- <g transform="translate(-1 -1)">
3
- <circle cx="6.667" cy="6.667" r="6.667" transform="translate(2.333 2.333)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.333"/>
4
- <path d="M6.06,6a2,2,0,0,1,3.887.667c0,1.333-2,2-2,2" transform="translate(1 1)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.333"/>
5
- <line x2="0.007" transform="translate(9 12.333)" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.333"/>
6
- </g>
1
+ <svg width="33" height="33" viewBox="0 0 33 33" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M16.5886 3.13778C9.11594 3.13778 3.05819 9.19553 3.05819 16.6681C3.05819 24.1408 9.11594 30.1985 16.5886 30.1985C24.0612 30.1985 30.1189 24.1408 30.1189 16.6681C30.1189 9.19553 24.0612 3.13778 16.5886 3.13778ZM0.705078 16.6681C0.705078 7.89594 7.81635 0.784668 16.5886 0.784668C25.3608 0.784668 32.472 7.89594 32.472 16.6681C32.472 25.4404 25.3608 32.5516 16.5886 32.5516C7.81635 32.5516 0.705078 25.4404 0.705078 16.6681Z"
4
+ fill="var(--icon-color, #888)"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd"
6
+ d="M13.3527 14.2849C13.3527 14.2844 13.3527 14.2839 12.1764 14.2563C11.0002 14.2286 11.0002 14.2281 11.0002 14.2275L11.0003 14.2264L11.0003 14.2237L11.0005 14.2169L11.0012 14.198L11.0039 14.1388C11.0064 14.0903 11.0106 14.0238 11.0176 13.9419C11.0314 13.7784 11.0564 13.5514 11.1014 13.2815C11.1904 12.7476 11.3624 12.0167 11.7003 11.2706C12.0382 10.5247 12.5615 9.72103 13.3741 9.10153C14.2029 8.4697 15.2686 8.07935 16.5885 8.07935V9.2559C16.5885 8.07935 16.5892 8.07935 16.5898 8.07935L16.5912 8.07935L16.5942 8.07936L16.6015 8.07941L16.6207 8.07966L16.6767 8.08117C16.7218 8.08277 16.782 8.08577 16.8554 8.09136C17.0018 8.1025 17.2026 8.12411 17.441 8.16619C17.9135 8.24956 18.5583 8.41764 19.2248 8.76237C20.6185 9.48326 21.9965 10.931 22.1744 13.5873C22.2643 14.8621 21.9789 15.8495 21.4288 16.6581C20.9421 17.3734 20.2784 17.8902 19.7606 18.2933C19.7346 18.3136 19.709 18.3335 19.6838 18.3532C19.1112 18.8 18.6751 19.1551 18.3469 19.6265C18.0422 20.0641 17.7946 20.6601 17.7645 21.6173L15.4126 21.5433C15.456 20.1621 15.8334 19.1183 16.4158 18.2819C16.9698 17.4862 17.6753 16.9357 18.2221 16.509L18.2362 16.498C18.8301 16.0346 19.2176 15.7249 19.4832 15.3344C19.7095 15.0019 19.8836 14.5488 19.827 13.7512L19.8266 13.7462H19.8267C19.7097 11.992 18.8821 11.2344 18.1437 10.8524C17.744 10.6457 17.3409 10.538 17.0321 10.4835C16.8798 10.4566 16.7567 10.4438 16.6767 10.4377C16.6369 10.4346 16.6084 10.4333 16.593 10.4328L16.5816 10.4325C15.7581 10.4338 15.2007 10.668 14.8007 10.9729C14.3835 11.2909 14.0722 11.7374 13.8438 12.2415C13.6155 12.7455 13.4897 13.2647 13.4225 13.6684C13.3893 13.8673 13.3716 14.0309 13.3622 14.1409C13.3576 14.1957 13.3551 14.2366 13.3538 14.2614L13.3526 14.2859L13.3526 14.2857L13.3527 14.2849ZM13.3526 14.2859L13.3526 14.287L13.3526 14.2883C13.3526 14.2886 13.3526 14.2878 13.3526 14.2859Z"
7
+ fill="var(--icon-color, #888)"/>
8
+ <path
9
+ d="M16.5888 26.4924C17.4985 26.4924 18.236 25.7549 18.236 24.8452C18.236 23.9355 17.4985 23.198 16.5888 23.198C15.6791 23.198 14.9417 23.9355 14.9417 24.8452C14.9417 25.7549 15.6791 26.4924 16.5888 26.4924Z"
10
+ fill="var(--icon-color, #888)"/>
7
11
  </svg>
@@ -1,6 +1,5 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="14" height="17.678" viewBox="0 0 14 17.678">
2
- <g transform="translate(1 0.734)">
3
- <path d="M10,8.5H2A2.066,2.066,0,0,1,0,6.377V0H12V6.377A2.066,2.066,0,0,1,10,8.5Z" transform="translate(0 7.44)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1.667"/>
4
- <path d="M0,5.846A5.681,5.681,0,0,1,5.5,0,5.681,5.681,0,0,1,11,5.846" transform="translate(0.5 0.266)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1.667"/>
5
- </g>
1
+ <svg width="33" height="34" viewBox="0 0 33 34" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M12.4764 2.40061C11.4908 2.40061 10.6917 3.2067 10.6917 4.20106V12.003H23.1844V4.20106C23.1844 3.2067 22.3853 2.40061 21.3997 2.40061H12.4764ZM25.5639 12.003V4.20106C25.5639 1.88088 23.6995 0 21.3997 0H12.4764C10.1766 0 8.31219 1.88088 8.31219 4.20106V12.003H2.06587C1.40878 12.003 0.876099 12.5404 0.876099 13.2033V32.7083C0.876099 33.3712 1.40878 33.9086 2.06587 33.9086H31.8102C32.4673 33.9086 33 33.3712 33 32.7083V13.2033C33 12.5404 32.4673 12.003 31.8102 12.003H25.5639ZM3.25565 14.4036V31.5079H30.6204V14.4036H3.25565Z"
4
+ fill="var(--icon-color, #888)"/>
6
5
  </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="34" height="36" viewBox="0 0 34 36" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M0.0913086 2.95962C0.0913086 1.49941 1.27044 0.315674 2.72498 0.315674H16.5518C18.0063 0.315674 19.1854 1.49941 19.1854 2.95962V8.2475C19.1854 8.9776 18.5959 9.56947 17.8686 9.56947C17.1413 9.56947 16.5518 8.9776 16.5518 8.2475V2.95962L2.72498 2.95962V33.365H16.5518V28.0771C16.5518 27.347 17.1413 26.7551 17.8686 26.7551C18.5959 26.7551 19.1854 27.347 19.1854 28.0771V33.365C19.1854 34.8252 18.0063 36.0089 16.5518 36.0089H2.72498C1.27044 36.0089 0.0913086 34.8252 0.0913086 33.365V2.95962ZM26.8137 12.2701C27.328 11.7539 28.1618 11.7539 28.676 12.2701L33.6142 17.2275C34.1284 17.7438 34.1284 18.5808 33.6142 19.0971L28.676 24.0545C28.1618 24.5707 27.328 24.5707 26.8137 24.0545C26.2995 23.5382 26.2995 22.7012 26.8137 22.1849L29.5039 19.4843H6.34628C5.61902 19.4843 5.02945 18.8924 5.02945 18.1623C5.02945 17.4322 5.61902 16.8403 6.34628 16.8403H29.5039L26.8137 14.1397C26.2995 13.6234 26.2995 12.7864 26.8137 12.2701Z"
4
+ fill="var(--icon-color, #888)"/>
5
+ </svg>
@@ -1,6 +1,5 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="18.039" height="14.203" viewBox="0 0 18.039 14.203">
2
- <g transform="translate(-1.607 -5)">
3
- <path d="M4.525,6h12.2a1.53,1.53,0,0,1,1.525,1.525v9.152A1.53,1.53,0,0,1,16.728,18.2H4.525A1.53,1.53,0,0,1,3,16.677V7.525A1.53,1.53,0,0,1,4.525,6Z" transform="translate(0 0)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
4
- <path d="M18.253,9l-7.627,5.339L3,9" transform="translate(0 -1.475)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
5
- </g>
1
+ <svg width="35" height="35" viewBox="0 0 35 35" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M0 6.2963C0 5.57712 0.577118 5 1.2963 5H33.7037C34.4229 5 35 5.57712 35 6.2963V28.9815C35 29.7007 34.4229 30.2778 33.7037 30.2778H1.2963C0.577118 30.2778 0 29.7007 0 28.9815V6.2963ZM2.59259 7.59259V11.1175L17.5 17.6433L32.4074 11.1175V7.59259H2.59259ZM32.4074 13.9498L18.015 20.2448C17.6865 20.3869 17.3047 20.3869 16.9762 20.2448L2.59259 13.9498V27.6852H32.4074V13.9498Z"
4
+ fill="var(--icon-color, #888)"/>
6
5
  </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="36" height="38" viewBox="0 0 36 38" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M18.1082 17.4543C22.0625 17.4543 25.268 14.2487 25.268 10.2944C25.268 6.34014 22.0625 3.13456 18.1082 3.13456C14.1539 3.13456 10.9483 6.34014 10.9483 10.2944C10.9483 14.2487 14.1539 17.4543 18.1082 17.4543ZM18.1082 20.0579C23.5004 20.0579 27.8716 15.6866 27.8716 10.2944C27.8716 4.90222 23.5004 0.530975 18.1082 0.530975C12.716 0.530975 8.34473 4.90222 8.34473 10.2944C8.34473 15.6866 12.716 20.0579 18.1082 20.0579Z"
4
+ fill="var(--icon-color, #888)"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd"
6
+ d="M7.36847 28.0155C5.03185 28.0155 3.13765 29.9097 3.13765 32.2463V36.4771C3.13765 37.1961 2.55481 37.7789 1.83585 37.7789C1.11689 37.7789 0.534058 37.1961 0.534058 36.4771V32.2463C0.534058 28.4718 3.59393 25.4119 7.36847 25.4119H28.8481C32.6226 25.4119 35.6825 28.4718 35.6825 32.2463V36.4771C35.6825 37.1961 35.0997 37.7789 34.3807 37.7789C33.6617 37.7789 33.0789 37.1961 33.0789 36.4771V32.2463C33.0789 29.9097 31.1847 28.0155 28.8481 28.0155H7.36847Z"
7
+ fill="var(--icon-color, #888)"/>
8
+ </svg>
@@ -1,8 +1,5 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
2
- <g transform="translate(1.29 2.499)">
3
- <circle cx="6.667" cy="6.667" r="6.667" transform="translate(1.21 0.001)" fill="none" stroke="var(--icon-color, #888)"
4
- stroke-linecap="round" stroke-linejoin="round" stroke-width="1.667"/>
5
- <line x1="3.625" y1="3.625" transform="translate(12.585 11.376)" stroke="var(--icon-color, #888)" stroke-linecap="round"
6
- stroke-linejoin="round" stroke-width="1.667"/>
7
- </g>
1
+ <svg width="33" height="33" viewBox="0 0 33 33" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M13.8605 2.47989C7.94662 2.47989 3.1525 7.27401 3.1525 13.1879C3.1525 19.1017 7.94662 23.8958 13.8605 23.8958C19.7743 23.8958 24.5684 19.1017 24.5684 13.1879C24.5684 7.27401 19.7743 2.47989 13.8605 2.47989ZM0.772949 13.1879C0.772949 5.95982 6.63243 0.100342 13.8605 0.100342C21.0885 0.100342 26.948 5.95982 26.948 13.1879C26.948 16.3551 25.8229 19.2596 23.9506 21.5234L32.5519 30.1967C33.0146 30.6632 33.0114 31.4166 32.5449 31.8793C32.0783 32.342 31.325 32.3388 30.8623 31.8722L22.2745 23.2126C19.9994 25.1241 17.0644 26.2754 13.8605 26.2754C6.63243 26.2754 0.772949 20.4159 0.772949 13.1879Z"
4
+ fill="var(--icon-color, #888)"/>
8
5
  </svg>
@@ -1,12 +1,8 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="17.244" height="17.225" viewBox="0 0 17.244 17.225">
2
- <g transform="translate(-73.567 -73.7)">
3
- <g transform="translate(73.567 73.7)">
4
- <path d="M92.7,88.8a6.426,6.426,0,0,1-.258.647,1.442,1.442,0,0,0-.189.653,1.088,1.088,0,0,0,.214.635,2.124,2.124,0,0,0,.22.24l.238.238a.186.186,0,0,1,.02.02c.008.008.053.071.03.031.01.016.02.031.028.047.037.061,0-.039.012.031,0,.018.01.035.014.053-.014-.059,0,.016,0,.03s-.008.085,0,.041-.012.043-.012.041-.02.053,0,.006a.6.6,0,0,1-.033.061c-.026.041.045-.043-.014.02a.161.161,0,0,0-.02.022l-.008.008c-.031.033-.065.065-.1.1l-.962.962-.358.358c-.01.01-.02.022-.031.031l-.006.006a.214.214,0,0,1-.022.02c-.026.024-.03.026-.008.006a.342.342,0,0,1-.035.022c-.014.008-.067.026-.018.01l-.053.016c-.077.024.031,0-.016,0-.024,0-.045,0-.067,0s-.053-.01,0,0a.4.4,0,0,1-.065-.018c-.045-.014.053.035-.018-.008-.01-.006-.077-.047-.033-.016a4.378,4.378,0,0,1-.407-.4,1.107,1.107,0,0,0-1.139-.271c-.214.079-.413.193-.62.273a2.581,2.581,0,0,0-.622.271,1.134,1.134,0,0,0-.452.938V94.4s-.008.085,0,.041-.016.053-.02.063c.016-.053-.016.026-.026.045-.031.063.035-.028-.016.022l-.035.035c-.037.037-.012.01,0,0a.744.744,0,0,1-.067.039c-.014.008-.049.014,0,0-.026.008-.051.014-.077.02.059-.012-.018,0-.039,0h-2.06a.534.534,0,0,1-.055,0c.055.006.012,0,0,0s-.089-.03-.028,0a.328.328,0,0,1-.045-.024.324.324,0,0,1-.043-.028c.051.033-.016-.018-.028-.028s-.041-.055-.01-.01a.324.324,0,0,1-.028-.043s-.033-.075-.018-.035-.01-.041-.01-.039-.008-.057,0,0a.5.5,0,0,1,0-.055v-.358a2.208,2.208,0,0,0-.008-.279,1.124,1.124,0,0,0-.254-.6,1.171,1.171,0,0,0-.537-.348c-.212-.075-.413-.153-.612-.246a1.388,1.388,0,0,0-.681-.187,1.088,1.088,0,0,0-.606.214,5.273,5.273,0,0,0-.48.458l-.022.022-.022.022c-.063.059.022-.012-.02.014a.607.607,0,0,1-.061.033c.047-.02,0,0-.006,0s-.094.018-.028.01c-.028,0-.053,0-.081,0s-.053-.01,0,0a.4.4,0,0,1-.065-.018c-.045-.014.053.035-.018-.008l-.047-.028c.037.024-.022-.02-.037-.035-.271-.266-.537-.537-.807-.807l-.474-.474-.14-.14-.03-.03,0,0c-.01-.012-.03-.03-.039-.043.031.043-.014-.031-.016-.033-.028-.049-.008-.018,0-.006-.008-.026-.016-.051-.022-.079.012.057,0-.035,0-.057,0-.073-.02.041.006-.03.006-.018.01-.035.016-.053-.016.049,0,0,.01-.018a.34.34,0,0,1,.022-.035c-.016.018-.018.02,0,0,.055-.065.122-.124.183-.185a1.632,1.632,0,0,0,.5-.7,1.078,1.078,0,0,0-.026-.659c-.083-.222-.2-.425-.281-.641a2.35,2.35,0,0,0-.26-.588,1.156,1.156,0,0,0-.539-.4,2.277,2.277,0,0,0-.75-.057h-.153c-.014,0-.055-.01,0,0-.026-.006-.051-.012-.077-.02.059.018-.012-.006-.024-.012a.323.323,0,0,1-.043-.028c.043.03.01.008,0,0s-.035-.035-.053-.055c.035.043-.014-.03-.024-.047-.035-.061,0,.045-.008-.026,0-.014-.016-.09-.01-.026a3.307,3.307,0,0,1,0-.342v-.689c0-.362-.006-.726,0-1.088v-.006s.008-.085,0-.041.012-.039.012-.037c.008-.047,0-.02,0,0,.008-.02.02-.037.03-.057s.041-.057.006-.014a.7.7,0,0,1,.053-.055c.053-.055-.028.016.01-.008.018-.012.037-.022.055-.031s.049-.014,0,0l.063-.018c.045-.012-.067,0,.014,0h.063a4.648,4.648,0,0,0,.641-.014,1.109,1.109,0,0,0,.58-.266,1.171,1.171,0,0,0,.332-.537,6.069,6.069,0,0,1,.256-.628,1.307,1.307,0,0,0,.171-.663,1.143,1.143,0,0,0-.258-.651c-.057-.069-.124-.13-.187-.195s-.155-.153-.232-.232l-.016-.016a.411.411,0,0,1-.039-.043c.028.037,0,0,0-.01s-.035-.077-.022-.039-.012-.047-.012-.043c-.016-.051,0-.018,0,0,0-.028,0-.053,0-.081,0-.073-.02.041.006-.03.006-.018.01-.035.016-.053-.02.061.053-.087.02-.039a.631.631,0,0,1,.049-.053c.033-.035.069-.069.1-.1l.439-.439.877-.877.029-.03,0,0s.067-.055.035-.031c-.014.012-.008.01.016-.008a.387.387,0,0,1,.049-.026c-.049.022.041-.008.059-.012-.063.014.018,0,.03,0a.481.481,0,0,1,.053,0c-.077-.008.1.037.035.01.018.008.033.018.049.026.061.03-.018-.026.031.022.134.126.258.26.39.388a1.1,1.1,0,0,0,1.163.256c.222-.087.425-.2.643-.283a2.107,2.107,0,0,0,.63-.3,1.134,1.134,0,0,0,.393-.9v-.456a.411.411,0,0,1,0-.049c0-.045-.022.059,0-.014,0-.014.028-.087,0-.028a.328.328,0,0,1,.024-.045s.045-.067.02-.033.028-.03.028-.028a.3.3,0,0,1,.037-.033c-.043.037,0,0,.014-.006s.037-.022.057-.03c-.069.03.106-.014.028-.006.043,0,.087,0,.128,0h2.02c.057,0,.014,0,0,0a.592.592,0,0,1,.063.016c.045.012-.055-.033.014,0,.014.008.03.018.045.026.067.035-.022-.022.012.008s.043.041.063.063c-.035-.043.014.03.024.047.035.061,0-.045.008.026a.39.39,0,0,0,.012.051c-.014-.059,0,.018,0,.031v.374a2.194,2.194,0,0,0,.018.34,1.1,1.1,0,0,0,.27.551,1.215,1.215,0,0,0,.545.329,6.267,6.267,0,0,1,.628.258,1.253,1.253,0,0,0,.661.161,1.131,1.131,0,0,0,.649-.268c.15-.126.279-.275.417-.411l.012-.012s.067-.055.035-.031.045-.026.041-.022.051-.018.006,0a.4.4,0,0,1,.065-.018c.045-.012-.065,0,.016,0,.028,0,.053,0,.081,0-.073-.008.075.026.043.014s.1.059.049.024a.63.63,0,0,1,.053.049c.1.1.2.2.3.3l.988.988.136.136.026.026a.267.267,0,0,0,.024.024c.008.008.03.045.006.008a.534.534,0,0,1,.041.073c-.028-.063.016.112.01.035a.479.479,0,0,1,0,.053s-.008.085,0,.041-.037.11-.01.047a.608.608,0,0,1-.033.061c-.012.018-.01.016.006,0a.411.411,0,0,1-.039.043c-.055.057-.11.11-.167.167a1.547,1.547,0,0,0-.5.718,1.091,1.091,0,0,0,.053.681c.09.216.193.411.275.626a2.034,2.034,0,0,0,.3.624,1.078,1.078,0,0,0,.512.334,2.448,2.448,0,0,0,.74.047h.1c.022,0,.041,0,.063,0-.055-.006-.012,0,0,0l.051.014c-.026-.012-.03-.014-.01-.006s.1.067.059.03l.047.043c.012.012.041.055.01.01a.323.323,0,0,1,.028.043s.033.075.018.035.01.041.01.039c.02.055,0-.037,0,.028V87.4c0,.12,0,.24,0,.358a.319.319,0,0,1,0,.043c0,.045.022-.059,0,.014a.388.388,0,0,0-.014.051c.016-.053,0,0-.006.012s-.022.037-.033.055c.008-.012.037-.037,0,0a.7.7,0,0,1-.055.053c.043-.037,0,0-.014.006s-.037.022-.057.03c.069-.03-.083.014-.041.008s-.041,0-.045,0h-.049a4.858,4.858,0,0,0-.586.008,1.133,1.133,0,0,0-.933.761.3.3,0,0,0,.207.364.3.3,0,0,0,.364-.207c.029-.083-.03.043.012-.031.008-.016.016-.031.026-.047s.024-.037.037-.057c.028-.039-.045.043.012-.014l.037-.039s.063-.055.03-.03.037-.026.035-.024a.775.775,0,0,1,.069-.039c.071-.041-.031.01.016-.008.022-.008.041-.016.063-.022a.527.527,0,0,0,.053-.014c.081-.02-.033,0,.016,0s.081,0,.122,0a3.079,3.079,0,0,0,.687-.026.87.87,0,0,0,.647-.842c0-.136,0-.271,0-.407V85.938a1.92,1.92,0,0,0-.026-.451.875.875,0,0,0-.864-.647h-.5c-.016,0-.118-.012-.059,0-.045-.008-.087-.022-.13-.033s-.016-.006,0,0c-.024-.012-.047-.024-.071-.037l-.045-.03c-.069-.045.024.022-.014-.012-.016-.016-.033-.03-.047-.045s-.057-.069-.024-.022a1.018,1.018,0,0,1-.071-.116c0-.008-.022-.051,0-.006-.01-.026-.018-.053-.028-.079-.041-.122-.089-.244-.138-.362s-.1-.228-.148-.34c-.026-.055-.053-.11-.079-.165s-.01-.024-.006-.012a.845.845,0,0,1-.029-.1c0-.014-.01-.075-.006-.024,0-.02,0-.039,0-.059s0-.049,0-.073c0-.053-.018.065,0-.022a.71.71,0,0,1,.041-.14c-.006.016-.02.033.008-.01.016-.026.03-.051.045-.075.045-.069-.031.024.028-.033a.223.223,0,0,1,.022-.022L93.011,83l.1-.1c.077-.077.155-.153.232-.232a.869.869,0,0,0,.118-1.106,2.508,2.508,0,0,0-.3-.319l-1-1c-.089-.089-.175-.177-.264-.264a.873.873,0,0,0-1.175-.041c-.146.122-.273.271-.409.405l-.03.03c-.059.059.035-.018-.033.028-.016.012-.033.022-.049.031.006,0-.079.041-.043.024s-.051.018-.047.016c-.018.006-.037.012-.055.016s-.087.012-.035.008a.9.9,0,0,1-.146,0c.053,0-.01,0-.024-.006l-.071-.02c-.049-.012-.029-.008-.014,0-.026-.01-.051-.026-.077-.037l-.183-.087c-.234-.106-.474-.189-.714-.281.045.018,0,0-.006,0l-.071-.039-.045-.03c.041.03,0,0,0,0s-.037-.037-.057-.057-.037-.043,0,0a.69.69,0,0,1-.083-.138c.026.051-.016-.051-.02-.069a.67.67,0,0,1-.014-.067c0,.014,0,.055,0,0,0-.037,0-.077,0-.114v-.344a1.244,1.244,0,0,0-.033-.362.863.863,0,0,0-.4-.51,1.123,1.123,0,0,0-.576-.112H85.608a.884.884,0,0,0-.779.421,1.5,1.5,0,0,0-.12.8v.159a.333.333,0,0,1,0,.043.293.293,0,0,1,0,.041c0-.033,0-.031,0,0a1.124,1.124,0,0,1-.033.116c-.018.045.033-.057-.008.016-.008.016-.016.031-.026.047a.5.5,0,0,1-.045.067c.01-.012.033-.035,0,0-.012.012-.024.026-.037.037l-.039.035q.032-.024.006-.006a1.13,1.13,0,0,1-.1.063c-.073.039.047-.012-.031.012l-.071.024c-.116.041-.232.085-.344.132s-.25.106-.374.163c-.049.024-.1.049-.146.071s.059-.014-.028.01c-.03.008-.057.016-.087.022-.087.022.03,0-.024,0-.024,0-.049,0-.073,0a.519.519,0,0,1-.057,0c.053,0-.008,0-.022,0a.9.9,0,0,1-.124-.037c.053.024-.033-.02-.035-.022a.446.446,0,0,1-.075-.049c.035.028-.033-.033-.033-.033l-.02-.02L82.75,80.2a1.333,1.333,0,0,0-.683-.47.908.908,0,0,0-.814.283l-.917.917-.415.415a1,1,0,0,0-.332.637.868.868,0,0,0,.228.641c.055.061.116.116.173.173l.214.214.047.049c-.026-.03,0,.006.008.012.016.026.03.051.045.075,0,.006.026.051.008.01a.406.406,0,0,1,.024.069l.018.071c.014.059,0-.03,0,.037,0,.02,0,.039,0,.059,0,0-.01.1,0,.037a.72.72,0,0,1-.033.128c-.018.051.031-.059-.01.028-.01.022-.022.043-.031.065-.031.067-.063.132-.092.2-.049.112-.1.226-.144.342-.022.057-.043.114-.065.173a.709.709,0,0,1-.026.069l-.024.071c-.012.03-.014.035-.006.016.016-.037-.022.043-.02.039-.008.016-.018.031-.028.047,0,0-.049.067-.024.035s-.031.033-.03.031-.026.024-.037.037c-.053.057.041-.024-.024.02a1.115,1.115,0,0,1-.116.067c.057-.028-.022.006-.03.01s-.035.01-.051.014l-.053.012c.065-.012-.022,0-.031,0-.031,0-.063,0-.092,0a2.464,2.464,0,0,0-.712.037.875.875,0,0,0-.61.834c-.006.386,0,.773,0,1.161v.677A1.615,1.615,0,0,0,78.1,88a.879.879,0,0,0,.868.622h.488l.055,0c.069,0-.03-.012.03,0a1.086,1.086,0,0,1,.13.039c-.051-.02,0,0,.014.01a.54.54,0,0,1,.057.033l.043.03c-.043-.033,0,0,.012.014l.047.047c.053.051-.02-.037.02.026.024.039.047.077.067.118-.02-.045,0,0,0,.006.01.035.024.071.035.1.041.116.085.23.134.344s.1.228.15.338c.026.053.055.1.077.159-.018-.041,0,.018.008.028a.923.923,0,0,1,.024.1c0-.014,0-.049,0,.008,0,.024,0,.049,0,.073s-.006.075,0,.022c0,.02-.008.037-.012.057a.7.7,0,0,1-.02.069c0,.012-.03.067-.008.024a.424.424,0,0,1-.028.051c-.008.014-.051.077-.043.067s-.035.037-.039.041a.311.311,0,0,1-.026.026l-.11.11-.224.224a.869.869,0,0,0-.057,1.171c.075.092.167.173.25.258l.494.494c.256.256.506.515.765.765A.873.873,0,0,0,82.5,93.5c.138-.124.26-.264.391-.392,0,0,.061-.057.041-.039s.049-.033.043-.03l.051-.03c.069-.043-.041.008.035-.018l.055-.018c.02-.006.037-.01.057-.014.035-.006.037-.006.008,0a.319.319,0,0,1,.043,0h.073c.057,0,.024,0,.008,0a.907.907,0,0,1,.144.037c-.039-.014.006,0,.012.006l.1.047.167.077c.124.055.25.108.376.157.051.02.1.039.155.057.03.01.059.02.087.031,0,0,.1.037.041.012a1.007,1.007,0,0,1,.118.067c.047.03.014.012,0,0a.8.8,0,0,1,.094.094c-.033-.037,0-.006,0,0s.029.045.041.067.037.083.016.026a.792.792,0,0,1,.035.116c0,.016.01.073.006.016a.518.518,0,0,1,0,.055c0,.035,0,.071,0,.106v.34a1.187,1.187,0,0,0,.041.372.85.85,0,0,0,.415.5,1.186,1.186,0,0,0,.571.1h.633c.411,0,.822,0,1.234,0a.878.878,0,0,0,.793-.456,1.676,1.676,0,0,0,.1-.789v-.155c0-.024,0-.045,0-.069-.006.053,0-.012.008-.03s.01-.035.014-.051.037-.087.01-.03a1.091,1.091,0,0,1,.059-.1c.008-.012.045-.055.01-.014.012-.014.024-.028.035-.039a.537.537,0,0,1,.049-.045c.016-.014.014-.012-.008,0a.358.358,0,0,1,.045-.03c.016-.01.031-.02.047-.028,0,0,.077-.035.039-.02s.067-.022.051-.018l.071-.024c.122-.043.242-.091.362-.14s.238-.1.356-.157c.022-.01.043-.022.067-.031-.006,0,.1-.041.045-.022a.7.7,0,0,1,.144-.037c-.061.01.033,0,.037,0H90c.057,0,.024,0,.008,0,.029,0,.057.012.085.018l.055.018c.085.028-.024-.014.024.01l.065.035s.069.053.035.024c.069.061.132.13.2.195s.142.144.212.212a.869.869,0,0,0,1.277-.045l.388-.388.948-.948a.977.977,0,0,0,.325-.655.874.874,0,0,0-.252-.635c-.057-.059-.116-.116-.173-.173s-.132-.13-.2-.2a.539.539,0,0,1-.045-.049c.033.039-.024-.035-.024-.035-.01-.016-.02-.033-.03-.051-.045-.075.006.026-.012-.024a.7.7,0,0,1-.022-.069.484.484,0,0,1-.014-.057c-.02-.087,0,.03,0-.022a.953.953,0,0,1,0-.13c-.006.061.008-.033.008-.037,0-.02.012-.037.016-.057.024-.087-.012.022.01-.028.012-.028.026-.053.039-.079.024-.049.047-.1.071-.15.1-.23.2-.466.279-.7a.3.3,0,0,0-.207-.364A.33.33,0,0,0,92.7,88.8Z" transform="translate(-77.978 -78.111)" fill="var(--icon-color, #888)"/>
5
- <path d="M82.774,90.925H81.319a1.264,1.264,0,0,1-.611-.11.933.933,0,0,1-.459-.547,1.257,1.257,0,0,1-.046-.4v-.34c0-.012,0-.025,0-.037s0-.044,0-.064v0s0-.008,0-.012a.171.171,0,0,1,0-.019c0-.006,0-.014,0-.019-.006-.026-.013-.051-.02-.074l-.007-.013-.011-.023-.005-.012c-.008-.014-.018-.03-.028-.046l-.009-.013,0,0,0,0,0,0h0l0,0-.025-.026-.029-.028-.01-.008-.026-.016c-.018-.011-.036-.022-.054-.032l-.037-.012-.029-.012h0c-.024-.01-.051-.019-.08-.029-.049-.017-.1-.036-.159-.058-.12-.047-.248-.1-.38-.159l-.169-.077-.051-.024-.048-.023-.006,0-.008,0a.812.812,0,0,0-.111-.029h-.1l-.013,0-.046.011-.028.009-.026.008-.006,0-.01.007,0,0-.044.025,0,0-.028.02-.01.006-.033.031c-.053.051-.1.105-.156.158-.076.079-.154.16-.238.236a.959.959,0,0,1-1.315-.024c-.174-.167-.346-.342-.512-.51l-.254-.256-.494-.494-.08-.079a2.146,2.146,0,0,1-.176-.186.954.954,0,0,1,.063-1.288l.335-.335.011-.01.008-.008.007-.007.009-.01.02-.022,0,0,.011-.016.024-.037,0,0,.013-.022.006-.016.008-.019c.007-.018.012-.038.017-.059l.005-.022,0-.012h0c0-.008,0-.019,0-.024v-.007a.382.382,0,0,0,0-.039c0-.008,0-.017,0-.025v0c0-.026-.011-.053-.019-.079a.3.3,0,0,1-.014-.042c-.012-.027-.025-.053-.039-.081l-.027-.055c-.046-.1-.095-.205-.152-.343-.044-.1-.087-.214-.135-.348l-.009-.024c-.01-.027-.02-.056-.029-.086l0-.009c-.013-.025-.027-.049-.043-.074l-.011-.019,0-.006,0,0-.048-.048-.013-.012-.005,0h0l-.023-.015a.456.456,0,0,0-.046-.027l-.008,0-.016-.008-.007,0c-.022-.007-.045-.014-.069-.02l-.027-.007h-.549a.972.972,0,0,1-.953-.685,1.386,1.386,0,0,1-.037-.411c0-.024,0-.047,0-.07v-.677q0-.194,0-.387c0-.254,0-.517,0-.775a.963.963,0,0,1,.673-.917,1.755,1.755,0,0,1,.575-.045c.057,0,.111,0,.163,0h.09l.019,0,.021,0h0l.03-.007.029-.008a.33.33,0,0,1,.054-.022c.026-.014.051-.03.077-.047l0,0v0c.011-.012.021-.022.03-.031l.01-.01h0l.02-.024.014-.019.007-.009c.008-.013.016-.026.022-.037v0l.013-.028.006-.013,0-.005.026-.077c.008-.017.015-.038.022-.06v0c.022-.059.044-.117.065-.174.047-.12.1-.237.145-.346.023-.052.047-.1.071-.153l.023-.048.017-.034.014-.03,0,0,0-.015a.8.8,0,0,0,.026-.089.4.4,0,0,1,0-.042v-.014a.238.238,0,0,0,0-.028c0-.008,0-.015,0-.023s0-.007,0-.01l0-.007-.017-.069a.341.341,0,0,0-.011-.034l-.006-.011,0-.008c-.01-.016-.02-.032-.029-.047l-.015-.025-.007-.009h0l-.015-.016-.022-.023-.214-.214-.057-.055c-.04-.038-.081-.078-.12-.121a.959.959,0,0,1-.251-.708,1.092,1.092,0,0,1,.358-.693l1.332-1.332a.993.993,0,0,1,.892-.308,1.253,1.253,0,0,1,.67.434l.06.061.136.136.021.019.02.02a.4.4,0,0,0,.049.03l.012.006.008,0,.024.013a.9.9,0,0,0,.09.026l.016,0,.022,0h.025c.022,0,.045,0,.065,0H78.9l.065-.016.016,0,.008,0,.007,0c.029-.013.057-.027.087-.042l.056-.028c.147-.068.267-.12.379-.165s.208-.084.348-.133l.075-.025.012,0,0,0a1.049,1.049,0,0,0,.095-.057l.005,0,.022-.02.019-.019.013-.014.007-.007a.472.472,0,0,0,.028-.044v0c.008-.012.014-.026.021-.04l0,0,0,0h0a1.022,1.022,0,0,0,.029-.1l0-.01,0-.01s0,0,0,0v-.011a.256.256,0,0,0,0-.032v-.159c0-.037,0-.074,0-.111a1.334,1.334,0,0,1,.134-.74A.977.977,0,0,1,81.2,73.7h1.879a1.215,1.215,0,0,1,.62.123.947.947,0,0,1,.441.562,1.251,1.251,0,0,1,.037.368v.362c0,.037,0,.074,0,.109h0c0,.02.007.036.011.051v0l.012.033a.373.373,0,0,1,.013.041.6.6,0,0,0,.048.081l0,0,.008.009.018.017.038.038,0,0,.007,0,.019.013.032.018.037.02.01,0,.182.069c.172.064.349.13.521.209h0l.09.043.093.044.033.017.025.013.014,0,.04.011.032.009h0l.023,0,.01,0a.809.809,0,0,0,.087,0l.013,0,.025,0h.005l.046-.013h0l.013,0,.027-.01h0l.032-.016.014-.008.029-.018,0,0,.01-.006.009-.01.03-.03c.046-.045.092-.093.136-.14a3.535,3.535,0,0,1,.279-.271.966.966,0,0,1,1.293.045c.06.058.119.118.176.176l.088.089,1,1,.061.06a1.954,1.954,0,0,1,.244.27A.953.953,0,0,1,89,78.315c-.051.053-.1.105-.156.156l-.076.076-.134.133,0,0-.01.011-.009.009-.007.011c-.009.013-.017.027-.025.041l-.019.031-.007.012a.685.685,0,0,0-.03.109h0s0,0,0,.007v0c0,.019,0,.04,0,.061s0,.02,0,.029v0l0,.009c0,.007,0,.016,0,.022v0a.728.728,0,0,0,.024.082v0l0,.007v0l.039.082.04.083c.049.107.1.222.149.344s.1.251.139.366c.005.013.01.027.014.041l.006.018,0,0,0,.011c.015.028.03.055.047.081a.359.359,0,0,1,.036.04l.019.018.021.02,0,0,.021.014.019.013.052.028h0l.033.009.063.017h.009l.027,0,.032,0h.495a.96.96,0,0,1,.95.715,1.576,1.576,0,0,1,.029.392c0,.026,0,.053,0,.079v1.413q0,.068,0,.135c0,.089,0,.182,0,.273a.954.954,0,0,1-.715.927,2.124,2.124,0,0,1-.541.031c-.058,0-.112,0-.166,0-.037,0-.072,0-.107,0l-.006,0c-.02.006-.039.011-.056.015l-.04.014-.013,0,0,0-.005,0a.688.688,0,0,0-.06.035l-.009.007-.014.01-.028.025h0l-.015.016-.02.021,0,0h0c-.014.02-.024.036-.034.052s-.015.027-.022.041l0,0h0l-.006.018a.473.473,0,0,1-.033.072c-.072.2-.157.413-.251.621-.024.052-.048.1-.072.151l0,0c-.013.025-.026.048-.036.072l0,.008,0,.006c0,.013-.006.024-.01.035l0,.016c0,.006,0,.015,0,.029s0,.019-.005.029c0,.028,0,.058,0,.091,0,0,0,0,0,.007h0a.424.424,0,0,0,.011.046l0,.007a.608.608,0,0,0,.019.06v0l0,.006,0,0,.025.044.015.02.015.023.027.028c.044.045.088.089.131.131l.066.066.057.057c.039.038.078.077.117.118a.96.96,0,0,1,.277.7,1.057,1.057,0,0,1-.35.713L87.6,89.079a.976.976,0,0,1-.815.324,1,1,0,0,1-.586-.278c-.048-.046-.1-.1-.143-.142l-.071-.071-.059-.06c-.039-.04-.076-.078-.115-.114a.223.223,0,0,1-.049-.035l-.053-.029,0,0-.006,0-.05-.016-.024-.005-.031-.007h-.08a.355.355,0,0,1-.041,0,.618.618,0,0,0-.083.022l-.015.007-.029.013-.015.006-.011-.026a.088.088,0,0,0,.05.006l-.03-.078-.043.017.012.031L85.3,88.61h0l.017.05.007,0,.01.028-.036.017-.029.014c-.138.064-.252.115-.359.159-.141.058-.257.1-.366.141l-.072.024a.453.453,0,0,1-.05.019h0l-.028.013h0l-.038.022-.008,0-.013.008,0,0-.007.006a.463.463,0,0,0-.041.038l-.018.019-.016.02c-.015.023-.029.048-.043.075l-.006.015-.008.02-.005.019c0,.008,0,.017-.007.025s0,.014,0,.023,0,.012,0,.017,0,.026,0,.039v.155c0,.039,0,.077,0,.116a1.467,1.467,0,0,1-.111.713.965.965,0,0,1-.871.5ZM80.38,89.419c0,.026,0,.051,0,.075s0,.023,0,.034v.34a1.1,1.1,0,0,0,.037.345.765.765,0,0,0,.37.444,1.1,1.1,0,0,0,.531.091h1.045c.269,0,.548,0,.822,0a.789.789,0,0,0,.714-.408,1.313,1.313,0,0,0,.092-.631c0-.039,0-.079,0-.118v-.155c0-.024,0-.046,0-.068,0,0,0-.007,0-.011h0l0-.009c0-.011,0-.024.006-.03s.006-.024.009-.036l0-.018a.3.3,0,0,1,.016-.042l0,0h0l0-.007A1.161,1.161,0,0,1,84.1,89.1l.017-.023h0l.01-.011,0,0,.026-.028a.652.652,0,0,1,.053-.049h0l.01-.007.007,0,.013-.009,0-.005.078-.039h0l0,.006,0,0,0,0,.019-.009.021-.011a.134.134,0,0,1,.03-.009l.02-.007-.012.006a.09.09,0,0,1,.023,0l0-.011.071-.024c.1-.037.219-.081.356-.138.1-.043.216-.092.352-.156l.025-.012.046-.021h0l.016-.008.031-.014v0a.787.787,0,0,1,.162-.042v0l.029,0,.022,0H85.6v0h.012a.133.133,0,0,1,.03.006l.027.006.024.005.007,0,.055.018a.162.162,0,0,1,.038.011.1.1,0,0,1,.035.024l.044.024.006.006.031.023a.08.08,0,0,0-.035-.012l-.022.022a.088.088,0,0,1-.005.028.078.078,0,0,1-.054.053l-.01.019a.08.08,0,0,0,.014.022l.117-.132h0l0,0c.05.044.1.092.141.138l.057.058.071.072c.046.047.094.095.14.14a.812.812,0,0,0,.484.229.821.821,0,0,0,.668-.274l1.336-1.336a.88.88,0,0,0,.3-.6.783.783,0,0,0-.227-.57c-.037-.038-.076-.077-.114-.114l-.058-.057-.066-.065c-.043-.043-.088-.087-.132-.133a.6.6,0,0,1-.052-.057h0l-.026-.035,0-.007c-.01-.015-.019-.032-.028-.047a.14.14,0,0,1-.024-.036.1.1,0,0,1-.01-.045c0-.013-.008-.026-.011-.037a.547.547,0,0,1-.014-.059.161.161,0,0,1-.011-.041.1.1,0,0,1,0-.046c0-.029,0-.056,0-.081,0-.005,0-.01,0-.015h0c0-.01,0-.026.005-.034v0l0-.009a.352.352,0,0,1,.01-.038c0-.008,0-.014.005-.019v-.006h0a.153.153,0,0,1,.008-.036.1.1,0,0,1,.02-.034c.009-.018.018-.035.027-.052.023-.048.046-.1.069-.146.053-.118.1-.236.15-.353a.412.412,0,0,1-.172,0,.374.374,0,0,1-.206-.139c-.051.132-.1.254-.159.374a1.371,1.371,0,0,0-.181.614,1,1,0,0,0,.2.584,2.058,2.058,0,0,0,.211.23l.242.242a.19.19,0,0,1,.022.022l.019.024.013.017a.082.082,0,0,0-.044-.025l-.056.042.044-.044a.088.088,0,0,0-.09.121l.028-.017a.083.083,0,0,1,.061-.061.091.091,0,0,1,.042,0l.02-.012.018.03a.1.1,0,0,1,.032.045.1.1,0,0,1,.007.054c0,.01.006.021.008.031h0v0a.332.332,0,0,1,0,.043v.02a.159.159,0,0,1-.012.072l0,.009h0a.171.171,0,0,1-.006.022h0l-.007.015h0l0,.008-.005.01a.092.092,0,0,1-.019.044.151.151,0,0,1-.029.03h0l-.011.012-.008.01-.007.007c-.022.023-.045.046-.067.067l-.033.032-1.32,1.32-.008.008a.347.347,0,0,1-.026.026l0,0a.311.311,0,0,1-.027.024.145.145,0,0,1-.059.038h0l-.032.014v0l-.031.009h-.005a.132.132,0,0,1-.051.019.1.1,0,0,1-.056,0h-.021a.165.165,0,0,1-.052-.007.1.1,0,0,1-.046-.009.139.139,0,0,1-.043-.028l-.027-.016,0,0-.005,0A2.232,2.232,0,0,1,86.4,88.5c-.045-.048-.087-.094-.131-.137a1.015,1.015,0,0,0-1.047-.251c-.111.041-.221.093-.327.143s-.192.091-.291.13c-.058.023-.117.043-.174.063a1.558,1.558,0,0,0-.427.2,1.052,1.052,0,0,0-.417.867v.568h-.014l0,0a.424.424,0,0,1-.012.041l0,0-.01.023h0a.1.1,0,0,1-.022.058.107.107,0,0,1-.045.036l-.015.015-.013.013h0l-.007.006h0a.108.108,0,0,1-.044.025l-.026.014a.147.147,0,0,1-.059.018l-.03.007-.013,0v0h-.007l-.049,0H81.206v.01l-.088-.01-.026,0h0l-.018,0-.014,0-.016-.005,0,0a.337.337,0,0,1-.052-.026l0,0a.413.413,0,0,1-.052-.033l0,0-.021-.016-.015-.012-.006-.005-.019-.022h0a.4.4,0,0,1-.035-.055l0,0,0-.011h0l0-.006a.152.152,0,0,1-.011-.023.131.131,0,0,1-.009-.038l0-.005a.147.147,0,0,1,0-.019h0l0-.027-.01-.087h.01v-.307c0-.019,0-.037,0-.056a1.572,1.572,0,0,0-.007-.212,1.031,1.031,0,0,0-.234-.553,1.068,1.068,0,0,0-.5-.321c-.236-.083-.433-.162-.62-.249a1.325,1.325,0,0,0-.639-.179,1,1,0,0,0-.557.2,2.957,2.957,0,0,0-.33.308c-.046.047-.093.1-.142.143l-.044.044a.15.15,0,0,1-.03.029.092.092,0,0,1-.044.019l-.012.006-.022.01h0l-.018.006-.018,0-.021,0v0l-.026,0h-.065a.167.167,0,0,1-.052-.007.1.1,0,0,1-.046-.009.139.139,0,0,1-.042-.028l-.011-.006-.026-.015h0l.014-.022a.1.1,0,0,1,0-.051.093.093,0,0,1,.063-.055l.014-.022a.088.088,0,0,0-.1.145l-.013-.011c-.017-.013-.029-.023-.038-.032-.181-.177-.362-.36-.538-.537l-.269-.27-.653-.653-.011-.012-.013-.013a.166.166,0,0,1-.018-.021l0,0,.032-.023h0l.095-.068h0l.015-.011-.013-.01v0h0l-.011,0v0l-.033.011-.025.014.009-.009-.063.02,0,0,0,0-.027.009h0a.084.084,0,0,0,.026.025.077.077,0,0,0,.008.034l-.015-.026,0,0-.006-.011a.154.154,0,0,1-.026-.073c0-.011-.006-.022-.008-.033v0l.021,0,0-.006h0a.09.09,0,0,1-.017-.018.072.072,0,0,0,0,.025c0-.006,0-.022,0-.036A.113.113,0,0,1,75.7,86.9l.008-.026h0a.293.293,0,0,1,.014-.031l0-.006a.126.126,0,0,1,.019-.034h0l.006-.007a1.863,1.863,0,0,1,.131-.135l.056-.055.036-.035a1.458,1.458,0,0,0,.443-.629.989.989,0,0,0-.023-.6c-.042-.112-.093-.222-.143-.327s-.1-.206-.138-.314c-.019-.049-.036-.1-.053-.146a1.542,1.542,0,0,0-.2-.421,1.068,1.068,0,0,0-.5-.367,1.673,1.673,0,0,0-.576-.054l-.144,0h-.153l-.021,0h0l-.022,0-.01,0-.051-.014v0l-.038-.015-.026-.015a.145.145,0,0,1-.023-.016l-.006,0h0l-.012-.011-.046-.048-.013-.014.02-.017a.09.09,0,0,1-.026-.01.072.072,0,0,0,.007.021l-.016-.026v0a.107.107,0,0,1-.036-.051.1.1,0,0,1,0-.061h-.005a1.871,1.871,0,0,1,0-.247c0-.035,0-.071,0-.1v-.689c0-.12,0-.241,0-.362,0-.239,0-.485,0-.728v-.1h.014v0h0l0-.013h0s0-.011,0-.014a.091.091,0,0,1,.027-.048l0-.005a.209.209,0,0,1,.018-.03h0a.544.544,0,0,1,.047-.05.148.148,0,0,1,.034-.037.1.1,0,0,1,.05-.022h0l.013-.007a.157.157,0,0,1,.037-.015.1.1,0,0,1,.046-.018.145.145,0,0,1,.055,0h.044l.167,0a2.982,2.982,0,0,0,.462-.015,1.021,1.021,0,0,0,.535-.245,1.079,1.079,0,0,0,.306-.5,6.16,6.16,0,0,1,.26-.637,1.238,1.238,0,0,0,.163-.619,1.058,1.058,0,0,0-.238-.6c-.036-.044-.078-.085-.122-.129l-.06-.06-.076-.075-.095-.094v.313l-.155-.5,0-.007v0a.132.132,0,0,1-.007-.028l-.006-.02-.007-.022h0v-.01l-.021-.085.013,0a.126.126,0,0,1,0-.02.1.1,0,0,1,.024-.054l.008-.026.019.006.008,0,0,.007.022.007h0l.063.021h0l.026.009h0l.022.007h0l.007,0a.066.066,0,0,0,0-.008l.007-.007-.007-.005v0l-.109-.076h0l-.028-.019h0a.335.335,0,0,1,.04-.045l.015-.015,0,0c.024-.025.048-.049.071-.072l.033-.033,1.35-1.35.008.008,0-.011,0,0,.017-.014.015-.014,0,0a.128.128,0,0,1,.03-.017.491.491,0,0,1,.052-.026h0l.006.015a.1.1,0,0,1,.02-.014H77.38l.033-.009.014,0,.021-.006v0h.007l.041,0a.559.559,0,0,1,.063,0l0,.028h0l-.016.144h0v0h0l0,0,0,0h0l.012-.027h0l.007-.016h0l.029-.065h0l.009-.02h0l.013-.03.037.019h0a.106.106,0,0,1,.077.054c.072.069.143.14.211.21s.112.113.169.169a1.009,1.009,0,0,0,1.069.237c.106-.041.209-.09.309-.137s.22-.1.335-.147l.121-.044a1.573,1.573,0,0,0,.484-.24,1.048,1.048,0,0,0,.361-.837v-.461a.1.1,0,0,1,0-.056.13.13,0,0,1,.021-.051l0-.008h0a.337.337,0,0,1,.026-.051l.016-.028.006-.011.147-.258v.138l.034-.016.01.024v0l.024.056.032.081h0l-.014-.15h0l0-.023h0c.036,0,.069,0,.1,0h2.068l.008,0h.005l.012,0a.094.094,0,0,1,.047.006.149.149,0,0,1,.045.027h0l.014.008a.142.142,0,0,1,.046.022.1.1,0,0,1,.035.041l.023.024.014.015-.02.017a.091.091,0,0,1,.026.01.072.072,0,0,0-.007-.021l.016.026v0a.107.107,0,0,1,.036.051.1.1,0,0,1,0,.059h0v0l0,.012h0v.008a.331.331,0,0,1,0,.043v.374a2.112,2.112,0,0,0,.017.327,1.012,1.012,0,0,0,.248.506,1.143,1.143,0,0,0,.507.3,6.362,6.362,0,0,1,.637.261,1.183,1.183,0,0,0,.616.153,1.044,1.044,0,0,0,.6-.247,3.706,3.706,0,0,0,.275-.266c.045-.046.091-.094.137-.14l.011-.011.007.007.005-.011,0,0,.012-.01a.143.143,0,0,1,.057-.04l.016-.008h0l.021-.011h0l.019-.006h0a.1.1,0,0,1,.05-.02.14.14,0,0,1,.055,0h.071l0,.017.018,0-.012-.006.019.005a.108.108,0,0,1,.076.029l.021.011-.015,0a.087.087,0,0,1,.014.023l.013-.018a.33.33,0,0,1,.046.041l.015.015,0,0c.067.066.135.134.2.2l.1.1,1.149,1.149.01.011.006.006.007.007a.161.161,0,0,1,.034.048.583.583,0,0,1,.028.052l0,.007-.029.013h0l-.11.05h0l-.015.007v0h0l0,0v0h0l0,0,.053-.006.009,0,.024,0h.009l.047,0v0l.029,0a.562.562,0,0,1,0,.063v.024a.113.113,0,0,1,0,.031.122.122,0,0,1-.016.047l0,.011a.055.055,0,0,0,0-.008.084.084,0,0,1-.011.014l.013.006,0,.007c-.011.024-.024.045-.035.064l0,0,0,0a.485.485,0,0,1-.048.053c-.036.038-.074.075-.111.111l-.056.056-.025.025a1.412,1.412,0,0,0-.447.651,1,1,0,0,0,.049.626c.038.092.08.181.12.268.053.116.109.235.157.36.014.038.028.074.041.111a1.563,1.563,0,0,0,.245.488.994.994,0,0,0,.47.306,1.724,1.724,0,0,0,.556.046l.157,0h.058v-.01l.114.013h0l.013,0h0a.131.131,0,0,1,.048.01h0l.02.01.619.286a.865.865,0,0,0-.021-.143.784.784,0,0,0-.778-.579h-.5l-.047,0-.026,0v0h0a.992.992,0,0,1-.1-.025l-.033-.009-.02-.006h0l-.01,0h0a.121.121,0,0,1-.036-.02l-.032-.018h0L89,80.414l-.018-.012a.173.173,0,0,1-.033-.021.1.1,0,0,1-.027-.032l-.023-.023,0,0-.023-.027,0,0a1.086,1.086,0,0,1-.077-.126l0,0-.006-.014h0l0,0c0-.013-.009-.026-.014-.04s-.008-.024-.012-.036v0c-.037-.11-.083-.23-.136-.356s-.1-.233-.146-.338l-.038-.081-.039-.083a.21.21,0,0,1-.023-.061c-.008-.024-.014-.046-.019-.069a.359.359,0,0,1-.006-.036h0c0-.011,0-.022,0-.034s0-.017,0-.025v-.009c0-.01,0-.021,0-.033a.1.1,0,0,1,0-.044.163.163,0,0,1,.011-.043.861.861,0,0,1,.031-.114.126.126,0,0,1,.011-.028v0h0l0,0h0l.014-.022.016-.027.023-.038a.108.108,0,0,1,.022-.04.11.11,0,0,1,.033-.028l.017-.016.123-.123.077-.076c.051-.051.1-.1.154-.155a.777.777,0,0,0,.109-.993,1.793,1.793,0,0,0-.223-.245l-.063-.062-1-1L87.6,75.8c-.057-.057-.116-.117-.174-.174a.78.78,0,0,0-1.056-.037,3.4,3.4,0,0,0-.264.257c-.045.047-.092.1-.139.143l-.02.02a.11.11,0,0,1-.028.034.112.112,0,0,1-.037.021l-.03.019-.012.007-.006-.009-.006.008,0,.006-.021.011-.022.013a.122.122,0,0,1-.033.011l0,0-.019.006h0c-.022.008-.043.013-.061.018a.412.412,0,0,1-.047.008h0v0a.988.988,0,0,1-.16,0v0l-.039-.007-.038-.01-.032-.009-.023-.006h0l-.01,0-.083-.024,0-.015-.085-.04-.092-.043c-.166-.075-.341-.141-.509-.2l-.1-.036h0l-.1-.04h0l-.019-.01L84.3,75.7l-.038-.021h0l-.025-.016-.008-.005-.017-.011h0L84.2,75.63l0,0-.033-.033-.021-.02-.009-.01h0a.776.776,0,0,1-.094-.155l.158-.078a.084.084,0,0,0-.032-.026.087.087,0,0,1-.025.028l-.042.031-.048-.022h0a.085.085,0,0,0-.008.063l-.011-.03c-.01-.027-.015-.041-.017-.051l-.006-.026A.134.134,0,0,1,84,75.265h0v-.017h0v-.01c0-.041,0-.081,0-.12v-.363a1.1,1.1,0,0,0-.03-.318.78.78,0,0,0-.358-.458,1.05,1.05,0,0,0-.533-.1H81.2a.792.792,0,0,0-.7.378,1.183,1.183,0,0,0-.109.646c0,.038,0,.075,0,.113v.159a.434.434,0,0,1,0,.049.4.4,0,0,1,0,.048h0l0,.011c-.007.027-.014.055-.022.083a.1.1,0,0,1-.011.044.165.165,0,0,1-.02.032c-.007.014-.015.028-.024.044s-.014.024-.023.038a.106.106,0,0,1-.019.029l-.01.011h0l-.009.009-.01.01a.435.435,0,0,1-.032.032l-.015.014a.193.193,0,0,1-.03.026h0c-.03.021-.061.039-.091.055a.125.125,0,0,1-.041.026.11.11,0,0,1-.046.009l-.047.016c-.135.048-.242.089-.338.129s-.228.1-.371.162l-.052.026-.064.031a.1.1,0,0,1-.034.02.152.152,0,0,1-.036.008h0l-.016,0-.068.017a.154.154,0,0,1-.04.012.1.1,0,0,1-.045,0,.825.825,0,0,1-.1,0h0l-.025,0-.008,0a1.052,1.052,0,0,1-.123-.036l-.016-.006v0l-.021-.011-.024-.013a.522.522,0,0,1-.087-.058l.111-.138a.084.084,0,0,0-.04-.012l-.048.048.043-.048a.088.088,0,0,0-.065.148l-.037-.033,0,0-.138-.138-.061-.062a1.1,1.1,0,0,0-.574-.384.823.823,0,0,0-.737.259L75.572,77a.9.9,0,0,0-.307.582.782.782,0,0,0,.206.575c.034.038.073.075.111.112l.059.058.214.214.025.026.013.013.013.014h0l.015.02,0,0,.019.031c.009.015.017.029.025.041a.236.236,0,0,1,.013.022h0a.492.492,0,0,1,.029.084l.015.06a.1.1,0,0,1,.012.038.1.1,0,0,1,0,.039s0,.007,0,.01a.374.374,0,0,1,0,.051h0V79c0,.008,0,.019,0,.027h0a.541.541,0,0,1-.011.058l.012.005L76,79.175a.187.187,0,0,1-.013.026l-.006.012-.016.034-.014.029-.023.05c-.024.051-.047.1-.069.148-.047.107-.1.223-.142.339-.021.056-.042.112-.064.17-.008.024-.016.048-.027.072l-.024.072,0,0,0,.013a.137.137,0,0,1-.015.028l-.006.013h0l0,0,0,0h0l-.039.078-.007,0a.137.137,0,0,1-.016.024.139.139,0,0,1-.019.019l-.012.013,0,0-.007,0,.005.005-.02.02a.118.118,0,0,1-.03.037.111.111,0,0,1-.045.024l-.4.4.195-.311-.039.009-.017,0v0h-.011l-.032,0c-.024,0-.048,0-.068,0H74.98c-.055,0-.113,0-.168,0a1.629,1.629,0,0,0-.517.037.787.787,0,0,0-.548.751c0,.256,0,.518,0,.771q0,.194,0,.388v.677c0,.024,0,.048,0,.072a1.235,1.235,0,0,0,.03.359.787.787,0,0,0,.783.558h.53a.111.111,0,0,1,.044,0,.1.1,0,0,1,.041.014l.006,0a.89.89,0,0,1,.115.036v0l.024.012a.628.628,0,0,1,.063.037l0,0,.019.013.008.005.019.013v0l.022.02.033.033a.113.113,0,0,1,.036.03.106.106,0,0,1,.022.045c.018.029.036.059.052.092l.008.017h0l.006.017c.007.023.016.049.024.073l.009.025c.047.131.088.238.132.339.057.137.1.24.148.335l.026.051a1.247,1.247,0,0,1,.054.115h0l.01.026,0,.008c.006.02.011.04.016.061a.122.122,0,0,1,.01.041h0c0,.009,0,.018,0,.027v0c0,.007,0,.014,0,.021a.553.553,0,0,1,0,.055c0,.007,0,.015,0,.026h0a.339.339,0,0,1-.009.049l0,.017v0A.783.783,0,0,1,76,85.87c0,.007-.006.016-.012.029h0a.5.5,0,0,1-.033.061l-.03.046-.008.012a.114.114,0,0,1-.012.019l-.053.066-.006,0-.007.007-.006.005-.334.334A.779.779,0,0,0,75.45,87.5a2.01,2.01,0,0,0,.162.17l.082.081.493.493.255.257c.166.168.337.341.509.507a.783.783,0,0,0,1.074.02c.079-.071.155-.15.229-.227.052-.054.105-.109.16-.162h0l.015-.014.016-.015.015-.015a.109.109,0,0,1,.024-.016l.023-.016.006.008h.005l-.007-.011.046-.031a.121.121,0,0,1,.076-.031l.013,0,.027-.009h0c.024-.007.046-.012.065-.016l.013,0h.014a.118.118,0,0,1,.027,0h.12a.124.124,0,0,1,.04.009c.035.008.066.018.094.026h0l.006,0,.006,0h0l.023.01.047.023.048.023.166.076c.129.057.255.11.372.156l.152.056c.03.01.062.021.092.034h0L80,88.9v0a.764.764,0,0,1,.1.056l.027.016.013.008h0a.145.145,0,0,1,.039.035l.018.017.033.034a.163.163,0,0,1,.017.02l0,0h0l.007.011.008.013c.012.019.025.039.036.059v0l.008.017.007.015h0a.864.864,0,0,1,.04.129c0,.008,0,.017.005.028h0A.609.609,0,0,1,80.38,89.419Zm2.855.753a.089.089,0,0,0,.036.167l0-.015-.013-.007-.046-.032.009-.055a.084.084,0,0,1,.02-.043Zm-2.191.153a.085.085,0,0,0,.033,0l.023-.068-.019,0-.006.009-.01.012Zm.056-.072-.016.066.01,0,.006-.061Zm2.251.047.005.017.011-.009,0-.007-.012,0Zm.018,0,0,0,0,0Zm-2.452-.076a.084.084,0,0,0,.019.039l.026-.038v0h0l.013-.019-.006-.008a.076.076,0,0,1,.036-.037l.023-.034a.082.082,0,0,0-.024,0l-.005,0,.005.03-.053.016-.008-.011-.028.02h0l-.041.029A.088.088,0,0,0,80.917,90.226Zm.183.027h0Zm-.019,0,.019,0h0v-.008l0,.007,0-.008.008-.072,0,0-.013.033A.078.078,0,0,1,81.081,90.251Zm.045-.084h2.09l.03,0h.016l.03-.008.007,0,.039-.023.034-.034.01-.022a.344.344,0,0,1,.018-.036v0l.006-.022c0-.008,0-.016,0-.025h0v-.474A1.225,1.225,0,0,1,83.9,88.5a1.715,1.715,0,0,1,.475-.222c.056-.019.113-.039.167-.061.093-.036.184-.079.279-.125s.223-.106.342-.15a1.193,1.193,0,0,1,1.232.292c.047.046.092.1.136.143a2.244,2.244,0,0,0,.243.238.441.441,0,0,1,.04.023l.007,0a.314.314,0,0,0,.043.012h.049l.03-.009h.005l.02-.008,0,0,.025-.016,0,0,.012-.011.012-.011.014-.014.012-.012,1.32-1.32.034-.033c.022-.022.043-.042.063-.063l.006-.006a.242.242,0,0,1,.021-.023l0-.006c.008-.013.015-.025.021-.037v0l.01-.049v-.014l0-.018c0-.006,0-.011,0-.017s-.005-.019-.007-.028v0l0-.007-.011-.019a.262.262,0,0,1-.02-.024l-.011-.014-.005-.006,0,0-.009-.009-.238-.238a2.2,2.2,0,0,1-.228-.249,1.183,1.183,0,0,1-.232-.687,1.527,1.527,0,0,1,.2-.692,6.268,6.268,0,0,0,.253-.635v0l.007-.019a1.218,1.218,0,0,1,1-.8,3.009,3.009,0,0,1,.434-.011l.164,0h.071l.024-.008.034-.007.021-.011.013-.01.007,0,.015-.015.012-.012.006-.011.015-.025h0a.4.4,0,0,1,.014-.05c0-.008,0-.018,0-.027,0-.079,0-.16,0-.237,0-.04,0-.08,0-.121V81.253h0a.234.234,0,0,1-.014-.045l-.009-.019-.006-.011L90,81.16l-.022-.02h0a.364.364,0,0,1-.032-.019l-.012-.008-.018-.005L89.9,81.1h-.144l-.153,0a1.854,1.854,0,0,1-.614-.054,1.172,1.172,0,0,1-.553-.362,1.722,1.722,0,0,1-.275-.54c-.013-.036-.026-.072-.04-.109-.046-.119-.1-.231-.152-.349-.041-.088-.083-.179-.122-.274a1.178,1.178,0,0,1-.057-.736,1.567,1.567,0,0,1,.494-.735l.025-.025.057-.057c.038-.037.073-.072.109-.11l.015-.016.007-.011.014-.024a.352.352,0,0,1,.012-.049l0-.009h0l0-.023v0a.24.24,0,0,1-.013-.038.253.253,0,0,1-.006-.036l-.013-.021,0-.007-.016-.016,0-.005-1.149-1.149-.1-.1c-.065-.065-.132-.133-.2-.2L87,76.025l-.005-.005A.35.35,0,0,1,86.95,76l-.006,0-.02,0-.03-.009h-.042l-.033.008h0l-.011,0-.036.021-.021.016h0l-.012.012c-.045.045-.091.092-.135.137a3.835,3.835,0,0,1-.288.279,1.217,1.217,0,0,1-.7.288,1.339,1.339,0,0,1-.707-.17,6.189,6.189,0,0,0-.618-.254,1.3,1.3,0,0,1-.582-.354,1.188,1.188,0,0,1-.291-.6,2.278,2.278,0,0,1-.019-.354V74.65c0-.005,0-.013,0-.021s0-.012,0-.018a.278.278,0,0,1-.006-.032l-.011-.017c-.005-.008-.011-.018-.017-.03l-.034-.034L83.3,74.48l0,0h0l-.034-.009H81.146l-.028.009a.256.256,0,0,1-.04.007l-.019.01-.013.01-.011.007-.008.007,0,0-.009.01,0,0L81,74.546l-.013.019,0,0,0,.006c0,.011-.005.02-.008.028l0,.011,0,.005h0c0,.01,0,.022,0,.033v.456a1.221,1.221,0,0,1-.426.974,1.731,1.731,0,0,1-.536.27l-.118.043c-.109.041-.213.09-.323.142s-.209.1-.32.141a1.186,1.186,0,0,1-1.257-.275c-.058-.056-.116-.115-.171-.171-.07-.071-.143-.145-.217-.215l0,0-.005,0L77.577,76a.263.263,0,0,1-.041-.008l-.032-.011H77.5l-.02,0-.015,0h0a.394.394,0,0,1-.041.01L77.408,76l-.015.01-.023.018h0l-1.35,1.35-.034.034c-.022.021-.044.044-.066.066L75.9,77.5l0,0a.281.281,0,0,1-.014.032.236.236,0,0,1-.018.03l-.007.024v0c0,.017,0,.033,0,.048a.228.228,0,0,1,.016.045c.006.011.011.023.015.032l0,.006,0,0,.018.018.016.016c.051.053.1.1.155.155l.077.077.059.059c.045.045.092.091.134.142a1.233,1.233,0,0,1,.278.7,1.388,1.388,0,0,1-.18.708,5.979,5.979,0,0,0-.252.618,1.244,1.244,0,0,1-.358.575,1.2,1.2,0,0,1-.626.286,3.116,3.116,0,0,1-.49.017l-.163,0H74.5l-.026.007-.022.006-.005,0-.033.019-.012.012-.02.02-.007.011h0l-.014.025-.006.011-.012.073c0,.24,0,.484,0,.719,0,.121,0,.242,0,.363v.689c0,.037,0,.074,0,.11,0,.065,0,.127,0,.187a.326.326,0,0,1,.012.058l.011.017c.005.008.012.018.018.03l.03.031.01.007.01.006.021.008.014.006.024.006h.158l.14,0a1.8,1.8,0,0,1,.639.064,1.244,1.244,0,0,1,.58.428,1.7,1.7,0,0,1,.221.469c.016.047.033.095.051.141.039.1.085.2.133.3s.1.222.149.34a1.169,1.169,0,0,1,.028.714,1.614,1.614,0,0,1-.489.708l-.035.035-.059.057c-.04.038-.077.074-.111.112a.26.26,0,0,0-.015.024l0,0-.008.02v.005c0,.01-.006.021-.009.031v0h0a.57.57,0,0,1,0,.062l.01.033.014.022.01.018,0,0,.017.018.171.171.474.474.269.27c.175.177.356.359.537.536l.025.021.015.013,0,0,.025.014h0a.322.322,0,0,0,.043.012h.041l.03-.007.008,0,.007,0,.036-.021.006,0,.041-.041c.047-.046.094-.094.139-.141a3.085,3.085,0,0,1,.351-.326,1.175,1.175,0,0,1,.654-.232,1.481,1.481,0,0,1,.723.2c.181.084.373.161.6.242a1.252,1.252,0,0,1,.576.376,1.218,1.218,0,0,1,.273.644,1.729,1.729,0,0,1,.009.235c0,.018,0,.037,0,.055v.358c0,.012,0,.02,0,.028a.235.235,0,0,1,.014.044l.009.019.007.011.012.016.007.005a.355.355,0,0,1,.036.031l.007,0,.012.007.005,0,.028.008.01,0Zm2.315-.013.008,0a.089.089,0,0,0,.08-.009.09.09,0,0,0-.007-.023.1.1,0,0,1-.038,0,.091.091,0,0,1-.072-.052.083.083,0,0,0-.02.01.089.089,0,0,0,.049.066l0,0Zm-.132,0v0l0,0Zm.229-.037a.09.09,0,0,1,0,.018.075.075,0,0,0,.011-.013Zm-.109-.038a.089.089,0,0,0,.081.028Zm-.039-.013a.073.073,0,0,0,0,.012l.012-.008ZM84,89.357l.171.017a.041.041,0,0,1,.022-.079l-.153-.075a.078.078,0,0,1-.04.138Zm-3.779-.019a.09.09,0,0,0-.016.035l.168-.015a.09.09,0,0,0-.045-.046.093.093,0,0,1-.107.027Zm3.972-.031v0Zm-4.024-.063a.085.085,0,0,0,0,.021l.158-.063a.089.089,0,0,0-.1-.027l.011.012-.011-.012h0a.088.088,0,0,0-.053.066l.064-.032Zm-.052-.055h0Zm-.086-.107a.1.1,0,0,0,.007.017l.012-.013Zm.049-.106a.1.1,0,0,1-.005.034l-.025.075.1-.111A.089.089,0,0,0,80.078,88.977Zm-.171.04a.087.087,0,0,0,.029.037l.036-.083-.042-.008Zm4.479-.12a.089.089,0,0,0-.025.094l.04-.014.031-.015-.031.015.039-.013-.017-.058A.09.09,0,0,0,84.386,88.9Zm-.039.091h0l-.024-.054,0,0ZM79.9,88.96l.026,0,.027-.062a.088.088,0,0,0-.051.05ZM80,88.9l.007,0v0Zm6.843-.079,0,.014.02,0-.013-.012Zm-9.382,0,0,.014a.088.088,0,0,0,.027-.008.077.077,0,0,1-.016-.011Zm.1-.016,0,.027a.082.082,0,0,0,.025-.016.088.088,0,0,0,.031,0l-.008-.019-.007,0,0-.005-.013-.03,0,0-.011-.024-.016-.037s0,0,0,.006l-.01-.023v0l-.006-.015h0l0,0,0,0h0l0,0,.009.08,0,.054Zm9.3,0a.086.086,0,0,0,.015.016.087.087,0,0,0,.024-.025.1.1,0,0,1-.015-.028l0-.007a.1.1,0,0,1-.01.024A.089.089,0,0,1,86.862,88.8Zm-.142-.017a.09.09,0,0,0,.027,0l-.023-.046.033-.044a.082.082,0,0,1,.046-.032l0-.007a.1.1,0,0,0-.023,0l-.068.092A.092.092,0,0,0,86.72,88.782Zm-.033-.008.019.006a.088.088,0,0,1-.01-.017Zm.162,0v0l.007-.014a.087.087,0,0,0,0-.056ZM77.523,88.7a.087.087,0,0,0,0,.058l0,.01,0-.009A.087.087,0,0,0,77.523,88.7ZM87,88.626l.1.133h0l-.052-.069.056.061a.09.09,0,0,0,.01-.04l-.039-.047.039.039a.087.087,0,0,0-.023-.054A.088.088,0,0,0,87,88.626Zm-.13.063a.092.092,0,0,1,.016.029.083.083,0,0,1,.012-.031l-.011-.012A.087.087,0,0,0,86.868,88.689Zm-9.518-.012a.091.091,0,0,0-.011.015l-.007.013Zm9.519-.013,0,.013.013-.007Zm-1.038-.083a.089.089,0,0,0-.055.088l.009,0,.035-.035,0,0,0,0h0l0-.008A.088.088,0,0,0,85.831,88.581Zm-8.345.081v.007l.007,0Zm9.3-.023h.006l0,0Zm-1.313-.171.027.17a.084.084,0,0,0,.024-.015v-.071l0,.067a.027.027,0,1,1,.052.014v-.005l0-.077v.056l.018-.143a.09.09,0,0,0-.062.041A.088.088,0,0,0,85.474,88.468Zm-.2.08.023.062.043-.017-.032-.084A.087.087,0,0,0,85.278,88.548Zm0,.007.022.053-.02-.059Zm-6.756.024.01.013s0,0,0,0l-.005-.008Zm7.331,0a.093.093,0,0,1,0,.015l.013-.016Zm2.759-1.524h.014l0-.008,0,.008h0a.034.034,0,1,0,.032-.057L88.648,87a.1.1,0,0,1-.032.01v0h0ZM75.7,87.015a.09.09,0,0,0,.02.018l.02-.03.022,0h0a.1.1,0,0,1-.032-.018A.09.09,0,0,0,75.7,87.015Zm.15-.006-.01.017.017,0A.077.077,0,0,0,75.847,87.009Zm-.067,0,.012,0a.087.087,0,0,1,.033.012A.087.087,0,0,0,75.842,87l-.007-.008A.087.087,0,0,1,75.78,87.009ZM88.555,87l.022,0L88.564,87h-.006Zm.121-.024a.082.082,0,0,1,.017.02.085.085,0,0,0,.007-.031l-.019,0Zm-.09.015a.088.088,0,0,0,.036,0l.019-.007-.009,0Zm.009-.159a.089.089,0,0,0-.059.036Zm-.136-.872a.088.088,0,0,0,.008.061l.135-.109a.085.085,0,0,0-.03-.016l-.016.01a.093.093,0,0,1-.048.049A.1.1,0,0,1,88.459,85.962Zm.083-.068a.088.088,0,1,0-.035.038A.087.087,0,0,0,88.543,85.893Zm.017,0v0l0,0Zm-12.729-.069.156.074a.088.088,0,0,0,0-.032l-.071-.026.07.023a.09.09,0,0,0-.02-.041.1.1,0,0,1-.03,0,.091.091,0,0,1-.059-.03A.09.09,0,0,0,75.831,85.825Zm12.519-.251.171.016a.086.086,0,0,0-.011-.032l-.014,0a.09.09,0,0,1-.067,0,.1.1,0,0,1-.019-.01h-.044A.084.084,0,0,0,88.35,85.575ZM75.855,85.54l.013.008a.082.082,0,0,1,.013-.018Zm12.517,0,.033,0a.089.089,0,0,1-.016-.016A.091.091,0,0,0,88.372,85.539Zm.035-.021a.089.089,0,1,0,.038,0A.088.088,0,0,0,88.407,85.519Zm-12.571,0a.081.081,0,0,0,.013.015l.039-.011.007-.006.043-.031.048.023h0A.087.087,0,0,0,76,85.453Zm12.536-1.1a.182.182,0,0,0,.02.141.208.208,0,0,0,.125.1.253.253,0,0,0,.041.006l.224-.225a.212.212,0,0,0-.028-.1.2.2,0,0,0-.118-.1.24.24,0,0,0-.258.153l0,.014Zm-12.928.148a.089.089,0,0,0,.156-.051l-.079.02.079-.022a.085.085,0,0,0,0-.018Zm-.009-.008h0Zm0,0h0Zm-.109-.163a.09.09,0,0,0,.029.005.081.081,0,0,1,.036-.084.1.1,0,0,1,.054-.016.089.089,0,0,0-.017-.042Zm.12-.08a.089.089,0,1,0-.02.053A.086.086,0,0,0,75.445,84.317Zm-.215.018a.09.09,0,0,0,.039,0,.084.084,0,0,1,.019-.072.091.091,0,0,1,.038-.028.09.09,0,0,0-.01-.027l-.041.062.035-.071a.088.088,0,0,0-.017-.017ZM88.924,84.3h0l0-.007,0,0,.007-.006a.132.132,0,0,1,.023-.024l0,0,.021-.014,0,0L89,84.23h0c.021-.014.043-.026.063-.037a.158.158,0,0,1,.035-.022.106.106,0,0,1,.042-.011l.032-.01h0l.031-.007a.14.14,0,0,1,.046-.015.12.12,0,0,1,.044,0h.089c.056,0,.114,0,.171,0a1.993,1.993,0,0,0,.5-.026.778.778,0,0,0,.579-.757c0-.09,0-.181,0-.27,0-.045,0-.091,0-.136V81.526c0-.027,0-.054,0-.081,0-.06,0-.119,0-.176l-.426-.095v0a.1.1,0,0,1,.016.041.1.1,0,0,1,0,.054v1.713c0,.04,0,.08,0,.12,0,.078,0,.158,0,.237a.093.093,0,0,1,.006.026h0l0,.013a.12.12,0,0,1,0,.016.135.135,0,0,1-.017.046l0,.009-.007.023h0a.252.252,0,0,1-.011.026l-.006.01,0,0a.1.1,0,0,1-.029.05h0l-.005.005h0l-.012.011-.012.012a.548.548,0,0,1-.05.047l0,0-.023.016,0,0-.018.01a.386.386,0,0,1-.046.023l0-.011-.009.007h.006l-.007,0a.118.118,0,0,1-.047.016.122.122,0,0,1-.029,0h-.006l-.024,0h-.049l-.168,0a2.869,2.869,0,0,0-.408.01,1.034,1.034,0,0,0-.664.359.461.461,0,0,1,.094,0l.01,0a.376.376,0,0,1,.237.188Q88.917,84.282,88.924,84.3Zm.984-.768a.088.088,0,0,0,.042.157.086.086,0,0,0,.017-.018l-.058-.139Zm-15.536.136a.086.086,0,0,0,.019.017l0-.014,0-.005Zm15.678-.047a.079.079,0,0,1-.011.027.088.088,0,0,0,.029-.006Zm-15.83-.1a.089.089,0,0,0,.048.008l.074-.064a.087.087,0,0,0,0-.024l-.02-.006.006-.009-.067.01.068-.011.005-.012-.006-.009-.143.014a.086.086,0,0,0-.008.018.049.049,0,0,1,.039.086Zm.218,0h0Zm15.522-.011,0,0h0Zm-15.6-.066s0,.006,0,.009l.006-.005Zm-.015-.044h0Zm15.617-2.28h0Zm-15.522,0h.005v-.005Zm-.031-.009a.091.091,0,0,0,.026.008.08.08,0,0,0,.006-.013l0-.006a.084.084,0,0,1-.043-.03A.088.088,0,0,1,74.4,81.108Zm15.537-.023a.086.086,0,0,0,.008.023l.022,0,.059-.068a.088.088,0,0,0-.009-.058.09.09,0,0,0-.048.018l-.006.026h0l0,.009ZM74.4,81a.09.09,0,0,0,0,.026.087.087,0,0,0,.024.048L74.408,81Zm-.05.032.015.01a.088.088,0,0,1,.018.02.09.09,0,0,1-.012-.041.089.089,0,0,1,0-.032l-.014,0A.089.089,0,0,0,74.354,81.032Zm.025-.066h.01l.006-.009v0Zm14.912-.625-.029.171a.089.089,0,0,0,.029-.171Zm-14.215.149a.088.088,0,0,0,.042.016l-.034-.166a.089.089,0,0,0-.045.091.087.087,0,0,0,.032.056v-.064Zm.12-.128a.1.1,0,0,1,.019.043.1.1,0,0,1,0,.028l.024-.039-.04-.084a.087.087,0,0,0-.015.017Zm-.02-.019.008.006-.006-.011Zm-.1-.009h0Zm13.93-.1a.086.086,0,0,0-.049.032.039.039,0,1,0,.067-.034h-.013l-.04.032Zm-.127.06a.082.082,0,0,0,.038.019.09.09,0,0,1,.016-.057h0Zm.12-.076.023,0,0,0a.083.083,0,0,0-.006-.025l-.036.026Zm-13.439-.042h0l0,0-.006,0ZM88.4,79.215a.089.089,0,0,0,.146-.074l-.162.056a.083.083,0,0,0,.015.017l.074-.035Zm-.032-.129.015.012,0,0,.013-.018Zm-.022-.035a.089.089,0,0,0,.019.031l.036-.008.017-.023.053.008a.087.087,0,0,1,.033.012.089.089,0,0,0,.014-.035Zm-12.49-.046.17.025a.086.086,0,0,0-.016-.042l-.026,0a.089.089,0,0,1-.025.008.085.085,0,0,1-.063-.012h-.026A.084.084,0,0,0,75.86,79.006Zm.068-.023.021,0h.014l-.017,0h.025A.085.085,0,0,0,76,78.971a.088.088,0,1,0-.074.011l.023,0Zm.068,0h.013L76,78.977Zm-.118,0H75.9l-.01-.009Zm-.06-.194h0Zm.049-.1a.089.089,0,0,0-.047.1l.158-.07a.089.089,0,0,0-.109-.027h0l.018.022Zm12.764,0h0Zm-.006-.87.014.012a.083.083,0,0,0,.007-.025A.084.084,0,0,1,88.626,77.811Zm-12.892-.051a.086.086,0,0,0,.04.008l.012-.005-.01-.053-.008,0A.087.087,0,0,0,75.734,77.761Zm12.884-.04.035.016a.089.089,0,0,0,.025-.021.091.091,0,0,0-.016-.039l-.018,0a.1.1,0,0,1-.021.006.081.081,0,0,1-.078-.026.086.086,0,0,0-.022.02v.006l.045.02h0l.054.024Zm-12.759-.011v.024h0l.008-.006a.089.089,0,0,0,0-.013Zm.026.018h0v0Zm-.01-.007v0h0Zm12.645-.043h0Zm.128-.006.013,0,0-.006ZM75.88,77.525h0Zm12.69-.134a.087.087,0,0,0-.047.014.088.088,0,0,0-.036.1l.021-.014a.08.08,0,0,1,.056-.057.094.094,0,0,1,.039,0l.029-.019A.09.09,0,0,0,88.569,77.391Zm-2.954-1.326.008.1a.088.088,0,0,0,.043-.028v0a.086.086,0,0,1-.04-.044Zm-.186.075a.089.089,0,0,0,.034.021l.013-.172a.089.089,0,0,0-.072.069l-.042-.011-.031.083a.049.049,0,0,1,.1.008l.019-.068ZM78.7,76.1a.09.09,0,0,0,.054.058l.016-.17-.009,0-.019.08.011-.077a.091.091,0,0,0-.032.021.081.081,0,0,1-.006.064A.1.1,0,0,1,78.7,76.1Zm-.148-.032a.087.087,0,0,0,.032.043l.067-.159a.088.088,0,0,0-.044,0,.077.077,0,0,1-.02.069.1.1,0,0,1-.021.018Zm7.263-.012.01.021,0-.009,0-.007ZM86.969,76l0,0,0,0Zm-1.36-.009V76l.017-.008ZM86.966,76h.012l.079-.109a.089.089,0,0,0-.015-.033.091.091,0,0,0-.046.009h0v0a.09.09,0,0,0-.029-.037.087.087,0,0,0-.025.009l0,.049a.1.1,0,0,1,0,.032l-.006.068h0a.021.021,0,0,1,.039.014Zm-1.343-.012h0Zm-8.127,0h0Zm-.012-.011v.006l0,0Zm-.221-.046.043.044-.042-.055A.09.09,0,0,0,77.263,75.926Zm.262-.061a.088.088,0,0,0-.011.023.086.086,0,0,0,0,.061.088.088,0,0,0,.013-.065A.091.091,0,0,0,77.524,75.864Zm-.066-.012.019.088a.088.088,0,0,0-.019-.088Zm-.009-.041.008.034a.081.081,0,0,1,.026-.025A.086.086,0,0,0,77.449,75.811Zm2.634-.161a.09.09,0,0,0,.064,0l-.105-.133a.091.091,0,0,0-.015.044.081.081,0,0,1,.052.053A.1.1,0,0,1,80.083,75.65Zm4.276-.018.028.011.031-.08a.087.087,0,0,0-.046.007A.1.1,0,0,1,84.359,75.632Zm-4.332-.05a.088.088,0,0,0,.015.036.089.089,0,0,0,.019.02.09.09,0,0,0-.034-.056Zm3.38-.945a.089.089,0,0,0,.166-.04l-.008,0a.09.09,0,0,1-.042.04.083.083,0,0,1-.089-.009Zm-.005.011h0Zm.054-.022a.087.087,0,0,0,.081-.019ZM80.944,74.6l-.025.025a.09.09,0,0,0,.047-.024.084.084,0,0,0,0-.01A.081.081,0,0,1,80.944,74.6Zm-.1,0a.088.088,0,0,0,.034.021h0V74.6Zm0,0,.039,0v0l-.043-.007Zm-.016-.027a.091.091,0,0,0,.008.016v-.014Zm0-.005.01,0v-.025l-.012.01A.089.089,0,0,0,80.819,74.564Zm2.578,0,.005,0a.079.079,0,0,1,.066-.054.09.09,0,0,1,.049,0,.028.028,0,1,0-.039-.04l0,.008a.08.08,0,0,1-.055.041l-.018.015A.087.087,0,0,0,83.4,74.56Zm-.014-.008.006,0s0-.006,0-.009Zm-2.568-.019v0l0,0Zm.24-.048,0,0v0Zm0-.047a.089.089,0,1,0-.02-.051l.02.008Zm7.634,3.114a.031.031,0,0,1-.008-.032A.22.22,0,0,0,88.687,77.552Zm-12.973-.076a.28.28,0,0,0,.016-.033.035.035,0,0,1-.016.033Zm1.87-1.65-.015-.009.032.008Zm3.486-1.518h-.015l.029-.007Z" transform="translate(-73.567 -73.7)" fill="var(--icon-color, #888)"/>
6
- </g>
7
- <g transform="translate(78.463 78.598)">
8
- <path d="M333.614,330.746c0,.083,0,.165-.01.248l-.012.136-.006.053c.008-.065,0,.014-.006.028a3.481,3.481,0,0,1-.118.49c-.024.075-.051.148-.081.222s.016-.033-.006.014c-.008.02-.018.039-.028.059-.018.039-.037.079-.057.116a3.49,3.49,0,0,1-.254.419l-.03.041-.024.031-.024.031a.326.326,0,0,1-.033.039c-.055.065-.112.13-.171.191s-.108.108-.167.159l-.087.077-.049.041c-.01.008-.071.053-.022.018a3.335,3.335,0,0,1-.411.266c-.069.037-.138.073-.209.1l-.049.022c-.049.02-.1.039-.146.057a3.554,3.554,0,0,1-.47.132c-.039.008-.079.016-.118.022,0,0-.085.014-.041.006l-.041.006c-.087.01-.171.016-.258.02a3.267,3.267,0,0,1-.519-.022c-.016,0-.075-.012-.016,0l-.053-.008c-.039-.006-.079-.014-.118-.022-.087-.018-.173-.037-.258-.063s-.151-.045-.224-.073l-.11-.041c-.053-.022-.012-.006,0,0l-.071-.031a3.276,3.276,0,0,1-.431-.238c-.065-.041-.128-.087-.189-.134.045.033,0,0-.012-.01l-.049-.041c-.033-.028-.065-.055-.1-.085a3.184,3.184,0,0,1-.338-.352l-.049-.061-.061-.083c-.049-.071-.1-.142-.142-.216s-.077-.134-.112-.2c-.02-.039-.039-.077-.057-.116-.008-.016-.014-.031-.022-.047-.035-.079.02.055-.012-.026a3.349,3.349,0,0,1-.151-.476q-.027-.118-.047-.236c0-.018-.006-.035-.008-.053.01.059,0,0,0-.016-.006-.049-.01-.1-.014-.15a3.548,3.548,0,0,1,0-.521c0-.035.006-.073.01-.108,0,0,.012-.085.006-.041s.008-.043.006-.041c.014-.089.031-.175.053-.262a3.527,3.527,0,0,1,.151-.462c.02-.047-.03.063.006-.014.008-.016.014-.031.022-.047.018-.039.037-.079.057-.116.037-.073.077-.146.12-.214s.083-.132.128-.195c.022-.031.045-.063.069-.094-.033.045,0,0,.01-.012s.031-.039.049-.059a3.394,3.394,0,0,1,.331-.342c.031-.03.065-.057.1-.085l.039-.033s.065-.051.031-.024l.031-.024.041-.03c.035-.026.071-.049.106-.073a3.283,3.283,0,0,1,.431-.238l.059-.028c.047-.02-.065.026.014-.006l.1-.037c.083-.03.165-.057.25-.081s.153-.039.232-.057c.043-.01.087-.018.132-.024l.053-.008c-.065.01.022,0,.03,0a3.528,3.528,0,0,1,.519-.02c.083,0,.163.01.244.02l.053.006c-.059-.008,0,0,.016,0,.049.008.1.016.146.026a3.2,3.2,0,0,1,.482.138c.037.014.073.027.11.043s-.063-.03.014.006l.047.022a2.535,2.535,0,0,1,.23.118c.067.037.134.079.2.12l.1.065.053.037c.01.008.071.053.022.016a3.563,3.563,0,0,1,.362.327c.053.055.1.114.153.173.022.026.043.053.065.081-.035-.045,0,0,.008.012l.045.063a3.258,3.258,0,0,1,.252.421c.018.035.035.071.051.106.008.016.014.031.022.047.035.077-.014-.033.006.014.033.081.063.163.09.246a3.251,3.251,0,0,1,.114.478s.014.085.006.041.006.043.006.041l.012.122c0,.09,0,.179,0,.266a.3.3,0,0,0,.59,0,3.643,3.643,0,0,0-.671-2.1,3.71,3.71,0,0,0-1.735-1.32,3.639,3.639,0,0,0-2.756,6.728,3.71,3.71,0,0,0,2.262.258,3.659,3.659,0,0,0,2.851-2.969,3.764,3.764,0,0,0,.049-.594.3.3,0,0,0-.3-.3A.3.3,0,0,0,333.614,330.746Z" transform="translate(-326.835 -327.021)" fill="var(--icon-color, #888)"/>
9
- <path d="M326.155,330.112a3.791,3.791,0,0,1-1.564-.339,3.723,3.723,0,0,1-2.159-3.667,3.782,3.782,0,0,1,.85-2.1,3.749,3.749,0,0,1,4.132-1.125,3.8,3.8,0,0,1,1.776,1.351,3.738,3.738,0,0,1,.688,2.151s0,0,0,0a3.87,3.87,0,0,1-.05.608,3.743,3.743,0,0,1-2.921,3.042A3.822,3.822,0,0,1,326.155,330.112Zm.008-7.275a3.564,3.564,0,0,0-2.744,1.281,3.606,3.606,0,0,0-.81,2,3.546,3.546,0,0,0,2.055,3.491,3.611,3.611,0,0,0,2.209.252,3.563,3.563,0,0,0,2.781-2.9q.02-.127.032-.252a.41.41,0,0,1-.186.055.35.35,0,0,1-.226-.071l-.012.13v0h0c0,.016,0,.027-.006.035a3.567,3.567,0,0,1-.121.5c-.026.081-.056.16-.082.226a.209.209,0,0,1-.009.027.117.117,0,0,1-.012.022l-.015.031c-.017.037-.036.076-.059.119a3.593,3.593,0,0,1-.26.429l-.03.042h0l-.012.018,0,.007h0v0h0l-.026.035,0,0h0l0,0a.41.41,0,0,1-.04.048c-.066.078-.121.139-.173.193s-.115.115-.173.165l-.042.037-.044.039-.026.022-.023.019,0,0-.022.017h0a3.43,3.43,0,0,1-.422.273c-.083.045-.151.079-.215.108l-.049.021h0l-.016.007h0l-.019.008c-.037.015-.076.031-.116.045a3.655,3.655,0,0,1-.482.135h0c-.039.008-.079.016-.119.022h0v0l-.028,0-.023,0-.035,0c-.082.009-.165.016-.264.02a3.36,3.36,0,0,1-.535-.022l-.014,0h0l-.031,0-.022,0h0c-.041-.006-.082-.014-.121-.022-.075-.015-.171-.036-.267-.065s-.161-.049-.23-.075l-.055-.021-.055-.02h-.005l-.038-.017-.033-.014h0a3.4,3.4,0,0,1-.442-.244c-.062-.039-.126-.085-.194-.138h0l-.014-.011h0l-.023-.019-.026-.021c-.035-.029-.067-.057-.1-.087a3.29,3.29,0,0,1-.347-.361l-.05-.062h0l0,0,0,0,0,0h0l-.023-.03-.032-.043c-.058-.084-.1-.154-.145-.222s-.083-.145-.116-.211l-.015-.029c-.014-.029-.029-.058-.043-.089l-.012-.026,0-.005a.119.119,0,0,1-.013-.023.219.219,0,0,1-.008-.022v0a3.393,3.393,0,0,1-.155-.489c-.018-.08-.034-.161-.048-.241v-.006c0-.007,0-.015,0-.022s0-.021,0-.031h0l0-.014c-.006-.051-.01-.1-.014-.154a3.676,3.676,0,0,1,0-.48l-.015.015.032-.207.007-.059h0c.014-.09.032-.178.055-.27a3.566,3.566,0,0,1,.144-.445.12.12,0,0,1,.007-.022l.009-.018,0-.007v0l.009-.02.012-.026c.017-.037.036-.076.059-.119.046-.09.084-.158.123-.219s.081-.13.132-.2c.022-.032.046-.064.07-.1h0l.012-.016c.015-.019.031-.039.05-.06a3.493,3.493,0,0,1,.338-.35c.022-.02.045-.04.067-.06l.03-.026.04-.034,0,.005,0-.005,0,0,.015-.011.017-.013.014-.009,0,0,.018-.012h0l.041-.03c.036-.026.073-.051.109-.074a3.368,3.368,0,0,1,.411-.23l0-.005.083-.034.007,0,.021-.008h0l.046-.018.052-.02c.1-.035.178-.061.256-.082s.161-.041.237-.058c.047-.011.093-.019.14-.025l.023,0,.031,0h0l.02,0,.009,0a3.638,3.638,0,0,1,.532-.02c.1,0,.175.011.252.02l.032,0h.022l.021,0c.053.008.1.016.146.026a3.3,3.3,0,0,1,.5.142l.086.033.019.006.017.008.007,0h0l.02.009.026.012a2.624,2.624,0,0,1,.237.121c.058.032.12.07.2.122l0,0,.047.032.049.033.028.02.024.017.006,0,.02.015h0l.015.012h0a3.649,3.649,0,0,1,.355.323c.048.049.1.106.158.178.022.026.045.055.066.082h0l.011.015.022.031.022.031a3.355,3.355,0,0,1,.259.433c.018.035.036.071.052.108l.012.026.009.02v0l0,.007.009.018a.116.116,0,0,1,.007.02c.026.066.053.138.081.224a3.372,3.372,0,0,1,.117.491v0h0l.016.167a.411.411,0,0,1,.209-.068.346.346,0,0,1,.194.049,3.531,3.531,0,0,0-.637-1.717,3.626,3.626,0,0,0-1.694-1.289A3.435,3.435,0,0,0,326.163,322.837Zm-.434,6.483h0l.033.005a3.2,3.2,0,0,0,.505.021c.093,0,.173-.01.251-.019h0l.013,0,.023,0h.015l.029,0c.037-.006.074-.013.113-.021a3.464,3.464,0,0,0,.459-.129c.037-.013.072-.027.11-.043l.033-.013h0l.046-.02c.06-.026.124-.059.2-.1a3.265,3.265,0,0,0,.384-.247l0,0h0l.013-.011.017-.013.025-.021.023-.019.042-.038.044-.039c.053-.046.106-.1.161-.154s.1-.111.167-.187l0-.005a.234.234,0,0,0,.024-.028h0l.012-.018,0-.006h0l.027-.035,0,0h0l0,0,.03-.041a3.418,3.418,0,0,0,.247-.408c.022-.042.04-.078.055-.112l0,0c.009-.019.018-.036.025-.052l0,0,0,0v0c.026-.065.055-.141.079-.218a3.385,3.385,0,0,0,.115-.478l0-.008c0-.007,0-.027.005-.034v0l0-.029.012-.135c.006-.089.01-.168.01-.24,0-.043,0-.086,0-.13s0-.087,0-.132l-.011-.118h0q0-.008,0-.016l0-.022v-.012h0l0-.028a3.18,3.18,0,0,0-.111-.465c-.031-.093-.059-.169-.088-.239l0-.006,0,0-.012-.026-.009-.019,0,0c-.015-.034-.033-.069-.049-.1a3.173,3.173,0,0,0-.245-.41l-.022-.031-.022-.031,0,0-.017-.023,0,0-.048-.059c-.058-.069-.105-.123-.15-.169a3.484,3.484,0,0,0-.335-.3c-.012-.008-.024-.018-.038-.028l-.026-.018-.024-.017-.048-.033-.048-.032c-.078-.05-.138-.086-.193-.117a2.464,2.464,0,0,0-.223-.115l0,0-.02-.009-.026-.012,0,0-.006,0-.107-.042a3.125,3.125,0,0,0-.469-.134c-.046-.009-.09-.017-.142-.025l-.008,0-.021,0-.036,0c-.073-.009-.148-.015-.238-.019a3.451,3.451,0,0,0-.5.019.283.283,0,0,1-.064.009l-.024,0c-.04.005-.08.012-.122.022-.074.017-.152.035-.228.056s-.151.045-.244.079l-.046.018-.051.019h0l-.005,0-.03.014-.026.012h0a3.21,3.21,0,0,0-.419.232c-.034.022-.069.046-.1.071l-.042.03,0,0h0l0,0-.035.026h0l-.006,0-.013.01h0l-.039.034-.03.026c-.021.018-.043.037-.063.056a3.337,3.337,0,0,0-.323.335l0,0c-.016.018-.031.036-.046.055l-.02.025,0,.005c-.017.023-.035.047-.051.07-.049.068-.089.129-.124.189v0c-.036.057-.072.121-.116.208-.022.042-.04.078-.055.112l0,0-.009.02-.012.026,0,0,0,.006a3.408,3.408,0,0,0-.147.45c-.021.085-.038.167-.051.251,0,.01,0,.02,0,.028s0,.025-.005.033v0c0,.006,0,.012,0,.017h0c0,.032-.008.069-.009.1v0a3.462,3.462,0,0,0,0,.508c0,.051.008.1.013.145,0,.007,0,.024,0,.033v0h0s0,0,0,.007,0,.015,0,.023c.013.076.029.153.046.229a3.225,3.225,0,0,0,.147.461h0l.01.021.012.026.009.02,0,0c.012.028.026.055.04.083l.015.03c.031.062.066.125.109.2s.082.131.138.211l.029.039.03.04.046.058a3.121,3.121,0,0,0,.33.344l0,0c.029.028.06.054.092.081l0,0,.022.019.026.022.023.018.009.007c.055.042.107.078.159.111a3.212,3.212,0,0,0,.419.232l.037.016h0a.163.163,0,0,1,.03.012h0l.055.02.054.02c.065.025.136.048.218.071s.182.047.251.061c.039.008.076.015.112.021l.024,0h.008Zm3.559-2.932a.217.217,0,0,0,.069.152.181.181,0,0,0,.133.054.212.212,0,0,0,.211-.207v0a.218.218,0,0,0-.069-.151.181.181,0,0,0-.133-.054A.214.214,0,0,0,329.288,326.388Z" transform="translate(-322.42 -322.663)" fill="var(--icon-color, #888)"/>
10
- </g>
11
- </g>
1
+ <svg width="33" height="33" viewBox="0 0 33 33" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M11.8625 1.28525C11.8625 0.630842 12.393 0.100342 13.0474 0.100342H19.3848C20.0392 0.100342 20.5697 0.630842 20.5697 1.28525V4.1411L21.9823 4.73313L23.8809 2.83448C24.3432 2.37215 25.0927 2.37169 25.5556 2.83344L29.8016 7.06893C30.2621 7.52826 30.2663 8.27291 29.8109 8.73735L27.7727 10.8164L28.3314 11.8879H31.0984C31.7528 11.8879 32.2833 12.4184 32.2833 13.0728V19.4102C32.2833 20.0646 31.7528 20.5951 31.0984 20.5951H28.24L27.7128 21.6859L29.9541 23.8363C30.1841 24.057 30.3156 24.361 30.3187 24.6798C30.3218 24.9985 30.1964 25.305 29.9707 25.5302L25.3339 30.1565C25.1027 30.3871 24.7866 30.5121 24.4603 30.502C24.1339 30.4919 23.8262 30.3476 23.6098 30.1031L21.5903 27.822L20.5697 28.3044V31.2611C20.5697 31.9155 20.0392 32.446 19.3848 32.446H13.0474C12.393 32.446 11.8625 31.9155 11.8625 31.2611V28.3974L10.4518 27.8114L8.55127 29.7119C8.32906 29.9341 8.02767 30.059 7.71341 30.059C7.39916 30.059 7.09777 29.9341 6.87556 29.7119L2.64007 25.4764C2.18057 25.0169 2.17688 24.2731 2.63181 23.809L4.66793 21.7322L4.10354 20.6585H1.34433C0.689924 20.6585 0.159424 20.128 0.159424 19.4736V13.1362C0.159424 12.4818 0.689924 11.9513 1.34433 11.9513H4.19496L4.72777 10.8583L2.4886 8.71004C2.25893 8.4897 2.12757 8.18622 2.12409 7.86796C2.12061 7.54971 2.24531 7.24343 2.47011 7.01812L7.09641 2.38125C7.32736 2.14978 7.6437 2.02403 7.97054 2.03377C8.29738 2.04352 8.60566 2.1879 8.82241 2.43272L10.844 4.71618L11.8625 4.23916V1.28525ZM14.2323 2.47015V4.99263C14.2323 5.4524 13.9663 5.87066 13.55 6.06567L11.0467 7.23809C10.5709 7.46093 10.0052 7.34385 9.65693 6.95047L7.88366 4.94746L5.00117 7.83653L6.99164 9.74619C7.36303 10.1025 7.46193 10.6578 7.2364 11.1205L6.00061 13.6554C5.80206 14.0627 5.38862 14.3211 4.93552 14.3211H2.52924V18.2887H4.81934C5.25949 18.2887 5.66338 18.5327 5.86817 18.9223L7.16734 21.3939C7.40675 21.8493 7.32484 22.4072 6.96461 22.7747L5.14537 24.6303L7.71341 27.1983L9.33658 25.5752C9.67578 25.236 10.186 25.1348 10.629 25.3188L13.502 26.5123C13.9441 26.696 14.2323 27.1278 14.2323 27.6066V30.0762H18.1999V27.5538C18.1999 27.0955 18.4642 26.6783 18.8785 26.4825L21.3818 25.2995C21.8582 25.0744 22.426 25.1908 22.7752 25.5854L24.5504 27.5905L27.4396 24.708L25.4511 22.8002C25.0808 22.4449 24.9813 21.8916 25.2046 21.4295L26.4298 18.8946C26.6276 18.4853 27.0421 18.2253 27.4967 18.2253H29.9135V14.2577H27.6128C27.1713 14.2577 26.7663 14.0122 26.5622 13.6206L25.2736 11.149C25.0364 10.694 25.1189 10.1381 25.4781 9.7717L27.2963 7.91713L24.7198 5.347L23.0956 6.97121C22.7554 7.31137 22.2434 7.41211 21.7997 7.22616L18.9268 6.02206C18.4864 5.8375 18.1999 5.4067 18.1999 4.92925V2.47015H14.2323Z"
4
+ fill="var(--icon-color, #888)"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd"
6
+ d="M16.2164 13.2648C14.5374 13.2648 13.1763 14.6259 13.1763 16.3048C13.1763 17.9838 14.5374 19.3448 16.2164 19.3448C17.8953 19.3448 19.2564 17.9838 19.2564 16.3048C19.2564 14.6259 17.8953 13.2648 16.2164 13.2648ZM10.8065 16.3048C10.8065 13.317 13.2286 10.895 16.2164 10.895C19.2041 10.895 21.6262 13.317 21.6262 16.3048C21.6262 19.2926 19.2041 21.7147 16.2164 21.7147C13.2286 21.7147 10.8065 19.2926 10.8065 16.3048Z"
7
+ fill="var(--icon-color, #888)"/>
12
8
  </svg>
@@ -1,6 +1,8 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="6.411" height="7.595" viewBox="0 0 6.411 7.595">
2
- <g transform="translate(63.476 34.288) rotate(180)">
3
- <path d="M60.27,30.4h0a.5.5,0,0,1-.354-.147l-2.705-2.706a.5.5,0,1,1,.707-.707l2.352,2.353,2.352-2.353a.5.5,0,1,1,.707.707l-2.706,2.706A.5.5,0,0,1,60.27,30.4Z" fill="var(--icon-color, #888)"/>
4
- <path d="M60.27,34.288h0a.5.5,0,0,1-.354-.146l-2.705-2.706a.5.5,0,1,1,.707-.707l2.352,2.352,2.352-2.352a.5.5,0,1,1,.707.707l-2.706,2.706a.5.5,0,0,1-.353.146Z" fill="var(--icon-color, #888)"/>
5
- </g>
1
+ <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M15.0513 15.1519C15.5108 14.6925 16.2557 14.6925 16.7152 15.1519L31.4221 29.8589C31.8816 30.3183 31.8816 31.0633 31.4221 31.5228C30.9626 31.9822 30.2177 31.9822 29.7582 31.5228L15.8832 17.6478L2.00826 31.5228C1.54879 31.9822 0.803834 31.9822 0.344361 31.5228C-0.115112 31.0633 -0.115112 30.3183 0.344361 29.8589L15.0513 15.1519Z"
4
+ fill="var(--icon-color, #888)"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd"
6
+ d="M15.0518 0.444947C15.5112 -0.0145265 16.2562 -0.0145265 16.7157 0.444947L31.4226 15.1519C31.8821 15.6113 31.8821 16.3563 31.4226 16.8158C30.9631 17.2752 30.2182 17.2752 29.7587 16.8158L15.8837 2.94079L2.00875 16.8158C1.54927 17.2752 0.804322 17.2752 0.344849 16.8158C-0.114624 16.3563 -0.114624 15.6113 0.344849 15.1519L15.0518 0.444947Z"
7
+ fill="var(--icon-color, #888)"/>
6
8
  </svg>
@@ -1,6 +1,8 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="6.411" height="7.596" viewBox="0 0 6.411 7.596">
2
- <g transform="translate(-57.065 -26.692)">
3
- <path d="M60.27,30.4h0a.5.5,0,0,1-.354-.147l-2.705-2.706a.5.5,0,1,1,.707-.707l2.352,2.353,2.352-2.353a.5.5,0,1,1,.707.707l-2.706,2.706A.5.5,0,0,1,60.27,30.4Z" fill="var(--icon-color, #888)"/>
4
- <path d="M60.27,34.288h0a.5.5,0,0,1-.354-.146l-2.705-2.706a.5.5,0,1,1,.707-.707l2.352,2.352,2.352-2.352a.5.5,0,0,1,.707.707l-2.706,2.706A.5.5,0,0,1,60.27,34.288Z" fill="var(--icon-color, #888)"/>
5
- </g>
1
+ <svg width="33" height="33" viewBox="0 0 33 33" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M17.0045 17.1726C16.5451 17.6321 15.8001 17.6321 15.3406 17.1726L0.633623 2.46562C0.174146 2.00615 0.174146 1.26119 0.633623 0.801715C1.0931 0.342239 1.83805 0.342239 2.29753 0.801715L16.1726 14.6768L30.0476 0.801718C30.5071 0.342241 31.2521 0.342241 31.7115 0.801718C32.171 1.26119 32.171 2.00615 31.7115 2.46563L17.0045 17.1726Z"
4
+ fill="var(--icon-color, #888)"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd"
6
+ d="M17.0043 31.8795C16.5448 32.339 15.7999 32.339 15.3404 31.8795L0.633378 17.1725C0.173902 16.713 0.173902 15.9681 0.633379 15.5086C1.09286 15.0491 1.83781 15.0491 2.29728 15.5086L16.1723 29.3837L30.0474 15.5086C30.5069 15.0491 31.2518 15.0491 31.7113 15.5086C32.1708 15.9681 32.1708 16.713 31.7113 17.1725L17.0043 31.8795Z"
7
+ fill="var(--icon-color, #888)"/>
6
8
  </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="35" height="35" viewBox="0 0 35 35" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M34.6875 6.3075C35.0975 6.7175 35.0975 7.3775 34.6875 7.7875L12.3175 30.0375C11.9075 30.4475 11.2375 30.4475 10.8275 30.0375L0.3075 19.5675C-0.1025 19.1575 -0.1025 18.4975 0.3075 18.0875C0.7175 17.6775 1.3875 17.6775 1.7975 18.0875L11.5775 27.8175L33.1975 6.3075C33.6075 5.8975 34.2775 5.8975 34.6875 6.3075Z"
4
+ fill="var(--icon-color, #888)"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="33" height="35" viewBox="0 0 33 35" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M7.43609 4.51673C7.43609 2.19655 9.30047 0.315674 11.6003 0.315674H20.5236C22.8234 0.315674 24.6878 2.19655 24.6878 4.51673V12.3187H30.9341C31.5912 12.3187 32.1239 12.8561 32.1239 13.519V33.0239C32.1239 33.6868 31.5912 34.2242 30.9341 34.2242H1.18977C0.53268 34.2242 0 33.6868 0 33.0239V13.519C0 12.8561 0.53268 12.3187 1.18977 12.3187H22.3083V4.51673C22.3083 3.52237 21.5092 2.71628 20.5236 2.71628H11.6003C10.6147 2.71628 9.81563 3.52237 9.81563 4.51673V7.51749C9.81563 8.1804 9.28295 8.71779 8.62586 8.71779C7.96877 8.71779 7.43609 8.1804 7.43609 7.51749V4.51673ZM2.37955 14.7193V31.8236H29.7443V14.7193H2.37955Z"
4
+ fill="var(--icon-color, #888)"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="33" height="33" viewBox="0 0 33 33" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M1.05355 0.448819C1.51819 -0.0158171 2.27151 -0.0158171 2.73615 0.448819L16.767 14.4797L30.7979 0.448819C31.2625 -0.0158171 32.0159 -0.0158171 32.4805 0.448819C32.9451 0.913454 32.9451 1.66678 32.4805 2.13141L18.4496 16.1623L32.4805 30.1932C32.9451 30.6578 32.9451 31.4111 32.4805 31.8758C32.0159 32.3404 31.2625 32.3404 30.7979 31.8758L16.767 17.8449L2.73615 31.8758C2.27151 32.3404 1.51819 32.3404 1.05355 31.8758C0.588919 31.4111 0.588919 30.6578 1.05355 30.1932L15.0844 16.1623L1.05355 2.13141C0.588919 1.66678 0.588919 0.913454 1.05355 0.448819Z"
4
+ fill="var(--icon-color, #888)"/>
5
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="35" height="35" viewBox="0 0 35 35" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_692_1878)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd"
4
+ d="M12.4682 29.7191L2.36148 31.7339L2.35065 31.7231C1.92818 31.7989 1.48405 31.6689 1.19157 31.3765C0.888257 31.0731 0.747434 30.6182 0.844926 30.2174L2.85978 20.1106C2.91394 19.8506 3.0331 19.6231 3.20642 19.4498L22.25 0.373723C22.7592 -0.124574 23.5933 -0.124574 24.0916 0.373723L32.1835 8.46563C32.6818 8.97476 32.6818 9.80887 32.1835 10.3072L13.129 29.3724C12.9557 29.5458 12.7174 29.6757 12.4682 29.7191ZM29.4212 9.37556L23.16 3.11436L20.9718 5.30253L27.233 11.5637L29.4212 9.37556ZM25.424 13.3944L19.1628 7.13323L5.93622 20.3598L12.1974 26.621L25.424 13.3944ZM9.55429 27.6284L4.8963 22.9704L3.73721 28.7875L9.55429 27.6284ZM1.2999 32.4055H33.7C34.415 32.4055 34.9999 32.9905 34.9999 33.7054C34.9999 34.4204 34.415 35.0053 33.7 35.0053H1.2999C0.584957 35.0053 0 34.4204 0 33.7054C0 32.9905 0.584957 32.4055 1.2999 32.4055Z"
5
+ fill="var(--icon-color, #888)"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_692_1878">
9
+ <rect width="35" height="35.0054" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -16,10 +16,6 @@
16
16
  "iconName": "calendar",
17
17
  "iconPath": "/assets/gravity/icons/calendar.svg"
18
18
  },
19
- {
20
- "iconName": "check",
21
- "iconPath": "/assets/gravity/icons/check.svg"
22
- },
23
19
  {
24
20
  "iconName": "clip",
25
21
  "iconPath": "/assets/gravity/icons/clip.svg"
@@ -32,10 +28,6 @@
32
28
  "iconName": "download",
33
29
  "iconPath": "/assets/gravity/icons/download.svg"
34
30
  },
35
- {
36
- "iconName": "edit",
37
- "iconPath": "/assets/gravity/icons/edit.svg"
38
- },
39
31
  {
40
32
  "iconName": "eye_closed",
41
33
  "iconPath": "/assets/gravity/icons/eye_closed.svg"
@@ -53,24 +45,28 @@
53
45
  "iconPath": "/assets/gravity/icons/lock.svg"
54
46
  },
55
47
  {
56
- "iconName": "logout",
57
- "iconPath": "/assets/gravity/icons/logout.svg"
48
+ "iconName": "log_out",
49
+ "iconPath": "/assets/gravity/icons/log_out.svg"
58
50
  },
59
51
  {
60
52
  "iconName": "mail",
61
53
  "iconPath": "/assets/gravity/icons/mail.svg"
62
54
  },
55
+ {
56
+ "iconName": "my_profile",
57
+ "iconPath": "/assets/gravity/icons/my_profile.svg"
58
+ },
63
59
  {
64
60
  "iconName": "notification_error",
65
- "iconPath": "/assets/gravity/icons/notifications/error.svg"
61
+ "iconPath": "/assets/gravity/icons/unsuccess.svg"
66
62
  },
67
63
  {
68
64
  "iconName": "notification_success",
69
- "iconPath": "/assets/gravity/icons/notifications/success.svg"
65
+ "iconPath": "/assets/gravity/icons/success.svg"
70
66
  },
71
67
  {
72
68
  "iconName": "notification_warning",
73
- "iconPath": "/assets/gravity/icons/notifications/warning.svg"
69
+ "iconPath": "/assets/gravity/icons/warning.svg"
74
70
  },
75
71
  {
76
72
  "iconName": "search",
@@ -88,17 +84,21 @@
88
84
  "iconName": "show_more",
89
85
  "iconPath": "/assets/gravity/icons/show_more.svg"
90
86
  },
87
+ {
88
+ "iconName": "success",
89
+ "iconPath": "/assets/gravity/icons/success.svg"
90
+ },
91
91
  {
92
92
  "iconName": "uncheck",
93
93
  "iconPath": "/assets/gravity/icons/uncheck.svg"
94
94
  },
95
95
  {
96
- "iconName": "user",
97
- "iconPath": "/assets/gravity/icons/user.svg"
96
+ "iconName": "unsuccess",
97
+ "iconPath": "/assets/gravity/icons/unsuccess.svg"
98
98
  },
99
99
  {
100
- "iconName": "x",
101
- "iconPath": "/assets/gravity/icons/x.svg"
100
+ "iconName": "update",
101
+ "iconPath": "/assets/gravity/icons/update.svg"
102
102
  }
103
103
  ],
104
104
  "customIcons": [