@tetacom/ng-components 1.0.151 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (208) hide show
  1. package/assets/color-icons.svg +521 -49
  2. package/assets/file-icons.svg +1 -0
  3. package/assets/icons.svg +138 -205
  4. package/component/accordion/accordion-item/accordion-item.component.d.ts +1 -4
  5. package/component/button/button/button.component.d.ts +1 -4
  6. package/component/checkbox/checkbox/checkbox.component.d.ts +1 -2
  7. package/component/date-picker/date-picker/date-picker.component.d.ts +68 -38
  8. package/component/date-picker/date-picker.module.d.ts +16 -19
  9. package/component/date-picker/day-select/day-select.component.d.ts +51 -0
  10. package/component/date-picker/model/date-picker-mode.enum.d.ts +5 -0
  11. package/component/date-picker/month-picker/month-picker.component.d.ts +50 -16
  12. package/component/date-picker/month-select/month-select.component.d.ts +40 -0
  13. package/component/date-picker/public-api.d.ts +4 -5
  14. package/component/date-picker/service/picker-touch.service.d.ts +12 -0
  15. package/component/date-picker/time-part-control/time-part-control.component.d.ts +26 -0
  16. package/component/date-picker/util/date-picker-util.d.ts +15 -0
  17. package/component/date-picker/year-select/year-select.component.d.ts +45 -0
  18. package/component/dropdown/dropdown-base.d.ts +1 -3
  19. package/component/filter/filter.module.d.ts +2 -1
  20. package/component/icon/icon-file/icon-file.component.d.ts +3 -9
  21. package/component/icon/icon.module.d.ts +5 -4
  22. package/component/icon/public-api.d.ts +0 -1
  23. package/component/input/input/input.component.d.ts +1 -3
  24. package/component/message/model/message.d.ts +0 -3
  25. package/component/public-api.d.ts +0 -2
  26. package/component/select/select/select.component.d.ts +1 -4
  27. package/component/select/select.module.d.ts +2 -1
  28. package/component/switch/switch/switch.component.d.ts +1 -4
  29. package/component/table/table-body/table-body.component.d.ts +1 -0
  30. package/component/table/table.module.d.ts +2 -1
  31. package/component/tree/tree.module.d.ts +2 -1
  32. package/directive/hint/hint.directive.d.ts +1 -3
  33. package/directive/only-number/only-number.directive.d.ts +2 -1
  34. package/directive/public-api.d.ts +1 -0
  35. package/directive/scrollable/public-api.d.ts +3 -0
  36. package/directive/scrollable/scrollable/scrollable.component.d.ts +32 -0
  37. package/directive/scrollable/scrollable.directive.d.ts +6 -0
  38. package/directive/scrollable/scrollable.module.d.ts +10 -0
  39. package/esm2020/component/accordion/accordion/accordion.component.mjs +2 -3
  40. package/esm2020/component/accordion/accordion-head/accordion-head.component.mjs +2 -3
  41. package/esm2020/component/accordion/accordion-item/accordion-item.component.mjs +3 -13
  42. package/esm2020/component/button/button/button.component.mjs +3 -18
  43. package/esm2020/component/checkbox/checkbox/checkbox.component.mjs +3 -6
  44. package/esm2020/component/date-picker/date-picker/date-picker.component.mjs +235 -141
  45. package/esm2020/component/date-picker/date-picker.module.mjs +45 -41
  46. package/esm2020/component/date-picker/day-select/day-select.component.mjs +184 -0
  47. package/esm2020/component/date-picker/model/date-picker-mode.enum.mjs +7 -0
  48. package/esm2020/component/date-picker/month-picker/month-picker.component.mjs +237 -33
  49. package/esm2020/component/date-picker/month-select/month-select.component.mjs +148 -0
  50. package/esm2020/component/date-picker/public-api.mjs +5 -6
  51. package/esm2020/component/date-picker/service/picker-touch.service.mjs +34 -0
  52. package/esm2020/component/date-picker/time-part-control/time-part-control.component.mjs +73 -0
  53. package/esm2020/component/date-picker/util/date-picker-util.mjs +142 -0
  54. package/esm2020/component/date-picker/year-select/year-select.component.mjs +189 -0
  55. package/esm2020/component/dropdown/dropdown/dropdown.component.mjs +2 -3
  56. package/esm2020/component/dropdown/dropdown-base.mjs +2 -6
  57. package/esm2020/component/dropdown/dropdown.directive.mjs +1 -1
  58. package/esm2020/component/expand-card/expand-card/expand-card.component.mjs +1 -1
  59. package/esm2020/component/expand-card/expand-item/expand-item.component.mjs +1 -1
  60. package/esm2020/component/expand-panel/expand-panel/expand-panel.component.mjs +1 -1
  61. package/esm2020/component/file-upload/file-upload-area/file-upload-area.component.mjs +1 -1
  62. package/esm2020/component/filter/date-filter/date-filter.component.mjs +1 -1
  63. package/esm2020/component/filter/filter.module.mjs +7 -3
  64. package/esm2020/component/filter/list-filter/list-filter.component.mjs +4 -3
  65. package/esm2020/component/filter/numeric-filter/numeric-filter.component.mjs +1 -1
  66. package/esm2020/component/filter/string-filter/string-filter.component.mjs +1 -1
  67. package/esm2020/component/icon/icon-file/icon-file.component.mjs +6 -20
  68. package/esm2020/component/icon/icon.module.mjs +6 -1
  69. package/esm2020/component/icon/public-api.mjs +1 -2
  70. package/esm2020/component/input/input/input.component.mjs +3 -6
  71. package/esm2020/component/input/input.module.mjs +1 -1
  72. package/esm2020/component/input/text-field/text-field.component.mjs +3 -3
  73. package/esm2020/component/message/message/message.component.mjs +3 -4
  74. package/esm2020/component/message/message-host/message-host.component.mjs +1 -1
  75. package/esm2020/component/message/model/message.mjs +1 -2
  76. package/esm2020/component/modal/dialog/dialog.component.mjs +1 -1
  77. package/esm2020/component/property-grid/property-grid/property-grid-item/property-grid-item.component.mjs +2 -2
  78. package/esm2020/component/public-api.mjs +1 -4
  79. package/esm2020/component/select/select/select.component.mjs +6 -9
  80. package/esm2020/component/select/select.module.mjs +7 -3
  81. package/esm2020/component/switch/switch/switch.component.mjs +7 -19
  82. package/esm2020/component/table/default/boolean-cell/boolean-cell.component.mjs +1 -1
  83. package/esm2020/component/table/default/date-cell/date-cell.component.mjs +1 -1
  84. package/esm2020/component/table/default/date-time-cell/date-time-cell.component.mjs +1 -1
  85. package/esm2020/component/table/default/default-head-cell/default-head-cell.component.mjs +1 -1
  86. package/esm2020/component/table/default/list-cell/list-cell.component.mjs +1 -1
  87. package/esm2020/component/table/default/string-cell/string-cell.component.mjs +1 -1
  88. package/esm2020/component/table/selection-cell/selection-cell.component.mjs +1 -1
  89. package/esm2020/component/table/selection-head-cell/selection-head-cell.component.mjs +1 -1
  90. package/esm2020/component/table/table-body/table-body.component.mjs +11 -6
  91. package/esm2020/component/table/table-head/filter-dropdown-tab/filter-dropdown-tab.component.mjs +1 -1
  92. package/esm2020/component/table/table-head/visibility-dropdown-tab/visibility-dropdown-tab.component.mjs +4 -3
  93. package/esm2020/component/table/table.module.mjs +7 -3
  94. package/esm2020/component/theme-switch/theme-switch/theme-switch.component.mjs +1 -1
  95. package/esm2020/component/tree/tree/tree.component.mjs +6 -4
  96. package/esm2020/component/tree/tree.module.mjs +5 -4
  97. package/esm2020/directive/hint/hint.directive.mjs +3 -6
  98. package/esm2020/directive/only-number/only-number.directive.mjs +12 -2
  99. package/esm2020/directive/public-api.mjs +2 -1
  100. package/esm2020/directive/scrollable/public-api.mjs +4 -0
  101. package/esm2020/directive/scrollable/scrollable/scrollable.component.mjs +96 -0
  102. package/esm2020/directive/scrollable/scrollable.directive.mjs +19 -0
  103. package/esm2020/directive/scrollable/scrollable.module.mjs +33 -0
  104. package/esm2020/locale/en.mjs +1 -3
  105. package/esm2020/locale/ru.mjs +1 -3
  106. package/esm2020/locale/teta-localisation.mjs +1 -1
  107. package/esm2020/observable/animation-frame.mjs +30 -0
  108. package/esm2020/observable/public-api.mjs +2 -1
  109. package/esm2020/pipe/prepend-zero/prepend-zero.module.mjs +18 -0
  110. package/esm2020/pipe/prepend-zero/prepend-zero.pipe.mjs +21 -0
  111. package/fesm2015/tetacom-ng-components.mjs +5483 -5181
  112. package/fesm2015/tetacom-ng-components.mjs.map +1 -1
  113. package/fesm2020/tetacom-ng-components.mjs +3333 -3025
  114. package/fesm2020/tetacom-ng-components.mjs.map +1 -1
  115. package/locale/teta-localisation.d.ts +0 -2
  116. package/observable/animation-frame.d.ts +4 -0
  117. package/observable/public-api.d.ts +1 -0
  118. package/package.json +2 -3
  119. package/pipe/prepend-zero/prepend-zero.module.d.ts +8 -0
  120. package/pipe/prepend-zero/prepend-zero.pipe.d.ts +7 -0
  121. package/style/accordion.scss +6 -28
  122. package/style/assembly-library.scss +1 -4
  123. package/style/assembly-presets.scss +1 -0
  124. package/style/button.scss +13 -16
  125. package/style/checkbox.scss +13 -26
  126. package/style/chips.scss +10 -10
  127. package/style/color.scss +36 -1
  128. package/style/datepicker.scss +24 -139
  129. package/style/drag.scss +1 -1
  130. package/style/dropdown.scss +4 -6
  131. package/style/hint.scss +5 -5
  132. package/style/icon.scss +1 -2
  133. package/style/input.scss +23 -32
  134. package/style/layout.scss +2 -6
  135. package/style/library.scss +17 -0
  136. package/style/list.scss +8 -11
  137. package/style/loader.scss +2 -2
  138. package/style/message.scss +7 -15
  139. package/style/modal.scss +2 -3
  140. package/style/navigation.scss +1 -4
  141. package/style/presets/color-presets.scss +160 -8
  142. package/style/presets/font-presets.scss +25 -26
  143. package/style/presets/shadow-presets.scss +16 -0
  144. package/style/progress.scss +3 -3
  145. package/style/radio.scss +7 -21
  146. package/style/resize-panel.scss +2 -2
  147. package/style/scroll.scss +21 -17
  148. package/style/select.scss +21 -26
  149. package/style/shadow.scss +20 -0
  150. package/style/sidebar.scss +1 -1
  151. package/style/switch.scss +10 -15
  152. package/style/table.scss +15 -17
  153. package/style/tabs.scss +11 -11
  154. package/style/toggle.scss +18 -20
  155. package/style/tokens/basedark.tokens.css +77 -0
  156. package/style/tokens/baselight.tokens.css +61 -0
  157. package/style/tokens/global.tokens.css +235 -0
  158. package/style/tokens/utility.tokens.css +1119 -0
  159. package/style/toolbar.scss +1 -1
  160. package/style/tooltip.scss +6 -8
  161. package/style/tree.scss +4 -4
  162. package/style/util/button-util.scss +58 -0
  163. package/common/model/view-type.model.d.ts +0 -1
  164. package/component/avatar/avatar/avatar.component.d.ts +0 -17
  165. package/component/avatar/avatar.module.d.ts +0 -9
  166. package/component/avatar/model/avatar-color.enum.d.ts +0 -20
  167. package/component/avatar/public-api.d.ts +0 -2
  168. package/component/date-picker/base-calendar.d.ts +0 -49
  169. package/component/date-picker/base-picker.d.ts +0 -60
  170. package/component/date-picker/date-picker/date-calendar/date-calendar.component.d.ts +0 -20
  171. package/component/date-picker/date-range/date-range.component.d.ts +0 -46
  172. package/component/date-picker/date-range/range-calendar/range-calendar.component.d.ts +0 -39
  173. package/component/date-picker/day-picker/day-item/day-item.component.d.ts +0 -9
  174. package/component/date-picker/day-picker/day-picker.component.d.ts +0 -30
  175. package/component/date-picker/model/from-to.model.d.ts +0 -4
  176. package/component/date-picker/model/min-max-date.model.d.ts +0 -4
  177. package/component/date-picker/year-picker/scroll-to-selected-year.directive.d.ts +0 -11
  178. package/component/date-picker/year-picker/year-picker.component.d.ts +0 -24
  179. package/component/divider/divider/divider.component.d.ts +0 -10
  180. package/component/divider/divider.module.d.ts +0 -8
  181. package/component/divider/public-api.d.ts +0 -2
  182. package/component/icon/icon-file/icon-file.module.d.ts +0 -9
  183. package/esm2020/common/model/view-type.model.mjs +0 -2
  184. package/esm2020/component/avatar/avatar/avatar.component.mjs +0 -57
  185. package/esm2020/component/avatar/avatar.module.mjs +0 -28
  186. package/esm2020/component/avatar/model/avatar-color.enum.mjs +0 -22
  187. package/esm2020/component/avatar/public-api.mjs +0 -3
  188. package/esm2020/component/date-picker/base-calendar.mjs +0 -99
  189. package/esm2020/component/date-picker/base-picker.mjs +0 -102
  190. package/esm2020/component/date-picker/date-picker/date-calendar/date-calendar.component.mjs +0 -49
  191. package/esm2020/component/date-picker/date-range/date-range.component.mjs +0 -211
  192. package/esm2020/component/date-picker/date-range/range-calendar/range-calendar.component.mjs +0 -108
  193. package/esm2020/component/date-picker/day-picker/day-item/day-item.component.mjs +0 -15
  194. package/esm2020/component/date-picker/day-picker/day-picker.component.mjs +0 -113
  195. package/esm2020/component/date-picker/model/from-to.model.mjs +0 -2
  196. package/esm2020/component/date-picker/model/min-max-date.model.mjs +0 -2
  197. package/esm2020/component/date-picker/year-picker/scroll-to-selected-year.directive.mjs +0 -26
  198. package/esm2020/component/date-picker/year-picker/year-picker.component.mjs +0 -48
  199. package/esm2020/component/divider/divider/divider.component.mjs +0 -18
  200. package/esm2020/component/divider/divider.module.mjs +0 -20
  201. package/esm2020/component/divider/public-api.mjs +0 -3
  202. package/esm2020/component/icon/icon-file/icon-file.module.mjs +0 -28
  203. package/style/badge.scss +0 -28
  204. package/style/bottombar.scss +0 -5
  205. package/style/divider.scss +0 -15
  206. package/style/presets/view-types.scss +0 -15
  207. package/style/tag.scss +0 -37
  208. package/style/util/scroll-util.scss +0 -4
