@cccsaurora/clue-ui 0.15.0-dev.28 → 0.15.0-dev.30

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 (257) hide show
  1. package/ActionForm-DgfJwTzt.js +436 -0
  2. package/AnnotationPreview-BvNpZOP0.js +188 -0
  3. package/ClueEnrichContext-DXwLVp0M.js +518 -0
  4. package/FlexOne-BSYAhhtG.js +9 -0
  5. package/_Map-kgDsDYxq.js +64 -0
  6. package/_MapCache-DabaaWfq.js +161 -0
  7. package/_Uint8Array-BlVVH1tp.js +129 -0
  8. package/_baseAssignValue-CNbcU6Nb.js +25 -0
  9. package/_baseClone-D3a8Pa4T.js +284 -0
  10. package/_baseExtremum-B1o1zHjR.js +33 -0
  11. package/_baseFlatten-D4huXoEI.js +92 -0
  12. package/_baseGet-BSK_nnoz.js +109 -0
  13. package/_baseIsEqual-B5xLoweL.js +238 -0
  14. package/_baseIteratee-p6Nj07-n.js +126 -0
  15. package/_baseSlice-GAv_YFTT.js +20 -0
  16. package/_baseSum-D0WC1dN0.js +13 -0
  17. package/_baseUniq-CpupKWcL.js +89 -0
  18. package/_commonjsHelpers-CUmg6egw.js +6 -0
  19. package/_createAggregator-BpVy5xMi.js +63 -0
  20. package/_getPrototype-D1LAdQKO.js +5 -0
  21. package/_getTag-D3ToyefI.js +126 -0
  22. package/api/lookup/enrich.d.ts +10 -0
  23. package/api/lookup/index.d.ts +5 -0
  24. package/api/lookup/types.d.ts +5 -0
  25. package/api/lookup/types_detection.d.ts +5 -0
  26. package/cloneDeep-CjP5k9zW.js +8 -0
  27. package/components/AnnotationBody.d.ts +6 -0
  28. package/components/AnnotationBody.js +56 -0
  29. package/components/AnnotationDetailPopover.d.ts +14 -0
  30. package/components/AnnotationDetailPopover.js +61 -0
  31. package/components/AnnotationDetails.d.ts +8 -0
  32. package/components/AnnotationDetails.js +172 -0
  33. package/components/AnnotationEntry.d.ts +6 -0
  34. package/components/AnnotationEntry.js +59 -0
  35. package/components/AnnotationPreview.d.ts +14 -0
  36. package/components/AnnotationPreview.js +11 -0
  37. package/components/ClassificationChip.d.ts +11 -0
  38. package/components/ClassificationChip.js +52 -0
  39. package/components/CountBadge.d.ts +8 -0
  40. package/components/CountBadge.js +34 -0
  41. package/components/EnrichedCard.d.ts +14 -0
  42. package/components/EnrichedCard.js +162 -0
  43. package/components/EnrichedChip.d.ts +9 -0
  44. package/components/EnrichedChip.js +176 -0
  45. package/components/EnrichedTypography.d.ts +16 -0
  46. package/components/EnrichedTypography.js +178 -0
  47. package/components/ErrorBoundary.d.ts +15 -0
  48. package/components/ErrorBoundary.js +36 -0
  49. package/components/RetryFailedEnrichments.d.ts +2 -0
  50. package/components/RetryFailedEnrichments.js +13 -0
  51. package/components/SourcePicker.d.ts +2 -0
  52. package/components/SourcePicker.js +98 -0
  53. package/components/actions/ActionForm.d.ts +6 -0
  54. package/components/actions/ActionForm.js +16 -0
  55. package/components/actions/ExecutePopover.d.ts +10 -0
  56. package/components/actions/ExecutePopover.js +93 -0
  57. package/components/actions/ResultModal.d.ts +9 -0
  58. package/components/actions/ResultModal.js +46 -0
  59. package/components/actions/form/schemaAdapter.d.ts +3 -0
  60. package/components/actions/form/schemaAdapter.js +47 -0
  61. package/components/display/graph/ExpandMoreButton.d.ts +7 -0
  62. package/components/display/graph/ExpandMoreButton.js +18 -0
  63. package/components/display/graph/elements/NodeCard.d.ts +10 -0
  64. package/components/display/graph/elements/NodeCard.js +146 -0
  65. package/components/display/graph/elements/NodeTag.d.ts +9 -0
  66. package/components/display/graph/elements/NodeTag.js +17 -0
  67. package/components/display/graph/index.d.ts +9 -0
  68. package/components/display/graph/index.js +438 -0
  69. package/components/display/graph/visualizations/Leaf.d.ts +25 -0
  70. package/components/display/graph/visualizations/Leaf.js +125 -0
  71. package/components/display/graph/visualizations/cloud/index.d.ts +24 -0
  72. package/components/display/graph/visualizations/cloud/index.js +141 -0
  73. package/components/display/graph/visualizations/icons/BaseIcon.d.ts +12 -0
  74. package/components/display/graph/visualizations/icons/BaseIcon.js +37 -0
  75. package/components/display/graph/visualizations/icons/BugIcon.d.ts +5 -0
  76. package/components/display/graph/visualizations/icons/BugIcon.js +18 -0
  77. package/components/display/graph/visualizations/icons/HostIcon.d.ts +5 -0
  78. package/components/display/graph/visualizations/icons/HostIcon.js +24 -0
  79. package/components/display/graph/visualizations/icons/NetworkIcon.d.ts +5 -0
  80. package/components/display/graph/visualizations/icons/NetworkIcon.js +24 -0
  81. package/components/display/graph/visualizations/icons/ProcessIcon.d.ts +5 -0
  82. package/components/display/graph/visualizations/icons/ProcessIcon.js +18 -0
  83. package/components/display/graph/visualizations/icons/TargetIcon.d.ts +5 -0
  84. package/components/display/graph/visualizations/icons/TargetIcon.js +19 -0
  85. package/components/display/graph/visualizations/icons/index.d.ts +2 -0
  86. package/components/display/graph/visualizations/icons/index.js +16 -0
  87. package/components/display/graph/visualizations/panels/NodePanel.d.ts +8 -0
  88. package/components/display/graph/visualizations/panels/NodePanel.js +12 -0
  89. package/components/display/graph/visualizations/tree/BundleLine.d.ts +29 -0
  90. package/components/display/graph/visualizations/tree/BundleLine.js +121 -0
  91. package/components/display/graph/visualizations/tree/Triangle.d.ts +9 -0
  92. package/components/display/graph/visualizations/tree/Triangle.js +26 -0
  93. package/components/display/graph/visualizations/tree/index.d.ts +36 -0
  94. package/components/display/graph/visualizations/tree/index.js +485 -0
  95. package/components/display/graph/visualizations/tree/types.d.ts +11 -0
  96. package/components/display/graph/visualizations/tree/types.js +1 -0
  97. package/components/display/icons/Iconified.d.ts +9 -0
  98. package/components/display/icons/Iconified.js +29 -0
  99. package/components/display/json/index.d.ts +14 -0
  100. package/components/display/json/index.js +12 -0
  101. package/components/display/markdown/DynamicTabs.d.ts +8 -0
  102. package/components/display/markdown/DynamicTabs.js +26 -0
  103. package/components/display/markdown/index.d.ts +9 -0
  104. package/components/display/markdown/index.js +13389 -0
  105. package/components/display/markdown/markdownPlugins/tabs.d.ts +3 -0
  106. package/components/display/markdown/markdownPlugins/tabs.js +4 -0
  107. package/components/enrichment/EnrichPopover.d.ts +10 -0
  108. package/components/enrichment/EnrichPopover.js +88 -0
  109. package/components/fetchers/Fetcher.d.ts +17 -0
  110. package/components/fetchers/Fetcher.js +188 -0
  111. package/components/fetchers/PreviewModal.d.ts +8 -0
  112. package/components/fetchers/PreviewModal.js +22 -0
  113. package/components/fetchers/StatusChip.d.ts +8 -0
  114. package/components/fetchers/StatusChip.js +30 -0
  115. package/components/group/Entry.d.ts +8 -0
  116. package/components/group/Entry.js +15 -0
  117. package/components/group/Group.d.ts +12 -0
  118. package/components/group/Group.js +15 -0
  119. package/components/group/GroupControl.d.ts +4 -0
  120. package/components/group/GroupControl.js +103 -0
  121. package/components/stats/QueryStatus.d.ts +4 -0
  122. package/components/stats/QueryStatus.js +61 -0
  123. package/countBy-C69WslUA.js +14 -0
  124. package/data/event.d.ts +12 -0
  125. package/data/event.js +8 -0
  126. package/database/index.d.ts +4 -0
  127. package/database/index.js +4 -0
  128. package/database/selector.schema.json.d.ts +119 -0
  129. package/database/status.schema.json.d.ts +38 -0
  130. package/database/types.d.ts +64 -0
  131. package/debounce-bV0h5FC5.js +92 -0
  132. package/en/translation.json +135 -0
  133. package/fr/translation.json +135 -0
  134. package/get-D3C3lEU3.js +8 -0
  135. package/groupBy-DC2oOuBN.js +14 -0
  136. package/hooks/ClueActionContext.d.ts +86 -0
  137. package/hooks/ClueActionContext.js +18 -0
  138. package/hooks/ClueComponentContext.d.ts +10 -0
  139. package/hooks/ClueComponentContext.js +40 -0
  140. package/hooks/ClueConfigProvider.d.ts +12 -0
  141. package/hooks/ClueConfigProvider.js +23 -0
  142. package/hooks/ClueDatabaseContext.d.ts +10 -0
  143. package/hooks/ClueDatabaseContext.js +23 -0
  144. package/hooks/ClueEnrichContext.d.ts +6 -0
  145. package/hooks/ClueEnrichContext.js +15 -0
  146. package/hooks/ClueEnrichContextType.d.ts +113 -0
  147. package/hooks/ClueEnrichProps.d.ts +81 -0
  148. package/hooks/ClueFetcherContext.d.ts +35 -0
  149. package/hooks/ClueFetcherContext.js +88 -0
  150. package/hooks/ClueGroupContext.d.ts +14 -0
  151. package/hooks/ClueGroupContext.js +23 -0
  152. package/hooks/CluePopupContext.d.ts +24 -0
  153. package/hooks/CluePopupContext.js +12 -0
  154. package/hooks/ClueProvider.d.ts +9 -0
  155. package/hooks/ClueProvider.js +14 -0
  156. package/hooks/selectors.d.ts +10 -0
  157. package/hooks/selectors.js +24 -0
  158. package/hooks/useAnnotations.d.ts +24 -0
  159. package/hooks/useAnnotations.js +69 -0
  160. package/hooks/useClue.d.ts +4 -0
  161. package/hooks/useClue.js +8 -0
  162. package/hooks/useClueActions.d.ts +4 -0
  163. package/hooks/useClueActions.js +5 -0
  164. package/hooks/useClueConfig.d.ts +1 -0
  165. package/hooks/useClueConfig.js +8 -0
  166. package/hooks/useClueTypeConfig.d.ts +17 -0
  167. package/hooks/useClueTypeConfig.js +7 -0
  168. package/hooks/useComparator.d.ts +16 -0
  169. package/hooks/useComparator.js +1060 -0
  170. package/hooks/useErrors.d.ts +17 -0
  171. package/hooks/useErrors.js +35 -0
  172. package/hooks/useMyHighlights.d.ts +11 -0
  173. package/hooks/useMyHighlights.js +74 -0
  174. package/hooks/useMyLocalStorage.d.ts +16 -0
  175. package/hooks/useMyLocalStorage.js +80 -0
  176. package/iconify-CXMreGTg.js +1782 -0
  177. package/icons/Action.d.ts +9 -0
  178. package/icons/Action.js +90 -0
  179. package/icons/Assessment.d.ts +11 -0
  180. package/icons/Assessment.js +123 -0
  181. package/icons/Context.d.ts +12 -0
  182. package/icons/Context.js +83 -0
  183. package/icons/Opinion.d.ts +11 -0
  184. package/icons/Opinion.js +125 -0
  185. package/icons/iconMap.d.ts +7 -0
  186. package/icons/iconMap.js +10 -0
  187. package/identity-CPGTqrE4.js +6 -0
  188. package/index-BDVjGvMI.js +696 -0
  189. package/index-BDrtH5ec.js +465 -0
  190. package/index-C9lySIVX.js +1172 -0
  191. package/index-DJYqRcxJ.js +15750 -0
  192. package/index-Dn2NHyXg.js +17654 -0
  193. package/index.css +21 -0
  194. package/isEmpty-BQkZubqU.js +29 -0
  195. package/isNil-CIubwp4T.js +6 -0
  196. package/isObject-FTY-5JQX.js +7 -0
  197. package/isObjectLike-OAgjjZye.js +48 -0
  198. package/isSymbol-Xd2FsJyp.js +8 -0
  199. package/isUndefined-CE8h73dH.js +10 -0
  200. package/last-CUCl67Im.js +7 -0
  201. package/main.d.ts +42 -0
  202. package/main.js +70 -0
  203. package/package.json +40 -40
  204. package/public/manifest.json +16 -0
  205. package/public/robots.txt +3 -0
  206. package/public/svg/dark/clue-h.svg +52 -0
  207. package/public/svg/dark/clue-icon1-simple.svg +33 -0
  208. package/public/svg/dark/clue-icon1.svg +44 -0
  209. package/public/svg/dark/clue-icon2-simple.svg +26 -0
  210. package/public/svg/dark/clue-icon2.svg +37 -0
  211. package/public/svg/dark/clue-name.svg +14 -0
  212. package/public/svg/dark/clue-v.svg +52 -0
  213. package/public/svg/light/clue-h.svg +60 -0
  214. package/public/svg/light/clue-icon1-simple.svg +37 -0
  215. package/public/svg/light/clue-icon1.svg +48 -0
  216. package/public/svg/light/clue-icon2-simple.svg +30 -0
  217. package/public/svg/light/clue-icon2.svg +41 -0
  218. package/public/svg/light/clue-name.svg +14 -0
  219. package/public/svg/light/clue-v.svg +60 -0
  220. package/sortBy-B-UKp4GT.js +100 -0
  221. package/sumBy-MYkDPHZL.js +8 -0
  222. package/tabs-xGuUGsJd.js +254 -0
  223. package/text/Frequency.d.ts +9 -0
  224. package/text/Frequency.js +49 -0
  225. package/toFinite-CArjry_l.js +16 -0
  226. package/toNumber-DPxy1FBy.js +39 -0
  227. package/types/EnrichmentProps.d.ts +73 -0
  228. package/types/RunningActionData.d.ts +15 -0
  229. package/types/WithActionData.d.ts +9 -0
  230. package/types/action.d.ts +25 -0
  231. package/types/config.d.ts +16 -0
  232. package/types/fetcher.d.ts +60 -0
  233. package/types/graph.d.ts +101 -0
  234. package/types/lookup.d.ts +62 -0
  235. package/types/network.d.ts +9 -0
  236. package/useClueTypeConfig-D9ZSxa4F.js +3096 -0
  237. package/utils/chain.d.ts +14 -0
  238. package/utils/chain.js +106 -0
  239. package/utils/classificationParser.d.ts +195 -0
  240. package/utils/classificationParser.js +553 -0
  241. package/utils/constants.d.ts +26 -0
  242. package/utils/constants.js +36 -0
  243. package/utils/graph.d.ts +13 -0
  244. package/utils/graph.js +79 -0
  245. package/utils/hashUtil.d.ts +6 -0
  246. package/utils/hashUtil.js +11 -0
  247. package/utils/line.d.ts +28 -0
  248. package/utils/line.js +136 -0
  249. package/utils/loggerUtil.d.ts +6 -0
  250. package/utils/loggerUtil.js +8 -0
  251. package/utils/sessionStorage.d.ts +9 -0
  252. package/utils/sessionStorage.js +51 -0
  253. package/utils/utils.d.ts +13 -0
  254. package/utils/utils.js +11 -0
  255. package/utils/window.d.ts +3 -0
  256. package/utils/window.js +24 -0
  257. package/utils-CxIhC2xH.js +4182 -0
