raise-common-lib-new 0.0.63 → 0.0.64

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 (221) hide show
  1. package/esm2022/lib/actions/toolbar/index.component.mjs +4 -3
  2. package/esm2022/lib/actions/toolbar-item/index.component.mjs +2 -2
  3. package/esm2022/lib/common-grid/grid-action/grid-action-item/grid-action-item.component.mjs +1 -1
  4. package/esm2022/lib/common-grid/grid-action/grid-action.component.mjs +3 -2
  5. package/esm2022/lib/common-grid/index.component.mjs +6 -3
  6. package/esm2022/lib/dashboard/api.mjs +33 -0
  7. package/esm2022/lib/dashboard/bar-charts/bar-charts.component.mjs +430 -0
  8. package/esm2022/lib/dashboard/bar-charts/utils.mjs +18 -0
  9. package/esm2022/lib/dashboard/dashboard-properties/data-mart-new/data-mart-new.component.mjs +442 -0
  10. package/esm2022/lib/dashboard/dashboard.service.mjs +295 -0
  11. package/esm2022/lib/dashboard/dashboardPorlets.service.mjs +2169 -0
  12. package/esm2022/lib/dashboard/dialog-group/download/index.component.mjs +212 -0
  13. package/esm2022/lib/dashboard/dialog-group/empty-icon-prompt/empty-icon-prompt.component.mjs +36 -0
  14. package/esm2022/lib/dashboard/gadget-group/gadget-pivot/gadget-pivot.component.mjs +3211 -0
  15. package/esm2022/lib/dashboard/gadget-group/gadget-pivot-chart/gadget-pivot.component.mjs +3117 -0
  16. package/esm2022/lib/dashboard/gadget-group/gadget-table/gadget-table.component.mjs +1099 -0
  17. package/esm2022/lib/dashboard/gadget-group/gadget-transpose/gadget-transpose.component.mjs +583 -0
  18. package/esm2022/lib/dashboard/pane-group-new.component.mjs +2031 -0
  19. package/esm2022/lib/dashboard/sidebar-iconlist/field-filter/field-filter.component.mjs +637 -0
  20. package/esm2022/lib/dashboard/sidebar-iconlist/field-format/field-format.component.mjs +753 -0
  21. package/esm2022/lib/dashboard/sidebar-iconlist/portlet-type-new/portlet-type-new.component.mjs +216 -0
  22. package/esm2022/lib/dashboard/sidebar-iconlist/sidebar-iconlist-new.component.mjs +1239 -0
  23. package/esm2022/lib/dialog/common-delete-dialog/index.component.mjs +1 -1
  24. package/esm2022/lib/dialog/common-dialog/index.component.mjs +16 -5
  25. package/esm2022/lib/float-box/index.component.mjs +18 -4
  26. package/esm2022/lib/form/checkbox-group/index.component.mjs +35 -5
  27. package/esm2022/lib/form/drawer-form/drawer-form.component.mjs +177 -76
  28. package/esm2022/lib/layout/drawer/index.component.mjs +2 -2
  29. package/esm2022/lib/layout/page-list/index.component.mjs +9 -3
  30. package/esm2022/lib/layout/page-tab/index.component.mjs +5 -3
  31. package/esm2022/lib/layout/rs-stepper/constants.mjs +2 -0
  32. package/esm2022/lib/layout/rs-stepper/index.component.mjs +148 -0
  33. package/esm2022/lib/raise-common-lib.module.mjs +114 -7
  34. package/esm2022/lib/service/InjectionToken.mjs +5 -0
  35. package/esm2022/lib/service/keep-alive.service.mjs +2 -2
  36. package/esm2022/lib/smart-popup/index.component.mjs +1084 -0
  37. package/esm2022/public-api.mjs +19 -1
  38. package/fesm2022/raise-common-lib-new.mjs +18037 -220
  39. package/fesm2022/raise-common-lib-new.mjs.map +1 -1
  40. package/lib/common-grid/index.component.d.ts +2 -1
  41. package/lib/dashboard/api.d.ts +24 -0
  42. package/lib/dashboard/bar-charts/bar-charts.component.d.ts +63 -0
  43. package/lib/dashboard/bar-charts/utils.d.ts +1 -0
  44. package/lib/dashboard/dashboard-properties/data-mart-new/data-mart-new.component.d.ts +52 -0
  45. package/lib/dashboard/dashboard.service.d.ts +152 -0
  46. package/lib/dashboard/dashboardPorlets.service.d.ts +214 -0
  47. package/lib/dashboard/dialog-group/download/index.component.d.ts +36 -0
  48. package/lib/dashboard/dialog-group/empty-icon-prompt/empty-icon-prompt.component.d.ts +15 -0
  49. package/lib/dashboard/gadget-group/gadget-pivot/gadget-pivot.component.d.ts +128 -0
  50. package/lib/dashboard/gadget-group/gadget-pivot-chart/gadget-pivot.component.d.ts +131 -0
  51. package/lib/dashboard/gadget-group/gadget-table/gadget-table.component.d.ts +77 -0
  52. package/lib/dashboard/gadget-group/gadget-transpose/gadget-transpose.component.d.ts +47 -0
  53. package/lib/dashboard/pane-group-new.component.d.ts +169 -0
  54. package/lib/dashboard/sidebar-iconlist/field-filter/field-filter.component.d.ts +56 -0
  55. package/lib/dashboard/sidebar-iconlist/field-format/field-format.component.d.ts +62 -0
  56. package/lib/dashboard/sidebar-iconlist/portlet-type-new/portlet-type-new.component.d.ts +30 -0
  57. package/lib/dashboard/sidebar-iconlist/sidebar-iconlist-new.component.d.ts +150 -0
  58. package/lib/dialog/common-dialog/index.component.d.ts +3 -1
  59. package/lib/float-box/index.component.d.ts +4 -3
  60. package/lib/form/checkbox-group/index.component.d.ts +5 -0
  61. package/lib/form/drawer-form/drawer-form.component.d.ts +21 -8
  62. package/lib/layout/page-list/index.component.d.ts +3 -1
  63. package/lib/layout/page-tab/index.component.d.ts +1 -0
  64. package/lib/layout/rs-stepper/constants.d.ts +5 -0
  65. package/lib/layout/rs-stepper/index.component.d.ts +31 -0
  66. package/lib/raise-common-lib.module.d.ts +61 -40
  67. package/lib/service/InjectionToken.d.ts +4 -0
  68. package/lib/smart-popup/index.component.d.ts +60 -0
  69. package/package.json +1 -1
  70. package/public-api.d.ts +18 -0
  71. package/src/assets/img/dashboard_icon/AddPerson.svg +4 -0
  72. package/src/assets/img/dashboard_icon/Angle-double-left.svg +12 -0
  73. package/src/assets/img/dashboard_icon/Angle-double-right.svg +12 -0
  74. package/src/assets/img/dashboard_icon/Arrow_collapse.svg +3 -0
  75. package/src/assets/img/dashboard_icon/Arrow_expand.svg +3 -0
  76. package/src/assets/img/dashboard_icon/Close.svg +4 -0
  77. package/src/assets/img/dashboard_icon/Edit_label.svg +3 -0
  78. package/src/assets/img/dashboard_icon/RemoveMini.svg +3 -0
  79. package/src/assets/img/dashboard_icon/ShareTo.svg +3 -0
  80. package/src/assets/img/dashboard_icon/add-dashboard.svg +4 -0
  81. package/src/assets/img/dashboard_icon/add-tab.svg +4 -0
  82. package/src/assets/img/dashboard_icon/angle-left.svg +12 -0
  83. package/src/assets/img/dashboard_icon/angle-right.svg +12 -0
  84. package/src/assets/img/dashboard_icon/area-white.svg +3 -0
  85. package/src/assets/img/dashboard_icon/area.svg +3 -0
  86. package/src/assets/img/dashboard_icon/bar-white.svg +14 -0
  87. package/src/assets/img/dashboard_icon/bar.svg +14 -0
  88. package/src/assets/img/dashboard_icon/basic-icon-filter.svg +14 -0
  89. package/src/assets/img/dashboard_icon/chart-combined-active.svg +7 -0
  90. package/src/assets/img/dashboard_icon/chart-combined.svg +7 -0
  91. package/src/assets/img/dashboard_icon/column-white.svg +14 -0
  92. package/src/assets/img/dashboard_icon/column.svg +26 -0
  93. package/src/assets/img/dashboard_icon/customize.png +0 -0
  94. package/src/assets/img/dashboard_icon/dashboard-description.svg +18 -0
  95. package/src/assets/img/dashboard_icon/dashboard-download.svg +18 -0
  96. package/src/assets/img/dashboard_icon/dashboard-drag.svg +28 -0
  97. package/src/assets/img/dashboard_icon/dashboard-duplicate.svg +24 -0
  98. package/src/assets/img/dashboard_icon/dashboard-icon.svg +12 -0
  99. package/src/assets/img/dashboard_icon/dashboard-properties.svg +18 -0
  100. package/src/assets/img/dashboard_icon/dashboard-rename.svg +18 -0
  101. package/src/assets/img/dashboard_icon/dashboard-share.svg +20 -0
  102. package/src/assets/img/dashboard_icon/dashboard-tab-delete.svg +4 -0
  103. package/src/assets/img/dashboard_icon/dashboard_Share.svg +3 -0
  104. package/src/assets/img/dashboard_icon/dashboard_ToolsHide.svg +4 -0
  105. package/src/assets/img/dashboard_icon/datamart_.svg +5 -0
  106. package/src/assets/img/dashboard_icon/datamart_Admin.svg +3 -0
  107. package/src/assets/img/dashboard_icon/datamart_Asset Portfolio.svg +4 -0
  108. package/src/assets/img/dashboard_icon/datamart_Bank.svg +3 -0
  109. package/src/assets/img/dashboard_icon/datamart_CRM.svg +6 -0
  110. package/src/assets/img/dashboard_icon/datamart_Company.svg +6 -0
  111. package/src/assets/img/dashboard_icon/datamart_Compliance.svg +3 -0
  112. package/src/assets/img/dashboard_icon/datamart_Contact.svg +3 -0
  113. package/src/assets/img/dashboard_icon/datamart_DASHBOARD.svg +4 -0
  114. package/src/assets/img/dashboard_icon/datamart_DOCX.svg +4 -0
  115. package/src/assets/img/dashboard_icon/datamart_ESG.svg +4 -0
  116. package/src/assets/img/dashboard_icon/datamart_Financials - Company.svg +3 -0
  117. package/src/assets/img/dashboard_icon/datamart_Fund.svg +4 -0
  118. package/src/assets/img/dashboard_icon/datamart_FundFinancial.svg +4 -0
  119. package/src/assets/img/dashboard_icon/datamart_HTML.svg +4 -0
  120. package/src/assets/img/dashboard_icon/datamart_Logs.svg +8 -0
  121. package/src/assets/img/dashboard_icon/datamart_PDF.svg +5 -0
  122. package/src/assets/img/dashboard_icon/datamart_Project.svg +3 -0
  123. package/src/assets/img/dashboard_icon/datamart_Templates.svg +7 -0
  124. package/src/assets/img/dashboard_icon/datamart_Track Change.svg +3 -0
  125. package/src/assets/img/dashboard_icon/datamart_VirtualGroup.svg +5 -0
  126. package/src/assets/img/dashboard_icon/datamart_XLS.svg +4 -0
  127. package/src/assets/img/dashboard_icon/desktop_selected.svg +10 -0
  128. package/src/assets/img/dashboard_icon/desktop_unselected.svg +10 -0
  129. package/src/assets/img/dashboard_icon/favourite-grey.svg +3 -0
  130. package/src/assets/img/dashboard_icon/favourite-yellow.svg +3 -0
  131. package/src/assets/img/dashboard_icon/forms-checkbox-square-tick.svg +3 -0
  132. package/src/assets/img/dashboard_icon/ftable-white.svg +24 -0
  133. package/src/assets/img/dashboard_icon/ftable.svg +24 -0
  134. package/src/assets/img/dashboard_icon/gadget-basic-arrow-down.svg +14 -0
  135. package/src/assets/img/dashboard_icon/gadget-basic-format.svg +21 -0
  136. package/src/assets/img/dashboard_icon/gadget-basic-sub-total.svg +18 -0
  137. package/src/assets/img/dashboard_icon/gadget-basic-total-1.svg +9 -0
  138. package/src/assets/img/dashboard_icon/gadget-basic-total.svg +16 -0
  139. package/src/assets/img/dashboard_icon/gadget-columns.svg +12 -0
  140. package/src/assets/img/dashboard_icon/gadget-delete.svg +18 -0
  141. package/src/assets/img/dashboard_icon/gadget-download.svg +18 -0
  142. package/src/assets/img/dashboard_icon/gadget-duplicate.svg +24 -0
  143. package/src/assets/img/dashboard_icon/gadget-edit.svg +18 -0
  144. package/src/assets/img/dashboard_icon/gadget-filters-light.svg +9 -0
  145. package/src/assets/img/dashboard_icon/gadget-filters.svg +9 -0
  146. package/src/assets/img/dashboard_icon/gadget-format-0.svg +8 -0
  147. package/src/assets/img/dashboard_icon/gadget-format-1.svg +8 -0
  148. package/src/assets/img/dashboard_icon/gadget-format.svg +19 -0
  149. package/src/assets/img/dashboard_icon/gadget-fullscreen.svg +30 -0
  150. package/src/assets/img/dashboard_icon/gadget-settings.svg +18 -0
  151. package/src/assets/img/dashboard_icon/gadget-sub-total-0.svg +18 -0
  152. package/src/assets/img/dashboard_icon/gadget-sub-total-1.svg +18 -0
  153. package/src/assets/img/dashboard_icon/gadget-thumbnail.svg +12 -0
  154. package/src/assets/img/dashboard_icon/gadget-type-light.svg +15 -0
  155. package/src/assets/img/dashboard_icon/gadget-type.svg +16 -0
  156. package/src/assets/img/dashboard_icon/geo-white.svg +14 -0
  157. package/src/assets/img/dashboard_icon/geo.svg +14 -0
  158. package/src/assets/img/dashboard_icon/historic-IRR-white.svg +9 -0
  159. package/src/assets/img/dashboard_icon/historic-IRR.svg +5 -0
  160. package/src/assets/img/dashboard_icon/information-1.png +0 -0
  161. package/src/assets/img/dashboard_icon/information-grey.svg +4 -0
  162. package/src/assets/img/dashboard_icon/menu-change-group.svg +3 -0
  163. package/src/assets/img/dashboard_icon/menu-close.svg +20 -0
  164. package/src/assets/img/dashboard_icon/menu-delete.svg +18 -0
  165. package/src/assets/img/dashboard_icon/menu-description.svg +19 -0
  166. package/src/assets/img/dashboard_icon/menu-download.svg +24 -0
  167. package/src/assets/img/dashboard_icon/menu-drag.svg +28 -0
  168. package/src/assets/img/dashboard_icon/menu-duplicate.svg +26 -0
  169. package/src/assets/img/dashboard_icon/menu-properties.svg +18 -0
  170. package/src/assets/img/dashboard_icon/menu-rename.svg +23 -0
  171. package/src/assets/img/dashboard_icon/menu-share.svg +20 -0
  172. package/src/assets/img/dashboard_icon/menu-toolbar.svg +10 -0
  173. package/src/assets/img/dashboard_icon/mobile_selected.svg +10 -0
  174. package/src/assets/img/dashboard_icon/mobile_unselected.svg +10 -0
  175. package/src/assets/img/dashboard_icon/more_Save.svg +3 -0
  176. package/src/assets/img/dashboard_icon/more_View.svg +3 -0
  177. package/src/assets/img/dashboard_icon/multi-series-white.svg +20 -0
  178. package/src/assets/img/dashboard_icon/multi-series.svg +6 -0
  179. package/src/assets/img/dashboard_icon/paint-bucket.svg +6 -0
  180. package/src/assets/img/dashboard_icon/pie-white.svg +16 -0
  181. package/src/assets/img/dashboard_icon/pie.svg +16 -0
  182. package/src/assets/img/dashboard_icon/pivot-chart-active.svg +8 -0
  183. package/src/assets/img/dashboard_icon/pivot-chart.svg +8 -0
  184. package/src/assets/img/dashboard_icon/pivot-white.svg +8 -0
  185. package/src/assets/img/dashboard_icon/pivot.svg +8 -0
  186. package/src/assets/img/dashboard_icon/pivot_column.svg +9 -0
  187. package/src/assets/img/dashboard_icon/pivot_column_active.svg +9 -0
  188. package/src/assets/img/dashboard_icon/pivot_line.svg +12 -0
  189. package/src/assets/img/dashboard_icon/pivot_line_active.svg +12 -0
  190. package/src/assets/img/dashboard_icon/print-A2.svg +3 -0
  191. package/src/assets/img/dashboard_icon/radar-white.svg +19 -0
  192. package/src/assets/img/dashboard_icon/radar.svg +19 -0
  193. package/src/assets/img/dashboard_icon/saveAs.svg +3 -0
  194. package/src/assets/img/dashboard_icon/search_input.svg +4 -0
  195. package/src/assets/img/dashboard_icon/table-3-white.svg +16 -0
  196. package/src/assets/img/dashboard_icon/table-3.svg +16 -0
  197. package/src/assets/img/dashboard_icon/table-filter-off.svg +5 -0
  198. package/src/assets/img/dashboard_icon/table-filter-on.svg +5 -0
  199. package/src/assets/img/dashboard_icon/tag_dashboard_selected.svg +3 -0
  200. package/src/assets/img/dashboard_icon/tag_dashboard_unselected.svg +3 -0
  201. package/src/assets/img/dashboard_icon/tag_share_selected.svg +3 -0
  202. package/src/assets/img/dashboard_icon/tag_share_unselected.svg +3 -0
  203. package/src/assets/img/dashboard_icon/tick.svg +26 -0
  204. package/src/assets/img/dashboard_icon/toolbar_AddDashboard.svg +5 -0
  205. package/src/assets/img/dashboard_icon/toolbar_AddGroup.svg +3 -0
  206. package/src/assets/img/dashboard_icon/toolbar_AddReport.svg +3 -0
  207. package/src/assets/img/dashboard_icon/toolbar_CollapseAll.svg +3 -0
  208. package/src/assets/img/dashboard_icon/toolbar_Customize.svg +3 -0
  209. package/src/assets/img/dashboard_icon/toolbar_DeleteDark.svg +3 -0
  210. package/src/assets/img/dashboard_icon/toolbar_Duplicate.svg +3 -0
  211. package/src/assets/img/dashboard_icon/toolbar_Edit.svg +3 -0
  212. package/src/assets/img/dashboard_icon/toolbar_ExpandAll.svg +3 -0
  213. package/src/assets/img/dashboard_icon/toolbar_Search.svg +3 -0
  214. package/src/assets/img/dashboard_icon/topbar-menu.svg +33 -0
  215. package/src/assets/img/dashboard_icon/topbar-refresh.svg +17 -0
  216. package/src/assets/img/dashboard_icon/topbar-tool-off.svg +12 -0
  217. package/src/assets/img/dashboard_icon/topbar-tool-on.svg +12 -0
  218. package/src/assets/img/dashboard_icon/trade-up-white.svg +14 -0
  219. package/src/assets/img/dashboard_icon/trade-up.svg +14 -0
  220. package/src/assets/img/dashboard_icon/transpose-white.svg +16 -0
  221. package/src/assets/img/dashboard_icon/transpose.svg +16 -0
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22">
2
+ <g fill="none" fill-rule="evenodd">
3
+ <g>
4
+ <g>
5
+ <path d="M0 0H22V22H0z" transform="translate(-172.000000, -325.000000) translate(172.000000, 325.000000)"/>
6
+ <g fill="#44566C" fill-rule="nonzero">
7
+ <path d="M14.125 0H1.875C.841 0 0 .841 0 1.875v12.25C0 15.159.841 16 1.875 16h12.25C15.159 16 16 15.159 16 14.125V1.875C16 .841 15.159 0 14.125 0zM1.875 1.25h12.25c.345 0 .625.28.625.625v9.179l-2.127-2.128c-.731-.73-1.92-.73-2.652 0l-.69.69-1.94-1.94c-.73-.73-1.92-.73-2.651 0l-3.44 3.44V1.875c0-.345.28-.625.625-.625zm12.25 13.5H1.875c-.345 0-.625-.28-.625-.625v-1.241L5.574 8.56c.243-.243.64-.243.884 0l2.823 2.824 1.574-1.574c.244-.244.64-.244.884 0l3.011 3.011v1.304c0 .345-.28.625-.625.625zm-4-8.5C11.159 6.25 12 5.409 12 4.375S11.159 2.5 10.125 2.5 8.25 3.341 8.25 4.375s.841 1.875 1.875 1.875zm0-2.5c.345 0 .625.28.625.625S10.47 5 10.125 5 9.5 4.72 9.5 4.375s.28-.625.625-.625z" transform="translate(-172.000000, -325.000000) translate(172.000000, 325.000000) translate(3.000000, 3.000000)"/>
8
+ </g>
9
+ </g>
10
+ </g>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="14px" height="12px" viewBox="0 0 14 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>E5F13E67-FCB0-4AEB-A601-A55929A56582</title>
4
+ <defs>
5
+ <path d="M1034.40002,104.000004 L1028.6,104.000004 C1028.048,104.000004 1028,104.446997 1028,105.000004 C1028,105.552998 1028.048,106.000004 1028.6,106.000004 L1034.40002,106.000004 C1034.95197,106.000004 1035,105.552998 1035,105.000004 C1035,104.446997 1034.95197,104.000004 1034.40002,104.000004 Z M1036.40001,109.000025 L1028.6,109.000025 C1028.048,109.000025 1028,109.446975 1028,109.999975 C1028,110.552975 1028.048,111.000012 1028.6,111.000012 L1036.40001,111.000012 C1036.95196,111.000012 1037,110.552975 1037,109.999975 C1037,109.446975 1036.95196,109.000025 1036.40001,109.000025 Z M1028.6,101 L1036.40001,101 C1036.95196,101 1037,100.553003 1037,100 C1037,99.4469999 1036.95196,99 1036.40001,99 L1028.6,99 C1028.048,99 1028,99.4469999 1028,100 C1028,100.553003 1028.048,101 1028.6,101 Z M1025.4,104.000004 L1023.6,104.000004 C1023.048,104.000004 1023,104.446997 1023,105.000004 C1023,105.552998 1023.048,106.000004 1023.6,106.000004 L1025.4,106.000004 C1025.952,106.000004 1026,105.552998 1026,105.000004 C1026,104.446997 1025.952,104.000004 1025.4,104.000004 Z M1025.4,109.000025 L1023.6,109.000025 C1023.048,109.000025 1023,109.446975 1023,109.999975 C1023,110.552975 1023.048,111.000012 1023.6,111.000012 L1025.4,111.000012 C1025.952,111.000012 1026,110.552975 1026,109.999975 C1026,109.446975 1025.952,109.000025 1025.4,109.000025 Z M1025.4,99 L1023.6,99 C1023.048,99 1023,99.4469999 1023,100 C1023,100.553003 1023.048,101 1023.6,101 L1025.4,101 C1025.952,101 1026,100.553003 1026,100 C1026,99.4469999 1025.952,99 1025.4,99 Z" id="path-1"></path>
6
+ </defs>
7
+ <g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
8
+ <g id="Dashboard_icons" transform="translate(-1023.000000, -99.000000)">
9
+ <mask id="mask-2" fill="white">
10
+ <use xlink:href="#path-1"></use>
11
+ </mask>
12
+ <use id="list" fill="#FDBF5E" fill-rule="nonzero" xlink:href="#path-1"></use>
13
+ </g>
14
+ </g>
15
+ </svg>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="15px" height="12px" viewBox="0 0 15 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>C9E3BE11-F2F4-4D3E-BF4E-87B52D008E5B</title>
4
+ <g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Dashboard_icons" transform="translate(-1011.000000, -61.000000)" fill="#44566C" fill-rule="nonzero">
6
+ <g id="DataType" transform="translate(1011.500000, 61.000000)">
7
+ <path d="M11.400025,5.00000375 L5.6,5.00000375 C5.0479975,5.00000375 5.00000375,5.4469975 5.00000375,6.00000375 C5.00000375,6.5529975 5.0479975,7.00000375 5.6,7.00000375 L11.400025,7.00000375 C11.951975,7.00000375 12.0000038,6.5529975 12.0000038,6.00000375 C12.0000038,5.4469975 11.951975,5.00000375 11.400025,5.00000375 Z" id="Path"></path>
8
+ <path d="M13.4000125,10.000025 L5.6,10.000025 C5.0479975,10.000025 5.00000375,10.446975 5.00000375,10.999975 C5.00000375,11.552975 5.0479975,12.0000125 5.6,12.0000125 L13.4000125,12.0000125 C13.9519625,12.0000125 14.0000037,11.552975 14.0000037,10.999975 C14.0000037,10.446975 13.9519625,10.000025 13.4000125,10.000025 Z" id="Path"></path>
9
+ <path d="M5.6,2 L13.4000125,2 C13.9519625,2 14.0000037,1.5530025 14.0000037,1 C14.0000037,0.446999875 13.9519625,0 13.4000125,0 L5.6,0 C5.0479975,0 5.00000375,0.446999875 5.00000375,1 C5.00000375,1.5530025 5.0479975,2 5.6,2 Z" id="Path"></path>
10
+ <path d="M2.4000025,5.00000375 L0.59999975,5.00000375 C0.0479999625,5.00000375 0,5.4469975 0,6.00000375 C0,6.5529975 0.0479999625,7.00000375 0.59999975,7.00000375 L2.4000025,7.00000375 C2.95199625,7.00000375 3,6.5529975 3,6.00000375 C3,5.4469975 2.95199625,5.00000375 2.4000025,5.00000375 Z" id="Path"></path>
11
+ <path d="M2.4000025,10.000025 L0.59999975,10.000025 C0.0479999625,10.000025 0,10.446975 0,10.999975 C0,11.552975 0.0479999625,12.0000125 0.59999975,12.0000125 L2.4000025,12.0000125 C2.95199625,12.0000125 3,11.552975 3,10.999975 C3,10.446975 2.95199625,10.000025 2.4000025,10.000025 Z" id="Path"></path>
12
+ <path d="M2.4000025,0 L0.59999975,0 C0.0479999625,0 0,0.446999875 0,1 C0,1.5530025 0.0479999625,2 0.59999975,2 L2.4000025,2 C2.95199625,2 3,1.5530025 3,1 C3,0.446999875 2.95199625,0 2.4000025,0 Z" id="Path"></path>
13
+ </g>
14
+ </g>
15
+ </g>
16
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="54" height="55" viewBox="0 0 54 55">
2
+ <defs>
3
+ <path id="prefix__a" d="M20.002.5C9.172.5.364 9.473.364 20.5s8.807 20 19.638 20c10.827 0 19.636-8.973 19.636-20S30.828.5 20.002.5zm16.748 20c0 3.902-1.3 7.5-3.469 10.375-.614-.488-1.266-1.806-.652-3.173.62-1.375.78-4.558.638-5.798-.135-1.237-.767-4.219-2.483-4.248-1.714-.025-2.89-.602-3.91-2.673-2.112-4.308 3.967-5.135 1.854-7.518-.591-.671-3.647 2.754-4.095-1.81-.029-.328.276-.817.687-1.326C31.956 6.6 36.75 12.99 36.75 20.5zM17.7 3.61c-.4.796-1.457 1.12-2.1 1.717-1.399 1.29-2 1.11-2.753 2.348-.759 1.237-3.205 3.019-3.205 3.915 0 .895 1.235 1.95 1.853 1.745.618-.208 2.248-.195 3.205.146.96.346 8.006.692 5.76 6.759-.712 1.929-3.83 1.604-4.661 4.798-.125.468-.557 2.47-.583 3.125-.051 1.012.703 4.829-.256 4.829-.963 0-3.555-3.415-3.555-4.034 0-.618-.67-2.787-.67-4.645 0-1.857-3.106-1.828-3.106-4.296 0-2.225 1.683-3.334 1.305-4.402-.37-1.063-3.328-1.098-4.561-1.23C6.527 8.695 11.593 4.473 17.7 3.61zm-2.967 33.078c1.006-.542 1.109-1.242 2.02-1.278 1.044-.047 1.893-.414 3.069-.679 1.043-.231 2.91-1.31 4.553-1.448 1.387-.114 4.122.073 4.858 1.436-2.649 1.794-5.825 2.84-9.233 2.84-1.839 0-3.61-.311-5.267-.871z"/>
4
+ </defs>
5
+ <g fill="none" fill-rule="evenodd" transform="translate(7 7)">
6
+ <mask id="prefix__b" fill="#fff">
7
+ <use xlink:href="#prefix__a"/>
8
+ </mask>
9
+ <use fill="#44566C" fill-rule="nonzero" xlink:href="#prefix__a"/>
10
+ <g fill="#FFF" fill-rule="nonzero" mask="url(#prefix__b)">
11
+ <path d="M0 0H54V55H0z" transform="translate(-7 -7)"/>
12
+ </g>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="54" height="55" viewBox="0 0 54 55">
2
+ <defs>
3
+ <path id="prefix__a" d="M20.002.5C9.172.5.364 9.473.364 20.5s8.807 20 19.638 20c10.827 0 19.636-8.973 19.636-20S30.828.5 20.002.5zm16.748 20c0 3.902-1.3 7.5-3.469 10.375-.614-.488-1.266-1.806-.652-3.173.62-1.375.78-4.558.638-5.798-.135-1.237-.767-4.219-2.483-4.248-1.714-.025-2.89-.602-3.91-2.673-2.112-4.308 3.967-5.135 1.854-7.518-.591-.671-3.647 2.754-4.095-1.81-.029-.328.276-.817.687-1.326C31.956 6.6 36.75 12.99 36.75 20.5zM17.7 3.61c-.4.796-1.457 1.12-2.1 1.717-1.399 1.29-2 1.11-2.753 2.348-.759 1.237-3.205 3.019-3.205 3.915 0 .895 1.235 1.95 1.853 1.745.618-.208 2.248-.195 3.205.146.96.346 8.006.692 5.76 6.759-.712 1.929-3.83 1.604-4.661 4.798-.125.468-.557 2.47-.583 3.125-.051 1.012.703 4.829-.256 4.829-.963 0-3.555-3.415-3.555-4.034 0-.618-.67-2.787-.67-4.645 0-1.857-3.106-1.828-3.106-4.296 0-2.225 1.683-3.334 1.305-4.402-.37-1.063-3.328-1.098-4.561-1.23C6.527 8.695 11.593 4.473 17.7 3.61zm-2.967 33.078c1.006-.542 1.109-1.242 2.02-1.278 1.044-.047 1.893-.414 3.069-.679 1.043-.231 2.91-1.31 4.553-1.448 1.387-.114 4.122.073 4.858 1.436-2.649 1.794-5.825 2.84-9.233 2.84-1.839 0-3.61-.311-5.267-.871z"/>
4
+ </defs>
5
+ <g fill="none" fill-rule="evenodd" transform="translate(7 7)">
6
+ <mask id="prefix__b" fill="#fff">
7
+ <use xlink:href="#prefix__a"/>
8
+ </mask>
9
+ <use fill="#44566C" fill-rule="nonzero" xlink:href="#prefix__a"/>
10
+ <g fill="#5D78FF" fill-opacity=".5" fill-rule="nonzero" mask="url(#prefix__b)">
11
+ <path d="M0 0H54V55H0z" transform="translate(-7 -7)"/>
12
+ </g>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,9 @@
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="M25.5422 18C25.8396 17.053 26 16.0452 26 15C26 9.47715 21.5228 5 16 5C10.4772 5 6 9.47715 6 15C6 19.1006 8.46819 22.6248 12 24.1679V26.3172C7.33923 24.6698 4 20.2249 4 15C4 8.37258 9.37258 3 16 3C22.6274 3 28 8.37258 28 15C28 16.0359 27.8687 17.0411 27.6219 18H25.5422Z"
4
+ fill="#fff" />
5
+ <path d="M15.5201 10.6787V15.6427L19.3601 16.3187" stroke="#fff" stroke-width="2" stroke-linecap="round" />
6
+ <path fill-rule="evenodd" clip-rule="evenodd"
7
+ d="M14 27H17V26.1569L16.1969 25.7647V21.2353L17 20.8431V20H14V20.8431L14.8031 21.2353V25.7647L14 26.1569V27ZM19.8246 20C20.3918 20 20.8596 20.0784 21.2281 20.2353C21.5965 20.3856 21.8713 20.6176 22.0526 20.9314C22.2339 21.2386 22.3246 21.6275 22.3246 22.098C22.3246 22.4183 22.269 22.6993 22.1579 22.9412C22.0526 23.1765 21.9094 23.3791 21.7281 23.549C21.5526 23.7124 21.3626 23.8464 21.1579 23.951L23 27H21.5263L20.0351 24.3137H19.3246V27H18V20H19.8246ZM19.7281 21.2157H19.3246V23.1078H19.7544C20.0468 23.1078 20.2836 23.0719 20.4649 23C20.6462 22.9281 20.7778 22.8203 20.8596 22.6765C20.9415 22.5261 20.9825 22.3464 20.9825 22.1373C20.9825 21.915 20.9357 21.7386 20.8421 21.6078C20.7544 21.4706 20.617 21.3725 20.4298 21.3137C20.2485 21.2484 20.0146 21.2157 19.7281 21.2157ZM25.8246 20C26.3918 20 26.8596 20.0784 27.2281 20.2353C27.5965 20.3856 27.8713 20.6176 28.0526 20.9314C28.2339 21.2386 28.3246 21.6275 28.3246 22.098C28.3246 22.4183 28.269 22.6993 28.1579 22.9412C28.0526 23.1765 27.9094 23.3791 27.7281 23.549C27.5526 23.7124 27.3626 23.8464 27.1579 23.951L29 27H27.5263L26.0351 24.3137H25.3246V27H24V20H25.8246ZM25.7281 21.2157H25.3246V23.1078H25.7544C26.0468 23.1078 26.2836 23.0719 26.4649 23C26.6462 22.9281 26.7778 22.8203 26.8596 22.6765C26.9415 22.5261 26.9825 22.3464 26.9825 22.1373C26.9825 21.915 26.9357 21.7386 26.8421 21.6078C26.7544 21.4706 26.617 21.3725 26.4298 21.3137C26.2485 21.2484 26.0146 21.2157 25.7281 21.2157Z"
8
+ fill="#fff" />
9
+ </svg>
@@ -0,0 +1,5 @@
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" d="M25.5422 18C25.8396 17.053 26 16.0452 26 15C26 9.47715 21.5228 5 16 5C10.4772 5 6 9.47715 6 15C6 19.1006 8.46819 22.6248 12 24.1679V26.3172C7.33923 24.6698 4 20.2249 4 15C4 8.37258 9.37258 3 16 3C22.6274 3 28 8.37258 28 15C28 16.0359 27.8687 17.0411 27.6219 18H25.5422Z" fill="#5166B8"/>
3
+ <path d="M15.5201 10.6787V15.6427L19.3601 16.3187" stroke="#5166B8" stroke-width="2" stroke-linecap="round"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M14 27H17V26.1569L16.1969 25.7647V21.2353L17 20.8431V20H14V20.8431L14.8031 21.2353V25.7647L14 26.1569V27ZM19.8246 20C20.3918 20 20.8596 20.0784 21.2281 20.2353C21.5965 20.3856 21.8713 20.6176 22.0526 20.9314C22.2339 21.2386 22.3246 21.6275 22.3246 22.098C22.3246 22.4183 22.269 22.6993 22.1579 22.9412C22.0526 23.1765 21.9094 23.3791 21.7281 23.549C21.5526 23.7124 21.3626 23.8464 21.1579 23.951L23 27H21.5263L20.0351 24.3137H19.3246V27H18V20H19.8246ZM19.7281 21.2157H19.3246V23.1078H19.7544C20.0468 23.1078 20.2836 23.0719 20.4649 23C20.6462 22.9281 20.7778 22.8203 20.8596 22.6765C20.9415 22.5261 20.9825 22.3464 20.9825 22.1373C20.9825 21.915 20.9357 21.7386 20.8421 21.6078C20.7544 21.4706 20.617 21.3725 20.4298 21.3137C20.2485 21.2484 20.0146 21.2157 19.7281 21.2157ZM25.8246 20C26.3918 20 26.8596 20.0784 27.2281 20.2353C27.5965 20.3856 27.8713 20.6176 28.0526 20.9314C28.2339 21.2386 28.3246 21.6275 28.3246 22.098C28.3246 22.4183 28.269 22.6993 28.1579 22.9412C28.0526 23.1765 27.9094 23.3791 27.7281 23.549C27.5526 23.7124 27.3626 23.8464 27.1579 23.951L29 27H27.5263L26.0351 24.3137H25.3246V27H24V20H25.8246ZM25.7281 21.2157H25.3246V23.1078H25.7544C26.0468 23.1078 26.2836 23.0719 26.4649 23C26.6462 22.9281 26.7778 22.8203 26.8596 22.6765C26.9415 22.5261 26.9825 22.3464 26.9825 22.1373C26.9825 21.915 26.9357 21.7386 26.8421 21.6078C26.7544 21.4706 26.617 21.3725 26.4298 21.3137C26.2485 21.2484 26.0146 21.2157 25.7281 21.2157Z" fill="#5166B8"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="18" height="18" viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9 1a8 8 0 1 0 8 8 8.009 8.009 0 0 0-8-8zm0 14.667A6.666 6.666 0 1 1 15.667 9 6.674 6.674 0 0 1 9 15.667z" fill="#44566C"/>
3
+ <path d="M9 7.667h-.667a.667.667 0 1 0 0 1.333h.666v4a.667.667 0 0 0 1.334 0V9a1.333 1.333 0 0 0-1.334-1.333zM9 6.333a1 1 0 1 0 0-2 1 1 0 0 0 0 2z" fill="#44566C"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.1875 3.34375C8.1875 2.05141 7.13609 1 5.84375 1H3.34375C2.05141 1 1 2.05141 1 3.34375C1 4.63609 2.05141 5.6875 3.34375 5.6875H5.84375C7.13609 5.6875 8.1875 4.63609 8.1875 3.34375ZM2.25 3.34375C2.25 2.74066 2.74066 2.25 3.34375 2.25H5.84375C6.44684 2.25 6.9375 2.74066 6.9375 3.34375C6.9375 3.94684 6.44684 4.4375 5.84375 4.4375H3.34375C2.74066 4.4375 2.25 3.94684 2.25 3.34375ZM14.6562 12.3125H12.1562C10.8639 12.3125 9.8125 13.3639 9.8125 14.6562C9.8125 15.9486 10.8639 17 12.1562 17H14.6562C15.9486 17 17 15.9486 17 14.6562C17 13.3639 15.9486 12.3125 14.6562 12.3125ZM14.6562 15.75H12.1562C11.5532 15.75 11.0625 15.2593 11.0625 14.6562C11.0625 14.0532 11.5532 13.5625 12.1562 13.5625H14.6562C15.2593 13.5625 15.75 14.0532 15.75 14.6562C15.75 15.2593 15.2593 15.75 14.6562 15.75ZM9.71875 14.6562C9.71875 15.0014 9.43894 15.2812 9.09375 15.2812H6.1875C4.98131 15.2812 4 14.2999 4 13.0938V6.5625C4 6.21731 4.27981 5.9375 4.625 5.9375C4.97019 5.9375 5.25 6.21731 5.25 6.5625V8.125H8.9375C9.28269 8.125 9.5625 8.40481 9.5625 8.75C9.5625 9.09519 9.28269 9.375 8.9375 9.375H5.25V13.0938C5.25 13.6107 5.67056 14.0312 6.1875 14.0312H9.09375C9.43894 14.0312 9.71875 14.3111 9.71875 14.6562ZM12.1562 11.0625H14.6562C15.9486 11.0625 17 10.0111 17 8.71875C17 7.42641 15.9486 6.375 14.6562 6.375H12.1562C10.8639 6.375 9.8125 7.42641 9.8125 8.71875C9.8125 10.0111 10.8639 11.0625 12.1562 11.0625ZM12.1562 7.625H14.6562C15.2593 7.625 15.75 8.11566 15.75 8.71875C15.75 9.32184 15.2593 9.8125 14.6562 9.8125H12.1562C11.5532 9.8125 11.0625 9.32184 11.0625 8.71875C11.0625 8.11566 11.5532 7.625 12.1562 7.625Z" fill="#44566C"/>
3
+ </svg>
@@ -0,0 +1,20 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="23" height="22" viewBox="0 0 23 22">
2
+ <defs>
3
+ <path id="pu67ihme8a" d="M14.522 6.273c.371-.352 1.04-.376 1.435 0 .396.375.427.9 0 1.359L12.627 11l3.33 3.37c.427.459.396.982 0 1.356-.396.376-1.064.352-1.435 0-.045-.042-.138-.134-.267-.262l-.218-.218c-.727-.731-2.056-2.081-2.855-2.895-.798.814-2.126 2.164-2.854 2.895l-.382.381-.102.1c-.372.35-1.04.375-1.435 0-.397-.375-.428-.898 0-1.358l3.33-3.369-3.33-3.37c-.428-.459-.397-.983 0-1.358.395-.376 1.063-.352 1.435 0 .27.257 2.275 2.292 3.34 3.375 1.063-1.083 3.067-3.118 3.338-3.375z"/>
4
+ </defs>
5
+ <g fill="none" fill-rule="evenodd">
6
+ <g>
7
+ <g>
8
+ <g transform="translate(-334.000000, -169.000000) translate(334.049861, 169.000000) translate(0.000000, 0.000000)">
9
+ <mask id="r632bpzlbb" fill="#fff">
10
+ <use xlink:href="#pu67ihme8a"/>
11
+ </mask>
12
+ <use fill="#44566C" fill-rule="nonzero" xlink:href="#pu67ihme8a"/>
13
+ <g fill="#44566C" fill-rule="nonzero" mask="url(#r632bpzlbb)">
14
+ <path d="M0 0H22.366V22H0z"/>
15
+ </g>
16
+ </g>
17
+ </g>
18
+ </g>
19
+ </g>
20
+ </svg>
@@ -0,0 +1,18 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="22" height="22" viewBox="0 0 22 22">
2
+ <defs>
3
+ <path id="5bf4aj7j3a" d="M12.59 3c.266 0 .528.09.787.27.258.181.437.4.536.657l.696 1.74h3.073c.093 0 .169.03.229.093.059.063.089.143.089.24v.667c0 .097-.03.177-.09.24-.06.062-.135.093-.228.093h-.955v9.875c0 .576-.155 1.075-.467 1.495-.312.42-.686.63-1.124.63H6.864c-.438 0-.812-.203-1.124-.61-.312-.406-.467-.897-.467-1.473V7h-.955c-.093 0-.169-.031-.229-.094C4.03 6.844 4 6.764 4 6.666V6c0-.097.03-.177.09-.24.06-.062.135-.093.228-.093h3.073l.696-1.74c.099-.257.278-.476.537-.656.258-.18.52-.271.785-.271zm2.865 4h-8.91v9.875c0 .153.024.294.07.422.046.128.094.222.144.281.05.06.085.089.105.089h8.272c.02 0 .055-.03.105-.089.05-.059.098-.153.144-.281.047-.128.07-.27.07-.422V7zM9.773 9c.093 0 .169.031.229.094.044.047.072.103.083.17l.006.07v6c0 .097-.03.177-.09.24-.044.046-.098.075-.162.087l-.066.006h-.636c-.093 0-.17-.031-.23-.094-.044-.047-.072-.103-.083-.17l-.006-.07v-6c0-.097.03-.177.09-.24.045-.046.099-.075.162-.087L9.136 9h.637zm3.181 0c.093 0 .17.031.23.094.044.047.072.103.083.17l.005.07v6c0 .097-.03.177-.089.24-.044.046-.099.075-.162.087l-.067.006h-.636c-.093 0-.169-.031-.229-.094-.044-.047-.072-.103-.083-.17l-.006-.07v-6c0-.097.03-.177.09-.24.044-.046.098-.075.162-.087L12.318 9h.636zm-.373-4.667H9.429c-.066.014-.123.052-.169.115l-.487 1.218h4.454l-.477-1.218c-.046-.063-.103-.101-.17-.115z"/>
4
+ </defs>
5
+ <g fill="none" fill-rule="evenodd">
6
+ <g>
7
+ <g transform="translate(-371.000000, -169.000000) translate(371.000000, 169.000000)">
8
+ <mask id="qaeefai0zb" fill="#fff">
9
+ <use xlink:href="#5bf4aj7j3a"/>
10
+ </mask>
11
+ <use fill="#44566C" fill-rule="nonzero" xlink:href="#5bf4aj7j3a"/>
12
+ <g fill="#44566C" fill-rule="nonzero" mask="url(#qaeefai0zb)">
13
+ <path d="M0 0H22V22H0z"/>
14
+ </g>
15
+ </g>
16
+ </g>
17
+ </g>
18
+ </svg>
@@ -0,0 +1,19 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="22" height="22" viewBox="0 0 22 22">
2
+ <defs>
3
+ <path id="3gookat8pa" d="M16.948 5.052c-.802-.801-1.515-.565-1.515-.565l-6.284 6.28-1.057 3.141 3.14-1.057 6.281-6.284s.236-.713-.565-1.515zm-5.506 7.114l-.343.342-1.071.364c-.076-.175-.17-.347-.363-.539-.192-.192-.363-.286-.538-.362l.364-1.071.342-.342s.565-.065 1.118.49c.555.553.49 1.118.49 1.118zm3.924 3.925H5.91V6.634h3.638l1.455-1.455H5.909c-.8 0-1.454.655-1.454 1.455v9.457c0 .8.654 1.455 1.454 1.455h9.457c.8 0 1.455-.655 1.455-1.455v-5.092l-1.455 1.454v3.638z"/>
4
+ </defs>
5
+ <g fill="none" fill-rule="evenodd">
6
+ <g>
7
+ <g transform="translate(-251.000000, -169.000000) translate(251.000000, 169.000000)">
8
+ <path d="M0 0H22V22H0z"/>
9
+ <mask id="hpc7zz8uib" fill="#fff">
10
+ <use xlink:href="#3gookat8pa"/>
11
+ </mask>
12
+ <use fill="#44566C" fill-rule="nonzero" xlink:href="#3gookat8pa"/>
13
+ <g fill="#44566C" fill-rule="nonzero" mask="url(#hpc7zz8uib)">
14
+ <path d="M0 0H18V18H0z" transform="translate(2.000000, 2.000000)"/>
15
+ </g>
16
+ </g>
17
+ </g>
18
+ </g>
19
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="22" height="22" viewBox="0 0 22 22">
2
+ <defs>
3
+ <path id="ebn2lam77a" d="M10.78 4.62H7.7V0H3.08v4.62H0l5.39 5.39 5.39-5.39zM0 11.55v1.54h10.78v-1.54H0z"/>
4
+ </defs>
5
+ <g fill="none" fill-rule="evenodd">
6
+ <g>
7
+ <g>
8
+ <g>
9
+ <path d="M0 0H22V22H0z" transform="translate(-293.000000, -169.000000) translate(293.000000, 169.000000)"/>
10
+ </g>
11
+ <g transform="translate(-293.000000, -169.000000) translate(293.000000, 169.000000) translate(5.272727, 4.454545)">
12
+ <mask id="ucr4pmochb" fill="#fff">
13
+ <use xlink:href="#ebn2lam77a"/>
14
+ </mask>
15
+ <use fill="#44566C" fill-rule="nonzero" xlink:href="#ebn2lam77a"/>
16
+ <g fill="#44566C" fill-rule="nonzero" mask="url(#ucr4pmochb)">
17
+ <path d="M0 0H18V18H0z" transform="translate(-3.272727, -2.454545)"/>
18
+ </g>
19
+ </g>
20
+ <path d="M0 0H22V22H0z" transform="translate(-293.000000, -169.000000) translate(293.000000, 169.000000)"/>
21
+ </g>
22
+ </g>
23
+ </g>
24
+ </svg>
@@ -0,0 +1,28 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="6" height="10" viewBox="0 0 6 10">
2
+ <defs>
3
+ <filter id="vw2ze082ta" color-interpolation-filters="auto">
4
+ <feColorMatrix in="SourceGraphic" values="0 0 0 0 0.450980 0 0 0 0 0.466667 0 0 0 0 0.505882 0 0 0 1.000000 0"/>
5
+ </filter>
6
+ <filter id="f3hnlmwenc" color-interpolation-filters="auto">
7
+ <feColorMatrix in="SourceGraphic" values="0 0 0 0 0.450980 0 0 0 0 0.466667 0 0 0 0 0.505882 0 0 0 1.000000 0"/>
8
+ </filter>
9
+ <path id="cpq2dm36ob" d="M4.8 0c-.633 0-1.148.514-1.148 1.148 0 .634.515 1.148 1.149 1.148.633 0 1.147-.514 1.147-1.148C5.948.514 5.434 0 4.8 0zM1.149 0C.514 0 0 .514 0 1.148c0 .634.514 1.148 1.148 1.148.634 0 1.148-.515 1.148-1.148C2.296.514 1.782 0 1.148 0zm7.305 0c-.634 0-1.149.514-1.149 1.148 0 .634.515 1.148 1.149 1.148S9.6 1.782 9.6 1.148C9.6.514 9.087 0 8.453 0z"/>
10
+ <path id="kb21r9x2vd" d="M4.8 0c-.633 0-1.148.514-1.148 1.148 0 .634.515 1.148 1.149 1.148.633 0 1.147-.514 1.147-1.148C5.948.514 5.434 0 4.8 0zM1.149 0C.514 0 0 .514 0 1.148c0 .634.514 1.148 1.148 1.148.634 0 1.148-.515 1.148-1.148C2.296.514 1.782 0 1.148 0zm7.305 0c-.634 0-1.149.514-1.149 1.148 0 .634.515 1.148 1.149 1.148S9.6 1.782 9.6 1.148C9.6.514 9.087 0 8.453 0z"/>
11
+ </defs>
12
+ <g fill="none" fill-rule="evenodd">
13
+ <g>
14
+ <g>
15
+ <g filter="url(#vw2ze082ta)" transform="translate(-50.000000, -143.000000) translate(50.000000, 143.000000)">
16
+ <g transform="translate(1.200000, 4.800000) rotate(90.000000) translate(-1.200000, -4.800000) translate(-3.600000, 3.600000)">
17
+ <use fill="#44566C" fill-rule="nonzero" xlink:href="#cpq2dm36ob"/>
18
+ </g>
19
+ </g>
20
+ <g filter="url(#f3hnlmwenc)" transform="translate(-50.000000, -143.000000) translate(50.000000, 143.000000)">
21
+ <g transform="translate(4.852173, 4.800000) rotate(90.000000) translate(-4.852173, -4.800000) translate(0.052173, 3.652173)">
22
+ <use fill="#44566C" fill-rule="nonzero" xlink:href="#kb21r9x2vd"/>
23
+ </g>
24
+ </g>
25
+ </g>
26
+ </g>
27
+ </g>
28
+ </svg>
@@ -0,0 +1,26 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22">
2
+ <defs>
3
+ <filter id="emnwtp4ooa" color-interpolation-filters="auto">
4
+ <feColorMatrix in="SourceGraphic" values="0 0 0 0 0.266667 0 0 0 0 0.337255 0 0 0 0 0.423529 0 0 0 1.000000 0"/>
5
+ </filter>
6
+ </defs>
7
+ <g fill="none" fill-rule="evenodd">
8
+ <g>
9
+ <g>
10
+ <g>
11
+ <path d="M0 0H16V16H0z" transform="translate(-170.000000, -169.000000) translate(170.000000, 169.000000) translate(1.000000, 3.000000)"/>
12
+ <g transform="translate(-170.000000, -169.000000) translate(170.000000, 169.000000) translate(1.000000, 3.000000) translate(2.800000, 0.863636)">
13
+ <g filter="url(#emnwtp4ooa)">
14
+ <g>
15
+ <path fill="#000" fill-rule="nonzero" d="M10.899.77h-8.76C1.284.77.592 1.462.592 2.316v8.76c0 .854.692 1.546 1.545 1.546h8.76c.854 0 1.546-.692 1.546-1.546v-8.76c0-.854-.692-1.546-1.545-1.546zm.005 9.873c0 .13-.054.249-.14.334-.084.083-.2.134-.328.134H2.483c-.259 0-.468-.21-.468-.468V2.69c0-.258.21-.468.468-.468h7.953c.258 0 .468.21.468.468v7.953z" transform="translate(6.222222, 8.444444) scale(-1, -1) translate(-6.222222, -8.444444) translate(0.000000, 1.777778)"/>
16
+ </g>
17
+ </g>
18
+ <rect width="11.556" height="12.444" x="1.511" y=".444" rx="1"/>
19
+ <path fill="#FFF" fill-rule="nonzero" stroke="#44566C" stroke-width="1.5" d="M12.795.75c.22 0 .419.09.563.233.144.144.233.343.233.563h0v8.76c0 .22-.09.419-.233.563-.144.144-.343.233-.563.233h0-8.76c-.22 0-.419-.09-.563-.233-.144-.144-.233-.343-.233-.563h0v-8.76c0-.22.089-.419.233-.563.144-.144.343-.233.563-.233h0z"/>
20
+ </g>
21
+ </g>
22
+ <path d="M0 0H22V22H0z" transform="translate(-170.000000, -169.000000) translate(170.000000, 169.000000)"/>
23
+ </g>
24
+ </g>
25
+ </g>
26
+ </svg>
@@ -0,0 +1,18 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="22" height="22" viewBox="0 0 22 22">
2
+ <defs>
3
+ <path id="981dd7oqea" d="M7.444 10.111c0-.368.299-.667.667-.667h6.222c.369 0 .667.299.667.667 0 .368-.298.667-.667.667H8.111c-.368 0-.667-.299-.667-.667zm0 2.667c0-.368.299-.667.667-.667h6.222c.369 0 .667.299.667.667 0 .368-.298.666-.667.666H8.111c-.368 0-.667-.298-.667-.666zm0 2.666c0-.368.299-.666.667-.666h3.111c.368 0 .667.298.667.666 0 .369-.299.667-.667.667h-3.11c-.37 0-.668-.298-.668-.667zm4-11.11h-5.11v13.333h9.777V9h-3.653c-.518 0-1.014-.528-1.014-.99V4.333zm6 4v9.777c0 .491-.397.889-.888.889H5.889C5.398 19 5 18.602 5 18.111V3.89C5 3.398 5.398 3 5.889 3h6.222l5.333 5.333z"/>
4
+ </defs>
5
+ <g fill="none" fill-rule="evenodd">
6
+ <g>
7
+ <g transform="translate(-86.000000, -169.000000) translate(86.000000, 169.000000)">
8
+ <mask id="hds8b1jm0b" fill="#fff">
9
+ <use xlink:href="#981dd7oqea"/>
10
+ </mask>
11
+ <use fill="#44566C" xlink:href="#981dd7oqea"/>
12
+ <g fill="#44566C" fill-rule="nonzero" mask="url(#hds8b1jm0b)">
13
+ <path d="M0 0H22V22H0z"/>
14
+ </g>
15
+ </g>
16
+ </g>
17
+ </g>
18
+ </svg>
@@ -0,0 +1,23 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="22" height="22" viewBox="0 0 22 22">
2
+ <defs>
3
+ <path id="xb0ipdv05a" d="M14.624 3.376c-1.073-1.074-1.878-.913-1.878-.913L8.244 6.965l-5.038 5.037-.751 3.542 3.542-.75 5.039-5.037 4.501-4.502s.16-.805-.913-1.88zM5.787 14.368l-1.208.26c-.116-.218-.257-.436-.513-.693-.258-.258-.476-.397-.694-.514l.26-1.207.35-.35s.657.014 1.4.756c.741.741.755 1.4.755 1.4l-.35.348z"/>
4
+ </defs>
5
+ <g fill="none" fill-rule="evenodd">
6
+ <g>
7
+ <g>
8
+ <g>
9
+ <path d="M0 0H22V22H0z" transform="translate(-129.000000, -169.000000) translate(129.000000, 169.000000)"/>
10
+ </g>
11
+ <g transform="translate(-129.000000, -169.000000) translate(129.000000, 169.000000) translate(2.181818, 2.181818)">
12
+ <mask id="6lvx63dr8b" fill="#fff">
13
+ <use xlink:href="#xb0ipdv05a"/>
14
+ </mask>
15
+ <use fill="#44566C" fill-rule="nonzero" xlink:href="#xb0ipdv05a"/>
16
+ <g fill="#44566C" fill-rule="nonzero" mask="url(#6lvx63dr8b)">
17
+ <path d="M0 0H18V18H0z"/>
18
+ </g>
19
+ </g>
20
+ </g>
21
+ </g>
22
+ </g>
23
+ </svg>
@@ -0,0 +1,20 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22">
2
+ <defs>
3
+ <filter id="oxx7vvrc9a" color-interpolation-filters="auto">
4
+ <feColorMatrix in="SourceGraphic" values="0 0 0 0 0.266667 0 0 0 0 0.337255 0 0 0 0 0.423529 0 0 0 1.000000 0"/>
5
+ </filter>
6
+ </defs>
7
+ <g fill="none" fill-rule="evenodd">
8
+ <g>
9
+ <g>
10
+ <g fill-rule="nonzero" filter="url(#oxx7vvrc9a)" transform="translate(-211.000000, -169.000000) translate(211.000000, 169.000000) translate(3.000000, 3.000000)">
11
+ <g fill="#000">
12
+ <path d="M14.889 5.778h-4c-.368 0-.667-.299-.667-.667 0-.368.299-.667.667-.667h4c.368 0 .667.299.667.667 0 .368-.299.667-.667.667zm-2 2c-.368 0-.667-.299-.667-.667v-4c0-.368.299-.667.667-.667.368 0 .667.299.667.667v4c0 .368-.299.667-.667.667zM6 1.333c1.103 0 2 .898 2 2 0 1.103-.897 2-2 2s-2-.897-2-2c0-1.102.897-2 2-2M6 0C4.157 0 2.667 1.492 2.667 3.333c0 1.842 1.49 3.334 3.333 3.334 1.843 0 3.333-1.492 3.333-3.334C9.333 1.492 7.843 0 6 0zm5.289 11.097c-.008.818-2.34 1.477-4.882 1.477S1.5 12.34 1.51 11.097c.012-1.244 2.28-2.653 4.896-2.653 2.59 0 4.89 1.835 4.882 2.653zM6.444 7.333c-3.888 0-6.222 2.074-6.222 4.148 0 1.038 2.334 2.075 6.222 2.075 3.649 0 6.223-1.037 6.223-2.075 0-2.074-2.442-4.148-6.223-4.148z" transform="translate(0.000000, 0.888889)"/>
13
+ </g>
14
+ <path d="M0 0H16V16H0z"/>
15
+ </g>
16
+ <path d="M0 0H22V22H0z" transform="translate(-211.000000, -169.000000) translate(211.000000, 169.000000)"/>
17
+ </g>
18
+ </g>
19
+ </g>
20
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22">
2
+ <g fill="none" fill-rule="evenodd">
3
+ <g>
4
+ <g>
5
+ <path d="M0 0H22V22H0z" transform="translate(-46.000000, -169.000000) translate(46.000000, 169.000000)"/>
6
+ <path fill="#44566C" fill-rule="nonzero" d="M16.846 10.78c-1.135 1.139-2.845 1.48-4.33.867l-4.734 5.705c-.866.866-2.266.866-3.132 0-.867-.866-.867-2.266 0-3.124l5.704-4.742c-.595-1.444-.306-3.159.866-4.331 1.12-1.12 2.73-1.417 4.13-.927l-2.528 2.528 2.467 2.468 2.502-2.512c.464 1.383.158 2.966-.945 4.069zm-11.26 5.636c.35.34.91.34 1.251 0 .35-.35.35-.91 0-1.252-.341-.35-.901-.35-1.251 0-.341.348-.341.904 0 1.252z" transform="translate(-46.000000, -169.000000) translate(46.000000, 169.000000)"/>
7
+ </g>
8
+ </g>
9
+ </g>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#nc5pw6qi6a)">
3
+ <path d="M12 .75H6A2.247 2.247 0 0 0 3.75 3v12A2.247 2.247 0 0 0 6 17.25h6A2.247 2.247 0 0 0 14.25 15V3A2.247 2.247 0 0 0 12 .75zm.75 12.75h-7.5V3h7.5v10.5zm-2.25 2.25h-3V15h3v.75z" fill="#0081FF"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="nc5pw6qi6a">
7
+ <path fill="#fff" d="M0 0h18v18H0z"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#8r6scgc59a)">
3
+ <path d="M12 .75H6A2.247 2.247 0 0 0 3.75 3v12A2.247 2.247 0 0 0 6 17.25h6A2.247 2.247 0 0 0 14.25 15V3A2.247 2.247 0 0 0 12 .75zm.75 12.75h-7.5V3h7.5v10.5zm-2.25 2.25h-3V15h3v.75z" fill="#EAEDF0"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="8r6scgc59a">
7
+ <path fill="#fff" d="M0 0h18v18H0z"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.778 1h10.666L17 4.556v10.666C17 16.2 16.2 17 15.222 17H2.778C1.79 17 1 16.2 1 15.222V2.778C1 1.8 1.791 1 2.778 1zm0 14.222h12.444V5.293l-2.515-2.515h-9.93v12.444zM9 8.112a2.663 2.663 0 0 0-2.667 2.666A2.663 2.663 0 0 0 9 13.444a2.663 2.663 0 0 0 2.667-2.666A2.663 2.663 0 0 0 9 8.11zm2.667-4.445h-8v2.666h8V3.667z" fill="#44566C"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M9 4c-1.374.006-2.798.34-4.145.98-1.001.496-1.976 1.194-2.823 2.056-.416.44-.946 1.077-1.032 1.757.01.589.642 1.315 1.032 1.757.794.828 1.744 1.506 2.823 2.055A9.717 9.717 0 0 0 9 13.586c1.375-.006 2.799-.344 4.145-.98 1-.496 1.976-1.194 2.823-2.056.416-.44.946-1.077 1.032-1.757-.01-.589-.642-1.316-1.032-1.757-.794-.828-1.744-1.506-2.823-2.055A9.774 9.774 0 0 0 9 4zm2.221 4.72c0 1.165-.986 2.11-2.201 2.11-1.216 0-2.202-.945-2.202-2.11s.986-2.109 2.202-2.109c1.215 0 2.201.944 2.201 2.11zm1.547.073c0-1.99-1.687-3.603-3.769-3.603S5.23 6.803 5.23 8.793c0 1.99 1.687 3.604 3.769 3.604s3.769-1.614 3.769-3.604z" fill="#44566C"/>
3
+ </svg>
@@ -0,0 +1,20 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="54px" height="54px" viewBox="0 0 54 54" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>91222851-BC85-4A0B-AEBB-032E0583FCD0</title>
4
+ <g id="IconFile" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g transform="translate(-271.000000, -1660.000000)" fill-rule="nonzero" id="Multi-series_selected">
6
+ <g transform="translate(262.000000, 1651.000000)">
7
+ <g id="编组备份-18">
8
+ <g id="Icon/Basic/Multi-series" transform="translate(9.000000, 9.000000)">
9
+ <g id="Icon/Basic/Charts" transform="translate(6.750000, 6.750000)">
10
+ <path d="M28.8563781,10.125 L25.8187927,10.125 C24.9804082,10.125 24.3,10.7287183 24.3,11.4756001 L24.3,34.425 L30.375,34.425 L30.375,11.4756001 C30.375,10.7287183 29.6961289,10.125 28.8563781,10.125 Z" id="Path" fill="#FFFFFF"></path>
11
+ <path d="M6.58137809,4.05 L3.5437927,4.05 C2.7054082,4.05 2.025,4.80464789 2.025,5.73825009 L2.025,34.425 L8.1,34.425 L8.1,5.73825009 C8.1,4.80464789 7.42112887,4.05 6.58137809,4.05 Z" id="Path" fill="#FFFFFF"></path>
12
+ <path d="M36.9562585,14.175 L33.9187585,14.175 C33.0804005,14.175 32.4,14.9298154 32.4,15.8636362 L32.4,34.425 L38.475,34.425 L38.475,15.8636362 C38.475,14.9298154 37.7961194,14.175 36.9562585,14.175 Z" id="Path" fill="#FFFFFF"></path>
13
+ <path d="M14.6812585,14.175 L11.6437585,14.175 C10.8054005,14.175 10.125,14.9298154 10.125,15.8636362 L10.125,34.425 L16.2,34.425 L16.2,15.8636362 C16.2,14.9298154 15.5211194,14.175 14.6812585,14.175 Z" id="Path" fill="#FFFFFF"></path>
14
+ </g>
15
+ </g>
16
+ </g>
17
+ </g>
18
+ </g>
19
+ </g>
20
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="54" height="54" viewBox="0 0 54 54">
2
+ <g fill="none">
3
+ <path fill="#5066b5" d="M28.856 10.125H25.82c-.839 0-1.519.604-1.519 1.35v22.95h6.075v-22.95c0-.746-.679-1.35-1.519-1.35zM6.581 4.05H3.544c-.839 0-1.519.755-1.519 1.688v28.687H8.1V5.738c0-.933-.679-1.688-1.519-1.688z" transform="translate(6.75 6.75)"/>
4
+ <path fill="#5867DD" d="M36.956 14.175H33.92c-.839 0-1.519.755-1.519 1.689v18.561h6.075V15.864c0-.934-.679-1.689-1.519-1.689zM14.681 14.175h-3.037c-.839 0-1.519.755-1.519 1.689v18.561H16.2V15.864c0-.934-.679-1.689-1.519-1.689z" transform="translate(6.75 6.75)"/>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="11.1289" y="4.9709" width="7.03601" height="6.65776" transform="rotate(45 11.1289 4.9709)" stroke="#495057"/>
3
+ <line x1="15.8242" y1="9.66825" x2="9.51049" y2="3.35456" stroke="#495057"/>
4
+ <path d="M6.9466 9.70842L15.8786 9.61563L11.3662 14.128L6.9466 9.70842Z" fill="#495057"/>
5
+ <path d="M18 13.9353C18 14.4324 17.5523 14.8353 17 14.8353C16.4477 14.8353 16 14.4324 16 13.9353C16 13.4383 17 11.8353 17 11.8353C17 11.8353 18 13.4383 18 13.9353Z" fill="#495057"/>
6
+ </svg>
@@ -0,0 +1,16 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="55" height="55" viewBox="0 0 55 55">
2
+ <defs>
3
+ <path id="prefix__a" d="M17 .279v3.467C9.367 4.857 3.5 11.543 3.5 19.625c0 8.86 7.052 16.042 15.75 16.042 7.935 0 14.499-5.976 15.59-13.75H38.245C37.13 31.594 29.05 39.104 19.25 39.104 8.687 39.104.125 30.384.125 19.625.125 9.643 7.498 1.413 17 .279zm2.25-.133c10.44 0 18.928 8.521 19.122 19.109l.003.37H19.25V.145zm3.375 3.806v12.236h12.013c-1.293-5.98-5.81-10.692-11.648-12.15l-.365-.086z"/>
4
+ </defs>
5
+ <g fill="none" fill-rule="evenodd">
6
+ <g transform="translate(.115) translate(7.75 7.875)">
7
+ <mask id="prefix__b" fill="#fff">
8
+ <use xlink:href="#prefix__a"/>
9
+ </mask>
10
+ <use fill="#44566C" fill-rule="nonzero" xlink:href="#prefix__a"/>
11
+ <g fill="#FFF" fill-rule="nonzero" mask="url(#prefix__b)">
12
+ <path d="M0 0H54V55H0z" transform="translate(-7.75 -7.875)"/>
13
+ </g>
14
+ </g>
15
+ </g>
16
+ </svg>
@@ -0,0 +1,16 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="55" height="55" viewBox="0 0 55 55">
2
+ <defs>
3
+ <path id="prefix__a" d="M17 .279v3.467C9.367 4.857 3.5 11.543 3.5 19.625c0 8.86 7.052 16.042 15.75 16.042 7.935 0 14.499-5.976 15.59-13.75H38.245C37.13 31.594 29.05 39.104 19.25 39.104 8.687 39.104.125 30.384.125 19.625.125 9.643 7.498 1.413 17 .279zm2.25-.133c10.44 0 18.928 8.521 19.122 19.109l.003.37H19.25V.145zm3.375 3.806v12.236h12.013c-1.293-5.98-5.81-10.692-11.648-12.15l-.365-.086z"/>
4
+ </defs>
5
+ <g fill="none" fill-rule="evenodd">
6
+ <g transform="translate(.115) translate(7.75 7.875)">
7
+ <mask id="prefix__b" fill="#fff">
8
+ <use xlink:href="#prefix__a"/>
9
+ </mask>
10
+ <use fill="#44566C" fill-rule="nonzero" xlink:href="#prefix__a"/>
11
+ <g fill="#5D78FF" fill-opacity=".5" fill-rule="nonzero" mask="url(#prefix__b)">
12
+ <path d="M0 0H54V55H0z" transform="translate(-7.75 -7.875)"/>
13
+ </g>
14
+ </g>
15
+ </g>
16
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <line x1="4" y1="10" x2="28" y2="10" stroke="white" stroke-width="2"/>
3
+ <line x1="9" y1="28" x2="9" y2="6" stroke="white" stroke-width="2"/>
4
+ <rect x="5" y="6" width="22" height="21" rx="1" stroke="white" stroke-width="2"/>
5
+ <path d="M13 20C13 19.4477 13.4477 19 14 19V19C14.5523 19 15 19.4477 15 20V24H13V20Z" fill="white"/>
6
+ <path d="M17 16C17 15.4477 17.4477 15 18 15V15C18.5523 15 19 15.4477 19 16V24H17V16Z" fill="white"/>
7
+ <path d="M21 17C21 16.4477 21.4477 16 22 16V16C22.5523 16 23 16.4477 23 17V24H21V17Z" fill="white"/>
8
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <line x1="4" y1="10" x2="28" y2="10" stroke="#5166B8" stroke-width="2"/>
3
+ <line x1="9" y1="28" x2="9" y2="6" stroke="#5166B8" stroke-width="2"/>
4
+ <rect x="5" y="6" width="22" height="21" rx="1" stroke="#5166B8" stroke-width="2"/>
5
+ <path d="M13 20C13 19.4477 13.4477 19 14 19V19C14.5523 19 15 19.4477 15 20V24H13V20Z" fill="#5166B8"/>
6
+ <path d="M17 16C17 15.4477 17.4477 15 18 15V15C18.5523 15 19 15.4477 19 16V24H17V16Z" fill="#5166B8"/>
7
+ <path d="M21 17C21 16.4477 21.4477 16 22 16V16C22.5523 16 23 16.4477 23 17V24H21V17Z" fill="#5166B8"/>
8
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <line x1="4" y1="10" x2="28" y2="10" stroke="white" stroke-width="2"/>
3
+ <line x1="9" y1="28" x2="9" y2="6" stroke="white" stroke-width="2"/>
4
+ <rect x="5" y="6" width="22" height="21" rx="1" stroke="white" stroke-width="2"/>
5
+ <path d="M21 16V20C21 21.1046 20.1046 22 19 22H15" stroke="white" stroke-width="2"/>
6
+ <path d="M21 12L24.4641 16H17.5359L21 12Z" fill="white"/>
7
+ <path d="M11 22L15 18.5359L15 25.4641L11 22Z" fill="white"/>
8
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <line x1="4" y1="10" x2="28" y2="10" stroke="#5166B8" stroke-width="2"/>
3
+ <line x1="9" y1="28" x2="9" y2="6" stroke="#5166B8" stroke-width="2"/>
4
+ <rect x="5" y="6" width="22" height="21" rx="1" stroke="#5166B8" stroke-width="2"/>
5
+ <path d="M21 16V20C21 21.1046 20.1046 22 19 22H15" stroke="#5166B8" stroke-width="2"/>
6
+ <path d="M21 12L24.4641 16H17.5359L21 12Z" fill="#5166B8"/>
7
+ <path d="M11 22L15 18.5359L15 25.4641L11 22Z" fill="#5166B8"/>
8
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M17.4286 27H4C2.89543 27 2 26.1046 2 25V8C2 6.89543 2.89543 6 4 6H27C28.1046 6 29 6.89543 29 8V16.5" stroke="#5166B8" stroke-width="2"/>
3
+ <circle cx="25.5" cy="25.5" r="5.5" stroke="#5166B8" stroke-width="2"/>
4
+ <path d="M6 19C6 18.4477 6.44772 18 7 18H8C8.55228 18 9 18.4477 9 19V23H6V19Z" fill="#5166B8"/>
5
+ <path d="M11 14C11 13.4477 11.4477 13 12 13H13C13.5523 13 14 13.4477 14 14V23H11V14Z" fill="#5166B8"/>
6
+ <path d="M16 16C16 15.4477 16.4477 15 17 15H18C18.5523 15 19 15.4477 19 16V23H16V16Z" fill="#5166B8"/>
7
+ <path d="M21 10C21 9.44772 21.4477 9 22 9H23C23.5523 9 24 9.44772 24 10V17H21V10Z" fill="#5166B8"/>
8
+ <path d="M25.5 23L27.2929 24.7929C27.9229 25.4229 27.4767 26.5 26.5858 26.5H22.5" stroke="#5166B8" stroke-width="2"/>
9
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M17.4286 27H4C2.89543 27 2 26.1046 2 25V8C2 6.89543 2.89543 6 4 6H27C28.1046 6 29 6.89543 29 8V16.5" stroke="white" stroke-width="2"/>
3
+ <circle cx="25.5" cy="25.5" r="5.5" stroke="white" stroke-width="2"/>
4
+ <path d="M6 19C6 18.4477 6.44772 18 7 18H8C8.55228 18 9 18.4477 9 19V23H6V19Z" fill="white"/>
5
+ <path d="M11 14C11 13.4477 11.4477 13 12 13H13C13.5523 13 14 13.4477 14 14V23H11V14Z" fill="white"/>
6
+ <path d="M16 16C16 15.4477 16.4477 15 17 15H18C18.5523 15 19 15.4477 19 16V23H16V16Z" fill="white"/>
7
+ <path d="M21 10C21 9.44772 21.4477 9 22 9H23C23.5523 9 24 9.44772 24 10V17H21V10Z" fill="white"/>
8
+ <path d="M25.5 23L27.2929 24.7929C27.9229 25.4229 27.4767 26.5 26.5858 26.5H22.5" stroke="white" stroke-width="2"/>
9
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M17.4286 27H4C2.89543 27 2 26.1046 2 25V8C2 6.89543 2.89543 6 4 6H27C28.1046 6 29 6.89543 29 8V16.5" stroke="#5166B8" stroke-width="2"/>
3
+ <circle cx="25.5" cy="25.5" r="5.5" stroke="#5166B8" stroke-width="2"/>
4
+ <path d="M25.5 23L27.2929 24.7929C27.9229 25.4229 27.4767 26.5 26.5858 26.5H22.5" stroke="#5166B8" stroke-width="2"/>
5
+ <path d="M5.29288 19.9412C4.90237 20.3317 4.90237 20.9647 5.29288 21.3552C5.68338 21.7457 6.31635 21.7457 6.70685 21.3552L5.29288 19.9412V19.9412ZM11.0409 15.6072L11.7481 14.8999C11.3576 14.5094 10.7242 14.5094 10.3337 14.8999L11.0409 15.6072V15.6072ZM14.5476 19.1139L13.8409 19.8211C14.2314 20.2116 14.8643 20.2116 15.2548 19.8211L14.5476 19.1139ZM21.392 13.684C21.7825 13.2935 21.7825 12.6605 21.392 12.27C21.0015 11.8795 20.3681 11.8795 19.9776 12.27L21.392 13.684ZM19.808 12.1004L19.6118 11.1196C19.2506 11.192 18.9578 11.4574 18.851 11.8103C18.7442 12.1632 18.8404 12.5464 19.1012 12.8072L19.808 12.1004ZM21.5616 13.8536L20.8544 14.5608C21.1156 14.8216 21.4983 14.9178 21.8512 14.8106C22.2042 14.7038 22.47 14.4118 22.542 14.0497L21.5616 13.8536V13.8536ZM22.0002 11.6618L22.9806 11.858C23.0461 11.5302 22.9435 11.1911 22.707 10.955C22.4705 10.7185 22.1317 10.6159 21.804 10.6814L22.0002 11.6622V11.6618ZM6.70685 21.3561L11.7481 16.3144L10.3337 14.9004L5.29288 19.9412L6.70685 21.3552V21.3561ZM10.3337 16.3144L13.8409 19.8216L15.2548 18.4071L11.7481 14.9009L10.3337 16.3148V16.3144ZM15.2548 19.8216L21.392 13.6844L19.9776 12.2705L13.8404 18.4076L15.2548 19.8216ZM19.1012 12.8072L20.8544 14.5608L22.2688 13.1463L20.5152 11.3932L19.1012 12.8072V12.8072ZM22.542 14.0497L22.9806 11.858L21.0189 11.4656L20.5812 13.6574L22.542 14.0497ZM21.804 10.6814L19.6118 11.12L20.0041 13.0813L22.1959 12.6431L21.804 10.6814V10.6814Z" fill="#44566C"/>
6
+ <mask id="mask0_101_3701" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="5" y="10" width="18" height="12">
7
+ <path d="M5.29288 19.9412C4.90237 20.3317 4.90237 20.9647 5.29288 21.3552C5.68338 21.7457 6.31635 21.7457 6.70685 21.3552L5.29288 19.9412V19.9412ZM11.0409 15.6072L11.7481 14.8999C11.3576 14.5094 10.7242 14.5094 10.3337 14.8999L11.0409 15.6072V15.6072ZM14.5476 19.1139L13.8409 19.8211C14.2314 20.2116 14.8643 20.2116 15.2548 19.8211L14.5476 19.1139ZM21.392 13.684C21.7825 13.2935 21.7825 12.6605 21.392 12.27C21.0015 11.8795 20.3681 11.8795 19.9776 12.27L21.392 13.684ZM19.808 12.1004L19.6118 11.1196C19.2506 11.192 18.9578 11.4574 18.851 11.8103C18.7442 12.1632 18.8404 12.5464 19.1012 12.8072L19.808 12.1004ZM21.5616 13.8536L20.8544 14.5608C21.1156 14.8216 21.4983 14.9178 21.8512 14.8106C22.2042 14.7038 22.47 14.4118 22.542 14.0497L21.5616 13.8536V13.8536ZM22.0002 11.6618L22.9806 11.858C23.0461 11.5302 22.9435 11.1911 22.707 10.955C22.4705 10.7185 22.1317 10.6159 21.804 10.6814L22.0002 11.6622V11.6618ZM6.70685 21.3561L11.7481 16.3144L10.3337 14.9004L5.29288 19.9412L6.70685 21.3552V21.3561ZM10.3337 16.3144L13.8409 19.8216L15.2548 18.4071L11.7481 14.9009L10.3337 16.3148V16.3144ZM15.2548 19.8216L21.392 13.6844L19.9776 12.2705L13.8404 18.4076L15.2548 19.8216ZM19.1012 12.8072L20.8544 14.5608L22.2688 13.1463L20.5152 11.3932L19.1012 12.8072V12.8072ZM22.542 14.0497L22.9806 11.858L21.0189 11.4656L20.5812 13.6574L22.542 14.0497ZM21.804 10.6814L19.6118 11.12L20.0041 13.0813L22.1959 12.6431L21.804 10.6814V10.6814Z" fill="white"/>
8
+ </mask>
9
+ <g mask="url(#mask0_101_3701)">
10
+ <path d="M1.62479 3.91174H26.375V28.662H1.62479V3.91174Z" fill="#5D78FF" fill-opacity="0.5"/>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M17.4286 27H4C2.89543 27 2 26.1046 2 25V8C2 6.89543 2.89543 6 4 6H27C28.1046 6 29 6.89543 29 8V16.5" stroke="white" stroke-width="2"/>
3
+ <circle cx="25.5" cy="25.5" r="5.5" stroke="white" stroke-width="2"/>
4
+ <path d="M25.5 23L27.2929 24.7929C27.9229 25.4229 27.4767 26.5 26.5858 26.5H22.5" stroke="white" stroke-width="2"/>
5
+ <path d="M5.29288 19.9412C4.90237 20.3317 4.90237 20.9647 5.29288 21.3552C5.68338 21.7457 6.31635 21.7457 6.70685 21.3552L5.29288 19.9412V19.9412ZM11.0409 15.6072L11.7481 14.8999C11.3576 14.5094 10.7242 14.5094 10.3337 14.8999L11.0409 15.6072V15.6072ZM14.5476 19.1139L13.8409 19.8211C14.2314 20.2116 14.8643 20.2116 15.2548 19.8211L14.5476 19.1139ZM21.392 13.684C21.7825 13.2935 21.7825 12.6605 21.392 12.27C21.0015 11.8795 20.3681 11.8795 19.9776 12.27L21.392 13.684ZM19.808 12.1004L19.6118 11.1196C19.2506 11.192 18.9578 11.4574 18.851 11.8103C18.7442 12.1632 18.8404 12.5464 19.1012 12.8072L19.808 12.1004ZM21.5616 13.8536L20.8544 14.5608C21.1156 14.8216 21.4983 14.9178 21.8512 14.8106C22.2042 14.7038 22.47 14.4118 22.542 14.0497L21.5616 13.8536V13.8536ZM22.0002 11.6618L22.9806 11.858C23.0461 11.5302 22.9435 11.1911 22.707 10.955C22.4705 10.7185 22.1317 10.6159 21.804 10.6814L22.0002 11.6622V11.6618ZM6.70685 21.3561L11.7481 16.3144L10.3337 14.9004L5.29288 19.9412L6.70685 21.3552V21.3561ZM10.3337 16.3144L13.8409 19.8216L15.2548 18.4071L11.7481 14.9009L10.3337 16.3148V16.3144ZM15.2548 19.8216L21.392 13.6844L19.9776 12.2705L13.8404 18.4076L15.2548 19.8216ZM19.1012 12.8072L20.8544 14.5608L22.2688 13.1463L20.5152 11.3932L19.1012 12.8072V12.8072ZM22.542 14.0497L22.9806 11.858L21.0189 11.4656L20.5812 13.6574L22.542 14.0497ZM21.804 10.6814L19.6118 11.12L20.0041 13.0813L22.1959 12.6431L21.804 10.6814V10.6814Z" fill="white"/>
6
+ <mask id="mask0_101_3720" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="5" y="10" width="18" height="12">
7
+ <path d="M5.29288 19.9412C4.90237 20.3317 4.90237 20.9647 5.29288 21.3552C5.68338 21.7457 6.31635 21.7457 6.70685 21.3552L5.29288 19.9412V19.9412ZM11.0409 15.6072L11.7481 14.8999C11.3576 14.5094 10.7242 14.5094 10.3337 14.8999L11.0409 15.6072V15.6072ZM14.5476 19.1139L13.8409 19.8211C14.2314 20.2116 14.8643 20.2116 15.2548 19.8211L14.5476 19.1139ZM21.392 13.684C21.7825 13.2935 21.7825 12.6605 21.392 12.27C21.0015 11.8795 20.3681 11.8795 19.9776 12.27L21.392 13.684ZM19.808 12.1004L19.6118 11.1196C19.2506 11.192 18.9578 11.4574 18.851 11.8103C18.7442 12.1632 18.8404 12.5464 19.1012 12.8072L19.808 12.1004ZM21.5616 13.8536L20.8544 14.5608C21.1156 14.8216 21.4983 14.9178 21.8512 14.8106C22.2042 14.7038 22.47 14.4118 22.542 14.0497L21.5616 13.8536V13.8536ZM22.0002 11.6618L22.9806 11.858C23.0461 11.5302 22.9435 11.1911 22.707 10.955C22.4705 10.7185 22.1317 10.6159 21.804 10.6814L22.0002 11.6622V11.6618ZM6.70685 21.3561L11.7481 16.3144L10.3337 14.9004L5.29288 19.9412L6.70685 21.3552V21.3561ZM10.3337 16.3144L13.8409 19.8216L15.2548 18.4071L11.7481 14.9009L10.3337 16.3148V16.3144ZM15.2548 19.8216L21.392 13.6844L19.9776 12.2705L13.8404 18.4076L15.2548 19.8216ZM19.1012 12.8072L20.8544 14.5608L22.2688 13.1463L20.5152 11.3932L19.1012 12.8072V12.8072ZM22.542 14.0497L22.9806 11.858L21.0189 11.4656L20.5812 13.6574L22.542 14.0497ZM21.804 10.6814L19.6118 11.12L20.0041 13.0813L22.1959 12.6431L21.804 10.6814V10.6814Z" fill="white"/>
8
+ </mask>
9
+ <g mask="url(#mask0_101_3720)">
10
+ <path d="M1.62479 3.91174H26.375V28.662H1.62479V3.91174Z" fill="white"/>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6.97852 14.999L11.1021 4.26172H12.6328L17.0274 14.999H15.4087L14.1563 11.747H9.66651L8.48731 14.999H6.97852ZM10.0767 10.5898H13.7168L12.5962 7.61621C12.2544 6.71289 12.0005 5.9707 11.8345 5.38964C11.6978 6.07812 11.5049 6.76172 11.2559 7.44043L10.0767 10.5898Z" fill="#495057"/>
3
+ </svg>