@@ -20,6 +20,15 @@
20
20
  </clipPath>
21
21
  </defs>
22
22
  </symbol>
23
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="addColor">
24
+ <path d="M9 3H7V7H3V9H7V13H9V9H13V7H9V3Z" fill="#17AE66"></path>
25
+ </symbol>
26
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="areasColor">
27
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2 2L3 2L3 14L2 14L2 2Z" fill="#C66829"></path>
28
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5 2L7 2L7 14L5 14L5 2Z" fill="#17AE66"></path>
29
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M9 2L11 2L11 14L9 14L9 2Z" fill="#17AE66"></path>
30
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13 14L13 2L14 2L14 14L13 14Z" fill="#C66829"></path>
31
+ </symbol>
23
32
  <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="barChart">
24
33
  <path d="M5 6H14V10H9.5H5V6Z" fill="#F2C94C"></path>
25
34
  <path d="M5 11H14V14H5V11Z" fill="#24C38E"></path>
@@ -32,6 +41,42 @@
32
41
  <path d="M5 11H11V13H5V11Z" fill="#E55759"></path>
33
42
  <rect x="2" y="2" width="1" height="12" fill="#9D9D9D"></rect>
34
43
  </symbol>
44
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="calcColor">
45
+ <path fill-rule="evenodd" clip-rule="evenodd"
46
+ d="M3 3C3 2.44772 3.44772 2 4 2H12C12.5523 2 13 2.44772 13 3V13C13 13.5523 12.5523 14 12 14H4C3.44772 14 3 13.5523 3 13V3ZM4 3H12V5H4V3ZM6 7H5V8H6V7ZM7 7H8V8H7V7ZM11 7H9V8H11V7ZM5 9H6V10H5V9ZM8 9H7V10H8V9ZM5 11H6V12H5V11ZM8 11H7V12H8V11ZM9 9H11V10H9V9ZM11 11H9V12H11V11Z"
47
+ fill="url(#paint0_linear_2486_8)"></path>
48
+ <rect x="4" y="3" width="8" height="3" fill="url(#paint1_linear_2486_8)"></rect>
49
+ <rect x="5" y="7" width="1" height="1" fill="white"></rect>
50
+ <rect x="5" y="9" width="1" height="1" fill="white"></rect>
51
+ <rect x="5" y="11" width="1" height="1" fill="white"></rect>
52
+ <rect x="7" y="7" width="1" height="1" fill="white"></rect>
53
+ <rect x="7" y="9" width="1" height="1" fill="white"></rect>
54
+ <rect x="7" y="11" width="1" height="1" fill="white"></rect>
55
+ <rect x="9" y="7" width="2" height="1" fill="white"></rect>
56
+ <rect x="9" y="9" width="2" height="1" fill="white"></rect>
57
+ <rect x="9" y="11" width="2" height="1" fill="white"></rect>
58
+ <defs>
59
+ <linearGradient id="paint0_linear_2486_8" x1="3" y1="2" x2="13" y2="14" gradientUnits="userSpaceOnUse">
60
+ <stop stop-color="#A5ACB1"></stop>
61
+ <stop offset="1" stop-color="#7F848A"></stop>
62
+ </linearGradient>
63
+ <linearGradient id="paint1_linear_2486_8" x1="4" y1="3" x2="12.2703" y2="4.37838" gradientUnits="userSpaceOnUse">
64
+ <stop stop-color="#64C1FF"></stop>
65
+ <stop offset="1" stop-color="#C0E4FF"></stop>
66
+ </linearGradient>
67
+ </defs>
68
+ </symbol>
69
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="calendarColor">
70
+ <path fill-rule="evenodd" clip-rule="evenodd"
71
+ d="M13.0007 13.002L12.9998 6H3.00366L3.00464 13.002H13.0007ZM3.00464 14C2.70386 14 2.46232 13.9089 2.28003 13.7266C2.09774 13.5443 2.00431 13.3027 1.99976 13.002L2.00183 5.00488C2.00183 4.74056 2.09753 4.50814 2.28894 4.30762C2.48035 4.1071 2.7196 4.00456 3.00671 4H5.00281L5.00378 5H6.00183L6.00085 4H10.0018L10.0028 5H11.0077L11.0067 4H13.0028C13.2899 4.00456 13.5292 4.1071 13.7206 4.30762C13.912 4.50814 14.0054 4.74056 14.0009 5.00488L13.9988 13.002C13.9988 13.3027 13.9076 13.5443 13.7253 13.7266C13.543 13.9089 13.3015 14 13.0007 14H3.00464ZM11.0067 4H10.0018L10.0028 2H11.0077L11.0067 4ZM6.00085 4H5.00281L5.00378 2H6.00183L6.00085 4Z"
72
+ fill="#C66829"></path>
73
+ <path d="M11.9998 10.998V10H10.0037V10.998H11.9998Z" fill="#7D8F9A"></path>
74
+ <path d="M8.99683 10.998V10H7.00073V10.998H8.99683Z" fill="#7D8F9A"></path>
75
+ <path d="M5.9978 10.998V10H4.00171V10.998H5.9978Z" fill="#7D8F9A"></path>
76
+ <path d="M11.9978 8.99805V8H10.0017V8.99805H11.9978Z" fill="#7D8F9A"></path>
77
+ <path d="M8.99487 8.99805V8H6.99878V8.99805H8.99487Z" fill="#7D8F9A"></path>
78
+ <path d="M5.99585 8.99805V8H3.99976V8.99805H5.99585Z" fill="#7D8F9A"></path>
79
+ </symbol>
35
80
  <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="chartLineColor">
36
81
  <path d="M2 2H3V14H2V13V2Z" fill="#9D9D9D"></path>
37
82
  <path fill-rule="evenodd" clip-rule="evenodd"