@@ -0,0 +1,37 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 70.92 72.11">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: url(#radial-gradient);
7
+ }
8
+
9
+ .cls-2 {
10
+ fill: #7da1db;
11
+ }
12
+
13
+ .cls-3 {
14
+ fill: #bcbcbc;
15
+ }
16
+ </style>
17
+ <radialGradient id="radial-gradient" cx="38.88" cy="32.04" fx="38.88" fy="32.04" r="32.04" gradientUnits="userSpaceOnUse">
18
+ <stop offset="0" stop-color="#b1c6e9"/>
19
+ <stop offset="1" stop-color="#7da1db"/>
20
+ </radialGradient>
21
+ </defs>
22
+ <g>
23
+ <path class="cls-3" d="M58.76,64.46c-.63-.63-.95-1.46-.95-2.29s.32-1.65.95-2.29c.63-.63,1.46-.95,2.29-.95s1.65.32,2.29.95c.63.63.95,1.46.95,2.29s-.32,1.65-.95,2.29l-1.07,1.07h-.34v-3.94c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2s.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v2.87l.41-.41c.52-.52.78-1.19.78-1.87s-.26-1.35-.78-1.87c-.52-.52-1.19-.78-1.87-.78s-1.35.26-1.87.78c-.52.52-.78,1.19-.78,1.87s.26,1.35.78,1.87l.41.41v-.58c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2s.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v1.66h-.34l-1.07-1.07h0ZM62.37,60.81h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0ZM60.03,63.1h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0ZM61.05,61.42c.19,0,.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v2.8h-.59v-2.8c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2ZM61.2,61.95h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0Z"/>
24
+ <path class="cls-3" d="M59.79,65.91h2.52c.17,0,.3.13.3.3h0c0,.16-.14.3-.3.3h-2.52c-.17,0-.3-.13-.3-.3h0c0-.16.14-.3.3-.3Z"/>
25
+ <path class="cls-3" d="M59.97,66.8h2.17c.14,0,.26.13.26.3h0c0,.16-.12.3-.26.3h-2.17c-.14,0-.26-.13-.26-.3h0c0-.16.12-.3.26-.3Z"/>
26
+ <path class="cls-3" d="M60.35,67.71h1.4c-.06.34-.35.59-.7.59s-.64-.25-.7-.59Z"/>
27
+ </g>
28
+ <path class="cls-2" d="M67.39,57.98c-1.61-1.81-3.92-2.85-6.35-2.85-2.08,0-4.08.76-5.64,2.14-2.68,2.38-3.49,6.1-2.32,9.28-6.51,2.61-13.64,3.32-20.69,1.98-9.74-1.86-18.17-7.4-23.74-15.59C2.63,44.05.74,33,3.48,22.61c.16-.6-.2-1.22-.8-1.37-.6-.16-1.22.2-1.37.8-2.9,11.02-.9,22.74,5.5,32.16,5.91,8.7,14.85,14.57,25.17,16.54,2.49.47,4.98.71,7.46.71,5.06,0,10.03-.99,14.7-2.9.17.24.36.48.56.71,1.61,1.81,3.92,2.85,6.35,2.85,2.08,0,4.08-.76,5.63-2.14,1.69-1.51,2.7-3.58,2.84-5.84.13-2.26-.62-4.44-2.13-6.14ZM66.1,67.39c-.25.34-.54.65-.86.94-.28.25-.58.47-.89.66-.03.02-.06.04-.08.05-.3.18-.61.32-.92.44-.05.02-.09.04-.14.05-.31.11-.63.2-.95.26-.05.01-.11.02-.16.03-.32.05-.64.08-.97.09-.08,0-.16,0-.24,0-.12,0-.23,0-.35-.02-.09,0-.19-.02-.28-.03-.12-.01-.23-.03-.35-.05-.09-.02-.18-.04-.28-.06-.11-.03-.23-.06-.34-.09-.09-.03-.18-.05-.27-.08-.11-.04-.22-.08-.33-.13-.09-.03-.17-.07-.26-.11-.11-.05-.22-.11-.33-.17-.08-.04-.16-.08-.24-.13-.11-.07-.22-.14-.33-.21-.07-.05-.14-.09-.21-.14-.12-.09-.23-.18-.34-.28-.06-.05-.11-.09-.17-.14-.16-.15-.32-.31-.47-.48-1.3-1.46-1.79-3.36-1.51-5.16.03-.2.07-.4.12-.59.3-1.18.94-2.28,1.92-3.14,0,0,0,0,0,0,.28-.25.58-.47.89-.66.03-.02.06-.04.09-.06.3-.18.61-.32.92-.44.05-.02.09-.04.14-.05.31-.11.63-.2.95-.26.05-.01.11-.02.16-.03.32-.05.64-.08.97-.09.08,0,.16,0,.24,0,.12,0,.23,0,.35.02.09,0,.19.02.28.03.12.01.23.03.35.05.09.02.18.04.28.06.11.03.23.06.34.09.09.03.18.05.27.08.11.04.22.08.33.13.09.03.17.07.26.11.11.05.22.11.33.16.08.04.16.08.24.13.11.07.22.14.33.21.07.05.14.09.21.14.12.09.23.18.34.28.06.05.11.09.17.14.16.15.32.31.47.48,1.01,1.14,1.53,2.54,1.59,3.95.05,1.41-.37,2.83-1.25,4Z"/>
29
+ <path class="cls-1" d="M38.88,0C21.18,0,6.84,14.34,6.84,32.04s14.34,32.04,32.04,32.04c4.21,0,8.22-.82,11.9-2.29.4-2.23,1.51-4.36,3.33-5.98,1.91-1.7,4.38-2.64,6.94-2.64h0c.59,0,1.18.06,1.76.16,5.04-5.66,8.11-13.12,8.11-21.29C70.92,14.34,56.57,0,38.88,0ZM54.84,27.12c0,.32-.26.58-.58.58h-.12c-.7,0-1.42-.24-2.07-.69-1.2-.82-2.67-1.18-4.13-1.01-2.78.32-5.02,2.57-5.33,5.35-.19,1.73.36,3.46,1.51,4.74,1.15,1.29,2.8,2.02,4.53,2.02,1.26,0,2.47-.39,3.5-1.12.58-.41,1.3-.63,2.1-.63.32,0,.58.26.58.58v7.48c0,.79-.64,1.43-1.43,1.43h-7.48c-.91,0-1.65.74-1.65,1.65,0,1.02.28,1.96.82,2.72.6.85.92,1.85.92,2.89,0,1.42-.61,2.79-1.67,3.74-1.08.96-2.47,1.41-3.92,1.25-2.29-.25-4.15-2.1-4.41-4.39-.14-1.22.15-2.4.83-3.41.57-.84.87-1.76.87-2.67v-.12c0-.91-.74-1.65-1.65-1.65h-7.48c-.79,0-1.43-.64-1.43-1.43v-7.48c0-.91-.74-1.65-1.65-1.65h-.26c-.85,0-1.7.28-2.46.82-.85.6-1.85.92-2.89.92-1.42,0-2.79-.61-3.74-1.67-.96-1.08-1.41-2.47-1.25-3.92.25-2.29,2.1-4.15,4.39-4.41,1.22-.14,2.4.15,3.41.83.84.57,1.76.87,2.67.87h.12c.91,0,1.65-.74,1.65-1.65v-7.48c0-.79.64-1.43,1.43-1.43h7.48c.91,0,1.65-.74,1.65-1.65,0-1.02-.28-1.96-.82-2.72-.6-.85-.92-1.85-.92-2.89,0-1.42.61-2.79,1.67-3.74,1.08-.96,2.47-1.41,3.92-1.25,2.29.25,4.15,2.1,4.41,4.39.14,1.22-.15,2.4-.83,3.41-.57.84-.87,1.76-.87,2.67v.12c0,.91.74,1.65,1.65,1.65h7.48c.79,0,1.43.64,1.43,1.43v7.48Z"/>
30
+ <g>
31
+ <path class="cls-3" d="M18.56,27.92c1.22-.14,2.4.15,3.41.83.84.57,1.76.87,2.67.87h.12c.7,0,1.29-.44,1.53-1.05-.23.12-.49.2-.76.2h-.12c-.91,0-1.84-.3-2.67-.87-1.01-.69-2.18-.97-3.41-.83-1.45.17-2.72.98-3.53,2.13.75-.68,1.7-1.15,2.76-1.27Z"/>
32
+ <path class="cls-3" d="M27.83,19.07h7.48c.7,0,1.29-.44,1.53-1.05-.23.12-.49.2-.76.2h-7.48c-.63,0-1.16.41-1.35.98.18-.08.37-.12.58-.12Z"/>
33
+ <path class="cls-3" d="M54.26,36.38c-.8,0-1.52.22-2.1.63-1.03.73-2.24,1.12-3.5,1.12-1.73,0-3.38-.74-4.53-2.02-1.15-1.29-1.7-3.01-1.51-4.74.12-1.06.52-2.05,1.13-2.88-1.03.97-1.74,2.27-1.9,3.74-.19,1.73.36,3.46,1.51,4.74,1.15,1.29,2.8,2.02,4.53,2.02,1.26,0,2.47-.39,3.5-1.12.58-.41,1.3-.63,2.1-.63.32,0,.58.26.58.58v7.48c0,.16-.03.3-.08.44.5-.22.85-.72.85-1.3v-7.48c0-.32-.26-.58-.58-.58Z"/>
34
+ <path class="cls-3" d="M44.28,47.52c0-.21.04-.41.12-.59-.52.28-.89.82-.89,1.45,0,1.02.28,1.96.82,2.72.6.85.92,1.85.92,2.89s-.33,2.06-.93,2.9c.01,0,.02-.01.03-.02,1.06-.95,1.67-2.31,1.67-3.74,0-1.04-.32-2.04-.92-2.89-.54-.76-.82-1.7-.82-2.72Z"/>
35
+ <path class="cls-3" d="M53.41,18.21h-7.48c-.91,0-1.65-.74-1.65-1.65v-.12c0-.91.3-1.84.87-2.67.69-1.01.97-2.18.83-3.41-.26-2.29-2.12-4.14-4.41-4.39-1.45-.16-2.84.28-3.92,1.25-.28.25-.52.53-.74.83,1.07-.94,2.45-1.38,3.88-1.22,2.29.25,4.15,2.1,4.41,4.39.14,1.22-.15,2.4-.83,3.41-.57.84-.87,1.76-.87,2.67v.12c0,.91.74,1.65,1.65,1.65h7.48c.79,0,1.43.64,1.43,1.43v7.2s.05,0,.07,0h.12c.32,0,.58-.26.58-.58v-7.48c0-.79-.64-1.43-1.43-1.43Z"/>
36
+ </g>
37
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="artwork" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 95.47 33.68">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #bcbcbc;
7
+ }
8
+ </style>
9
+ </defs>
10
+ <path class="cls-1" d="M0,17.34v-.09C0,8.22,6.81.82,16.57.82c5.99,0,9.58,2,12.53,4.9l-4.45,5.13c-2.45-2.22-4.95-3.59-8.13-3.59-5.36,0-9.21,4.45-9.21,9.9v.09c0,5.45,3.77,9.99,9.21,9.99,3.63,0,5.86-1.45,8.35-3.72l4.45,4.49c-3.27,3.5-6.9,5.67-13.03,5.67C6.95,33.68,0,26.47,0,17.34Z"/>
11
+ <path class="cls-1" d="M33.37,0h6.9v33.14h-6.9V0Z"/>
12
+ <path class="cls-1" d="M45.44,24.56v-15.75h6.9v13.57c0,3.27,1.54,4.95,4.18,4.95s4.31-1.68,4.31-4.95v-13.57h6.9v24.33h-6.9v-3.45c-1.59,2.04-3.63,3.9-7.13,3.9-5.22,0-8.26-3.45-8.26-9.03Z"/>
13
+ <path class="cls-1" d="M71.59,21.11v-.09c0-6.95,4.95-12.67,12.03-12.67,8.13,0,11.85,6.31,11.85,13.21,0,.54-.04,1.18-.09,1.82h-16.93c.68,3.13,2.86,4.77,5.95,4.77,2.32,0,4-.73,5.9-2.5l3.95,3.5c-2.27,2.81-5.54,4.54-9.94,4.54-7.31,0-12.71-5.13-12.71-12.57ZM88.75,19.07c-.41-3.09-2.22-5.18-5.13-5.18s-4.72,2.04-5.27,5.18h10.4Z"/>
14
+ </svg>
@@ -0,0 +1,52 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 95.47 111.25">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #fff;
7
+ }
8
+
9
+ .cls-2 {
10
+ fill: url(#radial-gradient);
11
+ }
12
+
13
+ .cls-3 {
14
+ fill: #7da1db;
15
+ }
16
+
17
+ .cls-4 {
18
+ fill: #bcbcbc;
19
+ }
20
+ </style>
21
+ <radialGradient id="radial-gradient" cx="51.15" cy="32.04" fx="51.15" fy="32.04" r="32.04" gradientUnits="userSpaceOnUse">
22
+ <stop offset="0" stop-color="#b1c6e9"/>
23
+ <stop offset="1" stop-color="#7da1db"/>
24
+ </radialGradient>
25
+ </defs>
26
+ <g>
27
+ <path class="cls-2" d="M66.39,55.81c1.91-1.7,4.38-2.64,6.94-2.64h0c.59,0,1.18.06,1.76.16,5.04-5.66,8.11-13.12,8.11-21.29C83.19,14.34,68.85,0,51.15,0S19.11,14.34,19.11,32.04s14.34,32.04,32.04,32.04c4.21,0,8.22-.82,11.9-2.29.4-2.23,1.51-4.36,3.33-5.98Z"/>
28
+ <g>
29
+ <path class="cls-4" d="M71.04,64.46c-.63-.63-.95-1.46-.95-2.29s.32-1.65.95-2.29c.63-.63,1.46-.95,2.29-.95s1.65.32,2.29.95c.63.63.95,1.46.95,2.29s-.32,1.65-.95,2.29l-1.07,1.07h-.34v-3.94c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2s.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v2.87l.41-.41c.52-.52.78-1.19.78-1.87s-.26-1.35-.78-1.87c-.52-.52-1.19-.78-1.87-.78s-1.35.26-1.87.78c-.52.52-.78,1.19-.78,1.87s.26,1.35.78,1.87l.41.41v-.58c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2s.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v1.66h-.34l-1.07-1.07h0ZM74.65,60.81h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0ZM72.31,63.1h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0ZM73.33,61.42c.19,0,.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v2.8h-.59v-2.8c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2ZM73.48,61.95h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0Z"/>
30
+ <path class="cls-4" d="M72.07,65.91h2.52c.17,0,.3.13.3.3h0c0,.16-.14.3-.3.3h-2.52c-.17,0-.3-.13-.3-.3h0c0-.16.14-.3.3-.3Z"/>
31
+ <path class="cls-4" d="M72.24,66.8h2.17c.14,0,.26.13.26.3h0c0,.16-.12.3-.26.3h-2.17c-.14,0-.26-.13-.26-.3h0c0-.16.12-.3.26-.3Z"/>
32
+ <path class="cls-4" d="M72.63,67.71h1.4c-.06.34-.35.59-.7.59s-.64-.25-.7-.59Z"/>
33
+ </g>
34
+ <path class="cls-3" d="M79.67,57.98c-1.61-1.81-3.92-2.85-6.35-2.85-2.08,0-4.08.76-5.64,2.14-2.68,2.38-3.49,6.1-2.32,9.28-6.51,2.61-13.64,3.32-20.69,1.98-9.74-1.86-18.17-7.4-23.74-15.59-6.03-8.88-7.92-19.93-5.19-30.32.16-.6-.2-1.22-.8-1.37-.6-.16-1.22.2-1.37.8-2.9,11.02-.9,22.74,5.5,32.16,5.91,8.7,14.85,14.57,25.17,16.54,2.49.47,4.98.71,7.46.71,5.06,0,10.03-.99,14.7-2.9.17.24.36.48.56.71,1.61,1.81,3.92,2.85,6.35,2.85,2.08,0,4.08-.76,5.63-2.14,1.69-1.51,2.7-3.58,2.84-5.84.13-2.26-.62-4.44-2.13-6.14ZM78.38,67.39c-.25.34-.54.65-.86.94-.28.25-.58.47-.89.66-.03.02-.06.04-.08.05-.3.18-.61.32-.92.44-.05.02-.09.04-.14.05-.31.11-.63.2-.95.26-.05.01-.11.02-.16.03-.32.05-.64.08-.97.09-.08,0-.16,0-.24,0-.12,0-.23,0-.35-.02-.09,0-.19-.02-.28-.03-.12-.01-.23-.03-.35-.05-.09-.02-.18-.04-.28-.06-.11-.03-.23-.06-.34-.09-.09-.03-.18-.05-.27-.08-.11-.04-.22-.08-.33-.13-.09-.03-.17-.07-.26-.11-.11-.05-.22-.11-.33-.17-.08-.04-.16-.08-.24-.13-.11-.07-.22-.14-.33-.21-.07-.05-.14-.09-.21-.14-.12-.09-.23-.18-.34-.28-.06-.05-.11-.09-.17-.14-.16-.15-.32-.31-.47-.48-1.3-1.46-1.79-3.36-1.51-5.16.03-.2.07-.4.12-.59.3-1.18.94-2.28,1.92-3.14,0,0,0,0,0,0,.28-.25.58-.47.89-.66.03-.02.06-.04.09-.06.3-.18.61-.32.92-.44.05-.02.09-.04.14-.05.31-.11.63-.2.95-.26.05-.01.11-.02.16-.03.32-.05.64-.08.97-.09.08,0,.16,0,.24,0,.12,0,.23,0,.35.02.09,0,.19.02.28.03.12.01.23.03.35.05.09.02.18.04.28.06.11.03.23.06.34.09.09.03.18.05.27.08.11.04.22.08.33.13.09.03.17.07.26.11.11.05.22.11.33.16.08.04.16.08.24.13.11.07.22.14.33.21.07.05.14.09.21.14.12.09.23.18.34.28.06.05.11.09.17.14.16.15.32.31.47.48,1.01,1.14,1.53,2.54,1.59,3.95.05,1.41-.37,2.83-1.25,4Z"/>
35
+ <g>
36
+ <path id="Puzzle" class="cls-1" d="M60.22,26c1.46-.17,2.93.19,4.13,1.01.66.45,1.38.69,2.07.69h.12c.32,0,.58-.26.58-.58v-7.48c0-.79-.64-1.43-1.43-1.43h-7.48c-.91,0-1.65-.74-1.65-1.65v-.12c0-.91.3-1.84.87-2.67.69-1.01.97-2.18.83-3.41-.26-2.29-2.12-4.14-4.41-4.39-1.45-.16-2.84.28-3.92,1.25-1.06.95-1.67,2.31-1.67,3.74,0,1.04.32,2.04.92,2.89.54.76.82,1.7.82,2.72,0,.91-.74,1.65-1.65,1.65h-7.48c-.79,0-1.43.64-1.43,1.43v7.48c0,.91-.74,1.65-1.65,1.65h-.12c-.91,0-1.84-.3-2.67-.87-1.01-.69-2.18-.97-3.41-.83-2.29.26-4.14,2.12-4.39,4.41-.16,1.45.28,2.84,1.25,3.92.95,1.06,2.31,1.67,3.74,1.67,1.04,0,2.04-.32,2.89-.92.76-.54,1.61-.82,2.46-.82h.26c.91,0,1.65.74,1.65,1.65v7.48c0,.79.64,1.43,1.43,1.43h7.48c.91,0,1.65.74,1.65,1.65v.12c0,.91-.3,1.84-.87,2.67-.69,1-.97,2.18-.83,3.41.26,2.29,2.12,4.14,4.41,4.39,1.45.16,2.84-.28,3.92-1.25,1.06-.95,1.67-2.31,1.67-3.74,0-1.04-.32-2.04-.92-2.89-.54-.76-.82-1.7-.82-2.72,0-.91.74-1.65,1.65-1.65h7.48c.79,0,1.43-.64,1.43-1.43v-7.48c0-.32-.26-.58-.58-.58-.8,0-1.52.22-2.1.63-1.03.73-2.24,1.12-3.5,1.12-1.73,0-3.38-.74-4.53-2.02-1.15-1.29-1.7-3.01-1.51-4.74.31-2.78,2.55-5.03,5.33-5.35Z"/>
37
+ <g>
38
+ <path class="cls-4" d="M30.84,27.92c1.22-.14,2.4.15,3.41.83.84.57,1.76.87,2.67.87h.12c.7,0,1.29-.44,1.53-1.05-.23.12-.49.2-.76.2h-.12c-.91,0-1.84-.3-2.67-.87-1.01-.69-2.18-.97-3.41-.83-1.45.17-2.72.98-3.53,2.13.75-.68,1.7-1.15,2.76-1.27Z"/>
39
+ <path class="cls-4" d="M40.11,19.07h7.48c.7,0,1.29-.44,1.53-1.05-.23.12-.49.2-.76.2h-7.48c-.63,0-1.16.41-1.35.98.18-.08.37-.12.58-.12Z"/>
40
+ <path class="cls-4" d="M66.53,36.38c-.8,0-1.52.22-2.1.63-1.03.73-2.24,1.12-3.5,1.12-1.73,0-3.38-.74-4.53-2.02-1.15-1.29-1.7-3.01-1.51-4.74.12-1.06.52-2.05,1.13-2.88-1.03.97-1.74,2.27-1.9,3.74-.19,1.73.36,3.46,1.51,4.74,1.15,1.29,2.8,2.02,4.53,2.02,1.26,0,2.47-.39,3.5-1.12.58-.41,1.3-.63,2.1-.63.32,0,.58.26.58.58v7.48c0,.16-.03.3-.08.44.5-.22.85-.72.85-1.3v-7.48c0-.32-.26-.58-.58-.58Z"/>
41
+ <path class="cls-4" d="M56.56,47.52c0-.21.04-.41.12-.59-.52.28-.89.82-.89,1.45,0,1.02.28,1.96.82,2.72.6.85.92,1.85.92,2.89s-.33,2.06-.93,2.9c.01,0,.02-.01.03-.02,1.06-.95,1.67-2.31,1.67-3.74,0-1.04-.32-2.04-.92-2.89-.54-.76-.82-1.7-.82-2.72Z"/>
42
+ <path class="cls-4" d="M65.69,18.21h-7.48c-.91,0-1.65-.74-1.65-1.65v-.12c0-.91.3-1.84.87-2.67.69-1.01.97-2.18.83-3.41-.26-2.29-2.12-4.14-4.41-4.39-1.45-.16-2.84.28-3.92,1.25-.28.25-.52.53-.74.83,1.07-.94,2.45-1.38,3.88-1.22,2.29.25,4.15,2.1,4.41,4.39.14,1.22-.15,2.4-.83,3.41-.57.84-.87,1.76-.87,2.67v.12c0,.91.74,1.65,1.65,1.65h7.48c.79,0,1.43.64,1.43,1.43v7.2s.05,0,.07,0h.12c.32,0,.58-.26.58-.58v-7.48c0-.79-.64-1.43-1.43-1.43Z"/>
43
+ </g>
44
+ </g>
45
+ </g>
46
+ <g>
47
+ <path class="cls-4" d="M0,94.91v-.09c0-9.03,6.81-16.43,16.57-16.43,5.99,0,9.58,2,12.53,4.9l-4.45,5.13c-2.45-2.22-4.95-3.59-8.13-3.59-5.36,0-9.21,4.45-9.21,9.9v.09c0,5.45,3.77,9.99,9.21,9.99,3.63,0,5.86-1.45,8.35-3.72l4.45,4.49c-3.27,3.5-6.9,5.67-13.03,5.67-9.35,0-16.3-7.22-16.3-16.34Z"/>
48
+ <path class="cls-4" d="M33.37,77.57h6.9v33.14h-6.9v-33.14Z"/>
49
+ <path class="cls-4" d="M45.44,102.12v-15.75h6.9v13.57c0,3.27,1.54,4.95,4.18,4.95s4.31-1.68,4.31-4.95v-13.57h6.9v24.33h-6.9v-3.45c-1.59,2.04-3.63,3.9-7.13,3.9-5.22,0-8.26-3.45-8.26-9.03Z"/>
50
+ <path class="cls-4" d="M71.59,98.67v-.09c0-6.95,4.95-12.67,12.03-12.67,8.13,0,11.85,6.31,11.85,13.21,0,.54-.04,1.18-.09,1.82h-16.93c.68,3.13,2.86,4.77,5.95,4.77,2.32,0,4-.73,5.9-2.5l3.95,3.5c-2.27,2.81-5.54,4.54-9.94,4.54-7.31,0-12.71-5.13-12.71-12.57ZM88.75,96.63c-.41-3.09-2.22-5.18-5.13-5.18s-4.72,2.04-5.27,5.18h10.4Z"/>
51
+ </g>
52
+ </svg>
@@ -0,0 +1,60 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 184 72.11">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #0062bf;
7
+ }
8
+
9
+ .cls-2 {
10
+ fill: #4d4d4d;
11
+ }
12
+
13
+ .cls-3 {
14
+ fill: #fff;
15
+ }
16
+
17
+ .cls-4 {
18
+ fill: url(#radial-gradient);
19
+ }
20
+
21
+ .cls-5 {
22
+ fill: #0e4377;
23
+ }
24
+ </style>
25
+ <radialGradient id="radial-gradient" cx="38.88" cy="32.04" fx="38.88" fy="32.04" r="32.04" gradientUnits="userSpaceOnUse">
26
+ <stop offset="0" stop-color="#3381cc"/>
27
+ <stop offset=".51" stop-color="#317fcb"/>
28
+ <stop offset=".7" stop-color="#2a7bc9"/>
29
+ <stop offset=".83" stop-color="#1e74c6"/>
30
+ <stop offset=".94" stop-color="#0d6ac2"/>
31
+ <stop offset="1" stop-color="#0062bf"/>
32
+ </radialGradient>
33
+ </defs>
34
+ <g>
35
+ <path class="cls-4" d="M54.11,55.81c1.91-1.7,4.38-2.64,6.94-2.64h0c.59,0,1.18.06,1.76.16,5.04-5.66,8.11-13.12,8.11-21.29C70.92,14.34,56.57,0,38.88,0S6.84,14.34,6.84,32.04s14.34,32.04,32.04,32.04c4.21,0,8.22-.82,11.9-2.29.4-2.23,1.51-4.36,3.33-5.98Z"/>
36
+ <g>
37
+ <path class="cls-5" d="M58.76,64.46c-.63-.63-.95-1.46-.95-2.29s.32-1.65.95-2.29c.63-.63,1.46-.95,2.29-.95s1.65.32,2.29.95c.63.63.95,1.46.95,2.29s-.32,1.65-.95,2.29l-1.07,1.07h-.34v-3.94c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2s.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v2.87l.41-.41c.52-.52.78-1.19.78-1.87s-.26-1.35-.78-1.87c-.52-.52-1.19-.78-1.87-.78s-1.35.26-1.87.78c-.52.52-.78,1.19-.78,1.87s.26,1.35.78,1.87l.41.41v-.58c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2s.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v1.66h-.34l-1.07-1.07h0ZM62.37,60.81h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0ZM60.03,63.1h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0ZM61.05,61.42c.19,0,.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v2.8h-.59v-2.8c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2ZM61.2,61.95h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0Z"/>
38
+ <path class="cls-5" d="M59.79,65.91h2.52c.17,0,.3.13.3.3h0c0,.16-.14.3-.3.3h-2.52c-.17,0-.3-.13-.3-.3h0c0-.16.14-.3.3-.3Z"/>
39
+ <path class="cls-5" d="M59.96,66.8h2.17c.14,0,.26.13.26.3h0c0,.16-.12.3-.26.3h-2.17c-.14,0-.26-.13-.26-.3h0c0-.16.12-.3.26-.3Z"/>
40
+ <path class="cls-5" d="M60.35,67.71h1.4c-.06.34-.35.59-.7.59s-.64-.25-.7-.59Z"/>
41
+ </g>
42
+ <path class="cls-1" d="M67.39,57.98c-1.61-1.81-3.92-2.85-6.35-2.85-2.08,0-4.08.76-5.64,2.14-2.68,2.38-3.49,6.1-2.32,9.28-6.51,2.61-13.64,3.32-20.69,1.98-9.74-1.86-18.17-7.4-23.74-15.59C2.63,44.05.74,33,3.48,22.61c.16-.6-.2-1.22-.8-1.37-.6-.16-1.22.2-1.37.8-2.9,11.02-.9,22.74,5.5,32.16,5.91,8.7,14.85,14.57,25.17,16.54,2.49.47,4.98.71,7.46.71,5.06,0,10.03-.99,14.7-2.9.17.24.36.48.56.71,1.61,1.81,3.92,2.85,6.35,2.85,2.08,0,4.08-.76,5.63-2.14,1.69-1.51,2.7-3.58,2.84-5.84.13-2.26-.62-4.44-2.13-6.14ZM66.1,67.39c-.25.34-.54.65-.86.94-.28.25-.58.47-.89.66-.03.02-.06.04-.08.05-.3.18-.61.32-.92.44-.05.02-.09.04-.14.05-.31.11-.63.2-.95.26-.05.01-.11.02-.16.03-.32.05-.64.08-.97.09-.08,0-.16,0-.24,0-.12,0-.23,0-.35-.02-.09,0-.19-.02-.28-.03-.12-.01-.23-.03-.35-.05-.09-.02-.18-.04-.28-.06-.11-.03-.23-.06-.34-.09-.09-.03-.18-.05-.27-.08-.11-.04-.22-.08-.33-.13-.09-.03-.17-.07-.26-.11-.11-.05-.22-.11-.33-.17-.08-.04-.16-.08-.24-.13-.11-.07-.22-.14-.33-.21-.07-.05-.14-.09-.21-.14-.12-.09-.23-.18-.34-.28-.06-.05-.11-.09-.17-.14-.16-.15-.32-.31-.47-.48-1.3-1.46-1.79-3.36-1.51-5.16.03-.2.07-.4.12-.59.3-1.18.94-2.28,1.92-3.14,0,0,0,0,0,0,.28-.25.58-.47.89-.66.03-.02.06-.04.09-.06.3-.18.61-.32.92-.44.05-.02.09-.04.14-.05.31-.11.63-.2.95-.26.05-.01.11-.02.16-.03.32-.05.64-.08.97-.09.08,0,.16,0,.24,0,.12,0,.23,0,.35.02.09,0,.19.02.28.03.12.01.23.03.35.05.09.02.18.04.28.06.11.03.23.06.34.09.09.03.18.05.27.08.11.04.22.08.33.13.09.03.17.07.26.11.11.05.22.11.33.16.08.04.16.08.24.13.11.07.22.14.33.21.07.05.14.09.21.14.12.09.23.18.34.28.06.05.11.09.17.14.16.15.32.31.47.48,1.01,1.14,1.53,2.54,1.59,3.95.05,1.41-.37,2.83-1.25,4Z"/>
43
+ <g>
44
+ <path id="Puzzle" class="cls-3" d="M47.94,26c1.46-.17,2.93.19,4.13,1.01.66.45,1.38.69,2.07.69h.12c.32,0,.58-.26.58-.58v-7.48c0-.79-.64-1.43-1.43-1.43h-7.48c-.91,0-1.65-.74-1.65-1.65v-.12c0-.91.3-1.84.87-2.67.69-1.01.97-2.18.83-3.41-.26-2.29-2.12-4.14-4.41-4.39-1.45-.16-2.84.28-3.92,1.25-1.06.95-1.67,2.31-1.67,3.74,0,1.04.32,2.04.92,2.89.54.76.82,1.7.82,2.72,0,.91-.74,1.65-1.65,1.65h-7.48c-.79,0-1.43.64-1.43,1.43v7.48c0,.91-.74,1.65-1.65,1.65h-.12c-.91,0-1.84-.3-2.67-.87-1.01-.69-2.18-.97-3.41-.83-2.29.26-4.14,2.12-4.39,4.41-.16,1.45.28,2.84,1.25,3.92.95,1.06,2.31,1.67,3.74,1.67,1.04,0,2.04-.32,2.89-.92.76-.54,1.61-.82,2.46-.82h.26c.91,0,1.65.74,1.65,1.65v7.48c0,.79.64,1.43,1.43,1.43h7.48c.91,0,1.65.74,1.65,1.65v.12c0,.91-.3,1.84-.87,2.67-.69,1-.97,2.18-.83,3.41.26,2.29,2.12,4.14,4.41,4.39,1.45.16,2.84-.28,3.92-1.25,1.06-.95,1.67-2.31,1.67-3.74,0-1.04-.32-2.04-.92-2.89-.54-.76-.82-1.7-.82-2.72,0-.91.74-1.65,1.65-1.65h7.48c.79,0,1.43-.64,1.43-1.43v-7.48c0-.32-.26-.58-.58-.58-.8,0-1.52.22-2.1.63-1.03.73-2.24,1.12-3.5,1.12-1.73,0-3.38-.74-4.53-2.02-1.15-1.29-1.7-3.01-1.51-4.74.31-2.78,2.55-5.03,5.33-5.35Z"/>
45
+ <g>
46
+ <path class="cls-5" d="M18.56,27.92c1.22-.14,2.4.15,3.41.83.84.57,1.76.87,2.67.87h.12c.7,0,1.29-.44,1.53-1.05-.23.12-.49.2-.76.2h-.12c-.91,0-1.84-.3-2.67-.87-1.01-.69-2.18-.97-3.41-.83-1.45.17-2.72.98-3.53,2.13.75-.68,1.7-1.15,2.76-1.27Z"/>
47
+ <path class="cls-5" d="M27.83,19.07h7.48c.7,0,1.29-.44,1.53-1.05-.23.12-.49.2-.76.2h-7.48c-.63,0-1.16.41-1.35.98.18-.08.37-.12.58-.12Z"/>
48
+ <path class="cls-5" d="M54.26,36.38c-.8,0-1.52.22-2.1.63-1.03.73-2.24,1.12-3.5,1.12-1.73,0-3.38-.74-4.53-2.02-1.15-1.29-1.7-3.01-1.51-4.74.12-1.06.52-2.05,1.13-2.88-1.03.97-1.74,2.27-1.9,3.74-.19,1.73.36,3.46,1.51,4.74,1.15,1.29,2.8,2.02,4.53,2.02,1.26,0,2.47-.39,3.5-1.12.58-.41,1.3-.63,2.1-.63.32,0,.58.26.58.58v7.48c0,.16-.03.3-.08.44.5-.22.85-.72.85-1.3v-7.48c0-.32-.26-.58-.58-.58Z"/>
49
+ <path class="cls-5" d="M44.28,47.52c0-.21.04-.41.12-.59-.52.28-.89.82-.89,1.45,0,1.02.28,1.96.82,2.72.6.85.92,1.85.92,2.89s-.33,2.06-.93,2.9c.01,0,.02-.01.03-.02,1.06-.95,1.67-2.31,1.67-3.74,0-1.04-.32-2.04-.92-2.89-.54-.76-.82-1.7-.82-2.72Z"/>
50
+ <path class="cls-5" d="M53.41,18.21h-7.48c-.91,0-1.65-.74-1.65-1.65v-.12c0-.91.3-1.84.87-2.67.69-1.01.97-2.18.83-3.41-.26-2.29-2.12-4.14-4.41-4.39-1.45-.16-2.84.28-3.92,1.25-.28.25-.52.53-.74.83,1.07-.94,2.45-1.38,3.88-1.22,2.29.25,4.15,2.1,4.41,4.39.14,1.22-.15,2.4-.83,3.41-.57.84-.87,1.76-.87,2.67v.12c0,.91.74,1.65,1.65,1.65h7.48c.79,0,1.43.64,1.43,1.43v7.2s.05,0,.07,0h.12c.32,0,.58-.26.58-.58v-7.48c0-.79-.64-1.43-1.43-1.43Z"/>
51
+ </g>
52
+ </g>
53
+ </g>
54
+ <g>
55
+ <path class="cls-2" d="M88.53,32.66v-.09c0-9.03,6.81-16.43,16.57-16.43,5.99,0,9.58,2,12.53,4.9l-4.45,5.13c-2.45-2.22-4.95-3.59-8.13-3.59-5.36,0-9.21,4.45-9.21,9.9v.09c0,5.45,3.77,9.99,9.21,9.99,3.63,0,5.86-1.45,8.35-3.72l4.45,4.49c-3.27,3.5-6.9,5.67-13.03,5.67-9.35,0-16.3-7.22-16.3-16.34Z"/>
56
+ <path class="cls-2" d="M121.9,15.32h6.9v33.14h-6.9V15.32Z"/>
57
+ <path class="cls-2" d="M133.98,39.88v-15.75h6.9v13.57c0,3.27,1.54,4.95,4.18,4.95s4.31-1.68,4.31-4.95v-13.57h6.9v24.33h-6.9v-3.45c-1.59,2.04-3.63,3.9-7.13,3.9-5.22,0-8.26-3.45-8.26-9.03Z"/>
58
+ <path class="cls-2" d="M160.13,36.43v-.09c0-6.95,4.95-12.67,12.03-12.67,8.13,0,11.85,6.31,11.85,13.21,0,.54-.04,1.18-.09,1.82h-16.93c.68,3.13,2.86,4.77,5.95,4.77,2.32,0,4-.73,5.9-2.5l3.95,3.5c-2.27,2.81-5.54,4.54-9.94,4.54-7.31,0-12.71-5.13-12.71-12.57ZM177.29,34.39c-.41-3.09-2.22-5.18-5.13-5.18s-4.72,2.04-5.27,5.18h10.4Z"/>
59
+ </g>
60
+ </svg>
@@ -0,0 +1,37 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.08 64.08">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #fff;
7
+ }
8
+
9
+ .cls-2 {
10
+ fill: url(#radial-gradient);
11
+ }
12
+
13
+ .cls-3 {
14
+ fill: #0e4377;
15
+ }
16
+ </style>
17
+ <radialGradient id="radial-gradient" cx="32.04" cy="32.04" fx="32.04" fy="32.04" r="32.04" gradientUnits="userSpaceOnUse">
18
+ <stop offset="0" stop-color="#3381cc"/>
19
+ <stop offset=".51" stop-color="#317fcb"/>
20
+ <stop offset=".7" stop-color="#2a7bc9"/>
21
+ <stop offset=".83" stop-color="#1e74c6"/>
22
+ <stop offset=".94" stop-color="#0d6ac2"/>
23
+ <stop offset="1" stop-color="#0062bf"/>
24
+ </radialGradient>
25
+ </defs>
26
+ <circle class="cls-2" cx="32.04" cy="32.04" r="32.04"/>
27
+ <g>
28
+ <path id="Puzzle" class="cls-1" d="M41.1,26c1.46-.17,2.93.19,4.13,1.01.66.45,1.38.69,2.07.69h.12c.32,0,.58-.26.58-.58v-7.48c0-.79-.64-1.43-1.43-1.43h-7.48c-.91,0-1.65-.74-1.65-1.65v-.12c0-.91.3-1.84.87-2.67.69-1.01.97-2.18.83-3.41-.26-2.29-2.12-4.14-4.41-4.39-1.45-.16-2.84.28-3.92,1.25-1.06.95-1.67,2.31-1.67,3.74,0,1.04.32,2.04.92,2.89.54.76.82,1.7.82,2.72,0,.91-.74,1.65-1.65,1.65h-7.48c-.79,0-1.43.64-1.43,1.43v7.48c0,.91-.74,1.65-1.65,1.65h-.12c-.91,0-1.84-.3-2.67-.87-1.01-.69-2.18-.97-3.41-.83-2.29.26-4.14,2.12-4.39,4.41-.16,1.45.28,2.84,1.25,3.92.95,1.06,2.31,1.67,3.74,1.67,1.04,0,2.04-.32,2.89-.92.76-.54,1.61-.82,2.46-.82h.26c.91,0,1.65.74,1.65,1.65v7.48c0,.79.64,1.43,1.43,1.43h7.48c.91,0,1.65.74,1.65,1.65v.12c0,.91-.3,1.84-.87,2.67-.69,1-.97,2.18-.83,3.41.26,2.29,2.12,4.14,4.41,4.39,1.45.16,2.84-.28,3.92-1.25,1.06-.95,1.67-2.31,1.67-3.74,0-1.04-.32-2.04-.92-2.89-.54-.76-.82-1.7-.82-2.72,0-.91.74-1.65,1.65-1.65h7.48c.79,0,1.43-.64,1.43-1.43v-7.48c0-.32-.26-.58-.58-.58-.8,0-1.52.22-2.1.63-1.03.73-2.24,1.12-3.5,1.12-1.73,0-3.38-.74-4.53-2.02-1.15-1.29-1.7-3.01-1.51-4.74.31-2.78,2.55-5.03,5.33-5.35Z"/>
29
+ <g>
30
+ <path class="cls-3" d="M11.72,27.92c1.22-.14,2.4.15,3.41.83.84.57,1.76.87,2.67.87h.12c.7,0,1.29-.44,1.53-1.05-.23.12-.49.2-.76.2h-.12c-.91,0-1.84-.3-2.67-.87-1.01-.69-2.18-.97-3.41-.83-1.45.17-2.72.98-3.53,2.13.75-.68,1.7-1.15,2.76-1.27Z"/>
31
+ <path class="cls-3" d="M20.99,19.07h7.48c.7,0,1.29-.44,1.53-1.05-.23.12-.49.2-.76.2h-7.48c-.63,0-1.16.41-1.35.98.18-.08.37-.12.58-.12Z"/>
32
+ <path class="cls-3" d="M47.42,36.38c-.8,0-1.52.22-2.1.63-1.03.73-2.24,1.12-3.5,1.12-1.73,0-3.38-.74-4.53-2.02-1.15-1.29-1.7-3.01-1.51-4.74.12-1.06.52-2.05,1.13-2.88-1.03.97-1.74,2.27-1.9,3.74-.19,1.73.36,3.46,1.51,4.74,1.15,1.29,2.8,2.02,4.53,2.02,1.26,0,2.47-.39,3.5-1.12.58-.41,1.3-.63,2.1-.63.32,0,.58.26.58.58v7.48c0,.16-.03.3-.08.44.5-.22.85-.72.85-1.3v-7.48c0-.32-.26-.58-.58-.58Z"/>
33
+ <path class="cls-3" d="M37.45,47.52c0-.21.04-.41.12-.59-.52.28-.89.82-.89,1.45,0,1.02.28,1.96.82,2.72.6.85.92,1.85.92,2.89s-.33,2.06-.93,2.9c.01,0,.02-.01.03-.02,1.06-.95,1.67-2.31,1.67-3.74,0-1.04-.32-2.04-.92-2.89-.54-.76-.82-1.7-.82-2.72Z"/>
34
+ <path class="cls-3" d="M46.58,18.21h-7.48c-.91,0-1.65-.74-1.65-1.65v-.12c0-.91.3-1.84.87-2.67.69-1.01.97-2.18.83-3.41-.26-2.29-2.12-4.14-4.41-4.39-1.45-.16-2.84.28-3.92,1.25-.28.25-.52.53-.74.83,1.07-.94,2.45-1.38,3.88-1.22,2.29.25,4.15,2.1,4.41,4.39.14,1.22-.15,2.4-.83,3.41-.57.84-.87,1.76-.87,2.67v.12c0,.91.74,1.65,1.65,1.65h7.48c.79,0,1.43.64,1.43,1.43v7.2s.05,0,.07,0h.12c.32,0,.58-.26.58-.58v-7.48c0-.79-.64-1.43-1.43-1.43Z"/>
35
+ </g>
36
+ </g>
37
+ </svg>
@@ -0,0 +1,48 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 70.92 72.11">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #0062bf;
7
+ }
8
+
9
+ .cls-2 {
10
+ fill: #fff;
11
+ }
12
+
13
+ .cls-3 {
14
+ fill: url(#radial-gradient);
15
+ }
16
+
17
+ .cls-4 {
18
+ fill: #0e4377;
19
+ }
20
+ </style>
21
+ <radialGradient id="radial-gradient" cx="38.88" cy="32.04" fx="38.88" fy="32.04" r="32.04" gradientUnits="userSpaceOnUse">
22
+ <stop offset="0" stop-color="#3381cc"/>
23
+ <stop offset=".51" stop-color="#317fcb"/>
24
+ <stop offset=".7" stop-color="#2a7bc9"/>
25
+ <stop offset=".83" stop-color="#1e74c6"/>
26
+ <stop offset=".94" stop-color="#0d6ac2"/>
27
+ <stop offset="1" stop-color="#0062bf"/>
28
+ </radialGradient>
29
+ </defs>
30
+ <path class="cls-3" d="M54.11,55.81c1.91-1.7,4.38-2.64,6.94-2.64h0c.59,0,1.18.06,1.76.16,5.04-5.66,8.11-13.12,8.11-21.29C70.92,14.34,56.57,0,38.88,0S6.84,14.34,6.84,32.04s14.34,32.04,32.04,32.04c4.21,0,8.22-.82,11.9-2.29.4-2.23,1.51-4.36,3.33-5.98Z"/>
31
+ <g>
32
+ <path class="cls-4" d="M58.76,64.46c-.63-.63-.95-1.46-.95-2.29s.32-1.65.95-2.29c.63-.63,1.46-.95,2.29-.95s1.65.32,2.29.95c.63.63.95,1.46.95,2.29s-.32,1.65-.95,2.29l-1.07,1.07h-.34v-3.94c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2s.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v2.87l.41-.41c.52-.52.78-1.19.78-1.87s-.26-1.35-.78-1.87c-.52-.52-1.19-.78-1.87-.78s-1.35.26-1.87.78c-.52.52-.78,1.19-.78,1.87s.26,1.35.78,1.87l.41.41v-.58c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2s.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v1.66h-.34l-1.07-1.07h0ZM62.37,60.81h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0ZM60.03,63.1h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0ZM61.05,61.42c.19,0,.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v2.8h-.59v-2.8c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2ZM61.2,61.95h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0Z"/>
33
+ <path class="cls-4" d="M59.79,65.91h2.52c.17,0,.3.13.3.3h0c0,.16-.14.3-.3.3h-2.52c-.17,0-.3-.13-.3-.3h0c0-.16.14-.3.3-.3Z"/>
34
+ <path class="cls-4" d="M59.96,66.8h2.17c.14,0,.26.13.26.3h0c0,.16-.12.3-.26.3h-2.17c-.14,0-.26-.13-.26-.3h0c0-.16.12-.3.26-.3Z"/>
35
+ <path class="cls-4" d="M60.35,67.71h1.4c-.06.34-.35.59-.7.59s-.64-.25-.7-.59Z"/>
36
+ </g>
37
+ <path class="cls-1" d="M67.39,57.98c-1.61-1.81-3.92-2.85-6.35-2.85-2.08,0-4.08.76-5.64,2.14-2.68,2.38-3.49,6.1-2.32,9.28-6.51,2.61-13.64,3.32-20.69,1.98-9.74-1.86-18.17-7.4-23.74-15.59C2.63,44.05.74,33,3.48,22.61c.16-.6-.2-1.22-.8-1.37-.6-.16-1.22.2-1.37.8-2.9,11.02-.9,22.74,5.5,32.16,5.91,8.7,14.85,14.57,25.17,16.54,2.49.47,4.98.71,7.46.71,5.06,0,10.03-.99,14.7-2.9.17.24.36.48.56.71,1.61,1.81,3.92,2.85,6.35,2.85,2.08,0,4.08-.76,5.63-2.14,1.69-1.51,2.7-3.58,2.84-5.84.13-2.26-.62-4.44-2.13-6.14ZM66.1,67.39c-.25.34-.54.65-.86.94-.28.25-.58.47-.89.66-.03.02-.06.04-.08.05-.3.18-.61.32-.92.44-.05.02-.09.04-.14.05-.31.11-.63.2-.95.26-.05.01-.11.02-.16.03-.32.05-.64.08-.97.09-.08,0-.16,0-.24,0-.12,0-.23,0-.35-.02-.09,0-.19-.02-.28-.03-.12-.01-.23-.03-.35-.05-.09-.02-.18-.04-.28-.06-.11-.03-.23-.06-.34-.09-.09-.03-.18-.05-.27-.08-.11-.04-.22-.08-.33-.13-.09-.03-.17-.07-.26-.11-.11-.05-.22-.11-.33-.17-.08-.04-.16-.08-.24-.13-.11-.07-.22-.14-.33-.21-.07-.05-.14-.09-.21-.14-.12-.09-.23-.18-.34-.28-.06-.05-.11-.09-.17-.14-.16-.15-.32-.31-.47-.48-1.3-1.46-1.79-3.36-1.51-5.16.03-.2.07-.4.12-.59.3-1.18.94-2.28,1.92-3.14,0,0,0,0,0,0,.28-.25.58-.47.89-.66.03-.02.06-.04.09-.06.3-.18.61-.32.92-.44.05-.02.09-.04.14-.05.31-.11.63-.2.95-.26.05-.01.11-.02.16-.03.32-.05.64-.08.97-.09.08,0,.16,0,.24,0,.12,0,.23,0,.35.02.09,0,.19.02.28.03.12.01.23.03.35.05.09.02.18.04.28.06.11.03.23.06.34.09.09.03.18.05.27.08.11.04.22.08.33.13.09.03.17.07.26.11.11.05.22.11.33.16.08.04.16.08.24.13.11.07.22.14.33.21.07.05.14.09.21.14.12.09.23.18.34.28.06.05.11.09.17.14.16.15.32.31.47.48,1.01,1.14,1.53,2.54,1.59,3.95.05,1.41-.37,2.83-1.25,4Z"/>
38
+ <g>
39
+ <path id="Puzzle" class="cls-2" d="M47.94,26c1.46-.17,2.93.19,4.13,1.01.66.45,1.38.69,2.07.69h.12c.32,0,.58-.26.58-.58v-7.48c0-.79-.64-1.43-1.43-1.43h-7.48c-.91,0-1.65-.74-1.65-1.65v-.12c0-.91.3-1.84.87-2.67.69-1.01.97-2.18.83-3.41-.26-2.29-2.12-4.14-4.41-4.39-1.45-.16-2.84.28-3.92,1.25-1.06.95-1.67,2.31-1.67,3.74,0,1.04.32,2.04.92,2.89.54.76.82,1.7.82,2.72,0,.91-.74,1.65-1.65,1.65h-7.48c-.79,0-1.43.64-1.43,1.43v7.48c0,.91-.74,1.65-1.65,1.65h-.12c-.91,0-1.84-.3-2.67-.87-1.01-.69-2.18-.97-3.41-.83-2.29.26-4.14,2.12-4.39,4.41-.16,1.45.28,2.84,1.25,3.92.95,1.06,2.31,1.67,3.74,1.67,1.04,0,2.04-.32,2.89-.92.76-.54,1.61-.82,2.46-.82h.26c.91,0,1.65.74,1.65,1.65v7.48c0,.79.64,1.43,1.43,1.43h7.48c.91,0,1.65.74,1.65,1.65v.12c0,.91-.3,1.84-.87,2.67-.69,1-.97,2.18-.83,3.41.26,2.29,2.12,4.14,4.41,4.39,1.45.16,2.84-.28,3.92-1.25,1.06-.95,1.67-2.31,1.67-3.74,0-1.04-.32-2.04-.92-2.89-.54-.76-.82-1.7-.82-2.72,0-.91.74-1.65,1.65-1.65h7.48c.79,0,1.43-.64,1.43-1.43v-7.48c0-.32-.26-.58-.58-.58-.8,0-1.52.22-2.1.63-1.03.73-2.24,1.12-3.5,1.12-1.73,0-3.38-.74-4.53-2.02-1.15-1.29-1.7-3.01-1.51-4.74.31-2.78,2.55-5.03,5.33-5.35Z"/>
40
+ <g>
41
+ <path class="cls-4" d="M18.56,27.92c1.22-.14,2.4.15,3.41.83.84.57,1.76.87,2.67.87h.12c.7,0,1.29-.44,1.53-1.05-.23.12-.49.2-.76.2h-.12c-.91,0-1.84-.3-2.67-.87-1.01-.69-2.18-.97-3.41-.83-1.45.17-2.72.98-3.53,2.13.75-.68,1.7-1.15,2.76-1.27Z"/>
42
+ <path class="cls-4" d="M27.83,19.07h7.48c.7,0,1.29-.44,1.53-1.05-.23.12-.49.2-.76.2h-7.48c-.63,0-1.16.41-1.35.98.18-.08.37-.12.58-.12Z"/>
43
+ <path class="cls-4" d="M54.26,36.38c-.8,0-1.52.22-2.1.63-1.03.73-2.24,1.12-3.5,1.12-1.73,0-3.38-.74-4.53-2.02-1.15-1.29-1.7-3.01-1.51-4.74.12-1.06.52-2.05,1.13-2.88-1.03.97-1.74,2.27-1.9,3.74-.19,1.73.36,3.46,1.51,4.74,1.15,1.29,2.8,2.02,4.53,2.02,1.26,0,2.47-.39,3.5-1.12.58-.41,1.3-.63,2.1-.63.32,0,.58.26.58.58v7.48c0,.16-.03.3-.08.44.5-.22.85-.72.85-1.3v-7.48c0-.32-.26-.58-.58-.58Z"/>
44
+ <path class="cls-4" d="M44.28,47.52c0-.21.04-.41.12-.59-.52.28-.89.82-.89,1.45,0,1.02.28,1.96.82,2.72.6.85.92,1.85.92,2.89s-.33,2.06-.93,2.9c.01,0,.02-.01.03-.02,1.06-.95,1.67-2.31,1.67-3.74,0-1.04-.32-2.04-.92-2.89-.54-.76-.82-1.7-.82-2.72Z"/>
45
+ <path class="cls-4" d="M53.41,18.21h-7.48c-.91,0-1.65-.74-1.65-1.65v-.12c0-.91.3-1.84.87-2.67.69-1.01.97-2.18.83-3.41-.26-2.29-2.12-4.14-4.41-4.39-1.45-.16-2.84.28-3.92,1.25-.28.25-.52.53-.74.83,1.07-.94,2.45-1.38,3.88-1.22,2.29.25,4.15,2.1,4.41,4.39.14,1.22-.15,2.4-.83,3.41-.57.84-.87,1.76-.87,2.67v.12c0,.91.74,1.65,1.65,1.65h7.48c.79,0,1.43.64,1.43,1.43v7.2s.05,0,.07,0h.12c.32,0,.58-.26.58-.58v-7.48c0-.79-.64-1.43-1.43-1.43Z"/>
46
+ </g>
47
+ </g>
48
+ </svg>
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.08 64.08">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: url(#radial-gradient);
7
+ }
8
+
9
+ .cls-2 {
10
+ fill: #0e4377;
11
+ }
12
+ </style>
13
+ <radialGradient id="radial-gradient" cx="32.04" cy="32.04" fx="32.04" fy="32.04" r="32.04" gradientUnits="userSpaceOnUse">
14
+ <stop offset="0" stop-color="#3381cc"/>
15
+ <stop offset=".51" stop-color="#317fcb"/>
16
+ <stop offset=".7" stop-color="#2a7bc9"/>
17
+ <stop offset=".83" stop-color="#1e74c6"/>
18
+ <stop offset=".94" stop-color="#0d6ac2"/>
19
+ <stop offset="1" stop-color="#0062bf"/>
20
+ </radialGradient>
21
+ </defs>
22
+ <path class="cls-1" d="M32.04,0C14.34,0,0,14.34,0,32.04s14.34,32.04,32.04,32.04,32.04-14.34,32.04-32.04S49.74,0,32.04,0ZM48,27.12c0,.32-.26.58-.58.58h-.12c-.7,0-1.42-.24-2.07-.69-1.2-.82-2.67-1.18-4.13-1.01-2.78.32-5.02,2.57-5.33,5.35-.19,1.73.36,3.46,1.51,4.74,1.15,1.29,2.8,2.02,4.53,2.02,1.26,0,2.47-.39,3.5-1.12.58-.41,1.3-.63,2.1-.63.32,0,.58.26.58.58v7.48c0,.79-.64,1.43-1.43,1.43h-7.48c-.91,0-1.65.74-1.65,1.65,0,1.02.28,1.96.82,2.72.6.85.92,1.85.92,2.89,0,1.42-.61,2.79-1.67,3.74-1.08.96-2.47,1.41-3.92,1.25-2.29-.25-4.15-2.1-4.41-4.39-.14-1.22.15-2.4.83-3.41.57-.84.87-1.76.87-2.67v-.12c0-.91-.74-1.65-1.65-1.65h-7.48c-.79,0-1.43-.64-1.43-1.43v-7.48c0-.91-.74-1.65-1.65-1.65h-.26c-.85,0-1.7.28-2.46.82-.85.6-1.85.92-2.89.92-1.42,0-2.79-.61-3.74-1.67-.96-1.08-1.41-2.47-1.25-3.92.25-2.29,2.1-4.15,4.39-4.41,1.22-.14,2.4.15,3.41.83.84.57,1.76.87,2.67.87h.12c.91,0,1.65-.74,1.65-1.65v-7.48c0-.79.64-1.43,1.43-1.43h7.48c.91,0,1.65-.74,1.65-1.65,0-1.02-.28-1.96-.82-2.72-.6-.85-.92-1.85-.92-2.89,0-1.42.61-2.79,1.67-3.74,1.08-.96,2.47-1.41,3.92-1.25,2.29.25,4.15,2.1,4.41,4.39.14,1.22-.15,2.4-.83,3.41-.57.84-.87,1.76-.87,2.67v.12c0,.91.74,1.65,1.65,1.65h7.48c.79,0,1.43.64,1.43,1.43v7.48Z"/>
23
+ <g>
24
+ <path class="cls-2" d="M11.72,27.92c1.22-.14,2.4.15,3.41.83.84.57,1.76.87,2.67.87h.12c.7,0,1.29-.44,1.53-1.05-.23.12-.49.2-.76.2h-.12c-.91,0-1.84-.3-2.67-.87-1.01-.69-2.18-.97-3.41-.83-1.45.17-2.72.98-3.53,2.13.75-.68,1.7-1.15,2.76-1.27Z"/>
25
+ <path class="cls-2" d="M20.99,19.07h7.48c.7,0,1.29-.44,1.53-1.05-.23.12-.49.2-.76.2h-7.48c-.63,0-1.16.41-1.35.98.18-.08.37-.12.58-.12Z"/>
26
+ <path class="cls-2" d="M47.42,36.38c-.8,0-1.52.22-2.1.63-1.03.73-2.24,1.12-3.5,1.12-1.73,0-3.38-.74-4.53-2.02-1.15-1.29-1.7-3.01-1.51-4.74.12-1.06.52-2.05,1.13-2.88-1.03.97-1.74,2.27-1.9,3.74-.19,1.73.36,3.46,1.51,4.74,1.15,1.29,2.8,2.02,4.53,2.02,1.26,0,2.47-.39,3.5-1.12.58-.41,1.3-.63,2.1-.63.32,0,.58.26.58.58v7.48c0,.16-.03.3-.08.44.5-.22.85-.72.85-1.3v-7.48c0-.32-.26-.58-.58-.58Z"/>
27
+ <path class="cls-2" d="M37.45,47.52c0-.21.04-.41.12-.59-.52.28-.89.82-.89,1.45,0,1.02.28,1.96.82,2.72.6.85.92,1.85.92,2.89s-.33,2.06-.93,2.9c.01,0,.02-.01.03-.02,1.06-.95,1.67-2.31,1.67-3.74,0-1.04-.32-2.04-.92-2.89-.54-.76-.82-1.7-.82-2.72Z"/>
28
+ <path class="cls-2" d="M46.58,18.21h-7.48c-.91,0-1.65-.74-1.65-1.65v-.12c0-.91.3-1.84.87-2.67.69-1.01.97-2.18.83-3.41-.26-2.29-2.12-4.14-4.41-4.39-1.45-.16-2.84.28-3.92,1.25-.28.25-.52.53-.74.83,1.07-.94,2.45-1.38,3.88-1.22,2.29.25,4.15,2.1,4.41,4.39.14,1.22-.15,2.4-.83,3.41-.57.84-.87,1.76-.87,2.67v.12c0,.91.74,1.65,1.65,1.65h7.48c.79,0,1.43.64,1.43,1.43v7.2s.05,0,.07,0h.12c.32,0,.58-.26.58-.58v-7.48c0-.79-.64-1.43-1.43-1.43Z"/>
29
+ </g>
30
+ </svg>
@@ -0,0 +1,41 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 70.92 72.11">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #0062bf;
7
+ }
8
+
9
+ .cls-2 {
10
+ fill: url(#radial-gradient);
11
+ }
12
+
13
+ .cls-3 {
14
+ fill: #0e4377;
15
+ }
16
+ </style>
17
+ <radialGradient id="radial-gradient" cx="38.88" cy="32.04" fx="38.88" fy="32.04" r="32.04" gradientUnits="userSpaceOnUse">
18
+ <stop offset="0" stop-color="#3381cc"/>
19
+ <stop offset=".51" stop-color="#317fcb"/>
20
+ <stop offset=".7" stop-color="#2a7bc9"/>
21
+ <stop offset=".83" stop-color="#1e74c6"/>
22
+ <stop offset=".94" stop-color="#0d6ac2"/>
23
+ <stop offset="1" stop-color="#0062bf"/>
24
+ </radialGradient>
25
+ </defs>
26
+ <g>
27
+ <path class="cls-3" d="M58.76,64.46c-.63-.63-.95-1.46-.95-2.29s.32-1.65.95-2.29c.63-.63,1.46-.95,2.29-.95s1.65.32,2.29.95c.63.63.95,1.46.95,2.29s-.32,1.65-.95,2.29l-1.07,1.07h-.34v-3.94c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2s.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v2.87l.41-.41c.52-.52.78-1.19.78-1.87s-.26-1.35-.78-1.87c-.52-.52-1.19-.78-1.87-.78s-1.35.26-1.87.78c-.52.52-.78,1.19-.78,1.87s.26,1.35.78,1.87l.41.41v-.58c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2s.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v1.66h-.34l-1.07-1.07h0ZM62.37,60.81h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0ZM60.03,63.1h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0ZM61.05,61.42c.19,0,.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v2.8h-.59v-2.8c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2ZM61.2,61.95h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0Z"/>
28
+ <path class="cls-3" d="M59.79,65.91h2.52c.17,0,.3.13.3.3h0c0,.16-.14.3-.3.3h-2.52c-.17,0-.3-.13-.3-.3h0c0-.16.14-.3.3-.3Z"/>
29
+ <path class="cls-3" d="M59.97,66.8h2.17c.14,0,.26.13.26.3h0c0,.16-.12.3-.26.3h-2.17c-.14,0-.26-.13-.26-.3h0c0-.16.12-.3.26-.3Z"/>
30
+ <path class="cls-3" d="M60.35,67.71h1.4c-.06.34-.35.59-.7.59s-.64-.25-.7-.59Z"/>
31
+ </g>
32
+ <path class="cls-1" d="M67.39,57.98c-1.61-1.81-3.92-2.85-6.35-2.85-2.08,0-4.08.76-5.64,2.14-2.68,2.38-3.49,6.1-2.32,9.28-6.51,2.61-13.64,3.32-20.69,1.98-9.74-1.86-18.17-7.4-23.74-15.59C2.63,44.05.74,33,3.48,22.61c.16-.6-.2-1.22-.8-1.37-.6-.16-1.22.2-1.37.8-2.9,11.02-.9,22.74,5.5,32.16,5.91,8.7,14.85,14.57,25.17,16.54,2.49.47,4.98.71,7.46.71,5.06,0,10.03-.99,14.7-2.9.17.24.36.48.56.71,1.61,1.81,3.92,2.85,6.35,2.85,2.08,0,4.08-.76,5.63-2.14,1.69-1.51,2.7-3.58,2.84-5.84.13-2.26-.62-4.44-2.13-6.14ZM66.1,67.39c-.25.34-.54.65-.86.94-.28.25-.58.47-.89.66-.03.02-.06.04-.08.05-.3.18-.61.32-.92.44-.05.02-.09.04-.14.05-.31.11-.63.2-.95.26-.05.01-.11.02-.16.03-.32.05-.64.08-.97.09-.08,0-.16,0-.24,0-.12,0-.23,0-.35-.02-.09,0-.19-.02-.28-.03-.12-.01-.23-.03-.35-.05-.09-.02-.18-.04-.28-.06-.11-.03-.23-.06-.34-.09-.09-.03-.18-.05-.27-.08-.11-.04-.22-.08-.33-.13-.09-.03-.17-.07-.26-.11-.11-.05-.22-.11-.33-.17-.08-.04-.16-.08-.24-.13-.11-.07-.22-.14-.33-.21-.07-.05-.14-.09-.21-.14-.12-.09-.23-.18-.34-.28-.06-.05-.11-.09-.17-.14-.16-.15-.32-.31-.47-.48-1.3-1.46-1.79-3.36-1.51-5.16.03-.2.07-.4.12-.59.3-1.18.94-2.28,1.92-3.14,0,0,0,0,0,0,.28-.25.58-.47.89-.66.03-.02.06-.04.09-.06.3-.18.61-.32.92-.44.05-.02.09-.04.14-.05.31-.11.63-.2.95-.26.05-.01.11-.02.16-.03.32-.05.64-.08.97-.09.08,0,.16,0,.24,0,.12,0,.23,0,.35.02.09,0,.19.02.28.03.12.01.23.03.35.05.09.02.18.04.28.06.11.03.23.06.34.09.09.03.18.05.27.08.11.04.22.08.33.13.09.03.17.07.26.11.11.05.22.11.33.16.08.04.16.08.24.13.11.07.22.14.33.21.07.05.14.09.21.14.12.09.23.18.34.28.06.05.11.09.17.14.16.15.32.31.47.48,1.01,1.14,1.53,2.54,1.59,3.95.05,1.41-.37,2.83-1.25,4Z"/>
33
+ <path class="cls-2" d="M38.88,0C21.18,0,6.84,14.34,6.84,32.04s14.34,32.04,32.04,32.04c4.21,0,8.22-.82,11.9-2.29.4-2.23,1.51-4.36,3.33-5.98,1.91-1.7,4.38-2.64,6.94-2.64h0c.59,0,1.18.06,1.76.16,5.04-5.66,8.11-13.12,8.11-21.29C70.92,14.34,56.57,0,38.88,0ZM54.84,27.12c0,.32-.26.58-.58.58h-.12c-.7,0-1.42-.24-2.07-.69-1.2-.82-2.67-1.18-4.13-1.01-2.78.32-5.02,2.57-5.33,5.35-.19,1.73.36,3.46,1.51,4.74,1.15,1.29,2.8,2.02,4.53,2.02,1.26,0,2.47-.39,3.5-1.12.58-.41,1.3-.63,2.1-.63.32,0,.58.26.58.58v7.48c0,.79-.64,1.43-1.43,1.43h-7.48c-.91,0-1.65.74-1.65,1.65,0,1.02.28,1.96.82,2.72.6.85.92,1.85.92,2.89,0,1.42-.61,2.79-1.67,3.74-1.08.96-2.47,1.41-3.92,1.25-2.29-.25-4.15-2.1-4.41-4.39-.14-1.22.15-2.4.83-3.41.57-.84.87-1.76.87-2.67v-.12c0-.91-.74-1.65-1.65-1.65h-7.48c-.79,0-1.43-.64-1.43-1.43v-7.48c0-.91-.74-1.65-1.65-1.65h-.26c-.85,0-1.7.28-2.46.82-.85.6-1.85.92-2.89.92-1.42,0-2.79-.61-3.74-1.67-.96-1.08-1.41-2.47-1.25-3.92.25-2.29,2.1-4.15,4.39-4.41,1.22-.14,2.4.15,3.41.83.84.57,1.76.87,2.67.87h.12c.91,0,1.65-.74,1.65-1.65v-7.48c0-.79.64-1.43,1.43-1.43h7.48c.91,0,1.65-.74,1.65-1.65,0-1.02-.28-1.96-.82-2.72-.6-.85-.92-1.85-.92-2.89,0-1.42.61-2.79,1.67-3.74,1.08-.96,2.47-1.41,3.92-1.25,2.29.25,4.15,2.1,4.41,4.39.14,1.22-.15,2.4-.83,3.41-.57.84-.87,1.76-.87,2.67v.12c0,.91.74,1.65,1.65,1.65h7.48c.79,0,1.43.64,1.43,1.43v7.48Z"/>
34
+ <g>
35
+ <path class="cls-3" d="M18.56,27.92c1.22-.14,2.4.15,3.41.83.84.57,1.76.87,2.67.87h.12c.7,0,1.29-.44,1.53-1.05-.23.12-.49.2-.76.2h-.12c-.91,0-1.84-.3-2.67-.87-1.01-.69-2.18-.97-3.41-.83-1.45.17-2.72.98-3.53,2.13.75-.68,1.7-1.15,2.76-1.27Z"/>
36
+ <path class="cls-3" d="M27.83,19.07h7.48c.7,0,1.29-.44,1.53-1.05-.23.12-.49.2-.76.2h-7.48c-.63,0-1.16.41-1.35.98.18-.08.37-.12.58-.12Z"/>
37
+ <path class="cls-3" d="M54.26,36.38c-.8,0-1.52.22-2.1.63-1.03.73-2.24,1.12-3.5,1.12-1.73,0-3.38-.74-4.53-2.02-1.15-1.29-1.7-3.01-1.51-4.74.12-1.06.52-2.05,1.13-2.88-1.03.97-1.74,2.27-1.9,3.74-.19,1.73.36,3.46,1.51,4.74,1.15,1.29,2.8,2.02,4.53,2.02,1.26,0,2.47-.39,3.5-1.12.58-.41,1.3-.63,2.1-.63.32,0,.58.26.58.58v7.48c0,.16-.03.3-.08.44.5-.22.85-.72.85-1.3v-7.48c0-.32-.26-.58-.58-.58Z"/>
38
+ <path class="cls-3" d="M44.28,47.52c0-.21.04-.41.12-.59-.52.28-.89.82-.89,1.45,0,1.02.28,1.96.82,2.72.6.85.92,1.85.92,2.89s-.33,2.06-.93,2.9c.01,0,.02-.01.03-.02,1.06-.95,1.67-2.31,1.67-3.74,0-1.04-.32-2.04-.92-2.89-.54-.76-.82-1.7-.82-2.72Z"/>
39
+ <path class="cls-3" d="M53.41,18.21h-7.48c-.91,0-1.65-.74-1.65-1.65v-.12c0-.91.3-1.84.87-2.67.69-1.01.97-2.18.83-3.41-.26-2.29-2.12-4.14-4.41-4.39-1.45-.16-2.84.28-3.92,1.25-.28.25-.52.53-.74.83,1.07-.94,2.45-1.38,3.88-1.22,2.29.25,4.15,2.1,4.41,4.39.14,1.22-.15,2.4-.83,3.41-.57.84-.87,1.76-.87,2.67v.12c0,.91.74,1.65,1.65,1.65h7.48c.79,0,1.43.64,1.43,1.43v7.2s.05,0,.07,0h.12c.32,0,.58-.26.58-.58v-7.48c0-.79-.64-1.43-1.43-1.43Z"/>
40
+ </g>
41
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="artwork" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 95.47 33.68">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #4d4d4d;
7
+ }
8
+ </style>
9
+ </defs>
10
+ <path class="cls-1" d="M0,17.34v-.09C0,8.22,6.81.82,16.57.82c5.99,0,9.58,2,12.53,4.9l-4.45,5.13c-2.45-2.22-4.95-3.59-8.13-3.59-5.36,0-9.21,4.45-9.21,9.9v.09c0,5.45,3.77,9.99,9.21,9.99,3.63,0,5.86-1.45,8.35-3.72l4.45,4.49c-3.27,3.5-6.9,5.67-13.03,5.67C6.95,33.68,0,26.47,0,17.34Z"/>
11
+ <path class="cls-1" d="M33.37,0h6.9v33.14h-6.9V0Z"/>
12
+ <path class="cls-1" d="M45.44,24.56v-15.75h6.9v13.57c0,3.27,1.54,4.95,4.18,4.95s4.31-1.68,4.31-4.95v-13.57h6.9v24.33h-6.9v-3.45c-1.59,2.04-3.63,3.9-7.13,3.9-5.22,0-8.26-3.45-8.26-9.03Z"/>
13
+ <path class="cls-1" d="M71.59,21.11v-.09c0-6.95,4.95-12.67,12.03-12.67,8.13,0,11.85,6.31,11.85,13.21,0,.54-.04,1.18-.09,1.82h-16.93c.68,3.13,2.86,4.77,5.95,4.77,2.32,0,4-.73,5.9-2.5l3.95,3.5c-2.27,2.81-5.54,4.54-9.94,4.54-7.31,0-12.71-5.13-12.71-12.57ZM88.75,19.07c-.41-3.09-2.22-5.18-5.13-5.18s-4.72,2.04-5.27,5.18h10.4Z"/>
14
+ </svg>
@@ -0,0 +1,60 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 95.47 111.25">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #0062bf;
7
+ }
8
+
9
+ .cls-2 {
10
+ fill: #4d4d4d;
11
+ }
12
+
13
+ .cls-3 {
14
+ fill: #fff;
15
+ }
16
+
17
+ .cls-4 {
18
+ fill: url(#radial-gradient);
19
+ }
20
+
21
+ .cls-5 {
22
+ fill: #0e4377;
23
+ }
24
+ </style>
25
+ <radialGradient id="radial-gradient" cx="51.15" cy="32.04" fx="51.15" fy="32.04" r="32.04" gradientUnits="userSpaceOnUse">
26
+ <stop offset="0" stop-color="#3381cc"/>
27
+ <stop offset=".51" stop-color="#317fcb"/>
28
+ <stop offset=".7" stop-color="#2a7bc9"/>
29
+ <stop offset=".83" stop-color="#1e74c6"/>
30
+ <stop offset=".94" stop-color="#0d6ac2"/>
31
+ <stop offset="1" stop-color="#0062bf"/>
32
+ </radialGradient>
33
+ </defs>
34
+ <g>
35
+ <path class="cls-4" d="M66.39,55.81c1.91-1.7,4.38-2.64,6.94-2.64h0c.59,0,1.18.06,1.76.16,5.04-5.66,8.11-13.12,8.11-21.29C83.19,14.34,68.85,0,51.15,0S19.11,14.34,19.11,32.04s14.34,32.04,32.04,32.04c4.21,0,8.22-.82,11.9-2.29.4-2.23,1.51-4.36,3.33-5.98Z"/>
36
+ <g>
37
+ <path class="cls-5" d="M71.04,64.46c-.63-.63-.95-1.46-.95-2.29s.32-1.65.95-2.29c.63-.63,1.46-.95,2.29-.95s1.65.32,2.29.95c.63.63.95,1.46.95,2.29s-.32,1.65-.95,2.29l-1.07,1.07h-.34v-3.94c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2s.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v2.87l.41-.41c.52-.52.78-1.19.78-1.87s-.26-1.35-.78-1.87c-.52-.52-1.19-.78-1.87-.78s-1.35.26-1.87.78c-.52.52-.78,1.19-.78,1.87s.26,1.35.78,1.87l.41.41v-.58c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2s.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v1.66h-.34l-1.07-1.07h0ZM74.65,60.81h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0ZM72.31,63.1h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0ZM73.33,61.42c.19,0,.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v2.8h-.59v-2.8c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2ZM73.48,61.95h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0Z"/>
38
+ <path class="cls-5" d="M72.07,65.91h2.52c.17,0,.3.13.3.3h0c0,.16-.14.3-.3.3h-2.52c-.17,0-.3-.13-.3-.3h0c0-.16.14-.3.3-.3Z"/>
39
+ <path class="cls-5" d="M72.24,66.8h2.17c.14,0,.26.13.26.3h0c0,.16-.12.3-.26.3h-2.17c-.14,0-.26-.13-.26-.3h0c0-.16.12-.3.26-.3Z"/>
40
+ <path class="cls-5" d="M72.63,67.71h1.4c-.06.34-.35.59-.7.59s-.64-.25-.7-.59Z"/>
41
+ </g>
42
+ <path class="cls-1" d="M79.67,57.98c-1.61-1.81-3.92-2.85-6.35-2.85-2.08,0-4.08.76-5.64,2.14-2.68,2.38-3.49,6.1-2.32,9.28-6.51,2.61-13.64,3.32-20.69,1.98-9.74-1.86-18.17-7.4-23.74-15.59-6.03-8.88-7.92-19.93-5.19-30.32.16-.6-.2-1.22-.8-1.37-.6-.16-1.22.2-1.37.8-2.9,11.02-.9,22.74,5.5,32.16,5.91,8.7,14.85,14.57,25.17,16.54,2.49.47,4.98.71,7.46.71,5.06,0,10.03-.99,14.7-2.9.17.24.36.48.56.71,1.61,1.81,3.92,2.85,6.35,2.85,2.08,0,4.08-.76,5.63-2.14,1.69-1.51,2.7-3.58,2.84-5.84.13-2.26-.62-4.44-2.13-6.14ZM78.38,67.39c-.25.34-.54.65-.86.94-.28.25-.58.47-.89.66-.03.02-.06.04-.08.05-.3.18-.61.32-.92.44-.05.02-.09.04-.14.05-.31.11-.63.2-.95.26-.05.01-.11.02-.16.03-.32.05-.64.08-.97.09-.08,0-.16,0-.24,0-.12,0-.23,0-.35-.02-.09,0-.19-.02-.28-.03-.12-.01-.23-.03-.35-.05-.09-.02-.18-.04-.28-.06-.11-.03-.23-.06-.34-.09-.09-.03-.18-.05-.27-.08-.11-.04-.22-.08-.33-.13-.09-.03-.17-.07-.26-.11-.11-.05-.22-.11-.33-.17-.08-.04-.16-.08-.24-.13-.11-.07-.22-.14-.33-.21-.07-.05-.14-.09-.21-.14-.12-.09-.23-.18-.34-.28-.06-.05-.11-.09-.17-.14-.16-.15-.32-.31-.47-.48-1.3-1.46-1.79-3.36-1.51-5.16.03-.2.07-.4.12-.59.3-1.18.94-2.28,1.92-3.14,0,0,0,0,0,0,.28-.25.58-.47.89-.66.03-.02.06-.04.09-.06.3-.18.61-.32.92-.44.05-.02.09-.04.14-.05.31-.11.63-.2.95-.26.05-.01.11-.02.16-.03.32-.05.64-.08.97-.09.08,0,.16,0,.24,0,.12,0,.23,0,.35.02.09,0,.19.02.28.03.12.01.23.03.35.05.09.02.18.04.28.06.11.03.23.06.34.09.09.03.18.05.27.08.11.04.22.08.33.13.09.03.17.07.26.11.11.05.22.11.33.16.08.04.16.08.24.13.11.07.22.14.33.21.07.05.14.09.21.14.12.09.23.18.34.28.06.05.11.09.17.14.16.15.32.31.47.48,1.01,1.14,1.53,2.54,1.59,3.95.05,1.41-.37,2.83-1.25,4Z"/>
43
+ <g>
44
+ <path id="Puzzle" class="cls-3" d="M60.22,26c1.46-.17,2.93.19,4.13,1.01.66.45,1.38.69,2.07.69h.12c.32,0,.58-.26.58-.58v-7.48c0-.79-.64-1.43-1.43-1.43h-7.48c-.91,0-1.65-.74-1.65-1.65v-.12c0-.91.3-1.84.87-2.67.69-1.01.97-2.18.83-3.41-.26-2.29-2.12-4.14-4.41-4.39-1.45-.16-2.84.28-3.92,1.25-1.06.95-1.67,2.31-1.67,3.74,0,1.04.32,2.04.92,2.89.54.76.82,1.7.82,2.72,0,.91-.74,1.65-1.65,1.65h-7.48c-.79,0-1.43.64-1.43,1.43v7.48c0,.91-.74,1.65-1.65,1.65h-.12c-.91,0-1.84-.3-2.67-.87-1.01-.69-2.18-.97-3.41-.83-2.29.26-4.14,2.12-4.39,4.41-.16,1.45.28,2.84,1.25,3.92.95,1.06,2.31,1.67,3.74,1.67,1.04,0,2.04-.32,2.89-.92.76-.54,1.61-.82,2.46-.82h.26c.91,0,1.65.74,1.65,1.65v7.48c0,.79.64,1.43,1.43,1.43h7.48c.91,0,1.65.74,1.65,1.65v.12c0,.91-.3,1.84-.87,2.67-.69,1-.97,2.18-.83,3.41.26,2.29,2.12,4.14,4.41,4.39,1.45.16,2.84-.28,3.92-1.25,1.06-.95,1.67-2.31,1.67-3.74,0-1.04-.32-2.04-.92-2.89-.54-.76-.82-1.7-.82-2.72,0-.91.74-1.65,1.65-1.65h7.48c.79,0,1.43-.64,1.43-1.43v-7.48c0-.32-.26-.58-.58-.58-.8,0-1.52.22-2.1.63-1.03.73-2.24,1.12-3.5,1.12-1.73,0-3.38-.74-4.53-2.02-1.15-1.29-1.7-3.01-1.51-4.74.31-2.78,2.55-5.03,5.33-5.35Z"/>
45
+ <g>
46
+ <path class="cls-5" d="M30.84,27.92c1.22-.14,2.4.15,3.41.83.84.57,1.76.87,2.67.87h.12c.7,0,1.29-.44,1.53-1.05-.23.12-.49.2-.76.2h-.12c-.91,0-1.84-.3-2.67-.87-1.01-.69-2.18-.97-3.41-.83-1.45.17-2.72.98-3.53,2.13.75-.68,1.7-1.15,2.76-1.27Z"/>
47
+ <path class="cls-5" d="M40.11,19.07h7.48c.7,0,1.29-.44,1.53-1.05-.23.12-.49.2-.76.2h-7.48c-.63,0-1.16.41-1.35.98.18-.08.37-.12.58-.12Z"/>
48
+ <path class="cls-5" d="M66.53,36.38c-.8,0-1.52.22-2.1.63-1.03.73-2.24,1.12-3.5,1.12-1.73,0-3.38-.74-4.53-2.02-1.15-1.29-1.7-3.01-1.51-4.74.12-1.06.52-2.05,1.13-2.88-1.03.97-1.74,2.27-1.9,3.74-.19,1.73.36,3.46,1.51,4.74,1.15,1.29,2.8,2.02,4.53,2.02,1.26,0,2.47-.39,3.5-1.12.58-.41,1.3-.63,2.1-.63.32,0,.58.26.58.58v7.48c0,.16-.03.3-.08.44.5-.22.85-.72.85-1.3v-7.48c0-.32-.26-.58-.58-.58Z"/>
49
+ <path class="cls-5" d="M56.56,47.52c0-.21.04-.41.12-.59-.52.28-.89.82-.89,1.45,0,1.02.28,1.96.82,2.72.6.85.92,1.85.92,2.89s-.33,2.06-.93,2.9c.01,0,.02-.01.03-.02,1.06-.95,1.67-2.31,1.67-3.74,0-1.04-.32-2.04-.92-2.89-.54-.76-.82-1.7-.82-2.72Z"/>
50
+ <path class="cls-5" d="M65.69,18.21h-7.48c-.91,0-1.65-.74-1.65-1.65v-.12c0-.91.3-1.84.87-2.67.69-1.01.97-2.18.83-3.41-.26-2.29-2.12-4.14-4.41-4.39-1.45-.16-2.84.28-3.92,1.25-.28.25-.52.53-.74.83,1.07-.94,2.45-1.38,3.88-1.22,2.29.25,4.15,2.1,4.41,4.39.14,1.22-.15,2.4-.83,3.41-.57.84-.87,1.76-.87,2.67v.12c0,.91.74,1.65,1.65,1.65h7.48c.79,0,1.43.64,1.43,1.43v7.2s.05,0,.07,0h.12c.32,0,.58-.26.58-.58v-7.48c0-.79-.64-1.43-1.43-1.43Z"/>
51
+ </g>
52
+ </g>
53
+ </g>
54
+ <g>
55
+ <path class="cls-2" d="M0,94.91v-.09c0-9.03,6.81-16.43,16.57-16.43,5.99,0,9.58,2,12.53,4.9l-4.45,5.13c-2.45-2.22-4.95-3.59-8.13-3.59-5.36,0-9.21,4.45-9.21,9.9v.09c0,5.45,3.77,9.99,9.21,9.99,3.63,0,5.86-1.45,8.35-3.72l4.45,4.49c-3.27,3.5-6.9,5.67-13.03,5.67-9.35,0-16.3-7.22-16.3-16.34Z"/>
56
+ <path class="cls-2" d="M33.37,77.57h6.9v33.14h-6.9v-33.14Z"/>
57
+ <path class="cls-2" d="M45.44,102.12v-15.75h6.9v13.57c0,3.27,1.54,4.95,4.18,4.95s4.31-1.68,4.31-4.95v-13.57h6.9v24.33h-6.9v-3.45c-1.59,2.04-3.63,3.9-7.13,3.9-5.22,0-8.26-3.45-8.26-9.03Z"/>
58
+ <path class="cls-2" d="M71.59,98.67v-.09c0-6.95,4.95-12.67,12.03-12.67,8.13,0,11.85,6.31,11.85,13.21,0,.54-.04,1.18-.09,1.82h-16.93c.68,3.13,2.86,4.77,5.95,4.77,2.32,0,4-.73,5.9-2.5l3.95,3.5c-2.27,2.81-5.54,4.54-9.94,4.54-7.31,0-12.71-5.13-12.71-12.57ZM88.75,96.63c-.41-3.09-2.22-5.18-5.13-5.18s-4.72,2.04-5.27,5.18h10.4Z"/>
59
+ </g>
60
+ </svg>
@@ -0,0 +1,100 @@
1
+ import { b as baseExtremum, a as baseGt, i as isIterateeCall } from "./_baseExtremum-B1o1zHjR.js";
2
+ import { b as baseIteratee } from "./_baseIteratee-p6Nj07-n.js";
3
+ import { s as setToString, o as overRest, b as baseFlatten } from "./_baseFlatten-D4huXoEI.js";
4
+ import { a as arrayMap, b as baseGet } from "./_baseGet-BSK_nnoz.js";
5
+ import { b as baseEach } from "./_createAggregator-BpVy5xMi.js";
6
+ import { i as isArrayLike, f as baseUnary } from "./_getTag-D3ToyefI.js";
7
+ import { i as isSymbol } from "./isSymbol-Xd2FsJyp.js";
8
+ import { i as identity } from "./identity-CPGTqrE4.js";
9
+ import { i as isArray } from "./_Map-kgDsDYxq.js";
10
+ function baseRest(func, start) {
11
+ return setToString(overRest(func, start, identity), func + "");
12
+ }
13
+ function baseMap(collection, iteratee) {
14
+ var index = -1, result = isArrayLike(collection) ? Array(collection.length) : [];
15
+ baseEach(collection, function(value, key, collection2) {
16
+ result[++index] = iteratee(value, key, collection2);
17
+ });
18
+ return result;
19
+ }
20
+ function maxBy(array, iteratee) {
21
+ return array && array.length ? baseExtremum(array, baseIteratee(iteratee), baseGt) : void 0;
22
+ }
23
+ function baseSortBy(array, comparer) {
24
+ var length = array.length;
25
+ array.sort(comparer);
26
+ while (length--) {
27
+ array[length] = array[length].value;
28
+ }
29
+ return array;
30
+ }
31
+ function compareAscending(value, other) {
32
+ if (value !== other) {
33
+ var valIsDefined = value !== void 0, valIsNull = value === null, valIsReflexive = value === value, valIsSymbol = isSymbol(value);
34
+ var othIsDefined = other !== void 0, othIsNull = other === null, othIsReflexive = other === other, othIsSymbol = isSymbol(other);
35
+ if (!othIsNull && !othIsSymbol && !valIsSymbol && value > other || valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol || valIsNull && othIsDefined && othIsReflexive || !valIsDefined && othIsReflexive || !valIsReflexive) {
36
+ return 1;
37
+ }
38
+ if (!valIsNull && !valIsSymbol && !othIsSymbol && value < other || othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol || othIsNull && valIsDefined && valIsReflexive || !othIsDefined && valIsReflexive || !othIsReflexive) {
39
+ return -1;
40
+ }
41
+ }
42
+ return 0;
43
+ }
44
+ function compareMultiple(object, other, orders) {
45
+ var index = -1, objCriteria = object.criteria, othCriteria = other.criteria, length = objCriteria.length, ordersLength = orders.length;
46
+ while (++index < length) {
47
+ var result = compareAscending(objCriteria[index], othCriteria[index]);
48
+ if (result) {
49
+ if (index >= ordersLength) {
50
+ return result;
51
+ }
52
+ var order = orders[index];
53
+ return result * (order == "desc" ? -1 : 1);
54
+ }
55
+ }
56
+ return object.index - other.index;
57
+ }
58
+ function baseOrderBy(collection, iteratees, orders) {
59
+ if (iteratees.length) {
60
+ iteratees = arrayMap(iteratees, function(iteratee) {
61
+ if (isArray(iteratee)) {
62
+ return function(value) {
63
+ return baseGet(value, iteratee.length === 1 ? iteratee[0] : iteratee);
64
+ };
65
+ }
66
+ return iteratee;
67
+ });
68
+ } else {
69
+ iteratees = [identity];
70
+ }
71
+ var index = -1;
72
+ iteratees = arrayMap(iteratees, baseUnary(baseIteratee));
73
+ var result = baseMap(collection, function(value, key, collection2) {
74
+ var criteria = arrayMap(iteratees, function(iteratee) {
75
+ return iteratee(value);
76
+ });
77
+ return { "criteria": criteria, "index": ++index, "value": value };
78
+ });
79
+ return baseSortBy(result, function(object, other) {
80
+ return compareMultiple(object, other, orders);
81
+ });
82
+ }
83
+ var sortBy = baseRest(function(collection, iteratees) {
84
+ if (collection == null) {
85
+ return [];
86
+ }
87
+ var length = iteratees.length;
88
+ if (length > 1 && isIterateeCall(collection, iteratees[0], iteratees[1])) {
89
+ iteratees = [];
90
+ } else if (length > 2 && isIterateeCall(iteratees[0], iteratees[1], iteratees[2])) {
91
+ iteratees = [iteratees[0]];
92
+ }
93
+ return baseOrderBy(collection, baseFlatten(iteratees), []);
94
+ });
95
+ export {
96
+ baseOrderBy as a,
97
+ baseMap as b,
98
+ maxBy as m,
99
+ sortBy as s
100
+ };
@@ -0,0 +1,8 @@
1
+ import { b as baseIteratee } from "./_baseIteratee-p6Nj07-n.js";
2
+ import { b as baseSum } from "./_baseSum-D0WC1dN0.js";
3
+ function sumBy(array, iteratee) {
4
+ return array && array.length ? baseSum(array, baseIteratee(iteratee)) : 0;
5
+ }
6
+ export {
7
+ sumBy as s
8
+ };