@@ -66,6 +111,16 @@
66
111
  d="M8.5731 3.28736C8.73395 2.88817 9.26601 2.88817 9.42685 3.28736L10.06 4.85875L8.99997 5.53525L7.93994 4.85875L8.5731 3.28736ZM9.90266 6.11132L10.4293 5.77524L10.7939 6.68009L9.90266 6.11132ZM8.99997 6.6874L10.8998 7.89985L9.00294 9.17047L7.1009 7.89936L8.99997 6.6874ZM6.4263 8.61532L8.13099 9.75455L5.1674 11.7397L6.4263 8.61532ZM9.00351 10.3376L4.52304 13.3389L4.25666 14H3.24609L7.71935 2.89818C8.20188 1.70061 9.79806 1.70061 10.2806 2.89818L14.7539 14H13.7433L13.4704 13.3228L9.00351 10.3376ZM9.87546 9.75357L12.8271 11.7261L11.5739 8.61589L9.87546 9.75357ZM7.57066 5.77524L7.20607 6.68009L8.09729 6.11132L7.57066 5.77524Z"
67
112
  fill="#17AE66"></path>
68
113
  </symbol>
114
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="coinColor">
115
+ <path fill-rule="evenodd" clip-rule="evenodd"
116
+ d="M5.99707 13V13.998H7.00195V13H5.99707ZM5.99707 10.9971V12.002H7.00195V10.9971H5.99707ZM1.99805 9.99902V10.9971H3.00293V9.99902H1.99805ZM8 8.80273C7.44401 8.80273 6.97233 8.86881 6.58496 9.00098C6.19759 9.13314 6.00163 9.29948 5.99707 9.5C5.99251 9.70052 6.1862 9.86686 6.57812 9.99902C6.97005 10.1312 7.44401 10.1973 8 10.1973C8.55599 10.1973 9.02767 10.1312 9.41504 9.99902C9.80241 9.86686 9.99837 9.70052 10.0029 9.5C10.0075 9.29948 9.8138 9.13314 9.42188 9.00098C9.02995 8.86881 8.55599 8.80273 8 8.80273ZM11.001 13.499C11.0055 13.9046 10.7161 14.2555 10.1328 14.5518C9.54948 14.848 8.83855 14.9961 8 14.9961C7.16145 14.9961 6.4528 14.8503 5.87402 14.5586C5.29524 14.2578 5.00358 13.9046 4.99902 13.499V9.5C4.99447 9.0944 5.28385 8.74349 5.86719 8.44727C6.45052 8.15104 7.16145 8.00293 8 8.00293C8.83855 8.00293 9.5472 8.15104 10.126 8.44727C10.7048 8.74349 10.9964 9.0944 11.001 9.5V13.499ZM1.99805 8.00293V9.00098H3.00293V8.00293H1.99805ZM1.99805 6V6.99805H3.00293V6H1.99805ZM11.999 4.79688C11.443 4.79688 10.9714 4.86523 10.584 5.00195C10.1966 5.13867 10.0029 5.30501 10.0029 5.50098C10.0029 5.7015 10.1966 5.86784 10.584 6C10.9714 6.13216 11.443 6.19824 11.999 6.19824C12.555 6.19824 13.0267 6.13216 13.4141 6C13.8014 5.86784 13.9974 5.7015 14.002 5.50098C14.002 5.30501 13.806 5.13867 13.4141 5.00195C13.0221 4.86523 12.5505 4.79688 11.999 4.79688ZM15 11.5029C15 11.9085 14.7106 12.2594 14.1318 12.5557C13.5531 12.8519 12.8421 13 11.999 13V9.00098C11.999 8.55436 11.7165 8.14876 11.1514 7.78418C10.5863 7.41959 9.86849 7.15755 8.99805 6.99805V5.50098C8.99805 5.09538 9.28971 4.74447 9.87305 4.44824C10.4564 4.15202 11.165 4.00391 11.999 4.00391C12.833 4.00391 13.5417 4.14974 14.125 4.44141C14.7083 4.74219 15 5.09538 15 5.50098V11.5029ZM1.99805 3.99707V5.00195H3.00293V3.99707H1.99805ZM5.99707 2.5C5.99707 2.29948 5.80339 2.13314 5.41602 2.00098C5.02864 1.86881 4.55697 1.80273 4.00098 1.80273C3.44498 1.80273 2.97331 1.86881 2.58594 2.00098C2.19857 2.13314 2.0026 2.29948 1.99805 2.5C1.99805 2.70052 2.19401 2.86686 2.58594 2.99902C2.97787 3.13119 3.44954 3.19727 4.00098 3.19727C4.55697 3.19727 5.02864 3.13119 5.41602 2.99902C5.80339 2.86686 5.99707 2.70052 5.99707 2.5ZM4.00098 12.002C3.16699 12.002 2.45834 11.8516 1.875 11.5508C1.29166 11.25 1 10.8991 1 10.498V2.5C1 2.0944 1.28939 1.74349 1.86816 1.44727C2.44694 1.15104 3.15559 1.00293 3.99414 1.00293C4.83269 1.00293 5.54362 1.15104 6.12695 1.44727C6.70573 1.74349 6.9974 2.0944 7.00195 2.5V6.99805C6.51888 7.05273 6.08366 7.16211 5.69629 7.32617C5.30892 7.49024 5.01498 7.65885 4.81445 7.83203C4.61393 8.00521 4.4362 8.20801 4.28125 8.44043C4.1263 8.67741 4.03288 8.86426 4.00098 9.00098V12.002Z"
117
+ fill="#FFB115"></path>
118
+ </symbol>
119
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="deleteColor">
120
+ <path fill-rule="evenodd" clip-rule="evenodd"
121
+ d="M9.99509 3.99625V2.99821H5.99413V3.99625H9.99509ZM12.9961 5.99918H11.998V13.0011C11.998 13.3019 11.9069 13.5435 11.7246 13.7257C11.5423 13.908 11.3008 13.9992 11 13.9992H4.99609C4.73632 13.9992 4.5039 13.9058 4.29882 13.7189C4.0983 13.5321 3.99804 13.2928 3.99804 13.0011V5.99918H3V5.00114C3 4.71858 3.10026 4.48161 3.30078 4.2902C3.5013 4.09879 3.73372 4.00081 3.99804 3.99625H4.99609V2.99821C5.00064 2.7111 5.10318 2.47184 5.3037 2.28043C5.50422 2.08903 5.73436 1.9956 5.99413 2.00016H9.99509C10.2959 2.00016 10.5374 2.0913 10.7197 2.2736C10.902 2.45589 10.9954 2.69742 11 2.99821V3.99625H11.998C12.2988 4.00081 12.5403 4.09423 12.7226 4.27653C12.9049 4.45882 12.9961 4.70035 12.9961 5.00114V5.99918Z"
122
+ fill="#E25241"></path>
123
+ </symbol>
69
124
  <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="documentColor">
70
125
  <path fill-rule="evenodd" clip-rule="evenodd"
71
126
  d="M10.0026 10.999H4.99866V10.001H10.0026V10.999ZM10.0026 9.00293H4.99866V7.99805H10.0026V9.00293ZM8.99768 7H4.99866V6.00195H8.99768V7ZM4.00061 2.99902V13.002H11.0006V6L7.99963 2.99902H4.00061ZM4.00061 14C3.69983 14 3.45829 13.9089 3.276 13.7266C3.09371 13.5443 3.00256 13.3027 3.00256 13.002V2.99902C3.00256 2.69824 3.09371 2.45671 3.276 2.27441C3.45829 2.09212 3.69983 2.00098 4.00061 2.00098H8.41663L11.9987 5.58301V13.002C11.9987 13.2845 11.8984 13.5215 11.6979 13.7129C11.4974 13.9043 11.2649 14 11.0006 14H4.00061Z"
@@ -87,6 +142,19 @@
87
142
  <path d="M8 3H2V4.82101L6.00137 8.45681V13H7.99863V8.45681L8 8.45556V3Z" fill="#C66829"></path>
88
143
  <path d="M12 13H10V6H8L11 3L14 6H12V13Z" fill="#0A7CD6"></path>
89
144
  </symbol>
145
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="folderAddColor">
146
+ <path fill-rule="evenodd" clip-rule="evenodd"
147
+ d="M11.1803 7.06686C8.80885 7.45795 7 9.51773 7 12C7 12.3425 7.03443 12.6769 7.10002 13H3.00488L2 6.00001H5.00098L7.00391 3.99708H12.999C13.2588 3.99252 13.4889 4.08594 13.6895 4.27735C13.89 4.46876 13.9948 4.71029 14.0039 5.00196V7.41775C13.6849 7.27807 13.3486 7.17071 12.999 7.09982V5.00196H7.30469L6.2998 6.00001H11.0029L11.1803 7.06686Z"
148
+ fill="#FFB115"></path>
149
+ <path fill-rule="evenodd" clip-rule="evenodd"
150
+ d="M10.9961 10.9961V9H12.999V10.9961H14.9951V12.999H12.999V14.9951H10.9961V12.999H9V10.9961H10.9961Z"
151
+ fill="#17AE66"></path>
152
+ </symbol>
153
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="folderColor">
154
+ <path fill-rule="evenodd" clip-rule="evenodd"
155
+ d="M12.9971 12.002V5.00196H7.30273L6.29785 6.00001H11.001L11.999 12.002H12.9971ZM12.9971 3.99708C13.2568 3.99252 13.487 4.08594 13.6875 4.27735C13.888 4.46876 13.9928 4.71029 14.002 5.00196V12.002C14.002 12.2845 13.9017 12.5215 13.7012 12.7129C13.5007 12.9043 13.266 13 12.9971 13H3.00293L1.99805 6.00001H4.99902L7.00195 3.99708H12.9971Z"
156
+ fill="#FFB115"></path>
157
+ </symbol>
90
158
  <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="folderGroupColor">
91
159
  <g clip-path="url(#clip0_3838_19116)">
92
160
  <path opacity="0.2"
@@ -120,6 +188,31 @@
120
188
  </clipPath>
121
189
  </defs>
122
190
  </symbol>
191
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="geomechColor">
192
+ <rect x="2" y="2" width="12" height="3" fill="url(#paint0_linear_3528_13196)"></rect>
193
+ <rect x="2" y="11" width="12" height="3" fill="url(#paint1_linear_3528_13196)"></rect>
194
+ <rect x="2" y="5" width="12" height="6" fill="url(#paint2_linear_3528_13196)"></rect>
195
+ <defs>
196
+ <linearGradient id="paint0_linear_3528_13196" x1="8" y1="2" x2="8" y2="5" gradientUnits="userSpaceOnUse">
197
+ <stop stop-color="#E28F11"></stop>
198
+ <stop offset="1" stop-color="#CA7F0F"></stop>
199
+ </linearGradient>
200
+ <linearGradient id="paint1_linear_3528_13196" x1="8" y1="11" x2="8" y2="14" gradientUnits="userSpaceOnUse">
201
+ <stop stop-color="#E28F11"></stop>
202
+ <stop offset="1" stop-color="#CA7F0F"></stop>
203
+ </linearGradient>
204
+ <linearGradient id="paint2_linear_3528_13196" x1="8" y1="5" x2="8" y2="11" gradientUnits="userSpaceOnUse">
205
+ <stop stop-color="#F7E783"></stop>
206
+ <stop offset="1" stop-color="#E3D36A"></stop>
207
+ </linearGradient>
208
+ </defs>
209
+ </symbol>
210
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="gisColor">
211
+ <rect x="3" y="1" width="1" height="14" fill="#17AE66"></rect>
212
+ <path fill-rule="evenodd" clip-rule="evenodd"
213
+ d="M7.89188 3.06024C7.96161 2.88715 8 2.69806 8 2.5C8 1.67157 7.32843 1 6.5 1C5.67157 1 5 1.67157 5 2.5C5 3.32843 5.67157 4 6.5 4C6.7645 4 7.01302 3.93154 7.22879 3.81137L10.0764 6.02616C10.0268 6.1751 10 6.33441 10 6.5C10 6.73158 10.0525 6.95091 10.1462 7.14673L8.14673 9.1462C7.9509 9.05248 7.73158 9 7.5 9C6.67157 9 6 9.67157 6 10.5C6 11.3284 6.67157 12 7.5 12C7.80758 12 8.09353 11.9074 8.33152 11.7486L10.0683 13.0512C10.0239 13.1929 10 13.3437 10 13.5C10 14.3284 10.6716 15 11.5 15C12.3284 15 13 14.3284 13 13.5C13 12.6716 12.3284 12 11.5 12C11.1924 12 10.9065 12.0926 10.6685 12.2514L8.93172 10.9488C8.92465 10.9713 8.91707 10.9937 8.90898 11.0157C8.96786 10.8549 9 10.6812 9 10.5C9 10.2684 8.94753 10.0491 8.85382 9.85332L10.8533 7.85382C11.0491 7.94753 11.2684 8 11.5 8C12.3284 8 13 7.32843 13 6.5C13 5.67157 12.3284 5 11.5 5C11.2019 5 10.924 5.08698 10.6905 5.23696L7.89188 3.06024ZM6.5 3C6.77614 3 7 2.77614 7 2.5C7 2.22386 6.77614 2 6.5 2C6.22386 2 6 2.22386 6 2.5C6 2.77614 6.22386 3 6.5 3ZM11.5 7C11.7761 7 12 6.77614 12 6.5C12 6.22386 11.7761 6 11.5 6C11.2239 6 11 6.22386 11 6.5C11 6.77614 11.2239 7 11.5 7ZM8 10.5C8 10.7761 7.77614 11 7.5 11C7.22386 11 7 10.7761 7 10.5C7 10.2239 7.22386 10 7.5 10C7.77614 10 8 10.2239 8 10.5ZM11.5 14C11.7761 14 12 13.7761 12 13.5C12 13.2239 11.7761 13 11.5 13C11.2239 13 11 13.2239 11 13.5C11 13.7761 11.2239 14 11.5 14Z"
214
+ fill="#17AE66"></path>
215
+ </symbol>
123
216
  <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="gisGroupColor">
124
217
  <g clip-path="url(#clip0_3842_17378)">
125
218
  <g clip-path="url(#clip1_3842_17378)">
@@ -172,6 +265,40 @@
172
265
  </clipPath>
173
266
  </defs>
174
267
  </symbol>
268
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="grpColor">
269
+ <g clip-path="url(#clip0_2269_44)">
270
+ <ellipse cy="8" rx="14" ry="6" fill="url(#paint0_linear_2269_44)"></ellipse>
271
+ <ellipse cx="-0.5" cy="8" rx="10.5" ry="5" fill="url(#paint1_linear_2269_44)"></ellipse>
272
+ <ellipse cy="8" rx="7" ry="3" fill="url(#paint2_linear_2269_44)"></ellipse>
273
+ <ellipse cx="0.5" cy="8" rx="3.5" ry="1" fill="url(#paint3_linear_2269_44)"></ellipse>
274
+ </g>
275
+ <defs>
276
+ <linearGradient id="paint0_linear_2269_44" x1="0" y1="2" x2="0" y2="14" gradientUnits="userSpaceOnUse">
277
+ <stop stop-color="#26A0F1"></stop>
278
+ <stop offset="1" stop-color="#0680DD"></stop>
279
+ </linearGradient>
280
+ <linearGradient id="paint1_linear_2269_44" x1="-0.5" y1="3" x2="-0.5" y2="13" gradientUnits="userSpaceOnUse">
281
+ <stop stop-color="#9AD261"></stop>
282
+ <stop offset="1" stop-color="#2FA71C"></stop>
283
+ </linearGradient>
284
+ <linearGradient id="paint2_linear_2269_44" x1="0" y1="5" x2="0" y2="11" gradientUnits="userSpaceOnUse">
285
+ <stop stop-color="#FFCC15"></stop>
286
+ <stop offset="1" stop-color="#F1BE0A"></stop>
287
+ </linearGradient>
288
+ <linearGradient id="paint3_linear_2269_44" x1="0.5" y1="7.00295" x2="0.5" y2="8.88705"
289
+ gradientUnits="userSpaceOnUse">
290
+ <stop stop-color="#FC7D5B"></stop>
291
+ <stop offset="0.06" stop-color="#F8734F"></stop>
292
+ <stop offset="0.18" stop-color="#F3653D"></stop>
293
+ <stop offset="0.326" stop-color="#F05B31"></stop>
294
+ <stop offset="0.523" stop-color="#EE552A"></stop>
295
+ <stop offset="1" stop-color="#ED5328"></stop>
296
+ </linearGradient>
297
+ <clipPath id="clip0_2269_44">
298
+ <rect width="12" height="12" fill="white" transform="translate(2 2)"></rect>
299
+ </clipPath>
300
+ </defs>
301
+ </symbol>
175
302
  <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="grpGroupColor">
176
303
  <g clip-path="url(#clip0_3842_18184)">
177
304
  <g clip-path="url(#clip1_3842_18184)">
@@ -180,29 +307,27 @@
180
307
  fill="#989898" stroke="#6F6F6F"></path>
181
308
  </g>
182
309
  <g clip-path="url(#clip2_3842_18184)">
183
- <g clip-path="url(#clip3_3842_18184)">
184
- <ellipse cx="4" cy="9" rx="8" ry="3.5" fill="url(#paint0_linear_3842_18184)"></ellipse>
185
- <ellipse cx="4" cy="9" rx="6.5" ry="2.5" fill="url(#paint1_linear_3842_18184)"></ellipse>
186
- <ellipse cx="4.25" cy="9" rx="4.75" ry="1.5" fill="url(#paint2_linear_3842_18184)"></ellipse>
187
- <ellipse cx="4.5" cy="9" rx="3" ry="0.5" fill="url(#paint3_linear_3842_18184)"></ellipse>
188
- </g>
310
+ <ellipse cx="4" cy="9" rx="7" ry="3" fill="url(#paint0_linear_3842_18184)"></ellipse>
311
+ <ellipse cx="3.75" cy="9" rx="5.25" ry="2.5" fill="url(#paint1_linear_3842_18184)"></ellipse>
312
+ <ellipse cx="4" cy="9" rx="3.5" ry="1.5" fill="url(#paint2_linear_3842_18184)"></ellipse>
313
+ <ellipse cx="4.25" cy="9" rx="1.75" ry="0.5" fill="url(#paint3_linear_3842_18184)"></ellipse>
189
314
  </g>
190
315
  </g>
191
316
  <defs>
192
- <linearGradient id="paint0_linear_3842_18184" x1="4" y1="5.5" x2="4" y2="12.5" gradientUnits="userSpaceOnUse">
193
- <stop stop-color="#31BBEE"></stop>
194
- <stop offset="1" stop-color="#1EA2E4"></stop>
195
- </linearGradient>
196
- <linearGradient id="paint1_linear_3842_18184" x1="4" y1="6.5" x2="4" y2="11.5" gradientUnits="userSpaceOnUse">
197
- <stop stop-color="#ACC548"></stop>
198
- <stop offset="1" stop-color="#71A61B"></stop>
317
+ <linearGradient id="paint0_linear_3842_18184" x1="4" y1="6" x2="4" y2="12" gradientUnits="userSpaceOnUse">
318
+ <stop stop-color="#26A0F1"></stop>
319
+ <stop offset="1" stop-color="#0680DD"></stop>
199
320
  </linearGradient>
200
- <linearGradient id="paint2_linear_3842_18184" x1="4.25" y1="7.5" x2="4.25" y2="10.5"
321
+ <linearGradient id="paint1_linear_3842_18184" x1="3.75" y1="6.5" x2="3.75" y2="11.5"
201
322
  gradientUnits="userSpaceOnUse">
323
+ <stop stop-color="#9AD261"></stop>
324
+ <stop offset="1" stop-color="#2FA71C"></stop>
325
+ </linearGradient>
326
+ <linearGradient id="paint2_linear_3842_18184" x1="4" y1="7.5" x2="4" y2="10.5" gradientUnits="userSpaceOnUse">
202
327
  <stop stop-color="#FFCC15"></stop>
203
328
  <stop offset="1" stop-color="#F1BE0A"></stop>
204
329
  </linearGradient>
205
- <linearGradient id="paint3_linear_3842_18184" x1="4.5" y1="8.50147" x2="4.5" y2="9.44353"
330
+ <linearGradient id="paint3_linear_3842_18184" x1="4.25" y1="8.50147" x2="4.25" y2="9.44353"
206
331
  gradientUnits="userSpaceOnUse">
207
332
  <stop stop-color="#FC7D5B"></stop>
208
333
  <stop offset="0.06" stop-color="#F8734F"></stop>
@@ -218,10 +343,7 @@
218
343
  <rect width="16" height="16" fill="white"></rect>
219
344
  </clipPath>
220
345
  <clipPath id="clip2_3842_18184">
221
- <rect width="8" height="8" fill="white" transform="translate(4 5)"></rect>
222
- </clipPath>
223
- <clipPath id="clip3_3842_18184">
224
- <path d="M4 6C4 5.72386 4.22386 5.5 4.5 5.5H12V12.5H4.5C4.22386 12.5 4 12.2761 4 12V6Z" fill="white"></path>
346
+ <rect width="6" height="6" fill="white" transform="translate(5 6)"></rect>
225
347
  </clipPath>
226
348
  </defs>
227
349
  </symbol>
@@ -233,6 +355,56 @@
233
355
  d="M7.00012 11.975V9.00098H4.01465C3.25358 9.00098 2.58138 8.74577 1.99805 8.23535V11.4824C1.99805 11.9017 2.14616 12.2594 2.44238 12.5557C2.73861 12.8519 3.09179 13 3.50195 13H7.00012V12.025C7.00008 12.0167 7.00006 12.0083 7.00006 12C7.00006 11.9917 7.00008 11.9833 7.00012 11.975ZM12.0001 7C12.5503 7 13.0797 7.08887 13.5749 7.25304C13.8687 6.89516 14.0156 6.47748 14.0156 6V5.50098C14.0202 5.0817 13.8744 4.72624 13.5781 4.43457C13.2819 4.1429 12.9287 3.99707 12.5186 3.99707H11.0146V3.49805C11.0192 3.08333 10.8734 2.73014 10.5771 2.43848C10.2809 2.14681 9.92774 2.00098 9.51758 2.00098H6.50293C6.08366 2.00098 5.72819 2.14681 5.43652 2.43848C5.14486 2.73014 4.99902 3.08333 4.99902 3.49805V3.99707H3.50195C3.09179 4.00163 2.73861 4.14974 2.44238 4.44141C2.14616 4.73307 1.99805 5.08626 1.99805 5.50098V6C1.99805 6.55143 2.19401 7.02311 2.58594 7.41504C2.97787 7.80697 3.4541 8.00293 4.01465 8.00293H8.99568C9.83209 7.37325 10.8725 7 12.0001 7ZM5.99707 3.99707H10.0166V3.49805C10.0166 3.36133 9.96647 3.24284 9.86621 3.14258C9.76595 3.04232 9.64974 2.99447 9.51758 2.99902H6.50293C6.37077 2.99902 6.25456 3.04687 6.1543 3.14258C6.05404 3.23828 6.00163 3.35677 5.99707 3.49805V3.99707Z"
234
356
  fill="#9D9D9D"></path>
235
357
  </symbol>
358
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="improveColor">
359
+ <path fill-rule="evenodd" clip-rule="evenodd"
360
+ d="M5 13L4.99999 14H3V13H5ZM13 7V14H11V7H13ZM9 10L8.999 14H6.99901L7.00001 10H9Z"
361
+ fill="url(#paint0_linear_2140_2572)"></path>
362
+ <path d="M12.9941 5.9834V1H7.99707L9.89746 2.88672L3.00098 9.80371L4.21094 11L11.1143 4.10352L12.9941 5.9834Z"
363
+ fill="#2CB4EB"></path>
364
+ <defs>
365
+ <linearGradient id="paint0_linear_2140_2572" x1="7.99998" y1="7" x2="7.99998" y2="14"
366
+ gradientUnits="userSpaceOnUse">
367
+ <stop stop-color="#FFD619"></stop>
368
+ <stop offset="1" stop-color="#FEB705"></stop>
369
+ </linearGradient>
370
+ </defs>
371
+ </symbol>
372
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="handbagColor">
373
+ <path d="M9.5 2H6.5C6.224 2 6 2.224 6 2.5V3H10V2.5C10 2.224 9.776 2 9.5 2Z"
374
+ fill="url(#paint0_linear_1914_3996)"></path>
375
+ <path
376
+ d="M14.3 14H1.7C1.315 14 1 13.6906 1 13.3125V4.375C1 3.61875 1.63 3 2.4 3H13.6C14.37 3 15 3.61875 15 4.375V13.3125C15 13.6906 14.685 14 14.3 14Z"
377
+ fill="url(#paint1_linear_1914_3996)"></path>
378
+ <path
379
+ d="M14.4039 8.98868L8 10L1.59605 8.98868C1.2534 8.93489 1 8.62505 1 8.26032V4.47368C1 3.66316 1.63 3 2.4 3H13.6C14.37 3 15 3.66316 15 4.47368V8.26032C15 8.62505 14.7466 8.93489 14.4039 8.98868Z"
380
+ fill="url(#paint2_linear_1914_3996)"></path>
381
+ <path
382
+ d="M8.75 7H7.25C7.112 7 7 7.112 7 7.25V8.75C7 8.888 7.112 9 7.25 9H8.75C8.888 9 9 8.888 9 8.75V7.25C9 7.112 8.888 7 8.75 7Z"
383
+ fill="#F6ECA5"></path>
384
+ <defs>
385
+ <linearGradient id="paint0_linear_1914_3996" x1="8" y1="2.993" x2="8" y2="2.10267" gradientUnits="userSpaceOnUse">
386
+ <stop stop-color="#B36720"></stop>
387
+ <stop offset="0.659" stop-color="#E37C33"></stop>
388
+ </linearGradient>
389
+ <linearGradient id="paint1_linear_1914_3996" x1="8" y1="14" x2="8" y2="3" gradientUnits="userSpaceOnUse">
390
+ <stop stop-color="#723103"></stop>
391
+ <stop offset="0.450536" stop-color="#AB5618"></stop>
392
+ </linearGradient>
393
+ <linearGradient id="paint2_linear_1914_3996" x1="8" y1="3.01032" x2="8" y2="9.60468"
394
+ gradientUnits="userSpaceOnUse">
395
+ <stop stop-color="#EE8840"></stop>
396
+ <stop offset="0.06" stop-color="#E27D35"></stop>
397
+ <stop offset="0.18" stop-color="#E2792E"></stop>
398
+ <stop offset="0.326" stop-color="#D66B1F"></stop>
399
+ <stop offset="0.523" stop-color="#D66B1F"></stop>
400
+ <stop offset="1" stop-color="#D66B1F"></stop>
401
+ </linearGradient>
402
+ </defs>
403
+ </symbol>
404
+ <symbol width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" id="layersColor">
405
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M15 6.94078L7.99997 10.4408L1 6.9408V8.05884L7.77637 11.447L7.99997 11.5588L8.22358 11.447L15 8.05881V6.94078ZM15 9.94078L7.99997 13.4408L1 9.9408V11.0588L7.77637 14.447L7.99997 14.5588L8.22358 14.447L15 11.0588V9.94078ZM1.87178 5.45761L1 5.01624V5.01027L1.87038 4.56616L7.77272 1.55444L7.99998 1.43848L8.22723 1.55444L14.1218 4.56225L14.9968 5.00878L14.1208 5.45347L8.2263 8.44565L8.00027 8.56039L7.77413 8.44589L1.87178 5.45761ZM3.20113 5.00979L7.99968 7.43923L12.7922 5.00646L7.99997 2.56114L3.20113 5.00979Z" fill="#F6B520"/>
406
+ </symbol>
407
+
236
408
  <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="lineColor">
237
409
  <rect x="1.99988" y="7" width="12" height="2" fill="#E55759"></rect>
238
410
  </symbol>
@@ -241,6 +413,14 @@
241
413
  d="M4.99988 7H0.999878V9H4.99988V7ZM5.99988 7V9H9.99988V7H5.99988ZM10.9999 7V9H14.9999V7H10.9999Z"
242
414
  fill="#E55759"></path>
243
415
  </symbol>
416
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="liquidAddColor">
417
+ <path fill-rule="evenodd" clip-rule="evenodd"
418
+ d="M8.29573 1.14802C8.83777 1.8475 9.88802 3.26556 10.8323 4.90402C11.2618 5.64924 11.6165 6.34897 11.8958 7.00106C9.18229 7.05629 6.99957 9.27325 6.99957 12C6.99957 13.1256 7.37152 14.1643 7.99921 15C5.4261 14.9999 3.33276 12.7992 3.33276 10.0941C3.33276 8.76257 3.94978 7.01663 5.16664 4.90489C6.11091 3.26629 7.16116 1.84775 7.70317 1.14805C7.77574 1.05438 7.88455 1 7.99946 1C8.11435 0.999964 8.22319 1.05434 8.29573 1.14802Z"
419
+ fill="#286CFD"></path>
420
+ <path fill-rule="evenodd" clip-rule="evenodd"
421
+ d="M10.9956 10.9961V9H12.9985V10.9961H14.9946V12.999H12.9985V14.9951H10.9956V12.999H8.99951V10.9961H10.9956Z"
422
+ fill="#17AE66"></path>
423
+ </symbol>
244
424
  <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="lineGradientColor">
245
425
  <rect x="1.99988" y="2" width="12" height="2" fill="#E55759"></rect>
246
426
  <rect width="12" height="10" transform="matrix(1 0 0 -1 1.99988 14)" fill="url(#paint0_linear_2289_45)"
@@ -252,44 +432,41 @@
252
432
  </linearGradient>
253
433
  </defs>
254
434
  </symbol>
255
- <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="liquidAddColor">
256
- <path fill-rule="evenodd" clip-rule="evenodd"
257
- d="M8.29573 1.14802C8.83777 1.8475 9.88802 3.26556 10.8323 4.90402C11.2618 5.64924 11.6165 6.34897 11.8958 7.00106C9.18229 7.05629 6.99957 9.27325 6.99957 12C6.99957 13.1256 7.37152 14.1643 7.99921 15C5.4261 14.9999 3.33276 12.7992 3.33276 10.0941C3.33276 8.76257 3.94978 7.01663 5.16664 4.90489C6.11091 3.26629 7.16116 1.84775 7.70317 1.14805C7.77574 1.05438 7.88455 1 7.99946 1C8.11435 0.999964 8.22319 1.05434 8.29573 1.14802Z"
258
- fill="#2173DF"></path>
259
- <path fill-rule="evenodd" clip-rule="evenodd"
260
- d="M10.9956 10.9961V9H12.9985V10.9961H14.9946V12.999H12.9985V14.9951H10.9956V12.999H8.99951V10.9961H10.9956Z"
261
- fill="#17AE66"></path>
262
- </symbol>
263
- <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="liquidSystemColor">
264
- <g clip-path="url(#clip0_2094_2581)">
435
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="liquidUserColor">
436
+ <g clip-path="url(#clip0_2094_2573)">
265
437
  <path fill-rule="evenodd" clip-rule="evenodd"
266
438
  d="M8.29621 1.14802C8.83826 1.8475 9.88851 3.26556 10.8328 4.90402C11.2623 5.64924 11.617 6.34897 11.8963 7.00106C9.18278 7.05629 7.00006 9.27325 7.00006 12C7.00006 13.1256 7.37201 14.1643 7.9997 15C5.42659 14.9999 3.33325 12.7992 3.33325 10.0941C3.33325 8.76257 3.95027 7.01663 5.16713 4.90489C6.11139 3.26629 7.16165 1.84775 7.70366 1.14805C7.77623 1.05438 7.88503 1 7.99995 1C8.11484 0.999964 8.22368 1.05434 8.29621 1.14802Z"
267
- fill="#2173DF"/>
439
+ fill="#286CFD"></path>
268
440
  <path fill-rule="evenodd" clip-rule="evenodd"
269
- d="M11.3333 8V9.14367C11.0168 9.21727 10.7199 9.34213 10.4519 9.50905L9.64298 8.70017L8.70017 9.64298L9.50905 10.4519C9.34213 10.7199 9.21727 11.0168 9.14367 11.3333H8V12.6667H9.14367C9.21727 12.9832 9.34213 13.2801 9.50905 13.5481L8.70017 14.357L9.64298 15.2998L10.4519 14.4909C10.7199 14.6579 11.0168 14.7827 11.3333 14.8563V16H12.6667V14.8563C12.9832 14.7827 13.2801 14.6579 13.5481 14.4909L14.357 15.2998L15.2998 14.357L14.4909 13.5481C14.6579 13.2801 14.7827 12.9832 14.8563 12.6667H16V11.3333H14.8563C14.7827 11.0168 14.6579 10.7199 14.4909 10.4519L15.2998 9.64298L14.357 8.70017L13.5481 9.50905C13.2801 9.34213 12.9832 9.21727 12.6667 9.14367V8H11.3333ZM13.6667 12C13.6667 12.9205 12.9205 13.6667 12 13.6667C11.0795 13.6667 10.3333 12.9205 10.3333 12C10.3333 11.0795 11.0795 10.3333 12 10.3333C12.9205 10.3333 13.6667 11.0795 13.6667 12Z"
270
- fill="#9D9D9D"/>
441
+ d="M16 12C16 14.2091 14.2091 16 12 16C9.79086 16 8 14.2091 8 12C8 9.79086 9.79086 8 12 8C14.2091 8 16 9.79086 16 12ZM11.2595 14.9079C10.7912 14.789 10.3668 14.5599 10.0155 14.2499C10.4471 13.6167 11.1738 13.2008 11.9976 13.2C11.1151 13.1987 10.4 12.4829 10.4 11.6C10.4 10.7163 11.1164 10 12 10C12.8837 10 13.6 10.7163 13.6 11.6C13.6 12.4829 12.885 13.1987 12.0024 13.2C12.8263 13.2008 13.5529 13.6167 13.9845 14.2499C14.6072 13.7002 15 12.896 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.4013 9.96078 14.5782 11.2595 14.9079Z"
442
+ fill="#C66829"></path>
271
443
  </g>
272
444
  <defs>
273
- <clipPath id="clip0_2094_2581">
274
- <rect width="16" height="16" fill="white"/>
445
+ <clipPath id="clip0_2094_2573">
446
+ <rect width="16" height="16" fill="white"></rect>
275
447
  </clipPath>
276
448
  </defs>
277
449
  </symbol>
278
- <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="liquidUserColor">
279
- <g clip-path="url(#clip0_2094_2573)">
450
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="liquidSystemColor">
451
+ <g clip-path="url(#clip0_2094_2581)">
280
452
  <path fill-rule="evenodd" clip-rule="evenodd"
281
453
  d="M8.29621 1.14802C8.83826 1.8475 9.88851 3.26556 10.8328 4.90402C11.2623 5.64924 11.617 6.34897 11.8963 7.00106C9.18278 7.05629 7.00006 9.27325 7.00006 12C7.00006 13.1256 7.37201 14.1643 7.9997 15C5.42659 14.9999 3.33325 12.7992 3.33325 10.0941C3.33325 8.76257 3.95027 7.01663 5.16713 4.90489C6.11139 3.26629 7.16165 1.84775 7.70366 1.14805C7.77623 1.05438 7.88503 1 7.99995 1C8.11484 0.999964 8.22368 1.05434 8.29621 1.14802Z"
282
- fill="#2173DF"></path>
454
+ fill="#286CFD"></path>
283
455
  <path fill-rule="evenodd" clip-rule="evenodd"
284
- d="M16 12C16 14.2091 14.2091 16 12 16C9.79086 16 8 14.2091 8 12C8 9.79086 9.79086 8 12 8C14.2091 8 16 9.79086 16 12ZM11.2595 14.9079C10.7912 14.789 10.3668 14.5599 10.0155 14.2499C10.4471 13.6167 11.1738 13.2008 11.9976 13.2C11.1151 13.1987 10.4 12.4829 10.4 11.6C10.4 10.7163 11.1164 10 12 10C12.8837 10 13.6 10.7163 13.6 11.6C13.6 12.4829 12.885 13.1987 12.0024 13.2C12.8263 13.2008 13.5529 13.6167 13.9845 14.2499C14.6072 13.7002 15 12.896 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.4013 9.96078 14.5782 11.2595 14.9079Z"
285
- fill="#C66829"></path>
456
+ d="M11.3333 8V9.14367C11.0168 9.21727 10.7199 9.34213 10.4519 9.50905L9.64298 8.70017L8.70017 9.64298L9.50905 10.4519C9.34213 10.7199 9.21727 11.0168 9.14367 11.3333H8V12.6667H9.14367C9.21727 12.9832 9.34213 13.2801 9.50905 13.5481L8.70017 14.357L9.64298 15.2998L10.4519 14.4909C10.7199 14.6579 11.0168 14.7827 11.3333 14.8563V16H12.6667V14.8563C12.9832 14.7827 13.2801 14.6579 13.5481 14.4909L14.357 15.2998L15.2998 14.357L14.4909 13.5481C14.6579 13.2801 14.7827 12.9832 14.8563 12.6667H16V11.3333H14.8563C14.7827 11.0168 14.6579 10.7199 14.4909 10.4519L15.2998 9.64298L14.357 8.70017L13.5481 9.50905C13.2801 9.34213 12.9832 9.21727 12.6667 9.14367V8H11.3333ZM13.6667 12C13.6667 12.9205 12.9205 13.6667 12 13.6667C11.0795 13.6667 10.3333 12.9205 10.3333 12C10.3333 11.0795 11.0795 10.3333 12 10.3333C12.9205 10.3333 13.6667 11.0795 13.6667 12Z"
457
+ fill="#A3A5AB"></path>
286
458
  </g>
287
459
  <defs>
288
- <clipPath id="clip0_2094_2573">
460
+ <clipPath id="clip0_2094_2581">
289
461
  <rect width="16" height="16" fill="white"></rect>
290
462
  </clipPath>
291
463
  </defs>
292
464
  </symbol>
465
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="mapColor">
466
+ <path fill-rule="evenodd" clip-rule="evenodd"
467
+ d="M7.97241 3.99707C7.38908 4.00163 6.91512 4.1862 6.55054 4.55078C6.18595 4.91537 6.00366 5.38932 6.00366 5.97266C6.00366 6.55599 6.18823 7.03906 6.55737 7.42188C6.93107 7.80925 7.40275 8.00293 7.97241 8.00293C8.54208 8.00293 9.02287 7.80697 9.41479 7.41504C9.80672 7.02311 10.0027 6.54232 10.0027 5.97266C10.0027 5.40299 9.809 4.93132 9.42163 4.55762C9.03882 4.18392 8.55575 3.99707 7.97241 3.99707ZM7.97241 13.1982C7.75366 13.1982 7.55086 13.139 7.36401 13.0205C7.17716 12.902 7.0564 12.7607 7.00171 12.5967L4.698 8.20117C4.23315 7.63607 4.00073 6.94792 4.00073 6.13672C4.00073 5.32552 4.17847 4.61231 4.53394 3.99707C4.89396 3.38183 5.38159 2.89421 5.99683 2.53418C6.61206 2.17415 7.2797 1.99414 7.99976 1.99414C8.71981 1.99414 9.38745 2.17643 10.0027 2.54102C10.6179 2.89649 11.1055 3.38183 11.4656 3.99707C11.8256 4.61231 12.0056 5.29134 12.0056 6.03418C12.0056 6.77702 11.7709 7.49935 11.3015 8.20117L8.9978 12.5967C8.94767 12.7471 8.82007 12.8861 8.61499 13.0137C8.40535 13.1367 8.19116 13.1982 7.97241 13.1982Z"
468
+ fill="#D4685D"></path>
469
+ </symbol>
293
470
  <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="lithotypeColor">
294
471
  <rect x="1.99963" y="14" width="12" height="1" fill="#FFB115"></rect>
295
472
  <rect x="1.99963" y="11" width="12" height="1" fill="#FFB115"></rect>
@@ -303,10 +480,104 @@
303
480
  <rect x="11.9996" y="5" width="1" height="1" fill="#C66829"></rect>
304
481
  <rect x="9.99963" y="2" width="1" height="1" fill="#C66829"></rect>
305
482
  </symbol>
306
- <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="mapColor">
307
- <path fill-rule="evenodd" clip-rule="evenodd"
308
- d="M7.97241 3.99707C7.38908 4.00163 6.91512 4.1862 6.55054 4.55078C6.18595 4.91537 6.00366 5.38932 6.00366 5.97266C6.00366 6.55599 6.18823 7.03906 6.55737 7.42188C6.93107 7.80925 7.40275 8.00293 7.97241 8.00293C8.54208 8.00293 9.02287 7.80697 9.41479 7.41504C9.80672 7.02311 10.0027 6.54232 10.0027 5.97266C10.0027 5.40299 9.809 4.93132 9.42163 4.55762C9.03882 4.18392 8.55575 3.99707 7.97241 3.99707ZM7.97241 13.1982C7.75366 13.1982 7.55086 13.139 7.36401 13.0205C7.17716 12.902 7.0564 12.7607 7.00171 12.5967L4.698 8.20117C4.23315 7.63607 4.00073 6.94792 4.00073 6.13672C4.00073 5.32552 4.17847 4.61231 4.53394 3.99707C4.89396 3.38183 5.38159 2.89421 5.99683 2.53418C6.61206 2.17415 7.2797 1.99414 7.99976 1.99414C8.71981 1.99414 9.38745 2.17643 10.0027 2.54102C10.6179 2.89649 11.1055 3.38183 11.4656 3.99707C11.8256 4.61231 12.0056 5.29134 12.0056 6.03418C12.0056 6.77702 11.7709 7.49935 11.3015 8.20117L8.9978 12.5967C8.94767 12.7471 8.82007 12.8861 8.61499 13.0137C8.40535 13.1367 8.19116 13.1982 7.97241 13.1982Z"
309
- fill="#D4685D"></path>
483
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="nktColor">
484
+ <path d="M2.55504 2H13.445L14 3H2L2.55504 2Z" fill="url(#paint0_linear_2486_19)"></path>
485
+ <rect x="2" y="3" width="12" height="2" fill="url(#paint1_linear_2486_19)"></rect>
486
+ <path d="M2.55504 6H13.445L14 5H2L2.55504 6Z" fill="url(#paint2_linear_2486_19)"></path>
487
+ <path d="M2.55504 6H13.445L14 7H2L2.55504 6Z" fill="url(#paint3_linear_2486_19)"></path>
488
+ <rect x="2" y="7" width="12" height="2" fill="url(#paint4_linear_2486_19)"></rect>
489
+ <path d="M2.55504 10H13.445L14 9H2L2.55504 10Z" fill="url(#paint5_linear_2486_19)"></path>
490
+ <path d="M2.55504 10H13.445L14 11H2L2.55504 10Z" fill="url(#paint6_linear_2486_19)"></path>
491
+ <rect x="2" y="11" width="12" height="2" fill="url(#paint7_linear_2486_19)"></rect>
492
+ <path d="M2.55504 14H13.445L14 13H2L2.55504 14Z" fill="url(#paint8_linear_2486_19)"></path>
493
+ <defs>
494
+ <linearGradient id="paint0_linear_2486_19" x1="2" y1="2.5" x2="14" y2="2.5" gradientUnits="userSpaceOnUse">
495
+ <stop stop-color="#53320E"></stop>
496
+ <stop offset="0.607481" stop-color="#AC7E3D"></stop>
497
+ <stop offset="1" stop-color="#774A18"></stop>
498
+ </linearGradient>
499
+ <linearGradient id="paint1_linear_2486_19" x1="2.09836" y1="3.96552" x2="14" y2="3.96552"
500
+ gradientUnits="userSpaceOnUse">
501
+ <stop stop-color="#72471D"></stop>
502
+ <stop offset="0.237603" stop-color="#895722"></stop>
503
+ <stop offset="0.378099" stop-color="#946026"></stop>
504
+ <stop offset="0.419981" stop-color="#946026"></stop>
505
+ <stop offset="0.617898" stop-color="#D59E4E"></stop>
506
+ <stop offset="0.873967" stop-color="#A66C2C"></stop>
507
+ <stop offset="1" stop-color="#C5792B"></stop>
508
+ </linearGradient>
509
+ <linearGradient id="paint2_linear_2486_19" x1="2" y1="5.5" x2="14" y2="5.5" gradientUnits="userSpaceOnUse">
510
+ <stop stop-color="#935E24"></stop>
511
+ <stop offset="0.477273" stop-color="#E1A25C"></stop>
512
+ <stop offset="0.669981" stop-color="#D7AF6D"></stop>
513
+ <stop offset="1" stop-color="#BE7F2B"></stop>
514
+ </linearGradient>
515
+ <linearGradient id="paint3_linear_2486_19" x1="2" y1="6.5" x2="14" y2="6.5" gradientUnits="userSpaceOnUse">
516
+ <stop stop-color="#1B1B1B"></stop>
517
+ <stop offset="1" stop-color="#414141"></stop>
518
+ </linearGradient>
519
+ <linearGradient id="paint4_linear_2486_19" x1="2.09836" y1="7.96552" x2="14" y2="7.96552"
520
+ gradientUnits="userSpaceOnUse">
521
+ <stop stop-color="#0D0D0C"></stop>
522
+ <stop offset="0.214876" stop-color="#181818"></stop>
523
+ <stop offset="0.237603" stop-color="#1B1B1B"></stop>
524
+ <stop offset="0.378099" stop-color="#151515"></stop>
525
+ <stop offset="0.570248" stop-color="#1E1E1E"></stop>
526
+ <stop offset="0.633523" stop-color="#282828"></stop>
527
+ <stop offset="0.71281" stop-color="#2B2B2B"></stop>
528
+ <stop offset="0.873967" stop-color="#1B1B19"></stop>
529
+ <stop offset="1" stop-color="#161616"></stop>
530
+ </linearGradient>
531
+ <linearGradient id="paint5_linear_2486_19" x1="2" y1="9.5" x2="14" y2="9.5" gradientUnits="userSpaceOnUse">
532
+ <stop stop-color="#1B1B1B"></stop>
533
+ <stop offset="1" stop-color="#414141"></stop>
534
+ </linearGradient>
535
+ <linearGradient id="paint6_linear_2486_19" x1="2" y1="10.5" x2="14" y2="10.5" gradientUnits="userSpaceOnUse">
536
+ <stop stop-color="#53320E"></stop>
537
+ <stop offset="0.607481" stop-color="#AC7E3D"></stop>
538
+ <stop offset="1" stop-color="#774A18"></stop>
539
+ </linearGradient>
540
+ <linearGradient id="paint7_linear_2486_19" x1="2.09836" y1="11.9655" x2="14" y2="11.9655"
541
+ gradientUnits="userSpaceOnUse">
542
+ <stop stop-color="#72471D"></stop>
543
+ <stop offset="0.237603" stop-color="#895722"></stop>
544
+ <stop offset="0.378099" stop-color="#946026"></stop>
545
+ <stop offset="0.419981" stop-color="#946026"></stop>
546
+ <stop offset="0.617898" stop-color="#D59E4E"></stop>
547
+ <stop offset="0.873967" stop-color="#A66C2C"></stop>
548
+ <stop offset="1" stop-color="#C5792B"></stop>
549
+ </linearGradient>
550
+ <linearGradient id="paint8_linear_2486_19" x1="2" y1="13.5" x2="14" y2="13.5" gradientUnits="userSpaceOnUse">
551
+ <stop stop-color="#935E24"></stop>
552
+ <stop offset="0.477273" stop-color="#E1A25C"></stop>
553
+ <stop offset="0.669981" stop-color="#D7AF6D"></stop>
554
+ <stop offset="1" stop-color="#BE7F2B"></stop>
555
+ </linearGradient>
556
+ </defs>
557
+ </symbol>
558
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="opzColor">
559
+ <rect x="2" y="2" width="6" height="12" fill="url(#paint0_linear_2269_45)"></rect>
560
+ <rect width="4" height="12" transform="matrix(-1 0 0 1 10 2)" fill="url(#paint1_linear_2269_45)"></rect>
561
+ <rect width="2" height="12" transform="matrix(-1 0 0 1 12 2)" fill="url(#paint2_linear_2269_45)"></rect>
562
+ <rect width="2" height="12" transform="matrix(-1 0 0 1 14 2)" fill="url(#paint3_linear_2269_45)"></rect>
563
+ <defs>
564
+ <linearGradient id="paint0_linear_2269_45" x1="5" y1="2" x2="5" y2="14" gradientUnits="userSpaceOnUse">
565
+ <stop stop-color="#247BA1"></stop>
566
+ <stop offset="1" stop-color="#175B79"></stop>
567
+ </linearGradient>
568
+ <linearGradient id="paint1_linear_2269_45" x1="2" y1="0" x2="2" y2="12" gradientUnits="userSpaceOnUse">
569
+ <stop stop-color="#FFCC15"></stop>
570
+ <stop offset="1" stop-color="#F1BE0A"></stop>
571
+ </linearGradient>
572
+ <linearGradient id="paint2_linear_2269_45" x1="1" y1="0" x2="1" y2="12" gradientUnits="userSpaceOnUse">
573
+ <stop stop-color="#247BA1"></stop>
574
+ <stop offset="1" stop-color="#175B79"></stop>
575
+ </linearGradient>
576
+ <linearGradient id="paint3_linear_2269_45" x1="1" y1="0" x2="1" y2="12" gradientUnits="userSpaceOnUse">
577
+ <stop stop-color="#FFCC15"></stop>
578
+ <stop offset="1" stop-color="#F1BE0A"></stop>
579
+ </linearGradient>
580
+ </defs>
310
581
  </symbol>
311
582
  <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="opzAddColor">
312
583
  <g clip-path="url(#clip0_3589_14651)">
@@ -352,6 +623,12 @@
352
623
  </clipPath>
353
624
  </defs>
354
625
  </symbol>
626
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="sortDownColor">
627
+ <path d="M9 3H7V10H5L8 13L11 10H9V3Z" fill="#0A7CD6"></path>
628
+ </symbol>
629
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="sortUpColor">
630
+ <path d="M9 13H7V6H5L8 3L11 6H9V13Z" fill="#0A7CD6"></path>
631
+ </symbol>
355
632
  <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="rigisGroupColor">
356
633
  <g clip-path="url(#clip0_3842_17396)">
357
634
  <g clip-path="url(#clip1_3842_17396)">
@@ -373,11 +650,10 @@
373
650
  </clipPath>
374
651
  </defs>
375
652
  </symbol>
376
- <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="sortDownColor">
377
- <path d="M9 3H7V10H5L8 13L11 10H9V3Z" fill="#0A7CD6"></path>
378
- </symbol>
379
- <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="sortUpColor">
380
- <path d="M9 13H7V6H5L8 3L11 6H9V13Z" fill="#0A7CD6"></path>
653
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="sumColor">
654
+ <path fill-rule="evenodd" clip-rule="evenodd"
655
+ d="M2.99976 3H11.9958V6.00098L9.99973 3.99805H5.99389L8.99485 8.00391L5.99389 12.0029H9.99973L11.9958 10V13.001H2.99976V12.0029L6.99876 8.00391L2.99976 3.99805V3Z"
656
+ fill="#C66829"></path>
381
657
  </symbol>
382
658
  <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="sumAddColor">
383
659
  <path fill-rule="evenodd" clip-rule="evenodd"
@@ -407,6 +683,14 @@
407
683
  </clipPath>
408
684
  </defs>
409
685
  </symbol>
686
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="wellAddColor">
687
+ <path fill-rule="evenodd" clip-rule="evenodd"
688
+ d="M7.613 9.59925L3.52306 12.3389L2.85375 14L2 13.6108L6.71937 1.89818C7.20191 0.700609 8.79809 0.700605 9.28063 1.89818L11.353 7.04147C9.7377 7.25017 8.36404 8.22975 7.613 9.59925ZM7.57312 2.28736C7.73397 1.88817 8.26603 1.88817 8.42688 2.28736L9.06004 3.85875L8 4.53525L6.93996 3.85875L7.57312 2.28736ZM8.90268 5.11132L9.42932 4.77524L9.79391 5.68009L8.90268 5.11132ZM8 5.6874L9.89984 6.89985L8.00296 8.17047L6.10092 6.89936L8 5.6874ZM5.42633 7.61532L7.13101 8.75455L4.16742 10.7397L5.42633 7.61532ZM6.57068 4.77524L6.20609 5.68009L7.09732 5.11132L6.57068 4.77524Z"
689
+ fill="#286CFD"></path>
690
+ <path fill-rule="evenodd" clip-rule="evenodd"
691
+ d="M10.9961 10.9961V9H12.999V10.9961H14.9951V12.999H12.999V14.9951H10.9961V12.999H9V10.9961H10.9961Z"
692
+ fill="#17AE66"></path>
693
+ </symbol>
410
694
  <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="wellConstructionGroupColor">
411
695
  <g clip-path="url(#clip0_3838_19479)">
412
696
  <g clip-path="url(#clip1_3838_19479)">
@@ -428,6 +712,55 @@
428
712
  </clipPath>
429
713
  </defs>
430
714
  </symbol>
715
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="wellColor">
716
+ <path fill-rule="evenodd" clip-rule="evenodd"
717
+ d="M9.72776 3.20065L8.50172 3.63289L9.54006 6.57814L7.97024 8.06564L6.45938 6.63389L7.4984 3.68698L6.27237 3.25471L2.81421 13.0629L4.04024 13.4952L4.34935 12.6185L4.68341 12.971L7.9702 9.85659L11.2567 12.971L11.6482 12.5579L11.9596 13.4412L13.1857 13.009L9.72776 3.20065ZM11.1152 11.0459L10.0133 7.9206L8.91521 8.96114L11.1152 11.0459ZM4.94333 10.9338L5.98606 7.97635L7.02522 8.96109L4.94333 10.9338Z"
718
+ fill="#889097"></path>
719
+ <path fill-rule="evenodd" clip-rule="evenodd"
720
+ d="M9.72776 3.20065L8.50172 3.63289L9.54006 6.57814L7.97024 8.06564L6.45938 6.63389L7.4984 3.68698L6.27237 3.25471L2.81421 13.0629L4.04024 13.4952L4.34935 12.6185L4.68341 12.971L7.9702 9.85659L11.2567 12.971L11.6482 12.5579L11.9596 13.4412L13.1857 13.009L9.72776 3.20065ZM11.1152 11.0459L10.0133 7.9206L8.91521 8.96114L11.1152 11.0459ZM4.94333 10.9338L5.98606 7.97635L7.02522 8.96109L4.94333 10.9338Z"
721
+ fill="url(#paint0_linear_1914_3995)"></path>
722
+ <rect x="6" y="2" width="4" height="2" fill="url(#paint1_linear_1914_3995)"></rect>
723
+ <rect x="2" y="12" width="12" height="2" fill="url(#paint2_linear_1914_3995)"></rect>
724
+ <rect x="11" y="12" width="3" height="2" fill="url(#paint3_linear_1914_3995)"></rect>
725
+ <defs>
726
+ <linearGradient id="paint0_linear_1914_3995" x1="7.99993" y1="3.20065" x2="7.99993" y2="13.4952"
727
+ gradientUnits="userSpaceOnUse">
728
+ <stop stop-color="#26A0F1"></stop>
729
+ <stop offset="1" stop-color="#0680DD"></stop>
730
+ </linearGradient>
731
+ <linearGradient id="paint1_linear_1914_3995" x1="8" y1="2" x2="8" y2="4" gradientUnits="userSpaceOnUse">
732
+ <stop stop-color="#26A0F1"></stop>
733
+ <stop offset="1" stop-color="#0680DD"></stop>
734
+ </linearGradient>
735
+ <linearGradient id="paint2_linear_1914_3995" x1="8" y1="12" x2="8" y2="14" gradientUnits="userSpaceOnUse">
736
+ <stop stop-color="#26A0F1"></stop>
737
+ <stop offset="1" stop-color="#0680DD"></stop>
738
+ </linearGradient>
739
+ <linearGradient id="paint3_linear_1914_3995" x1="12.5" y1="12" x2="12.5" y2="14" gradientUnits="userSpaceOnUse">
740
+ <stop stop-color="#26A0F1"></stop>
741
+ <stop offset="1" stop-color="#0680DD"></stop>
742
+ </linearGradient>
743
+ </defs>
744
+ </symbol>
745
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="wellConstructionColor">
746
+ <path d="M10 11V2H6V7V7.80078L10 11Z" fill="url(#paint0_linear_2107_93)"></path>
747
+ <path d="M10 11V2H6V7V7.80078L10 11Z" fill="url(#paint1_linear_2107_93)"></path>
748
+ <rect x="2" y="2" width="1" height="12" fill="#B0B0BA"></rect>
749
+ <rect x="13" y="2" width="1" height="12" fill="#B0B0BA"></rect>
750
+ <defs>
751
+ <linearGradient id="paint0_linear_2107_93" x1="6" y1="4.9899" x2="10" y2="4.9899" gradientUnits="userSpaceOnUse">
752
+ <stop stop-color="#C2C5D1"></stop>
753
+ <stop offset="0.508242" stop-color="#DFE0E1"></stop>
754
+ <stop offset="1" stop-color="#C2C5D1"></stop>
755
+ </linearGradient>
756
+ <linearGradient id="paint1_linear_2107_93" x1="6" y1="4.9899" x2="10" y2="4.9899" gradientUnits="userSpaceOnUse">
757
+ <stop stop-color="#8F450E"></stop>
758
+ <stop offset="0.508523" stop-color="#E37E35"></stop>
759
+ <stop offset="1" stop-color="#9D3B11"></stop>
760
+ <stop offset="1" stop-color="#8F450E"></stop>
761
+ </linearGradient>
762
+ </defs>
763
+ </symbol>
431
764
  <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="wellGroupColor">
432
765
  <g clip-path="url(#clip0_3838_19115)">
433
766
  <g clip-path="url(#clip1_3838_19115)">
@@ -449,3 +782,142 @@
449
782
  </defs>
450
783
  </symbol>
451
784
  </svg>
785
+ <!-- SVG References -->
786
+ <svg class="icon">
787
+ <use xlink:href="#gisColor"></use>
788
+ </svg>
789
+ <svg class="icon">
790
+ <use xlink:href="#gisInnerColor"></use>
791
+ </svg>
792
+ <svg class="icon">
793
+ <use xlink:href="#gisSimpleColor"></use>
794
+ </svg>
795
+ <svg class="icon">
796
+ <use xlink:href="#grpAddColor"></use>
797
+ </svg>
798
+ <svg class="icon">
799
+ <use xlink:href="#grpColor"></use>
800
+ </svg>
801
+ <svg class="icon">
802
+ <use xlink:href="#handbagAddColor"></use>
803
+ </svg>
804
+ <svg class="icon">
805
+ <use xlink:href="#handbagColor"></use>
806
+ </svg>
807
+ <svg class="icon">
808
+ <use xlink:href="#improveColor"></use>
809
+ </svg>
810
+ <svg class="icon">
811
+ <use xlink:href="#layersColor"></use>
812
+ </svg>
813
+ <svg class="icon">
814
+ <use xlink:href="#lineColor"></use>
815
+ </svg>
816
+ <svg class="icon">
817
+ <use xlink:href="#lineDashedColor"></use>
818
+ </svg>
819
+ <svg class="icon">
820
+ <use xlink:href="#lineGradientColor"></use>
821
+ </svg>
822
+ <svg class="icon">
823
+ <use xlink:href="#liquidAddColor"></use>
824
+ </svg>
825
+ <svg class="icon">
826
+ <use xlink:href="#liquidSystemColor"></use>
827
+ </svg>
828
+ <svg class="icon">
829
+ <use xlink:href="#lithotypeColor"></use>
830
+ </svg>
831
+ <svg class="icon">
832
+ <use xlink:href="#mapColor"></use>
833
+ </svg>
834
+ <svg class="icon">
835
+ <use xlink:href="#nktColor"></use>
836
+ </svg>
837
+ <svg class="icon">
838
+ <use xlink:href="#opzAddColor"></use>
839
+ </svg>
840
+ <svg class="icon">
841
+ <use xlink:href="#opzColor"></use>
842
+ </svg>
843
+ <svg class="icon">
844
+ <use xlink:href="#sortDownColor"></use>
845
+ </svg>
846
+ <svg class="icon">
847
+ <use xlink:href="#sortUpColor"></use>
848
+ </svg>
849
+ <svg class="icon">
850
+ <use xlink:href="#sumAddColor"></use>
851
+ </svg>
852
+ <svg class="icon">
853
+ <use xlink:href="#sumColor"></use>
854
+ </svg>
855
+ <svg class="icon">
856
+ <use xlink:href="#wellAddColor"></use>
857
+ </svg>
858
+ <svg class="icon">
859
+ <use xlink:href="#wellColor"></use>
860
+ </svg>
861
+ <svg class="icon">
862
+ <use xlink:href="#wellConstructionColor"></use>
863
+ </svg>
864
+ <svg class="icon">
865
+ <use xlink:href="#addColor"></use>
866
+ </svg>
867
+ <svg class="icon">
868
+ <use xlink:href="#areasColor"></use>
869
+ </svg>
870
+ <svg class="icon">
871
+ <use xlink:href="#barChart"></use>
872
+ </svg>
873
+ <svg class="icon">
874
+ <use xlink:href="#barChart-1"></use>
875
+ </svg>
876
+ <svg class="icon">
877
+ <use xlink:href="#calcColor"></use>
878
+ </svg>
879
+ <svg class="icon">
880
+ <use xlink:href="#calendarColor"></use>
881
+ </svg>
882
+ <svg class="icon">
883
+ <use xlink:href="#chartLineColor"></use>
884
+ </svg>
885
+ <svg class="icon">
886
+ <use xlink:href="#chartLineDashed"></use>
887
+ </svg>
888
+ <svg class="icon">
889
+ <use xlink:href="#chartLineGradientColor"></use>
890
+ </svg>
891
+ <svg class="icon">
892
+ <use xlink:href="#clusterColor"></use>
893
+ </svg>
894
+ <svg class="icon">
895
+ <use xlink:href="#coinColor"></use>
896
+ </svg>
897
+ <svg class="icon">
898
+ <use xlink:href="#deleteColor"></use>
899
+ </svg>
900
+ <svg class="icon">
901
+ <use xlink:href="#documentColor"></use>
902
+ </svg>
903
+ <svg class="icon">
904
+ <use xlink:href="#favorite"></use>
905
+ </svg>
906
+ <svg class="icon">
907
+ <use xlink:href="#filterColor"></use>
908
+ </svg>
909
+ <svg class="icon">
910
+ <use xlink:href="#filterSortDownColor"></use>
911
+ </svg>
912
+ <svg class="icon">
913
+ <use xlink:href="#filterSortUpColor"></use>
914
+ </svg>
915
+ <svg class="icon">
916
+ <use xlink:href="#folderAddColor"></use>
917
+ </svg>
918
+ <svg class="icon">
919
+ <use xlink:href="#folderColor"></use>
920
+ </svg>
921
+ <svg class="icon">
922
+ <use xlink:href="#geomechColor"></use>
923
+ </svg>