bfg-common 1.4.125 → 1.4.126

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 (993) hide show
  1. package/.eslintrc.js +21 -21
  2. package/.idea/inspectionProfiles/Project_Default.xml +50 -50
  3. package/.idea/modules.xml +7 -7
  4. package/.idea/prettier.xml +5 -5
  5. package/.idea/uikit.iml +11 -11
  6. package/.idea/vcs.xml +5 -5
  7. package/.prettierrc +4 -4
  8. package/PROJECT_STRUCTURE.md +42 -42
  9. package/README.md +42 -42
  10. package/assets/img/icons/icon-hcs.svg +3 -3
  11. package/assets/img/icons/icon-life-m-dark.svg +3 -3
  12. package/assets/img/icons/icon-life-m-light.svg +3 -3
  13. package/assets/img/icons/icon-ro-dark.svg +1 -1
  14. package/assets/img/icons/icon-ro-light.svg +2 -2
  15. package/assets/img/icons/icons-sprite-dark-5.svg +4 -4
  16. package/assets/img/icons/icons-sprite-dark-6.svg +6 -6
  17. package/assets/img/icons/icons-sprite-light-5.svg +4 -4
  18. package/assets/img/icons/icons-sprite-light-6.svg +6 -6
  19. package/assets/img/icons/info.svg +8 -8
  20. package/assets/img/icons/vc.svg +52 -52
  21. package/assets/img/logo copy.svg +50 -50
  22. package/assets/img/logo.svg +51 -51
  23. package/assets/localization/local_be.json +2584 -2584
  24. package/assets/localization/local_en.json +2588 -2588
  25. package/assets/localization/local_hy.json +2588 -2588
  26. package/assets/localization/local_kk.json +2587 -2587
  27. package/assets/localization/local_ru.json +2590 -2590
  28. package/assets/localization/local_zh.json +2586 -2586
  29. package/assets/scss/clarity/clr-ui.min.css +8 -8
  30. package/assets/scss/common/animations.scss +28 -28
  31. package/assets/scss/common/global.scss +195 -195
  32. package/assets/scss/common/icons/icons-1.scss +244 -244
  33. package/assets/scss/common/icons/icons-2.scss +263 -263
  34. package/assets/scss/common/icons/icons-3.scss +250 -250
  35. package/assets/scss/common/icons/icons-4.scss +273 -273
  36. package/assets/scss/common/icons/icons-5.scss +446 -446
  37. package/assets/scss/common/icons/icons-6.scss +144 -144
  38. package/assets/scss/common/icons/icons.scss +16 -16
  39. package/assets/scss/common/icons/lib-icons.scss +32 -32
  40. package/assets/scss/common/mixins.scss +39 -39
  41. package/assets/scss/common/normalize.scss +351 -351
  42. package/assets/scss/common/theme.scss +238 -238
  43. package/assets/scss/common/utilities.scss +20 -20
  44. package/assets/scss/common/variables.scss +44 -44
  45. package/assets/scss/components/auth.scss +177 -177
  46. package/assets/scss/main.scss +15 -15
  47. package/components/atoms/DiagramIcon.vue +371 -371
  48. package/components/atoms/TheIcon.vue +3249 -3249
  49. package/components/atoms/TheIcon2.vue +1368 -1368
  50. package/components/atoms/TheIconOld.vue +2444 -2444
  51. package/components/atoms/alert/Alert.vue +96 -96
  52. package/components/atoms/alert/Notification.vue +171 -171
  53. package/components/atoms/alert/lib/Alert.spec.ts +38 -38
  54. package/components/atoms/alert/lib/Notification.spec.ts +34 -34
  55. package/components/atoms/alert/lib/models/enums.ts +12 -12
  56. package/components/atoms/alert/lib/models/interfaces.ts +27 -27
  57. package/components/atoms/alert/lib/models/types.ts +11 -11
  58. package/components/atoms/autocomplete/Autocomplete.vue +239 -239
  59. package/components/atoms/collapse/CollapseNav.vue +164 -164
  60. package/components/atoms/collapse/CollapseNavItem.vue +218 -218
  61. package/components/atoms/collapse/lib/models/interfaces.ts +11 -11
  62. package/components/atoms/combobox/Combobox.vue +152 -152
  63. package/components/atoms/datepicker/Datepicker.vue +630 -630
  64. package/components/atoms/datepicker/lib/config/allShortMonths.ts +103 -103
  65. package/components/atoms/datepicker/lib/config/datapicker.ts +43 -43
  66. package/components/atoms/datepicker/lib/models/interfaces.ts +9 -9
  67. package/components/atoms/dropdown/Portlet.vue +114 -114
  68. package/components/atoms/dropdown/dropdown/Dropdown.vue +156 -156
  69. package/components/atoms/dropdown/dropdown/lib/models/interfaces.ts +9 -9
  70. package/components/atoms/dropdown/lib/Portlet.spec.ts +26 -26
  71. package/components/atoms/dropdown/tree/Tree.vue +137 -137
  72. package/components/atoms/dropdown/tree/lib/models/interfaces.ts +11 -11
  73. package/components/atoms/input/Search.vue +16 -16
  74. package/components/atoms/lib/models/interfaces.ts +14 -14
  75. package/components/atoms/list/SelectList.vue +63 -63
  76. package/components/atoms/list/SimpleList.vue +29 -29
  77. package/components/atoms/list/dragDropList/DragDropList.vue +139 -139
  78. package/components/atoms/list/dragDropList/lib/config/events.ts +4 -4
  79. package/components/atoms/loader/BarLoader.vue +27 -27
  80. package/components/atoms/loader/Loader.vue +30 -30
  81. package/components/atoms/loader/PreLoader.vue +38 -38
  82. package/components/atoms/loader/lib/Preloader.spec.ts +24 -24
  83. package/components/atoms/modal/Modal.vue +248 -248
  84. package/components/atoms/modal/bySteps/lib/BySteps.spec.ts +66 -66
  85. package/components/atoms/modal/byStepsSecond/ByStepsSecond.vue +184 -184
  86. package/components/atoms/modal/lib/Modal.spec.ts +55 -55
  87. package/components/atoms/nav/NavBar.vue +139 -139
  88. package/components/atoms/nav/VerticalNavBar.vue +90 -90
  89. package/components/atoms/nav/lib/NavBar.spec.ts +34 -34
  90. package/components/atoms/nav/lib/models/interfaces.ts +6 -6
  91. package/components/atoms/notificationBar/NotificationBar.vue +178 -178
  92. package/components/atoms/notificationBar/lib/models/enums.ts +13 -13
  93. package/components/atoms/notificationBar/lib/models/interfaces.ts +6 -6
  94. package/components/atoms/notificationBar/lib/models/types.ts +1 -1
  95. package/components/atoms/perPage/PerPage.vue +53 -53
  96. package/components/atoms/popover/Popover.vue +60 -60
  97. package/components/atoms/popup/SimplePopup.vue +91 -91
  98. package/components/atoms/select/TheSelect.vue +177 -177
  99. package/components/atoms/select/lib/models/interfaces.ts +5 -5
  100. package/components/atoms/stack/StackContent.vue +63 -63
  101. package/components/atoms/step/VerticalStep.vue +105 -105
  102. package/components/atoms/step/lib/VerticalStep.spec.ts +68 -68
  103. package/components/atoms/step/lib/models/verticalStepItem.ts +7 -7
  104. package/components/atoms/switch/Switch.vue +111 -111
  105. package/components/atoms/table/compact/Compact.vue +526 -526
  106. package/components/atoms/table/compact/lib/models/interfaces.ts +10 -10
  107. package/components/atoms/table/dataGrid/DataGrid.vue +1617 -1617
  108. package/components/atoms/table/dataGrid/DataGridColumnSwitch.vue +216 -216
  109. package/components/atoms/table/dataGrid/DataGridPage.vue +196 -196
  110. package/components/atoms/table/dataGrid/DataGridPagination.vue +89 -89
  111. package/components/atoms/table/dataGrid/lib/DataGrid.spec.ts +61 -61
  112. package/components/atoms/table/dataGrid/lib/config/itemsPerPage.ts +20 -20
  113. package/components/atoms/table/dataGrid/lib/config/settingsTable.ts +67 -67
  114. package/components/atoms/table/dataGrid/lib/models/interfaces.ts +41 -41
  115. package/components/atoms/table/dataGrid/lib/models/types.ts +5 -5
  116. package/components/atoms/table/dataGrid/lib/utils/constructDataTable.ts +36 -36
  117. package/components/atoms/table/info/Info.vue +61 -61
  118. package/components/atoms/table/info/lib/models/interfaces.ts +9 -9
  119. package/components/atoms/table/simpleEvent/SimpleEvent.vue +98 -98
  120. package/components/atoms/table/simpleEvent/lib/models/interfaces.ts +9 -9
  121. package/components/atoms/table/simpleInfo/SimpleInfo.vue +73 -73
  122. package/components/atoms/table/simpleInfo/lib/models/interfaces.ts +5 -5
  123. package/components/atoms/table/simpleTable/SimpleTable.vue +300 -300
  124. package/components/atoms/table/simpleTable/lib/models/interfaces.ts +12 -12
  125. package/components/atoms/tabs/Tabs.vue +214 -214
  126. package/components/atoms/tabs/VerticalTabs.vue +88 -88
  127. package/components/atoms/tabs/lib/models/interfaces.ts +5 -5
  128. package/components/atoms/tabs/lib/models/types.ts +1 -1
  129. package/components/atoms/tooltip/Signpost.vue +227 -227
  130. package/components/atoms/tooltip/Text.vue +37 -37
  131. package/components/atoms/tooltip/Tooltip.vue +57 -57
  132. package/components/atoms/tooltip/TooltipError.vue +113 -113
  133. package/components/atoms/tooltip/lib/models/interfaces.ts +4 -4
  134. package/components/atoms/wizard/Wizard.vue +311 -311
  135. package/components/atoms/wizard/lib/models/enums.ts +8 -8
  136. package/components/atoms/wizard/lib/models/interfaces.ts +49 -49
  137. package/components/atoms/wizard/lib/utils/utils.ts +804 -804
  138. package/components/atoms/wizard/step/Step.vue +87 -87
  139. package/components/common/BadBrowser.vue +118 -118
  140. package/components/common/accordion/Accordion.vue +177 -177
  141. package/components/common/accordion/Recursion.vue +218 -218
  142. package/components/common/accordion/lib/models/enums.ts +5 -5
  143. package/components/common/accordion/lib/models/interfaces.ts +16 -16
  144. package/components/common/accordion/lib/models/types.ts +1 -1
  145. package/components/common/accordion/lib/utils/accordion.ts +31 -31
  146. package/components/common/adapterManager/AdapterManager.vue +828 -828
  147. package/components/common/adapterManager/AddAdapterModal.vue +561 -561
  148. package/components/common/adapterManager/AddAdapterWarningModal.vue +82 -82
  149. package/components/common/adapterManager/NoActiveAdaptersModal.vue +61 -61
  150. package/components/common/adapterManager/NoConnectedActiveAdaptersModal.vue +61 -61
  151. package/components/common/adapterManager/lib/config/index.ts +19 -19
  152. package/components/common/adapterManager/ui/NoSelectedAdapter.vue +39 -39
  153. package/components/common/adapterManager/ui/SecondTitle.vue +37 -37
  154. package/components/common/adapterManager/ui/actions/ActionsBar.vue +95 -95
  155. package/components/common/adapterManager/ui/actions/AddAdapterButton.vue +30 -30
  156. package/components/common/adapterManager/ui/actions/MoveDownAdapterButton.vue +35 -35
  157. package/components/common/adapterManager/ui/actions/MoveUpAdapterButton.vue +35 -35
  158. package/components/common/adapterManager/ui/actions/RemoveAdapterButton.vue +37 -37
  159. package/components/common/adapterManager/ui/actions/VerticalSeparator.vue +10 -10
  160. package/components/common/adapterManager/ui/table/Adapters.vue +92 -92
  161. package/components/common/adapterManager/ui/table/Header.vue +93 -93
  162. package/components/common/adapterManager/ui/table/Table.vue +162 -162
  163. package/components/common/adapterManager/ui/table/lib/models/types.ts +1 -1
  164. package/components/common/browse/Browse.vue +240 -240
  165. package/components/common/browse/blocks/Container.vue +105 -105
  166. package/components/common/browse/blocks/contents/Files.vue +72 -72
  167. package/components/common/browse/blocks/info/Size.vue +17 -17
  168. package/components/common/browse/blocks/info/Text.vue +16 -16
  169. package/components/common/browse/blocks/lib/models/types.ts +1 -1
  170. package/components/common/browse/lib/models/interfaces.ts +5 -5
  171. package/components/common/context/Context.vue +99 -99
  172. package/components/common/context/lib/Context.spec.ts +20 -20
  173. package/components/common/context/lib/ContextRecursion.spec.ts +55 -55
  174. package/components/common/context/lib/models/interfaces.ts +27 -27
  175. package/components/common/context/recursion/lib/models/interfaces.ts +2 -2
  176. package/components/common/countdownTimer/CountdownTimer.vue +50 -50
  177. package/components/common/details/DetailsItem.vue +109 -109
  178. package/components/common/details/DetailsList.vue +23 -23
  179. package/components/common/details/lib/models/interfaces.ts +11 -11
  180. package/components/common/diagramMain/Diagram.vue +234 -234
  181. package/components/common/diagramMain/DiagramMain.vue +871 -871
  182. package/components/common/diagramMain/Header.vue +211 -211
  183. package/components/common/diagramMain/Highlights.vue +124 -124
  184. package/components/common/diagramMain/adapter/Adapter.vue +123 -123
  185. package/components/common/diagramMain/adapter/AdapterItem.vue +287 -287
  186. package/components/common/diagramMain/adapter/AdapterItems.vue +61 -61
  187. package/components/common/diagramMain/adapter/Block.vue +48 -48
  188. package/components/common/diagramMain/adapter/Contents.vue +133 -133
  189. package/components/common/diagramMain/adapter/Lines.vue +58 -58
  190. package/components/common/diagramMain/adapter/SecondBlock.vue +49 -49
  191. package/components/common/diagramMain/lib/config/index.ts +70 -70
  192. package/components/common/diagramMain/lib/config/initial.ts +50 -50
  193. package/components/common/diagramMain/lib/models/enums.ts +44 -44
  194. package/components/common/diagramMain/lib/models/interfaces.ts +724 -724
  195. package/components/common/diagramMain/lib/models/types.ts +16 -16
  196. package/components/common/diagramMain/lib/utils/utils.ts +278 -278
  197. package/components/common/diagramMain/modals/ManagePhysicalAdaptersModal.vue +330 -330
  198. package/components/common/diagramMain/modals/Modals.vue +442 -442
  199. package/components/common/diagramMain/modals/editSettings/ConfirmTeamingSettingsModal.vue +40 -40
  200. package/components/common/diagramMain/modals/editSettings/EditSettings.vue +497 -497
  201. package/components/common/diagramMain/modals/editSettings/EditSettingsModal.vue +812 -812
  202. package/components/common/diagramMain/modals/editSettings/tabs/NetworkProperties.vue +214 -214
  203. package/components/common/diagramMain/modals/editSettings/tabs/Security.vue +189 -189
  204. package/components/common/diagramMain/modals/editSettings/tabs/SwitchProperties.vue +163 -163
  205. package/components/common/diagramMain/modals/editSettings/tabs/TeamingFailover.vue +175 -175
  206. package/components/common/diagramMain/modals/editSettings/tabs/TrafficShaping.vue +398 -398
  207. package/components/common/diagramMain/modals/editSettings/tabs/port/IpvFourSettings.vue +346 -346
  208. package/components/common/diagramMain/modals/editSettings/tabs/port/PortProperties.vue +205 -205
  209. package/components/common/diagramMain/modals/lib/config/adapterModal.ts +126 -126
  210. package/components/common/diagramMain/modals/lib/config/diagramConfig.ts +23 -23
  211. package/components/common/diagramMain/modals/lib/config/index.ts +49 -49
  212. package/components/common/diagramMain/modals/lib/config/initial.ts +180 -180
  213. package/components/common/diagramMain/modals/lib/config/networkModal.ts +331 -331
  214. package/components/common/diagramMain/modals/lib/config/portModal.ts +214 -214
  215. package/components/common/diagramMain/modals/lib/config/switchModal.ts +224 -224
  216. package/components/common/diagramMain/modals/lib/config/vCenterModal.ts +34 -34
  217. package/components/common/diagramMain/modals/lib/config/vmKernelAdapter.ts +90 -90
  218. package/components/common/diagramMain/modals/lib/mappers/mappers.ts +87 -87
  219. package/components/common/diagramMain/modals/lib/utils/index.ts +24 -24
  220. package/components/common/diagramMain/modals/migrateVmkernelAdapter/MigrateVmkernelAdapter.vue +537 -537
  221. package/components/common/diagramMain/modals/migrateVmkernelAdapter/lib/config/steps.ts +114 -114
  222. package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/ConnectionSettings.vue +169 -169
  223. package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/SelectVmkernelAdapter.vue +159 -159
  224. package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/VmkernelAdapterReadyComplete.vue +49 -49
  225. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/common.ts +14 -14
  226. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/connectionSettings.ts +137 -137
  227. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/selectVmkernelAdapter.ts +52 -52
  228. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/validations.ts +19 -19
  229. package/components/common/diagramMain/modals/remove/RemoveModal.vue +234 -234
  230. package/components/common/diagramMain/modals/viewSettings/Info.vue +123 -123
  231. package/components/common/diagramMain/modals/viewSettings/ViewSettings.vue +190 -190
  232. package/components/common/diagramMain/modals/viewSettings/ViewSettingsModal.vue +93 -93
  233. package/components/common/diagramMain/network/Block.vue +64 -64
  234. package/components/common/diagramMain/network/Contents.vue +353 -353
  235. package/components/common/diagramMain/network/Lines.vue +76 -76
  236. package/components/common/diagramMain/network/Network.vue +133 -133
  237. package/components/common/diagramMain/network/NoNetwork.vue +61 -61
  238. package/components/common/diagramMain/network/SecondBlock.vue +60 -60
  239. package/components/common/diagramMain/port/Port.vue +405 -405
  240. package/components/common/diagramMain/port/Ports.vue +47 -47
  241. package/components/common/diagramMain/switch/Switch.vue +82 -82
  242. package/components/common/diagramMain/switch/SwitchSelected.vue +35 -35
  243. package/components/common/feedback/Buttons.vue +229 -229
  244. package/components/common/feedback/Feedback.vue +268 -268
  245. package/components/common/feedback/Message.vue +518 -518
  246. package/components/common/feedback/VisitPortal.vue +62 -62
  247. package/components/common/feedback/lib/config/drawingPanel.ts +31 -31
  248. package/components/common/feedback/lib/config/feedbackTabs.ts +26 -26
  249. package/components/common/feedback/lib/models/interfaces.ts +20 -20
  250. package/components/common/feedback/lib/models/types.ts +1 -1
  251. package/components/common/graph/Graph.vue +110 -110
  252. package/components/common/graph/lib/utils/renderGraph.ts +389 -389
  253. package/components/common/headline/Headline.vue +32 -32
  254. package/components/common/help/navbar/left/Left.vue +165 -165
  255. package/components/common/help/navbar/left/lib/models/interfaces.ts +6 -6
  256. package/components/common/help/navbar/left/lib/utils/constructAccordion.ts +27 -27
  257. package/components/common/help/navbar/right/Right.vue +149 -149
  258. package/components/common/help/navbar/right/lib/models/interfaces.ts +5 -5
  259. package/components/common/home/Card.vue +63 -63
  260. package/components/common/home/ResourceBlock.vue +117 -117
  261. package/components/common/home/StatusContent.vue +47 -47
  262. package/components/common/home/alertsTable/AlertsTable.vue +114 -114
  263. package/components/common/home/alertsTable/lib/config/config.ts +61 -61
  264. package/components/common/home/alertsTable/lib/models/enums.ts +11 -11
  265. package/components/common/home/alertsTable/lib/models/interfaces.ts +19 -19
  266. package/components/common/home/alertsTable/lib/models/types.ts +18 -18
  267. package/components/common/home/lib/config/configResourceMeterBlock.ts +25 -25
  268. package/components/common/home/lib/models/interfaces.ts +59 -59
  269. package/components/common/home/lib/models/types.ts +18 -18
  270. package/components/common/home/servicesTable/ServicesTable.vue +80 -80
  271. package/components/common/home/servicesTable/lib/config/config.ts +62 -62
  272. package/components/common/layout/theHeader/TheHeader.vue +112 -112
  273. package/components/common/layout/theHeader/TheHeaderNew.vue +304 -304
  274. package/components/common/layout/theHeader/TheHeaderOld.vue +258 -258
  275. package/components/common/layout/theHeader/ThemeSwitch.vue +66 -66
  276. package/components/common/layout/theHeader/feedback/Feedback.vue +104 -104
  277. package/components/common/layout/theHeader/feedback/FeedbackNew.vue +63 -63
  278. package/components/common/layout/theHeader/feedback/FeedbackOld.vue +73 -73
  279. package/components/common/layout/theHeader/helpMenu/About.vue +110 -110
  280. package/components/common/layout/theHeader/helpMenu/HelpMenu.vue +45 -45
  281. package/components/common/layout/theHeader/helpMenu/helpMenuNew/HelpMenuNew.vue +181 -181
  282. package/components/common/layout/theHeader/helpMenu/helpMenuNew/lib/config/dropMenu.ts +28 -28
  283. package/components/common/layout/theHeader/helpMenu/helpMenuOld/HelpMenuOld.vue +69 -69
  284. package/components/common/layout/theHeader/helpMenu/helpMenuOld/lib/config/dropMenu.ts +22 -22
  285. package/components/common/layout/theHeader/helpMenu/helpMenuOld/lib/models/types.ts +1 -1
  286. package/components/common/layout/theHeader/lib/models/enums.ts +9 -9
  287. package/components/common/layout/theHeader/lib/models/types.ts +5 -5
  288. package/components/common/layout/theHeader/lib/utils/localization.ts +32 -32
  289. package/components/common/layout/theHeader/modals/Reconnect.vue +98 -98
  290. package/components/common/layout/theHeader/modals/RedirectLogin.vue +60 -60
  291. package/components/common/layout/theHeader/userMenu/UserMenu.vue +101 -101
  292. package/components/common/layout/theHeader/userMenu/lib/models/interfaces.ts +32 -32
  293. package/components/common/layout/theHeader/userMenu/modals/changePassword/ChangePassword.vue +210 -210
  294. package/components/common/layout/theHeader/userMenu/modals/changePassword/lib/config/form.ts +31 -31
  295. package/components/common/layout/theHeader/userMenu/modals/changePassword/lib/models/interfaces.ts +12 -12
  296. package/components/common/layout/theHeader/userMenu/modals/preferences/Preferences.vue +70 -70
  297. package/components/common/layout/theHeader/userMenu/modals/preferences/PreferencesNew.vue +93 -93
  298. package/components/common/layout/theHeader/userMenu/modals/preferences/PreferencesOld.vue +122 -122
  299. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/ChangeLanguage.vue +110 -110
  300. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/ChangeLanguageNew.vue +89 -89
  301. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/ChangeLanguageOld.vue +93 -93
  302. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/lib/config/radioOptions.ts +22 -22
  303. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/lib/models/enums.ts +9 -9
  304. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/lib/models/interfaces.ts +11 -11
  305. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/lib/models/types.ts +1 -1
  306. package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/DefaultConsole.vue +42 -42
  307. package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/DefaultConsoleNew.vue +52 -52
  308. package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/DefaultConsoleOld.vue +48 -48
  309. package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/lib/config/consoleOptions.ts +30 -30
  310. package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/lib/models/interfaces.ts +5 -5
  311. package/components/common/layout/theHeader/userMenu/modals/preferences/inventory/Inventory.vue +32 -32
  312. package/components/common/layout/theHeader/userMenu/modals/preferences/inventory/InventoryNew.vue +35 -35
  313. package/components/common/layout/theHeader/userMenu/modals/preferences/inventory/InventoryOld.vue +31 -31
  314. package/components/common/layout/theHeader/userMenu/modals/preferences/lib/config/preferencesTabs.ts +49 -49
  315. package/components/common/layout/theHeader/userMenu/modals/preferences/lib/models/types.ts +1 -1
  316. package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/TimeFormat.vue +54 -54
  317. package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/TimeFormatNew.vue +52 -52
  318. package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/TimeFormatOld.vue +45 -45
  319. package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/lib/config/formatOptions.ts +27 -27
  320. package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/lib/models/types.ts +1 -1
  321. package/components/common/layout/theHeader/userMenu/modals/preferences/view/View.vue +45 -45
  322. package/components/common/layout/theHeader/userMenu/modals/preferences/view/ViewNew.vue +33 -33
  323. package/components/common/layout/theHeader/userMenu/modals/preferences/view/ViewOld.vue +112 -112
  324. package/components/common/layout/theHeader/userMenu/userMenuNew/UserMenuNew.vue +162 -162
  325. package/components/common/layout/theHeader/userMenu/userMenuNew/lib/config/dropMenu.ts +28 -28
  326. package/components/common/layout/theHeader/userMenu/userMenuOld/UserMenuOld.vue +36 -36
  327. package/components/common/layout/theHeader/userMenu/userMenuOld/lib/config/dropMenu.ts +36 -36
  328. package/components/common/layout/theHeader/userMenu/userMenuOld/lib/models/types.ts +5 -5
  329. package/components/common/lib/config/states.ts +160 -160
  330. package/components/common/mainNavigationPanel/MainNavigationPanel.vue +142 -142
  331. package/components/common/mainNavigationPanel/MainNavigationPanelNew.vue +271 -271
  332. package/components/common/mainNavigationPanel/MainNavigationPanelOld.vue +288 -288
  333. package/components/common/mainNavigationPanel/lib/models/interfaces.ts +7 -7
  334. package/components/common/mainNavigationPanel/lib/models/types.ts +1 -1
  335. package/components/common/modals/Confirmation.vue +110 -110
  336. package/components/common/modals/Rename.vue +166 -166
  337. package/components/common/modals/lib/config/defaultForm.ts +18 -18
  338. package/components/common/modals/lib/config/renameLabelWidth.ts +3 -3
  339. package/components/common/modals/lib/models/interfaces.ts +5 -5
  340. package/components/common/monitor/advanced/Advanced.vue +247 -247
  341. package/components/common/monitor/advanced/GraphView.vue +180 -180
  342. package/components/common/monitor/advanced/lib/models/interfaces.ts +9 -9
  343. package/components/common/monitor/advanced/lib/models/types.ts +1 -1
  344. package/components/common/monitor/advanced/table/Table.vue +93 -93
  345. package/components/common/monitor/advanced/table/lib/config/performanceDatatable.ts +129 -129
  346. package/components/common/monitor/advanced/table/lib/models/interfaces.ts +12 -12
  347. package/components/common/monitor/advanced/table/lib/models/types.ts +10 -10
  348. package/components/common/monitor/advanced/tools/Tools.vue +448 -448
  349. package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModal.vue +496 -496
  350. package/components/common/monitor/advanced/tools/chartOptionsModal/Notification.vue +34 -34
  351. package/components/common/monitor/advanced/tools/chartOptionsModal/actions/Actions.vue +157 -157
  352. package/components/common/monitor/advanced/tools/chartOptionsModal/actions/lib/utils/optionsActions.ts +25 -25
  353. package/components/common/monitor/advanced/tools/chartOptionsModal/actions/saveOptionsModal/SaveOptionsModal.vue +81 -81
  354. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/Counters.vue +106 -106
  355. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/Table.vue +144 -144
  356. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/config/tableConfig.ts +89 -89
  357. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/config/utils.ts +779 -779
  358. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/models/interfaces.ts +29 -29
  359. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/models/types.ts +5 -5
  360. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/Timespan.vue +93 -93
  361. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/form/Form.vue +539 -539
  362. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/form/lib/config/dateForm.ts +113 -113
  363. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/Object.vue +251 -251
  364. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/lib/config/objectTable.ts +57 -57
  365. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/lib/models/interfaces.ts +4 -4
  366. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/lib/models/types.ts +1 -1
  367. package/components/common/monitor/advanced/tools/chartOptionsModal/lib/models/interfaces.ts +19 -19
  368. package/components/common/monitor/advanced/tools/chartOptionsModal/lib/models/types.ts +3 -3
  369. package/components/common/monitor/advanced/tools/chartOptionsModal/lib/utils/checkSubmit.ts +17 -17
  370. package/components/common/monitor/advanced/tools/chartOptionsModal/metrics/Metrics.vue +42 -42
  371. package/components/common/monitor/advanced/tools/chartOptionsModal/metrics/lib/config/optionsMetrics.ts +173 -173
  372. package/components/common/monitor/advanced/tools/lib/config/advancedToolbar.ts +130 -130
  373. package/components/common/monitor/advanced/tools/lib/models/interfaces.ts +4 -4
  374. package/components/common/monitor/advanced/tools/lib/utils/countCores.ts +7 -7
  375. package/components/common/monitor/lib/config/getValidDateByOption.ts +76 -76
  376. package/components/common/monitor/lib/models/interfaces.ts +24 -24
  377. package/components/common/monitor/overview/Overview.vue +228 -228
  378. package/components/common/monitor/overview/filters/Filters.vue +228 -228
  379. package/components/common/monitor/overview/filters/customIntervalModal/CustomIntervalModal.vue +245 -245
  380. package/components/common/monitor/overview/filters/customIntervalModal/lib/config/dateChecker.ts +52 -52
  381. package/components/common/monitor/overview/filters/lib/config/filterOptions.ts +82 -82
  382. package/components/common/monitor/overview/filters/lib/models/interfaces.ts +9 -9
  383. package/components/common/monitor/overview/filters/lib/models/types.ts +13 -13
  384. package/components/common/pages/Tasks.vue +120 -120
  385. package/components/common/pages/hardwareHealth/HardwareHealth.vue +195 -195
  386. package/components/common/pages/hardwareHealth/historyTestimony/Graph.vue +435 -435
  387. package/components/common/pages/hardwareHealth/historyTestimony/lib/models/interfaces.ts +10 -10
  388. package/components/common/pages/hardwareHealth/historyTestimony/tools/Tools.vue +380 -380
  389. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/ChartOptionsModal.vue +487 -487
  390. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/Notification.vue +30 -30
  391. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/Actions.vue +157 -157
  392. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/SaveOptionsModal.vue +81 -81
  393. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/lib/utils/optionsActions.ts +25 -25
  394. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/Counters.vue +94 -94
  395. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/Table.vue +174 -174
  396. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/lib/config/tableConfig.ts +89 -89
  397. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/lib/models/types.ts +5 -5
  398. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/timespan/Timespan.vue +66 -66
  399. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/timespan/form/Form.vue +539 -539
  400. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/timespan/form/lib/config/dateForm.ts +115 -115
  401. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/lib/config/optionsMetrics.ts +17 -17
  402. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/lib/models/interfaces.ts +15 -15
  403. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/lib/models/types.ts +1 -1
  404. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/metrics/Metrics.vue +31 -31
  405. package/components/common/pages/hardwareHealth/historyTestimony/tools/lib/config/toolbar.ts +82 -82
  406. package/components/common/pages/hardwareHealth/historyTestimony/tools/lib/models/interfaces.ts +9 -9
  407. package/components/common/pages/hardwareHealth/lib/config/status.ts +13 -13
  408. package/components/common/pages/hardwareHealth/lib/config/tabsPannel.ts +44 -44
  409. package/components/common/pages/hardwareHealth/lib/models/enums.ts +8 -8
  410. package/components/common/pages/hardwareHealth/lib/models/interfaces.ts +6 -6
  411. package/components/common/pages/hardwareHealth/lib/models/types.ts +5 -5
  412. package/components/common/pages/hardwareHealth/tableView/TableView.vue +194 -194
  413. package/components/common/pages/hardwareHealth/tableView/lib/config/alertWarningTable.ts +109 -109
  414. package/components/common/pages/hardwareHealth/tableView/lib/config/historyTestimonyTable.ts +137 -137
  415. package/components/common/pages/hardwareHealth/tableView/lib/config/sensorTable.ts +133 -133
  416. package/components/common/pages/hardwareHealth/tableView/lib/config/storageSensorTable.ts +88 -88
  417. package/components/common/pages/hardwareHealth/tableView/lib/config/systemLogTable.ts +72 -72
  418. package/components/common/pages/hardwareHealth/tableView/lib/config/tableKeys.ts +22 -22
  419. package/components/common/pages/hardwareHealth/tableView/lib/models/interfaces.ts +29 -29
  420. package/components/common/pages/hardwareHealth/tableView/lib/models/types.ts +26 -26
  421. package/components/common/pages/hardwareHealth/tableView/modal/SensorWarning.vue +63 -63
  422. package/components/common/pages/hardwareHealth/toolsPanel/ToolsPanel.vue +51 -51
  423. package/components/common/pages/hardwareHealth/toolsPanel/lib/config/actionsPanel.ts +34 -34
  424. package/components/common/pages/hardwareHealth/toolsPanel/lib/models/types.ts +4 -4
  425. package/components/common/perPage/PerPage.vue +52 -52
  426. package/components/common/readyToComplete/ReadyToComplete.vue +15 -15
  427. package/components/common/recursionTree/RecursionTree.vue +211 -211
  428. package/components/common/recursionTree/lib/models/interfaces.ts +23 -23
  429. package/components/common/resource/lib/models/interfaces.ts +9 -9
  430. package/components/common/resource/lib/models/types.ts +1 -1
  431. package/components/common/resource/lib/utils.ts +44 -44
  432. package/components/common/resource/progressBlock/ProgressBlock.vue +142 -142
  433. package/components/common/resource/simple/Simple.vue +58 -58
  434. package/components/common/resource/simple/lib/models/enums.ts +6 -6
  435. package/components/common/select/button/ButtonDropdown.vue +102 -102
  436. package/components/common/select/button/lib/models/interfaces.ts +7 -7
  437. package/components/common/select/input/Input.vue +88 -88
  438. package/components/common/select/input/lib/models/interfaces.ts +5 -6
  439. package/components/common/select/radio/RadioGroup.vue +128 -128
  440. package/components/common/select/radio/lib/models/interfaces.ts +9 -9
  441. package/components/common/selectLanguage/SelectLanguage.vue +130 -130
  442. package/components/common/selectLanguage/lib/config/config.ts +34 -34
  443. package/components/common/selectLanguage/lib/utils/utils.ts +5 -5
  444. package/components/common/shortcuts/Block.vue +96 -96
  445. package/components/common/shortcuts/Category.vue +41 -41
  446. package/components/common/shortcuts/Shortcuts.vue +44 -44
  447. package/components/common/shortcuts/lib/models/interfaces.ts +12 -12
  448. package/components/common/spiceConsole/Drawer.vue +245 -245
  449. package/components/common/spiceConsole/SpiceConsole.vue +83 -83
  450. package/components/common/spiceConsole/keyboard/Keyboard.vue +403 -403
  451. package/components/common/spiceConsole/keyboard/lib/config/keyboardRows.ts +966 -966
  452. package/components/common/spiceConsole/keyboard/lib/models/interfaces.ts +18 -18
  453. package/components/common/spiceConsole/lib/models/types.ts +1 -1
  454. package/components/common/split/horizontal/Horizontal.vue +70 -70
  455. package/components/common/split/horizontal/HorizontalNew.vue +330 -330
  456. package/components/common/split/horizontal/HorizontalOld.vue +307 -307
  457. package/components/common/split/horizontal/lib/models/interfaces.ts +5 -5
  458. package/components/common/split/vertical/Vertical.vue +213 -213
  459. package/components/common/split/vertical/lib/models/interfaces.ts +3 -3
  460. package/components/common/tools/Actions.vue +172 -172
  461. package/components/common/tools/lib/models/interfaces.ts +7 -7
  462. package/components/common/tools/viewSettings/ViewSettings.vue +86 -86
  463. package/components/common/tools/viewSettings/lib/models/interfaces.ts +9 -9
  464. package/components/common/vm/actions/add/FolderTreeView.vue +83 -83
  465. package/components/common/vm/actions/add/lib/config/steps.ts +145 -145
  466. package/components/common/vm/actions/add/lib/utils.ts +103 -103
  467. package/components/common/vm/actions/clone/lib/config/steps.ts +74 -74
  468. package/components/common/vm/actions/clone/lib/models/interfaces.ts +7 -7
  469. package/components/common/vm/actions/clone/lib/utils.ts +43 -43
  470. package/components/common/vm/actions/clone/select/options/Options.vue +71 -71
  471. package/components/common/vm/actions/common/customizeHardware/CustomizeHardware.vue +274 -274
  472. package/components/common/vm/actions/common/customizeHardware/lib/config/navItems.ts +21 -21
  473. package/components/common/vm/actions/common/customizeHardware/lib/models/interfaces.ts +7 -7
  474. package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue +700 -700
  475. package/components/common/vm/actions/common/customizeHardware/virtualHardware/browseView/BrowseView.vue +203 -203
  476. package/components/common/vm/actions/common/customizeHardware/virtualHardware/browseView/lib/models/interfaces.ts +8 -8
  477. package/components/common/vm/actions/common/customizeHardware/virtualHardware/bus/Bus.vue +156 -156
  478. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/CdDvdDrive.vue +270 -270
  479. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/lib/config/fileTypes.ts +9 -9
  480. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/lib/config/options.ts +11 -11
  481. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/lib/models/types.ts +1 -1
  482. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/Media.vue +57 -57
  483. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CoresPerSocket.vue +110 -110
  484. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuHotPlug.vue +56 -56
  485. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuModel.vue +225 -225
  486. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Iommu.vue +55 -55
  487. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/MaxCpu.vue +106 -106
  488. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Pc.vue +55 -55
  489. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Sa.vue +106 -106
  490. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/lib/config/cpuOptions.ts +21 -21
  491. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/shares/Shares.vue +160 -160
  492. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/shares/lib/config/options.ts +28 -28
  493. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/tooltip/Tooltip.vue +59 -59
  494. package/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/config/binaryOptions.ts +12 -12
  495. package/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/config/dropdownItems.ts +66 -66
  496. package/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/models/interfaces.ts +118 -118
  497. package/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/models/types.ts +4 -4
  498. package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/Limit.vue +236 -236
  499. package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/lib/config/options.ts +28 -28
  500. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/Memory.vue +329 -329
  501. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/MemoryHotPlug.vue +54 -54
  502. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/lib/config/memoryOptions.ts +35 -35
  503. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/DiskFile.vue +24 -24
  504. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/Location.vue +173 -173
  505. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/MaximumSize.vue +27 -27
  506. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDisk.vue +462 -462
  507. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/cache/Cache.vue +81 -81
  508. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/cache/lib/config/options.ts +7 -7
  509. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/limitIops/LimitIops.vue +153 -153
  510. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/limitIops/lib/config/options.ts +28 -28
  511. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/mode/Mode.vue +88 -88
  512. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/mode/lib/config/options.ts +18 -18
  513. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/provisioning/Provisioning.vue +88 -88
  514. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/provisioning/lib/config/options.ts +15 -15
  515. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/sharing/Sharing.vue +86 -86
  516. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/sharing/lib/config/options.ts +12 -12
  517. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/Location.vue +145 -145
  518. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/NewNetwork.vue +305 -305
  519. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/adapterType/AdapterType.vue +87 -87
  520. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/adapterType/lib/config/options.ts +9 -9
  521. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/macAddress/MacAddress.vue +148 -148
  522. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/macAddress/lib/config/options.ts +11 -11
  523. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/NewPciDevice.vue +168 -168
  524. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/directPathIo/DirectPathIo.vue +48 -48
  525. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/dynamicDirectPathIo/DynamicDirectPathIo.vue +49 -49
  526. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/dynamicDirectPathIo/lib/config/options.ts +10 -10
  527. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/lib/config/options.ts +7 -7
  528. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/note/Note.vue +27 -27
  529. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/nvidiaGrid/NvidiaGrid.vue +42 -42
  530. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/typeSelection/TypeSelection.vue +57 -57
  531. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newUsbController/NewUsbController.vue +82 -82
  532. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newUsbController/lib/config/options.ts +6 -6
  533. package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/InputDevices.vue +21 -21
  534. package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/Other.vue +32 -32
  535. package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/Reservation.vue +237 -237
  536. package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/lib/config/options.ts +33 -33
  537. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/Graphics.vue +50 -50
  538. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/TotalVideoMemory.vue +121 -121
  539. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/VideoCard.vue +182 -182
  540. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/lib/config/options.ts +11 -11
  541. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/model/Model.vue +59 -59
  542. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/model/lib/config/options.ts +10 -10
  543. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/numberDisplays/NumberDisplays.vue +83 -83
  544. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/numberDisplays/lib/config/options.ts +14 -14
  545. package/components/common/vm/actions/common/customizeHardware/vmoptions/Vmoptions.vue +181 -181
  546. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/BootOptions.vue +114 -114
  547. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/Menu.vue +50 -50
  548. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/Secure.vue +50 -50
  549. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/delay/Delay.vue +54 -54
  550. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/delay/lib/config/config.ts +14 -14
  551. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/firmware/Firmware.vue +84 -84
  552. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/firmware/lib/config/config.ts +11 -11
  553. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/Order.vue +201 -201
  554. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/lib/models/interfaces.ts +9 -9
  555. package/components/common/vm/actions/common/customizeHardware/vmoptions/generalOptions/GeneralOptions.vue +192 -192
  556. package/components/common/vm/actions/common/customizeHardware/vmoptions/lib/models/interfaces.ts +34 -34
  557. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/CopyPaste.vue +52 -52
  558. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/FileTransfer.vue +52 -52
  559. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/FolderSharing.vue +51 -51
  560. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/PlaybackCompression.vue +52 -52
  561. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/PowerControl.vue +50 -50
  562. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/RemoteConsoleOptions.vue +254 -254
  563. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/imgCompression/ImgCompression.vue +85 -85
  564. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/imgCompression/lib/config/config.ts +14 -14
  565. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/jpegCompression/JpegCompression.vue +85 -85
  566. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/jpegCompression/lib/config/config.ts +12 -12
  567. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/keymap/Keymap.vue +56 -56
  568. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/keymap/lib/config/config.ts +6 -6
  569. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/mouseMode/MouseMode.vue +57 -57
  570. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/mouseMode/lib/config/config.ts +11 -11
  571. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/password/Password.vue +142 -142
  572. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/password/lib/models/interfaces.ts +5 -5
  573. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/password/lib/utils.ts +12 -12
  574. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/sharePolicy/SharePolicy.vue +56 -56
  575. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/sharePolicy/lib/config/config.ts +11 -11
  576. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/streamingMode/lib/config/config.ts +12 -12
  577. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/type/Type.vue +85 -85
  578. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/type/lib/config/config.ts +7 -7
  579. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/usbRedirection/UsbRedirection.vue +57 -57
  580. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/usbRedirection/lib/config/config.ts +14 -14
  581. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/zlibCompression/ZlibCompression.vue +85 -85
  582. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/zlibCompression/lib/config/config.ts +12 -12
  583. package/components/common/vm/actions/common/customizeHardware/vmoptions/tools/Tools.vue +72 -72
  584. package/components/common/vm/actions/common/lib/config/capabilities.ts +345 -345
  585. package/components/common/vm/actions/common/lib/models/enums.ts +123 -123
  586. package/components/common/vm/actions/common/lib/models/interfaces.ts +149 -149
  587. package/components/common/vm/actions/common/lib/models/types.ts +65 -65
  588. package/components/common/vm/actions/common/lib/utils/capabilities.ts +51 -51
  589. package/components/common/vm/actions/common/select/compatibility/Compatibility.vue +155 -155
  590. package/components/common/vm/actions/common/select/computeResource/ComputeResource.vue +164 -164
  591. package/components/common/vm/actions/common/select/computeResource/TreeView.vue +124 -124
  592. package/components/common/vm/actions/common/select/computeResource/lib/ComputeResource.spec.ts +479 -479
  593. package/components/common/vm/actions/common/select/createType/CreateType.vue +61 -61
  594. package/components/common/vm/actions/common/select/createType/lib/config/items.ts +26 -26
  595. package/components/common/vm/actions/common/select/lib/models/interfaces.ts +34 -34
  596. package/components/common/vm/actions/common/select/lib/models/types.ts +27 -27
  597. package/components/common/vm/actions/common/select/name/Name.vue +236 -236
  598. package/components/common/vm/actions/common/select/os/os.vue +232 -232
  599. package/components/common/vm/actions/common/select/storage/Storage.vue +198 -198
  600. package/components/common/vm/actions/common/select/storage/lib/config/config.ts +193 -193
  601. package/components/common/vm/actions/common/select/storage/lib/models/types.ts +15 -15
  602. package/components/common/vm/actions/confirm/Confirm.vue +39 -39
  603. package/components/common/vm/actions/editSettings/lib/models/types.ts +23 -23
  604. package/components/common/vm/actions/editSettings/lib/utils.ts +45 -45
  605. package/components/common/vm/actions/lib/models/interfaces.ts +6 -6
  606. package/components/common/vm/actions/lib/models/types.ts +11 -11
  607. package/components/common/vm/actions/lib/utils.ts +246 -246
  608. package/components/common/vm/lib/models/interfaces.ts +9 -9
  609. package/components/common/vm/lib/utils/powerActions.ts +55 -55
  610. package/components/common/weekSelect/WeekSelect.vue +143 -143
  611. package/components/common/weekSelect/lib/config/options.ts +10 -10
  612. package/components/common/weekSelect/lib/models/interfaces.ts +6 -6
  613. package/components/common/wizards/datastore/add/Add.vue +307 -307
  614. package/components/common/wizards/datastore/add/lib/config/steps.ts +138 -138
  615. package/components/common/wizards/datastore/add/lib/models/enums.ts +5 -5
  616. package/components/common/wizards/datastore/add/lib/models/interfaces.ts +19 -19
  617. package/components/common/wizards/datastore/add/lib/models/types.ts +7 -7
  618. package/components/common/wizards/datastore/add/lib/utils.ts +63 -63
  619. package/components/common/wizards/datastore/add/lib/validations.ts +169 -169
  620. package/components/common/wizards/datastore/add/local/Local.vue +45 -45
  621. package/components/common/wizards/datastore/add/local/createName/CreateName.vue +116 -116
  622. package/components/common/wizards/datastore/add/nfs/Nfs.vue +63 -63
  623. package/components/common/wizards/datastore/add/nfs/_kerberosAuthentication/KerberosAuthentication.vue +55 -55
  624. package/components/common/wizards/datastore/add/nfs/_kerberosAuthentication/lib/config/radioOptions.ts +27 -27
  625. package/components/common/wizards/datastore/add/nfs/accessibility/Accessibility.vue +63 -63
  626. package/components/common/wizards/datastore/add/nfs/accessibility/lib/config/tabsPannel.ts +24 -24
  627. package/components/common/wizards/datastore/add/nfs/accessibility/lib/models/interfaces.ts +9 -9
  628. package/components/common/wizards/datastore/add/nfs/accessibility/lib/models/types.ts +5 -5
  629. package/components/common/wizards/datastore/add/nfs/accessibility/tablesView/TablesView.vue +85 -85
  630. package/components/common/wizards/datastore/add/nfs/accessibility/tablesView/lib/config/compatibleTable.ts +62 -62
  631. package/components/common/wizards/datastore/add/nfs/accessibility/tablesView/lib/config/incompatibleTable.ts +68 -68
  632. package/components/common/wizards/datastore/add/nfs/accessibility/tablesView/lib/config/tableKeys.ts +15 -15
  633. package/components/common/wizards/datastore/add/nfs/accessibility/tablesView/lib/models/interfaces.ts +11 -11
  634. package/components/common/wizards/datastore/add/nfs/configuration/Configuration.vue +237 -237
  635. package/components/common/wizards/datastore/add/nfs/configuration/_serversList/DeletePopover.vue +100 -100
  636. package/components/common/wizards/datastore/add/nfs/configuration/_serversList/ServersList.vue +123 -123
  637. package/components/common/wizards/datastore/add/nfs/configuration/_serversList/lib/config/serversListConfig.ts +40 -40
  638. package/components/common/wizards/datastore/add/nfs/configuration/_serversList/lib/config/tableKeys.ts +3 -3
  639. package/components/common/wizards/datastore/add/nfs/configuration/_serversList/lib/models/interfaces.ts +3 -3
  640. package/components/common/wizards/datastore/add/nfs/configuration/_serversList/lib/models/types.ts +1 -1
  641. package/components/common/wizards/datastore/add/nfs/configuration/lib/models/interfaces.ts +5 -5
  642. package/components/common/wizards/datastore/add/nfs/version/Version.vue +26 -26
  643. package/components/common/wizards/datastore/add/nfs/version/lib/config/versionOptions.ts +22 -22
  644. package/components/common/wizards/datastore/add/readyComplete/ReadyComplete.vue +88 -88
  645. package/components/common/wizards/datastore/add/readyComplete/lib/config/propertiesDetails.ts +140 -140
  646. package/components/common/wizards/datastore/add/sharedStorm/SharedStorm.vue +78 -78
  647. package/components/common/wizards/datastore/add/sharedStorm/_version/Version.vue +28 -28
  648. package/components/common/wizards/datastore/add/sharedStorm/_version/lib/config/versionOptions.ts +21 -21
  649. package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/DeviceSelection.vue +276 -276
  650. package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/lib/config/selectOptions.ts +23 -23
  651. package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/lib/models/interfaces.ts +26 -26
  652. package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/lib/models/types.ts +1 -1
  653. package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/table/Table.vue +133 -133
  654. package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/table/lib/config/lunDiskTable.ts +84 -84
  655. package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/table/lib/config/tableKeys.ts +11 -11
  656. package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/table/lib/models/types.ts +9 -9
  657. package/components/common/wizards/datastore/add/sharedStorm/partitionConfiguration/PartitionConfiguration.vue +236 -236
  658. package/components/common/wizards/datastore/add/sharedStorm/partitionConfiguration/graphicTooltip/graphicTooltip.vue +64 -64
  659. package/components/common/wizards/datastore/add/sharedStorm/partitionConfiguration/lib/config/selectOptions.ts +46 -46
  660. package/components/common/wizards/datastore/add/sharedStorm/partitionConfiguration/sizeGraphic/sizeGraphic.vue +225 -225
  661. package/components/common/wizards/datastore/add/types/Types.vue +83 -83
  662. package/components/common/wizards/datastore/add/types/lib/config/typeOptions.ts +41 -41
  663. package/components/common/wizards/network/add/Add.vue +1036 -1036
  664. package/components/common/wizards/network/add/lib/config/index.ts +35 -35
  665. package/components/common/wizards/network/add/lib/config/initialData.ts +62 -62
  666. package/components/common/wizards/network/add/lib/config/portPropertiesStep.ts +43 -43
  667. package/components/common/wizards/network/add/lib/config/selectSwitch.ts +19 -19
  668. package/components/common/wizards/network/add/lib/config/sendData.ts +141 -141
  669. package/components/common/wizards/network/add/lib/config/steps.ts +456 -456
  670. package/components/common/wizards/network/add/lib/models/enums.ts +17 -17
  671. package/components/common/wizards/network/add/lib/models/interfaces.ts +249 -249
  672. package/components/common/wizards/network/add/lib/models/types.ts +14 -14
  673. package/components/common/wizards/network/add/lib/utils/index.ts +4 -4
  674. package/components/common/wizards/network/add/mappers/mappers.ts +192 -192
  675. package/components/common/wizards/network/add/modals/SelectNetwork.vue +173 -173
  676. package/components/common/wizards/network/add/modals/SelectStandardSwitch.vue +138 -138
  677. package/components/common/wizards/network/add/modals/SelectSwitch.vue +131 -131
  678. package/components/common/wizards/network/add/steps/ConnectionSettings.vue +154 -154
  679. package/components/common/wizards/network/add/steps/CreateStandardSwitch.vue +91 -91
  680. package/components/common/wizards/network/add/steps/IpFourSettings.vue +305 -305
  681. package/components/common/wizards/network/add/steps/PhysicalAdapter.vue +13 -13
  682. package/components/common/wizards/network/add/steps/PortProperties.vue +407 -407
  683. package/components/common/wizards/network/add/steps/ReadyComplete.vue +20 -20
  684. package/components/common/wizards/network/add/steps/SelectConnectionType.vue +99 -99
  685. package/components/common/wizards/network/add/steps/SelectedTargetDevice.vue +474 -474
  686. package/components/common/wizards/network/add/validations/common.ts +26 -26
  687. package/components/common/wizards/network/add/validations/connectionSettings.ts +70 -70
  688. package/components/common/wizards/network/add/validations/createStandardSwitch.ts +59 -59
  689. package/components/common/wizards/network/add/validations/ipFourSettings.ts +182 -182
  690. package/components/common/wizards/network/add/validations/networkValidation.ts +77 -77
  691. package/components/common/wizards/network/add/validations/physicalAdapter.ts +70 -70
  692. package/components/common/wizards/network/add/validations/portProperties.ts +83 -83
  693. package/components/common/wizards/network/add/validations/targetDevice.ts +109 -109
  694. package/components/common/wizards/network/add/validations/validations.ts +43 -43
  695. package/components/common/wizards/vm/common/computeResource/TreeView.vue +61 -61
  696. package/components/common/wizards/vm/common/tooltip/Tooltip.vue +84 -84
  697. package/components/common/wizards/vm/common/validation/compatibility/Compatibility.vue +62 -62
  698. package/components/common/wizards/vm/common/validation/lib/models/enums.ts +5 -5
  699. package/components/common/wizards/vm/migrate/Migrate.vue +278 -278
  700. package/components/common/wizards/vm/migrate/contentHeading/ContentHeading.vue +106 -106
  701. package/components/common/wizards/vm/migrate/contentHeading/lib/models/interfaces.ts +7 -7
  702. package/components/common/wizards/vm/migrate/lib/config/constructDataReady.ts +100 -100
  703. package/components/common/wizards/vm/migrate/lib/models/enums.ts +6 -6
  704. package/components/common/wizards/vm/migrate/lib/models/interfaces.ts +28 -28
  705. package/components/common/wizards/vm/migrate/lib/models/types.ts +5 -5
  706. package/components/common/wizards/vm/migrate/lib/utils.ts +80 -80
  707. package/components/common/wizards/vm/migrate/select/computeResource/ComputeResource.vue +219 -219
  708. package/components/common/wizards/vm/migrate/select/computeResource/lib/config/tabsPannel.ts +28 -28
  709. package/components/common/wizards/vm/migrate/select/computeResource/lib/models/enums.ts +6 -6
  710. package/components/common/wizards/vm/migrate/select/computeResource/lib/models/interfaces.ts +30 -30
  711. package/components/common/wizards/vm/migrate/select/computeResource/lib/models/types.ts +12 -12
  712. package/components/common/wizards/vm/migrate/select/computeResource/tableView/TableView.vue +143 -143
  713. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/clusterTable.ts +113 -113
  714. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/hostTable.ts +124 -124
  715. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/resourcePoolTable.ts +115 -115
  716. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/tableKeys.ts +65 -65
  717. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/vappsTable.ts +66 -66
  718. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/models/interfaces.ts +50 -50
  719. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/models/types.ts +60 -60
  720. package/components/common/wizards/vm/migrate/select/network/Network.vue +125 -125
  721. package/components/common/wizards/vm/migrate/select/network/table/network/Network.vue +114 -114
  722. package/components/common/wizards/vm/migrate/select/network/table/network/lib/config/advancedTable.ts +78 -78
  723. package/components/common/wizards/vm/migrate/select/network/table/network/lib/config/basicTable.ts +70 -70
  724. package/components/common/wizards/vm/migrate/select/network/table/network/lib/config/tableKeys.ts +13 -13
  725. package/components/common/wizards/vm/migrate/select/network/table/network/lib/models/interfaces.ts +12 -12
  726. package/components/common/wizards/vm/migrate/select/network/table/network/lib/models/types.ts +21 -21
  727. package/components/common/wizards/vm/migrate/select/network/table/useAt/UseAt.vue +54 -54
  728. package/components/common/wizards/vm/migrate/select/network/table/useAt/lib/config/tableKeys.ts +7 -7
  729. package/components/common/wizards/vm/migrate/select/network/table/useAt/lib/config/useAtTable.ts +47 -47
  730. package/components/common/wizards/vm/migrate/select/network/table/useAt/lib/models/interfaces.ts +1 -1
  731. package/components/common/wizards/vm/migrate/select/network/table/useAt/lib/models/types.ts +5 -5
  732. package/components/common/wizards/vm/migrate/select/priority/Priority.vue +39 -39
  733. package/components/common/wizards/vm/migrate/select/priority/lib/config/typeOptions.ts +21 -21
  734. package/components/common/wizards/vm/migrate/select/priority/lib/models/types.ts +1 -1
  735. package/components/common/wizards/vm/migrate/select/storage/Storage.vue +206 -206
  736. package/components/common/wizards/vm/migrate/select/storage/configure/batch/Batch.vue +73 -73
  737. package/components/common/wizards/vm/migrate/select/storage/configure/disk/Disk.vue +87 -87
  738. package/components/common/wizards/vm/migrate/select/storage/diskFormat/DiskFormat.vue +69 -69
  739. package/components/common/wizards/vm/migrate/select/storage/diskFormat/lib/config/formatOptions.ts +26 -26
  740. package/components/common/wizards/vm/migrate/select/storage/lib/config/tabsPannel.ts +20 -20
  741. package/components/common/wizards/vm/migrate/select/storage/lib/models/enums.ts +6 -6
  742. package/components/common/wizards/vm/migrate/select/storage/lib/models/interfaces.ts +14 -14
  743. package/components/common/wizards/vm/migrate/select/storage/lib/models/types.ts +9 -9
  744. package/components/common/wizards/vm/migrate/select/storage/policy/Policy.vue +84 -84
  745. package/components/common/wizards/vm/migrate/select/storage/selectedPerDisk/SelectedPerDisk.vue +88 -88
  746. package/components/common/wizards/vm/migrate/select/storage/table/datastore/Datastore.vue +114 -114
  747. package/components/common/wizards/vm/migrate/select/storage/table/datastore/lib/config/config.ts +179 -179
  748. package/components/common/wizards/vm/migrate/select/storage/table/datastore/lib/models/types.ts +15 -15
  749. package/components/common/wizards/vm/migrate/select/storage/table/disk/Disk.vue +86 -86
  750. package/components/common/wizards/vm/migrate/select/storage/table/disk/lib/config/config.ts +123 -123
  751. package/components/common/wizards/vm/migrate/select/storage/table/disk/lib/config/tableKeys.ts +15 -15
  752. package/components/common/wizards/vm/migrate/select/storage/table/disk/lib/models/interfaces.ts +24 -24
  753. package/components/common/wizards/vm/migrate/select/storage/table/disk/lib/models/types.ts +13 -13
  754. package/components/common/wizards/vm/migrate/select/targetServer/lib/config/tabsPannel.ts +18 -18
  755. package/components/common/wizards/vm/migrate/select/targetServer/lib/models/types.ts +1 -1
  756. package/components/common/wizards/vm/migrate/select/targetServer/new/New.vue +294 -294
  757. package/components/common/wizards/vm/migrate/select/targetServer/new/lib/config/defaultForm.ts +36 -36
  758. package/components/common/wizards/vm/migrate/select/targetServer/new/lib/models/interfaces.ts +13 -13
  759. package/components/common/wizards/vm/migrate/select/targetServer/saved/Saved.vue +27 -27
  760. package/components/common/wizards/vm/migrate/select/targetServer/targetServer.vue +41 -41
  761. package/components/common/wizards/vm/migrate/select/type/Type.vue +38 -38
  762. package/components/common/wizards/vm/migrate/select/type/lib/config/typeOptions.ts +41 -41
  763. package/components/common/wizards/vm/migrate/select/type/lib/models/interfaces.ts +5 -5
  764. package/components/content/Hint.vue +24 -24
  765. package/components/lib/models/interfaces.ts +14 -14
  766. package/composables/deepCopy.ts +21 -21
  767. package/composables/useAppVersion.ts +22 -22
  768. package/composables/useDiff.ts +15 -15
  769. package/composables/useEnvLanguage.ts +23 -23
  770. package/composables/useLocal.ts +44 -44
  771. package/composables/useLocalStorage.ts +45 -45
  772. package/composables/useThrottle.ts +32 -32
  773. package/composables/useUniqueId.ts +5 -5
  774. package/eslint/index.js +15 -15
  775. package/eslint/no-import-type.js +17 -17
  776. package/eslint/no-invalid-type-prefix.js +32 -32
  777. package/layouts/auth.vue +31 -31
  778. package/lib/config/regExp.ts +13 -13
  779. package/lib/models/composables/useAppVersion/interfaces.ts +5 -5
  780. package/lib/models/composables/useMyFetch/interfaces.ts +25 -25
  781. package/lib/models/composables/useMyFetch/types.ts +1 -1
  782. package/lib/models/enums.ts +35 -35
  783. package/lib/models/interfaces.ts +63 -63
  784. package/lib/models/plugins/date/interfaces.ts +5 -5
  785. package/lib/models/plugins/date/types.ts +1 -1
  786. package/lib/models/plugins/validation/interfaces.ts +21 -21
  787. package/lib/models/plugins/validation/types.ts +1 -1
  788. package/lib/models/store/host/interfaces.ts +38 -38
  789. package/lib/models/store/interfaces.ts +43 -43
  790. package/lib/models/store/network/interfaces.ts +13 -13
  791. package/lib/models/store/storage/interfaces.ts +32 -32
  792. package/lib/models/store/tasks/enums.ts +27 -27
  793. package/lib/models/store/tasks/interfaces.ts +122 -122
  794. package/lib/models/store/tasks/types.ts +2 -2
  795. package/lib/models/store/types.ts +43 -43
  796. package/lib/models/store/vm/interfaces.ts +234 -234
  797. package/lib/models/table/interfaces.ts +38 -38
  798. package/lib/models/table/types.ts +1 -1
  799. package/lib/models/types.ts +38 -38
  800. package/lib/utils/base64.ts +34 -34
  801. package/lib/utils/contentBuild.ts +34 -34
  802. package/lib/utils/notification.ts +22 -22
  803. package/lib/utils/sendTask.ts +73 -73
  804. package/minify.js +146 -146
  805. package/modules/fixContentBuild/index.ts +91 -91
  806. package/modules/fixContentBuild/lib/utils/methods.ts +115 -115
  807. package/modules/fixSpiceConsoleBuild/index.ts +28 -28
  808. package/modules/replaceEnv/index.ts +40 -40
  809. package/nuxt.config.ts +8 -8
  810. package/package.json +42 -42
  811. package/plugins/binary.ts +158 -158
  812. package/plugins/date.ts +179 -179
  813. package/plugins/spice-console/spice.console.ts +147 -147
  814. package/plugins/text.ts +48 -48
  815. package/plugins/validation.ts +172 -172
  816. package/public/spice-console/application/WorkerProcess.js +3350 -3350
  817. package/public/spice-console/application/WorkerProcess_back.js +3144 -3144
  818. package/public/spice-console/application/WorkerProcess_meta.js +3103 -3103
  819. package/public/spice-console/application/WorkerProcess_reverse.js +3214 -3214
  820. package/public/spice-console/application/agent.js +175 -175
  821. package/public/spice-console/application/application.js +641 -641
  822. package/public/spice-console/application/checkActivity.js +50 -50
  823. package/public/spice-console/application/clientgui.js +842 -842
  824. package/public/spice-console/application/clipboard/clipboarddataparser.js +92 -92
  825. package/public/spice-console/application/clipboard/local/localClipboard.js +110 -110
  826. package/public/spice-console/application/clipboard.js +82 -82
  827. package/public/spice-console/application/codec.js +263 -263
  828. package/public/spice-console/application/imagecache.js +81 -81
  829. package/public/spice-console/application/inputmanager.js +270 -270
  830. package/public/spice-console/application/packetfactory.js +202 -202
  831. package/public/spice-console/application/packetfilter.js +103 -103
  832. package/public/spice-console/application/packetprocess.js +75 -75
  833. package/public/spice-console/application/rasteroperation.js +118 -118
  834. package/public/spice-console/application/spiceconnection.js +197 -197
  835. package/public/spice-console/application/stream.js +67 -67
  836. package/public/spice-console/application/virtualmouse.js +109 -109
  837. package/public/spice-console/keymaps/keyevent.js +36 -36
  838. package/public/spice-console/keymaps/keymap.js +229 -229
  839. package/public/spice-console/keymaps/keymapes.js +375 -375
  840. package/public/spice-console/keymaps/keymapesObj.js +317 -317
  841. package/public/spice-console/keymaps/keymapus.js +317 -317
  842. package/public/spice-console/keymaps/scanCodeObjModifier.js +65 -65
  843. package/public/spice-console/keymaps/scanCodeObjProvider.js +60 -60
  844. package/public/spice-console/lib/AsyncConsumer.js +204 -204
  845. package/public/spice-console/lib/AsyncWorker.js +60 -60
  846. package/public/spice-console/lib/CollisionDetector.js +27 -27
  847. package/public/spice-console/lib/DataLogger.js +197 -197
  848. package/public/spice-console/lib/GenericObjectPool.js +152 -152
  849. package/public/spice-console/lib/GlobalPool.js +114 -114
  850. package/public/spice-console/lib/ImageUncompressor.js +138 -138
  851. package/public/spice-console/lib/IntegrationBenchmark.js +64 -64
  852. package/public/spice-console/lib/PacketWorkerIdentifier.js +107 -107
  853. package/public/spice-console/lib/SyncAsyncHandler.js +46 -46
  854. package/public/spice-console/lib/base64.js +298 -298
  855. package/public/spice-console/lib/biginteger.js +1640 -1640
  856. package/public/spice-console/lib/bowser.js +276 -276
  857. package/public/spice-console/lib/decoder/dixie.js +7930 -7930
  858. package/public/spice-console/lib/decoder/jmuxer.js +2815 -2815
  859. package/public/spice-console/lib/displayRouter.js +83 -83
  860. package/public/spice-console/lib/encrypt.js +191 -191
  861. package/public/spice-console/lib/flipper.js +39 -39
  862. package/public/spice-console/lib/graphic.js +1230 -1230
  863. package/public/spice-console/lib/graphicdebug.js +223 -223
  864. package/public/spice-console/lib/images/jsquic_family.js +83 -83
  865. package/public/spice-console/lib/images/jsquic_rgba.js +342 -342
  866. package/public/spice-console/lib/images/jsquic_uncompress.js +529 -529
  867. package/public/spice-console/lib/images/lz.js +717 -717
  868. package/public/spice-console/lib/images/png.js +275 -275
  869. package/public/spice-console/lib/jgestures.min.js +43 -43
  870. package/public/spice-console/lib/jquery-2.0.3.js +8829 -8829
  871. package/public/spice-console/lib/jquery-mousewheel.js +83 -83
  872. package/public/spice-console/lib/jquery-visibility.min.js +1 -1
  873. package/public/spice-console/lib/jsbn.js +578 -578
  874. package/public/spice-console/lib/jsbn2.js +675 -675
  875. package/public/spice-console/lib/lodash.4.0.0.min.js +136 -136
  876. package/public/spice-console/lib/modernizr.js +39 -39
  877. package/public/spice-console/lib/pixastic.js +3244 -3244
  878. package/public/spice-console/lib/prettyprint.js +794 -794
  879. package/public/spice-console/lib/prng4.js +64 -64
  880. package/public/spice-console/lib/queue.js +259 -259
  881. package/public/spice-console/lib/rasterEngine.js +907 -907
  882. package/public/spice-console/lib/rng.js +87 -87
  883. package/public/spice-console/lib/runqueue.js +103 -103
  884. package/public/spice-console/lib/sha1.js +124 -124
  885. package/public/spice-console/lib/stuckkeyshandler.js +122 -122
  886. package/public/spice-console/lib/timelapsedetector.js +62 -62
  887. package/public/spice-console/lib/utils.js +327 -327
  888. package/public/spice-console/lib/virtualjoystick.js +370 -370
  889. package/public/spice-console/network/busconnection.js +195 -195
  890. package/public/spice-console/network/clusternodechooser.js +49 -49
  891. package/public/spice-console/network/connectioncontrol.js +60 -60
  892. package/public/spice-console/network/packetcontroller.js +62 -62
  893. package/public/spice-console/network/packetextractor.js +73 -73
  894. package/public/spice-console/network/packetlinkfactory.js +64 -64
  895. package/public/spice-console/network/packetreassembler.js +77 -77
  896. package/public/spice-console/network/reassemblerfactory.js +39 -39
  897. package/public/spice-console/network/sizedefiner.js +86 -86
  898. package/public/spice-console/network/socket.js +120 -120
  899. package/public/spice-console/network/socketqueue.js +95 -95
  900. package/public/spice-console/network/spicechannel.js +375 -375
  901. package/public/spice-console/network/websocketwrapper.js +75 -75
  902. package/public/spice-console/process/busprocess.js +309 -309
  903. package/public/spice-console/process/cursorprocess.js +110 -110
  904. package/public/spice-console/process/displaypreprocess.js +152 -152
  905. package/public/spice-console/process/displayprocess.js +210 -210
  906. package/public/spice-console/process/inputprocess.js +203 -203
  907. package/public/spice-console/process/mainprocess.js +78 -78
  908. package/public/spice-console/process/playbackprocess.js +233 -233
  909. package/public/spice-console/run.js +180 -180
  910. package/public/spice-console/spiceobjects/generated/protocol.js +537 -537
  911. package/public/spice-console/spiceobjects/spiceobjects.js +3474 -3474
  912. package/public/spice-console/swcanvas/swcanvas.js +82 -82
  913. package/public/spice-console/tools/generate.php +269 -269
  914. package/public/spice-console/tools/generateKeyboardLayout.php +63 -63
  915. package/public/spice-console/tools/generateSpiceObject.php +81 -81
  916. package/store/main/lib/interfaces.ts +9 -9
  917. package/store/storage/device/lib/models/interfaces.ts +26 -26
  918. package/store/tasks/actions.ts +133 -133
  919. package/store/tasks/getters.ts +25 -25
  920. package/store/tasks/lib/models/interfaces.ts +18 -18
  921. package/store/tasks/mappers/tasks.ts +42 -42
  922. package/store/tasks/mutations.ts +58 -58
  923. package/store/tasks/state.ts +16 -16
  924. package/store/tasks/store.ts +12 -12
  925. package/tsconfig.json +4 -4
  926. package/components/common/wizards/vmNew/common/computeResource/TreeView.vue +0 -61
  927. package/components/common/wizards/vmNew/common/tooltip/Tooltip.vue +0 -84
  928. package/components/common/wizards/vmNew/common/validation/compatibility/Compatibility.vue +0 -62
  929. package/components/common/wizards/vmNew/common/validation/lib/models/enums.ts +0 -5
  930. package/components/common/wizards/vmNew/migrate/Migrate.vue +0 -229
  931. package/components/common/wizards/vmNew/migrate/lib/config/constructDataReady.ts +0 -83
  932. package/components/common/wizards/vmNew/migrate/lib/config/steps.ts +0 -82
  933. package/components/common/wizards/vmNew/migrate/lib/models/enums.ts +0 -6
  934. package/components/common/wizards/vmNew/migrate/lib/models/interfaces.ts +0 -38
  935. package/components/common/wizards/vmNew/migrate/lib/utils.ts +0 -0
  936. package/components/common/wizards/vmNew/migrate/lib/validations.ts +0 -29
  937. package/components/common/wizards/vmNew/migrate/select/computeResource/ComputeResource.vue +0 -219
  938. package/components/common/wizards/vmNew/migrate/select/computeResource/lib/config/tabsPannel.ts +0 -28
  939. package/components/common/wizards/vmNew/migrate/select/computeResource/lib/models/enums.ts +0 -6
  940. package/components/common/wizards/vmNew/migrate/select/computeResource/lib/models/interfaces.ts +0 -30
  941. package/components/common/wizards/vmNew/migrate/select/computeResource/lib/models/types.ts +0 -12
  942. package/components/common/wizards/vmNew/migrate/select/computeResource/tableView/TableView.vue +0 -143
  943. package/components/common/wizards/vmNew/migrate/select/computeResource/tableView/lib/config/clusterTable.ts +0 -113
  944. package/components/common/wizards/vmNew/migrate/select/computeResource/tableView/lib/config/hostTable.ts +0 -124
  945. package/components/common/wizards/vmNew/migrate/select/computeResource/tableView/lib/config/resourcePoolTable.ts +0 -115
  946. package/components/common/wizards/vmNew/migrate/select/computeResource/tableView/lib/config/tableKeys.ts +0 -65
  947. package/components/common/wizards/vmNew/migrate/select/computeResource/tableView/lib/config/vappsTable.ts +0 -66
  948. package/components/common/wizards/vmNew/migrate/select/computeResource/tableView/lib/models/interfaces.ts +0 -50
  949. package/components/common/wizards/vmNew/migrate/select/computeResource/tableView/lib/models/types.ts +0 -60
  950. package/components/common/wizards/vmNew/migrate/select/network/Network.vue +0 -125
  951. package/components/common/wizards/vmNew/migrate/select/network/table/network/Network.vue +0 -114
  952. package/components/common/wizards/vmNew/migrate/select/network/table/network/lib/config/advancedTable.ts +0 -78
  953. package/components/common/wizards/vmNew/migrate/select/network/table/network/lib/config/basicTable.ts +0 -70
  954. package/components/common/wizards/vmNew/migrate/select/network/table/network/lib/config/tableKeys.ts +0 -13
  955. package/components/common/wizards/vmNew/migrate/select/network/table/network/lib/models/interfaces.ts +0 -12
  956. package/components/common/wizards/vmNew/migrate/select/network/table/network/lib/models/types.ts +0 -21
  957. package/components/common/wizards/vmNew/migrate/select/network/table/useAt/UseAt.vue +0 -54
  958. package/components/common/wizards/vmNew/migrate/select/network/table/useAt/lib/config/tableKeys.ts +0 -7
  959. package/components/common/wizards/vmNew/migrate/select/network/table/useAt/lib/config/useAtTable.ts +0 -47
  960. package/components/common/wizards/vmNew/migrate/select/network/table/useAt/lib/models/interfaces.ts +0 -1
  961. package/components/common/wizards/vmNew/migrate/select/network/table/useAt/lib/models/types.ts +0 -5
  962. package/components/common/wizards/vmNew/migrate/select/priority/Priority.vue +0 -39
  963. package/components/common/wizards/vmNew/migrate/select/priority/lib/config/typeOptions.ts +0 -21
  964. package/components/common/wizards/vmNew/migrate/select/priority/lib/models/types.ts +0 -1
  965. package/components/common/wizards/vmNew/migrate/select/storage/Storage.vue +0 -175
  966. package/components/common/wizards/vmNew/migrate/select/storage/configure/batch/Batch.vue +0 -65
  967. package/components/common/wizards/vmNew/migrate/select/storage/configure/batch/config/virtualDiskFormat.ts +0 -30
  968. package/components/common/wizards/vmNew/migrate/select/storage/configure/batch/table/Table.vue +0 -118
  969. package/components/common/wizards/vmNew/migrate/select/storage/configure/batch/table/lib/config/datastoreTable.ts +0 -177
  970. package/components/common/wizards/vmNew/migrate/select/storage/configure/batch/table/lib/models/types.ts +0 -15
  971. package/components/common/wizards/vmNew/migrate/select/storage/configure/disk/Disk.vue +0 -68
  972. package/components/common/wizards/vmNew/migrate/select/storage/configure/disk/table/Table.vue +0 -74
  973. package/components/common/wizards/vmNew/migrate/select/storage/configure/disk/table/lib/config/diskTable.ts +0 -135
  974. package/components/common/wizards/vmNew/migrate/select/storage/configure/disk/table/lib/config/tableKeys.ts +0 -15
  975. package/components/common/wizards/vmNew/migrate/select/storage/configure/disk/table/lib/models/interfaces.ts +0 -29
  976. package/components/common/wizards/vmNew/migrate/select/storage/configure/disk/table/lib/models/types.ts +0 -13
  977. package/components/common/wizards/vmNew/migrate/select/storage/lib/config/tabsPannel.ts +0 -20
  978. package/components/common/wizards/vmNew/migrate/select/storage/lib/models/enums.ts +0 -6
  979. package/components/common/wizards/vmNew/migrate/select/storage/lib/models/interfaces.ts +0 -14
  980. package/components/common/wizards/vmNew/migrate/select/storage/lib/models/types.ts +0 -9
  981. package/components/common/wizards/vmNew/migrate/select/storage/policy/Policy.vue +0 -84
  982. package/components/common/wizards/vmNew/migrate/select/storage/selectedPerDisk/SelectedPerDisk.vue +0 -80
  983. package/components/common/wizards/vmNew/migrate/select/targetServer/lib/config/tabsPannel.ts +0 -18
  984. package/components/common/wizards/vmNew/migrate/select/targetServer/lib/models/types.ts +0 -1
  985. package/components/common/wizards/vmNew/migrate/select/targetServer/new/New.vue +0 -294
  986. package/components/common/wizards/vmNew/migrate/select/targetServer/new/lib/config/defaultForm.ts +0 -36
  987. package/components/common/wizards/vmNew/migrate/select/targetServer/new/lib/models/interfaces.ts +0 -13
  988. package/components/common/wizards/vmNew/migrate/select/targetServer/saved/Saved.vue +0 -27
  989. package/components/common/wizards/vmNew/migrate/select/targetServer/targetServer.vue +0 -41
  990. package/components/common/wizards/vmNew/migrate/select/type/Type.vue +0 -27
  991. package/components/common/wizards/vmNew/migrate/select/type/lib/config/typeOptions.ts +0 -41
  992. package/components/common/wizards/vmNew/migrate/select/type/lib/models/interfaces.ts +0 -5
  993. package/components/common/wizards/vmNew/migrate/select/type/lib/models/types.ts +0 -5
@@ -10,7 +10,7 @@
10
10
  <path fill-rule="evenodd" clip-rule="evenodd" d="M29.5554 96.52C26.6406 96.52 24.2776 98.883 24.2776 101.798C24.2776 104.713 26.6406 107.076 29.5554 107.076C30.3954 107.076 31.189 106.88 31.8937 106.531C31.8959 106.53 31.8982 106.529 31.9004 106.528C32.3156 106.321 32.7001 106.062 33.0449 105.758C33.0998 105.709 33.1536 105.66 33.2064 105.609C33.2303 105.586 33.254 105.563 33.2775 105.54L33.5093 105.295C33.9061 104.875 34.5661 104.852 34.9909 105.243C35.4156 105.634 35.4476 106.294 35.0626 106.724C34.9745 106.822 34.8838 106.919 34.7905 107.012L34.7804 107.023L34.7801 107.023C34.2166 107.586 33.5621 108.059 32.84 108.418C32.8379 108.419 32.8358 108.42 32.8337 108.421C31.8458 108.911 30.7325 109.187 29.5554 109.187C25.4746 109.187 22.1665 105.879 22.1665 101.798C22.1665 97.7171 25.4746 94.4089 29.5554 94.4089C31.8196 94.4089 33.476 95.4371 34.8324 96.6898L34.8323 96.5204C34.8322 95.9374 35.3046 95.4647 35.8876 95.4645C36.4706 95.4643 36.9433 95.9368 36.9435 96.5198L36.9443 99.3346C36.9444 99.6146 36.8332 99.8831 36.6352 100.081C36.4373 100.279 36.1687 100.39 35.8887 100.39L33.0731 100.39C32.4901 100.39 32.0175 99.9179 32.0175 99.3349C32.0175 98.7519 32.4901 98.2793 33.0731 98.2793L33.4365 98.2793C32.2904 97.2072 31.1258 96.52 29.5554 96.52Z" fill="#4D5D69"/>
11
11
  <path d="M7.50601 80.8135C5.10937 80.8135 3.1665 82.7563 3.1665 85.153V99.9308C3.1665 102.327 5.10937 104.27 7.50601 104.27H17.9443V107.085H14.0739C13.4909 107.085 13.0184 107.558 13.0184 108.141C13.0184 108.724 13.4909 109.196 14.0739 109.196H23.5955C22.8498 108.595 22.1968 107.883 21.6615 107.085H20.0554V104.27H20.3803C20.1984 103.593 20.0894 102.887 20.0621 102.159H7.50601C6.2753 102.159 5.27762 101.161 5.27762 99.9308V85.153C5.27762 83.9223 6.2753 82.9246 7.50601 82.9246H30.4937C31.7244 82.9246 32.7221 83.9223 32.7221 85.153V92.8682C33.3354 93.0992 33.9002 93.3885 34.4207 93.713C34.553 93.6438 34.6907 93.5836 34.8332 93.5333V85.153C34.8332 82.7563 32.8903 80.8135 30.4937 80.8135H7.50601Z" fill="#4D5D69"/>
12
12
  <path d="M18.5649 84.8352L18.5625 84.8352C18.1796 84.8363 17.8056 84.9524 17.4895 85.1688C17.1734 85.3851 16.9297 85.6918 16.7909 86.0492L16.4442 86.9396L15.3897 87.5349L14.4255 87.3887L14.4118 87.3867C14.0383 87.3363 13.658 87.3974 13.3192 87.5625C12.9802 87.7277 12.6976 87.9898 12.5077 88.3161L12.0831 89.0551C11.8893 89.3855 11.7998 89.7668 11.827 90.1491C11.8544 90.5334 11.9983 90.9 12.239 91.2004L12.8495 91.9534V93.1344L12.258 93.8839C12.0186 94.1838 11.8755 94.5493 11.8483 94.9324C11.8211 95.3148 11.9105 95.6961 12.1043 96.0264L12.5266 96.7614L12.5289 96.7655C12.7188 97.0917 13.0014 97.3538 13.3404 97.519C13.6793 97.6842 14.0595 97.7453 14.433 97.6948L15.4081 97.547L16.4431 98.1393L16.791 99.0324C16.9298 99.3898 17.1735 99.6964 17.4895 99.9127C17.8056 100.129 18.1796 100.245 18.5625 100.246L18.5649 100.246H19.4564L19.4589 100.246C19.7178 100.246 19.9727 100.192 20.2083 100.091C20.4926 98.5241 21.161 97.0913 22.1125 95.8935C22.0843 95.9058 22.0566 95.9196 22.0296 95.9351L20.4802 96.8217C20.3126 96.9177 20.1829 97.0682 20.1128 97.2482L19.656 98.4209C19.6409 98.46 19.6139 98.4944 19.5779 98.519C19.542 98.5436 19.4991 98.5571 19.4547 98.5574H18.5666C18.5222 98.5571 18.4793 98.5436 18.4434 98.519C18.4074 98.4944 18.3804 98.46 18.3653 98.4209L17.9085 97.2482C17.8384 97.0682 17.7088 96.9177 17.5411 96.8217L15.9917 95.9351C15.876 95.8688 15.7469 95.8313 15.6153 95.8246C15.5589 95.8218 15.5021 95.8245 15.4456 95.8331L14.2027 96.0217C14.1606 96.0265 14.118 96.0192 14.0803 96.0008C14.0418 95.982 14.0104 95.9528 13.9894 95.9173L13.5666 95.1812L13.5613 95.1722C13.5397 95.1357 13.5299 95.0939 13.5329 95.0523C13.5359 95.0108 13.5515 94.9706 13.5783 94.9371L14.3568 93.9506C14.4744 93.8015 14.5384 93.6173 14.5384 93.4274V91.6541C14.5384 91.4605 14.4718 91.2727 14.3498 91.1223L13.5561 90.1433C13.5298 90.11 13.5146 90.0703 13.5117 90.0292C13.5087 89.9876 13.5185 89.9459 13.5401 89.9094L13.9682 89.1642C13.9892 89.1288 14.0206 89.0995 14.0591 89.0807C14.0968 89.0623 14.1394 89.055 14.1815 89.0599L15.4244 89.2484C15.611 89.2768 15.8018 89.2417 15.9662 89.1489L17.5368 88.2622C17.7065 88.1664 17.8378 88.0149 17.9085 87.8333L18.3653 86.6606C18.3804 86.6215 18.4074 86.5871 18.4434 86.5625C18.4793 86.5379 18.5222 86.5244 18.5666 86.5241H19.4334C19.4779 86.5244 19.5208 86.5379 19.5566 86.5625C19.5927 86.5871 19.6196 86.6215 19.6348 86.6606L20.0915 87.8333C20.1616 88.0133 20.2913 88.1639 20.459 88.2598L22.0084 89.1465C22.1737 89.2411 22.3662 89.277 22.5545 89.2484L23.7973 89.0599C23.8395 89.055 23.882 89.0623 23.9198 89.0807C23.9583 89.0995 23.9897 89.1288 24.0107 89.1642L24.4335 89.9003L24.4388 89.9093C24.4604 89.9459 24.4701 89.9876 24.4672 90.0292C24.4642 90.0708 24.4486 90.111 24.4218 90.1444L23.6433 91.131C23.5257 91.28 23.4617 91.4643 23.4617 91.6541V93.4274C23.4617 93.6211 23.5283 93.8088 23.6502 93.9593L23.8478 94.2029C24.3001 93.8623 24.7839 93.5613 25.294 93.3049L25.1506 93.1281V91.9472L25.7421 91.1977C25.9815 90.8977 26.1245 90.5323 26.1518 90.1491C26.179 89.7668 26.0896 89.3855 25.8958 89.0551L25.4735 88.3201L25.4712 88.3161C25.2813 87.9898 24.9987 87.7277 24.6597 87.5625C24.3208 87.3974 23.9405 87.3362 23.5671 87.3866L22.5919 87.5345L21.5569 86.9422L21.2092 86.0494C21.0705 85.6919 20.8267 85.3852 20.5106 85.1688C20.1945 84.9524 19.8205 84.8363 19.4376 84.8352H18.5649Z" fill="#4D5D69"/>
13
- <path fill-rule="evenodd" clip-rule="evenodd" d="M17.9457 89.7781C17.5586 89.9247 17.2027 90.1519 16.9037 90.4493C16.3468 91.0032 16.0331 91.7554 16.0331 92.5408C16.0331 93.1263 16.2077 93.6984 16.5343 94.1845C16.7398 94.4904 16.9996 94.7535 17.2989 94.9622C17.4752 95.0852 17.6653 95.1892 17.8661 95.2719C18.4077 95.4951 19.0034 95.5534 19.578 95.4397C20.1527 95.326 20.6811 95.0453 21.0964 94.6323C21.5116 94.2192 21.7949 93.6924 21.9098 93.1182C22.0246 92.544 21.9656 91.9489 21.7405 91.4082C21.5154 90.8677 21.1345 90.4064 20.6466 90.0822C20.1588 89.758 19.5858 89.5852 19 89.5852C18.6364 89.5852 18.2795 89.6517 17.9457 89.7781ZM19 91.2741C18.6596 91.2741 18.3341 91.4086 18.0948 91.6467C17.8556 91.8846 17.722 92.2063 17.722 92.5408C17.722 92.7903 17.7964 93.0346 17.9363 93.2427C18.0761 93.451 18.2755 93.614 18.5095 93.7104C18.7436 93.8068 19.0014 93.8321 19.2502 93.7829C19.499 93.7337 19.7269 93.6123 19.9053 93.4348C20.0837 93.2574 20.2047 93.0319 20.2537 92.787C20.3026 92.5422 20.2775 92.2884 20.1814 92.0575C20.0852 91.8266 19.922 91.6285 19.7118 91.4887C19.5015 91.349 19.2538 91.2741 19 91.2741Z" fill="#4D5D69"/>
13
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M17.9457 89.7781C17.5586 89.9247 17.2027 90.1519 16.9037 90.4493C16.3468 91.0032 16.0331 91.7554 16.0331 92.5408C16.0331 93.1263 16.2077 93.6984 16.5343 94.1845C16.7398 94.4904 16.9996 94.7535 17.2989 94.9622C17.4752 95.0852 17.6653 95.1892 17.8661 95.2719C18.4077 95.4951 19.0034 95.5534 19.578 95.4397C20.1527 95.326 20.6811 95.0452 21.0964 94.6323C21.5116 94.2192 21.7949 93.6924 21.9098 93.1182C22.0246 92.544 21.9656 91.9489 21.7405 91.4082C21.5154 90.8677 21.1345 90.4064 20.6466 90.0822C20.1588 89.758 19.5858 89.5852 19 89.5852C18.6364 89.5852 18.2795 89.6517 17.9457 89.7781ZM19 91.2741C18.6596 91.2741 18.3341 91.4086 18.0948 91.6467C17.8556 91.8846 17.722 92.2063 17.722 92.5408C17.722 92.7903 17.7964 93.0346 17.9363 93.2427C18.0761 93.451 18.2755 93.614 18.5095 93.7104C18.7436 93.8068 19.0014 93.8321 19.2502 93.7829C19.499 93.7337 19.7269 93.6123 19.9053 93.4348C20.0837 93.2574 20.2047 93.0319 20.2537 92.787C20.3026 92.5422 20.2775 92.2884 20.1814 92.0575C20.0852 91.8266 19.922 91.6285 19.7118 91.4887C19.5015 91.349 19.2538 91.2741 19 91.2741Z" fill="#4D5D69"/>
14
14
  <path fill-rule="evenodd" clip-rule="evenodd" d="M19.0001 115.056C19.583 115.056 20.0556 115.528 20.0556 116.111L20.0553 131.43L24.5867 126.899C24.9989 126.592 25.6672 126.592 26.0795 126.899C26.4917 127.417 26.4917 128.085 26.0795 128.392L19.7461 134.725C19.3339 135.243 18.6656 135.243 18.2533 134.725L11.92 128.392C11.5078 128.085 11.5078 127.417 11.92 126.899C12.3322 126.592 13.0006 126.592 13.4128 126.899L17.9442 131.43L17.9445 116.111C17.9445 115.528 18.4171 115.056 19.0001 115.056Z" fill="#4D5D69"/>
15
15
  <path d="M15.8332 118.813H7.50601C5.10937 118.813 3.1665 120.756 3.1665 123.153V137.931C3.1665 140.327 5.10937 142.27 7.50601 142.27H17.9443V145.085H14.0739C13.4909 145.085 13.0184 145.558 13.0184 146.141C13.0184 146.724 13.4909 147.196 14.0739 147.196H23.9258C24.5087 147.196 24.9813 146.724 24.9813 146.141C24.9813 145.558 24.5087 145.085 23.9258 145.085H20.0554V142.27H30.4937C32.8903 142.27 34.8332 140.327 34.8332 137.931V123.153C34.8332 120.756 32.8903 118.813 30.4937 118.813H22.1665V120.925H30.4937C31.7244 120.925 32.7221 121.922 32.7221 123.153V137.931C32.7221 139.161 31.7244 140.159 30.4937 140.159H7.50601C6.2753 140.159 5.27762 139.161 5.27762 137.931V123.153C5.27762 121.922 6.2753 120.925 7.50601 120.925H15.8332V118.813Z" fill="#4D5D69"/>
16
16
  <path fill-rule="evenodd" clip-rule="evenodd" d="M38 199.5C38 204.747 33.7467 209 28.5 209C23.2533 209 19 204.747 19 199.5C19 194.253 23.2533 190 28.5 190C33.7467 190 38 194.253 38 199.5ZM28.5 203.722C30.8319 203.722 32.7222 201.832 32.7222 199.5C32.7222 197.168 30.8319 195.278 28.5 195.278C26.1681 195.278 24.2778 197.168 24.2778 199.5C24.2778 201.832 26.1681 203.722 28.5 203.722Z" fill="#239332"/>
@@ -34,10 +34,10 @@
34
34
  <path fill-rule="evenodd" clip-rule="evenodd" d="M21.6388 319.833C22.2217 319.833 22.6943 320.306 22.6943 320.889L22.6943 331.444C22.6943 332.027 22.2217 332.5 21.6388 332.5C21.0558 332.5 20.5832 332.027 20.5832 331.444L20.5832 320.889C20.5832 320.306 21.0558 319.833 21.6388 319.833Z" fill="#4D5D69"/>
35
35
  <path fill-rule="evenodd" clip-rule="evenodd" d="M30.6615 347.278C30.115 347.278 29.591 347.495 29.2046 347.881L15.4571 361.629L14.4858 365.514L18.3709 364.543L32.1184 350.795C32.5048 350.409 32.7218 349.885 32.7218 349.338C32.7218 348.792 32.5048 348.268 32.1184 347.881C31.732 347.495 31.2079 347.278 30.6615 347.278ZM27.7118 346.389C28.4941 345.606 29.5551 345.167 30.6615 345.167C31.7678 345.167 32.8288 345.606 33.6112 346.389C34.3935 347.171 34.833 348.232 34.833 349.338C34.833 350.445 34.3935 351.506 33.6112 352.288L19.6569 366.242C19.5216 366.377 19.3521 366.473 19.1665 366.52L13.2911 367.989C12.9314 368.079 12.5509 367.973 12.2887 367.711C12.0265 367.449 11.9211 367.068 12.011 366.709L13.4799 360.833C13.5263 360.648 13.6223 360.478 13.7575 360.343L27.7118 346.389Z" fill="#4D5D69"/>
36
36
  <path fill-rule="evenodd" clip-rule="evenodd" d="M7.38873 350.402C6.22279 350.402 5.27762 351.348 5.27762 352.513V372.611C5.27762 373.777 6.22279 374.722 7.38873 374.722H27.4865C28.6524 374.722 29.5976 373.777 29.5976 372.611V362.562C29.5976 361.979 30.0702 361.507 30.6532 361.507C31.2361 361.507 31.7087 361.979 31.7087 362.562V372.611C31.7087 374.943 29.8184 376.833 27.4865 376.833H7.38873C5.05686 376.833 3.1665 374.943 3.1665 372.611V352.513C3.1665 350.182 5.05686 348.291 7.38873 348.291H17.4376C18.0206 348.291 18.4932 348.764 18.4932 349.347C18.4932 349.93 18.0206 350.402 17.4376 350.402H7.38873Z" fill="#4D5D69"/>
37
- <path d="M21.1109 405.333C20.528 405.333 20.0554 405.806 20.0554 406.389C20.0554 406.972 20.528 407.444 21.1109 407.444H29.5554C30.1384 407.444 30.6109 406.972 30.6109 406.389C30.6109 405.806 30.1384 405.333 29.5554 405.333H21.1109Z" fill="#4D5D69"/>
38
- <path d="M7.38873 406.389C7.38873 405.514 8.09761 404.806 8.97206 404.806H8.98789C9.86234 404.806 10.5712 405.514 10.5712 406.389C10.5712 407.263 9.86234 407.972 8.98789 407.972H8.97206C8.09761 407.972 7.38873 407.263 7.38873 406.389Z" fill="#4D5D69"/>
39
- <path d="M14.2705 404.806C13.396 404.806 12.6871 405.514 12.6871 406.389C12.6871 407.263 13.396 407.972 14.2705 407.972H14.2863C15.1607 407.972 15.8696 407.263 15.8696 406.389C15.8696 405.514 15.1607 404.806 14.2863 404.806H14.2705Z" fill="#4D5D69"/>
40
- <path fill-rule="evenodd" clip-rule="evenodd" d="M17.6803 385.278H10.9876C9.6493 385.278 8.45551 386.119 8.00539 387.379L3.38174 400.326C3.23931 400.724 3.1665 401.145 3.1665 401.568V409.556C3.1665 411.305 4.58427 412.722 6.33317 412.722H31.6665C33.4154 412.722 34.8332 411.305 34.8332 409.556V401.568C34.8332 401.145 34.7604 400.724 34.6179 400.326L34.3371 399.539C32.6221 400.539 30.6278 401.111 28.4998 401.111C26.7709 401.111 25.1302 400.733 23.6559 400.056H6.33317C6.1153 400.056 5.90257 400.078 5.69707 400.12L9.99352 388.089C10.1436 387.669 10.5415 387.389 10.9876 387.389H17.0802C17.2142 386.659 17.4166 385.953 17.6803 385.278ZM5.27762 403.222C5.27762 402.639 5.7502 402.167 6.33317 402.167H31.6665C32.2495 402.167 32.7221 402.639 32.7221 403.222V409.556C32.7221 410.139 32.2495 410.611 31.6665 410.611H6.33317C5.7502 410.611 5.27762 410.139 5.27762 409.556V403.222Z" fill="#4D5D69"/>
37
+ <path d="M21.1109 405.333C20.528 405.333 20.0554 405.806 20.0554 406.389C20.0554 406.972 20.528 407.444 21.1109 407.444H29.5554C30.1384 407.444 30.6109 406.972 30.6109 406.389C30.6109 405.806 30.1384 405.333 29.5554 405.333H21.1109Z" fill="#EA3223"/>
38
+ <path d="M7.38873 406.389C7.38873 405.514 8.09761 404.806 8.97206 404.806H8.98789C9.86234 404.806 10.5712 405.514 10.5712 406.389C10.5712 407.263 9.86234 407.972 8.98789 407.972H8.97206C8.09761 407.972 7.38873 407.263 7.38873 406.389Z" fill="#EA3223"/>
39
+ <path d="M14.2705 404.806C13.396 404.806 12.6871 405.514 12.6871 406.389C12.6871 407.263 13.396 407.972 14.2705 407.972H14.2863C15.1607 407.972 15.8696 407.263 15.8696 406.389C15.8696 405.514 15.1607 404.806 14.2863 404.806H14.2705Z" fill="#EA3223"/>
40
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M17.6803 385.278H10.9876C9.6493 385.278 8.45551 386.119 8.00539 387.379L3.38174 400.326C3.23931 400.724 3.1665 401.145 3.1665 401.568V409.556C3.1665 411.305 4.58427 412.722 6.33317 412.722H31.6665C33.4154 412.722 34.8332 411.305 34.8332 409.556V401.568C34.8332 401.145 34.7604 400.724 34.6179 400.326L34.3371 399.539C32.6221 400.539 30.6278 401.111 28.4998 401.111C26.7709 401.111 25.1302 400.733 23.6559 400.056H6.33317C6.1153 400.056 5.90257 400.078 5.69707 400.12L9.99352 388.089C10.1436 387.669 10.5415 387.389 10.9876 387.389H17.0802C17.2142 386.659 17.4166 385.953 17.6803 385.278ZM5.27762 403.222C5.27762 402.639 5.7502 402.167 6.33317 402.167H31.6665C32.2495 402.167 32.7221 402.639 32.7221 403.222V409.556C32.7221 410.139 32.2495 410.611 31.6665 410.611H6.33317C5.7502 410.611 5.27762 410.139 5.27762 409.556V403.222Z" fill="#EA3223"/>
41
41
  <path fill-rule="evenodd" clip-rule="evenodd" d="M38 389.5C38 394.747 33.7467 399 28.5 399C23.2533 399 19 394.747 19 389.5C19 384.253 23.2533 380 28.5 380C33.7467 380 38 384.253 38 389.5ZM24.3352 393.665C24.7804 394.11 25.5023 394.11 25.9474 393.665L28.5001 391.113L31.0528 393.665C31.498 394.11 32.2198 394.11 32.665 393.665C33.1102 393.22 33.1102 392.498 32.665 392.053L30.1123 389.5L32.665 386.948C33.1102 386.503 33.1102 385.781 32.665 385.336C32.2198 384.89 31.498 384.89 31.0528 385.336L28.5001 387.888L25.9474 385.336C25.5023 384.89 24.7804 384.89 24.3352 385.336C23.89 385.781 23.89 386.503 24.3352 386.948L26.8879 389.5L24.3352 392.053C23.89 392.498 23.89 393.22 24.3352 393.665Z" fill="#EA3223"/>
42
42
  <path d="M20.5835 421.694C20.5835 420.528 21.5287 419.583 22.6946 419.583H34.3057C35.4717 419.583 36.4168 420.528 36.4168 421.694V433.305C36.4168 434.471 35.4717 435.417 34.3057 435.417H22.6946C21.5287 435.417 20.5835 434.471 20.5835 433.305V421.694Z" fill="#EA3223"/>
43
43
  <path fill-rule="evenodd" clip-rule="evenodd" d="M18.4778 421.478C18.1832 421.535 17.8959 421.641 17.6282 421.796L6.51919 428.21C5.67006 428.7 5.14697 429.606 5.14697 430.586V443.414C5.14697 444.394 5.67006 445.3 6.51919 445.791L17.6282 452.205C18.4774 452.695 19.5235 452.695 20.3727 452.205L31.4817 445.791C32.3309 445.3 32.8539 444.394 32.8539 443.414V437.528H30.7428V443.414C30.7428 443.64 30.6221 443.849 30.4262 443.962L20.056 449.95V437.61L20.8939 437.126C20.2051 436.801 19.6185 436.295 19.1951 435.669L19.0005 435.781L8.31364 429.611L18.4723 423.746V421.695C18.4723 421.622 18.4742 421.55 18.4778 421.478ZM17.9449 437.61V449.95L7.57475 443.962C7.3788 443.849 7.25808 443.64 7.25808 443.414V431.44L17.9449 437.61Z" fill="#4D5D69"/>
@@ -78,6 +78,6 @@
78
78
  <path fill-rule="evenodd" clip-rule="evenodd" d="M11.8223 700.044C11.8223 699.345 12.3894 698.778 13.0889 698.778H13.3C13.9996 698.778 14.5667 699.345 14.5667 700.044C14.5667 700.744 13.9996 701.311 13.3 701.311H13.0889C12.3894 701.311 11.8223 700.744 11.8223 700.044Z" fill="#4D5D69"/>
79
79
  <path d="M18.7665 573.167H8.44428C5.52945 573.167 3.1665 575.53 3.1665 578.445V599.556C3.1665 602.47 5.52945 604.833 8.44428 604.833H29.5554C32.4702 604.833 34.8332 602.47 34.8332 599.556V589.233C34.1729 589.664 33.4662 590.029 32.7221 590.32V599.556C32.7221 601.305 31.3043 602.722 29.5554 602.722H8.44428C6.69538 602.722 5.27762 601.305 5.27762 599.556V578.445C5.27762 576.696 6.69538 575.278 8.44428 575.278H17.6803C17.9709 574.534 18.336 573.827 18.7665 573.167Z" fill="#4D5D69"/>
80
80
  <path d="M16.9607 580.8C15.5131 581.155 14.1411 581.898 13.0102 583.029C11.0672 584.972 10.6145 587.298 10.579 589.555L9.86583 588.842C9.45357 588.43 8.78523 588.43 8.37305 588.842C7.96087 589.254 7.96095 589.923 8.37321 590.335L10.9784 592.939C11.3906 593.352 12.0589 593.351 12.4711 592.939L15.0832 590.327C15.4954 589.915 15.4954 589.247 15.0832 588.834C14.6709 588.422 14.0026 588.422 13.5904 588.834L12.6921 589.733C12.7059 587.687 13.0604 585.964 14.5029 584.522C15.3302 583.694 16.3293 583.144 17.3854 582.87C17.1835 582.203 17.0399 581.511 16.9607 580.8Z" fill="#4D5D69"/>
81
- <path d="M25.1082 590.608C24.8332 591.66 24.2837 592.654 23.4596 593.478C22.7466 594.191 21.9065 594.699 21.012 595.001L21.0046 595.003C20.4501 595.19 19.8745 595.297 19.2953 595.326C19.1907 595.331 19.086 595.333 18.9813 595.333L18.9764 595.333C18.8604 595.333 18.7444 595.33 18.6285 595.324C18.6158 595.323 18.6033 595.322 18.5907 595.322C18.3264 595.306 18.0629 595.273 17.8019 595.224C17.229 595.116 16.6771 595.493 16.5692 596.066C16.4614 596.639 16.8383 597.191 17.4112 597.299C18.8885 597.577 20.4259 597.459 21.8537 596.943L21.8847 596.931C23.0041 596.523 24.0545 595.869 24.9524 594.971C26.0792 593.844 26.821 592.478 27.1777 591.037C26.4664 590.956 25.7746 590.811 25.1082 590.608Z" fill="#4D5D69"/>
81
+ <path d="M25.1082 590.608C24.8332 591.66 24.2837 592.654 23.4596 593.478C22.7466 594.191 21.9065 594.699 21.012 595.001L21.0046 595.003C20.4501 595.19 19.8745 595.297 19.2953 595.326C19.1907 595.331 19.086 595.333 18.9813 595.333L18.9764 595.333C18.8604 595.333 18.7444 595.33 18.6285 595.324C18.6158 595.323 18.6033 595.322 18.5907 595.322C18.3264 595.306 18.0629 595.273 17.8019 595.224C17.229 595.116 16.6771 595.493 16.5692 596.066C16.4614 596.639 16.8383 597.191 17.4112 597.299C18.8885 597.577 20.4259 597.459 21.8537 596.943L21.8847 596.931C23.0041 596.523 24.0545 595.869 24.9524 594.971C26.0792 593.844 26.8209 592.478 27.1777 591.037C26.4664 590.956 25.7746 590.811 25.1082 590.608Z" fill="#4D5D69"/>
82
82
  <path fill-rule="evenodd" clip-rule="evenodd" d="M38 579.5C38 584.747 33.7467 589 28.5 589C23.2533 589 19 584.747 19 579.5C19 574.253 23.2533 570 28.5 570C33.7467 570 38 574.253 38 579.5ZM28.5 574.085C29.1296 574.085 29.64 574.595 29.64 575.225V578.36H32.775C33.4046 578.36 33.915 578.87 33.915 579.5C33.915 580.13 33.4046 580.64 32.775 580.64H29.64V583.775C29.64 584.405 29.1296 584.915 28.5 584.915C27.8704 584.915 27.36 584.405 27.36 583.775V580.64H24.225C23.5954 580.64 23.085 580.13 23.085 579.5C23.085 578.87 23.5954 578.36 24.225 578.36H27.36V575.225C27.36 574.595 27.8704 574.085 28.5 574.085Z" fill="#239332"/>
83
83
  </svg>
@@ -1,8 +1,8 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
-
3
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
- <svg width="17px" height="17px" viewBox="0 0 17 17" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
5
- <g>
6
- </g>
7
- <path d="M8.5 0c-4.687 0-8.5 3.813-8.5 8.5s3.813 8.5 8.5 8.5 8.5-3.813 8.5-8.5-3.813-8.5-8.5-8.5zM8.5 16c-4.136 0-7.5-3.364-7.5-7.5s3.364-7.5 7.5-7.5 7.5 3.364 7.5 7.5-3.364 7.5-7.5 7.5zM9 12.369h0.979v1h-2.958v-1h0.979v-4.42h-0.946v-1h1.946v5.42zM7.185 4.986c0-0.545 0.441-0.986 0.986-0.986s0.985 0.441 0.985 0.986c0 0.543-0.44 0.984-0.985 0.984s-0.986-0.441-0.986-0.984z" fill="#0072a3" />
8
- </svg>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg width="17px" height="17px" viewBox="0 0 17 17" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
5
+ <g>
6
+ </g>
7
+ <path d="M8.5 0c-4.687 0-8.5 3.813-8.5 8.5s3.813 8.5 8.5 8.5 8.5-3.813 8.5-8.5-3.813-8.5-8.5-8.5zM8.5 16c-4.136 0-7.5-3.364-7.5-7.5s3.364-7.5 7.5-7.5 7.5 3.364 7.5 7.5-3.364 7.5-7.5 7.5zM9 12.369h0.979v1h-2.958v-1h0.979v-4.42h-0.946v-1h1.946v5.42zM7.185 4.986c0-0.545 0.441-0.986 0.986-0.986s0.985 0.441 0.985 0.986c0 0.543-0.44 0.984-0.985 0.984s-0.986-0.441-0.986-0.984z" fill="#0072a3" />
8
+ </svg>
@@ -1,53 +1,53 @@
1
- <svg
2
- version="1.1"
3
- class="brvmw-color-theme"
4
- id="vcenter-"
5
- data-name="Layer 1"
6
- xml:space="preserve"
7
- width="38"
8
- height="38"
9
- viewBox="0 0 1440 1440"
10
- xmlns="http://www.w3.org/2000/svg"
11
- xmlns:svg="http://www.w3.org/2000/svg"
12
- >
13
- <defs id="defs6"/>
14
- <g id="g8"
15
- transform="matrix(1.3333333,0,0,-1.3333333,0,1150)"><g
16
- id="g10"
17
- transform="scale(0.1)"><path
18
- d="m 5485.82,3974.16 c 99.06,0 179.66,80.57 179.66,179.63 0,99.04 -80.6,179.63 -179.66,179.63 -50.81,0 -96.69,-21.29 -129.39,-55.36 -31.03,-32.28 -50.24,-76.05 -50.24,-124.27 0,-48.25 19.21,-91.98 50.24,-124.3 32.7,-34.03 78.58,-55.33 129.39,-55.33 v 0"
19
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
20
- id="path14" /><path
21
- d="m 4254.43,6033.08 c 2.83,42.92 5.99,85.56 9.36,128 1.15,14.07 2.41,28.01 3.59,42.02 2.41,28.37 4.88,56.71 7.53,84.84 1.53,16.36 3.19,32.62 4.82,48.89 2.59,25.69 5.21,51.32 8.01,76.8 1.84,16.87 3.73,33.7 5.66,50.51 2.86,25 5.87,49.88 8.98,74.67 2.01,16.41 4.06,32.86 6.2,49.18 3.37,25.75 6.9,51.29 10.48,76.8 2.08,14.88 4.1,29.82 6.27,44.64 4.49,30.54 9.18,60.81 13.97,90.99 1.48,9.37 2.86,18.86 4.37,28.16 6.05,37.32 12.35,74.37 18.91,111.08 -500.09,158.22 -883.99,207.79 -1148.77,186.14 237.22,-16.12 534.1,-73.55 889.96,-186.14 -6.54,-36.71 -12.83,-73.76 -18.91,-111.08 -1.51,-9.3 -2.9,-18.79 -4.37,-28.16 -4.79,-30.18 -9.49,-60.45 -13.95,-90.99 -2.17,-14.82 -4.18,-29.76 -6.29,-44.64 -3.59,-25.51 -7.11,-51.05 -10.48,-76.8 -2.14,-16.32 -4.16,-32.77 -6.21,-49.18 -3.07,-24.79 -6.08,-49.67 -8.97,-74.67 -1.93,-16.81 -3.83,-33.64 -5.67,-50.51 -2.8,-25.48 -5.42,-51.11 -7.98,-76.8 -1.65,-16.27 -3.28,-32.53 -4.85,-48.89 -2.65,-28.13 -5.09,-56.47 -7.5,-84.84 -1.2,-14.01 -2.47,-27.95 -3.58,-42.02 -3.4,-42.44 -6.57,-85.08 -9.4,-128 -3.82,-57.98 25.63,-113.1 75.96,-142.17 L 6147.26,4692.5 c -6.05,-79.57 -13.16,-158.27 -21.26,-235.98 -24.31,-233.18 -57.74,-457.45 -99.91,-669.91 -0.03,-0.09 -0.03,-0.15 -0.06,-0.24 -170.44,-856.95 -439.31,-1317.59 -669.58,-1445.27 44.91,-24.93 88.41,-37.4 129.37,-37.4 250.95,0 595.3,458.47 799.03,1482.67 0.03,0.09 0.03,0.15 0.03,0.24 42.19,212.46 75.63,436.73 99.93,669.91 8.1,77.71 15.18,156.41 21.24,235.98 L 4330.39,5890.91 c -50.33,29.07 -79.79,84.19 -75.96,142.17 v 0"
22
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
23
- id="path16" /><path
24
- d="m 4742.24,6646.03 c 0,-267.34 217.46,-484.83 484.79,-484.83 44.88,0 88.16,6.57 129.4,18.07 -204.61,56.81 -355.41,244.27 -355.41,466.76 0,222.46 150.8,409.92 355.41,466.73 -41.27,11.47 -84.55,18.07 -129.4,18.07 -267.33,0 -484.79,-217.49 -484.79,-484.8 v 0"
25
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
26
- id="path18" /><path
27
- d="m 5356.43,6770.3 c -31.03,-32.29 -50.24,-76.05 -50.24,-124.27 0,-48.25 19.21,-92.01 50.24,-124.3 32.7,-34.04 78.58,-55.36 129.39,-55.36 99.06,0 179.66,80.6 179.66,179.66 0,99.03 -80.6,179.63 -179.66,179.63 -50.81,0 -96.69,-21.32 -129.39,-55.36 v 0"
28
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
29
- id="path20" /><path
30
- d="m 7908.6,6948.1 c 112.92,-195.6 -58.13,-642.45 -665.9,-1231.79 46.98,-37.68 93.27,-75.48 138.33,-113.46 705.6,645.34 906.41,1137.3 786.38,1345.25 -73.19,126.77 -297.54,202.82 -667.8,177.79 217.7,-17.89 354.81,-83.94 408.99,-177.79 v 0"
31
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
32
- id="path22" /><path
33
- d="m 6026.09,7013.18 c 8.59,-43.13 35.3,-80.42 73.37,-102.4 38.07,-21.99 83.8,-26.45 125.36,-12.35 35.45,12.05 70.21,23.43 104.57,34.42 -22.46,21.48 -38.31,49.28 -44.48,80.33 -203.73,1024.53 -548.14,1483.12 -799.09,1483.12 -40.96,0 -84.46,-12.47 -129.37,-37.4 230.27,-127.7 499.2,-588.5 669.64,-1445.72 v 0"
34
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
35
- id="path24" /><path
36
- d="m 7282.81,5284.89 c -0.12,0.09 -0.24,0.21 -0.36,0.3 -41.14,36.08 -83.25,72.1 -126.29,107.97 -184.69,154 -386.46,305.83 -602.17,453.18 -0.66,0.45 -1.26,0.87 -1.9,1.32 -2.59,1.75 -5.21,3.53 -7.8,5.3 -1.65,1.12 -3.28,2.23 -4.94,3.35 -19.6,13.34 -39.33,26.62 -59.15,39.9 -168.67,112.68 -343.93,221.65 -520.88,323.79 -45.51,26.26 -91.26,52.13 -137.16,77.61 -33.74,-32.56 -72.23,-60.18 -114.19,-82.01 174.43,-100.9 347.13,-208.28 513.42,-319.39 19.84,-13.28 39.57,-26.56 59.18,-39.9 1.66,-1.12 3.25,-2.23 4.91,-3.35 2.59,-1.77 5.21,-3.55 7.8,-5.3 0.63,-0.45 1.27,-0.87 1.9,-1.32 215.71,-147.35 417.48,-299.18 602.17,-453.18 43.04,-35.87 85.18,-71.89 126.32,-107.97 0.12,-0.09 0.21,-0.21 0.33,-0.3 785.21,-688.47 1010.04,-1215.76 884.63,-1432.98 -54.24,-93.91 -191.62,-159.96 -409.65,-177.76 370.62,-25.15 595.21,50.96 668.43,177.76 125.45,217.22 -99.42,744.51 -884.6,1432.98 v 0"
37
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
38
- id="path26" /><path
39
- d="m 4278.49,3909.47 c -16.5,0 -33.07,-2.68 -49.03,-8.07 -412.21,-139.94 -751.23,-209.36 -1015.86,-227.25 268.45,-22.02 659.64,29.39 1170.04,192.82 -8.71,8.34 -18.19,15.93 -28.83,22.08 -23.46,13.52 -49.81,20.42 -76.32,20.42 v 0"
40
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
41
- id="path28" /><path
42
- d="m 5005.15,4584.32 c 2.47,-1.42 4.91,-2.9 7.38,-4.34 45.41,-26.2 91.17,-52.08 137.16,-77.62 57.22,55.21 128.03,96.23 206.74,118.19 -41.27,11.44 -84.55,18.04 -129.4,18.04 -80.02,0 -155.38,-19.73 -221.88,-54.27 v 0"
43
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
44
- id="path30" /><path
45
- d="m 4601.16,4315.71 c 48.97,-28.28 98.37,-56.11 147.97,-83.64 -4.15,-25.54 -6.89,-51.56 -6.89,-78.28 0,-267.33 217.46,-484.79 484.79,-484.79 44.85,0 88.13,6.59 129.4,18.07 -204.61,56.8 -355.41,244.26 -355.41,466.72 0,26.72 2.74,52.74 6.93,78.28 -49.64,27.53 -99.01,55.36 -148.01,83.64 -183.79,106.11 -364.83,218.61 -538.05,334.39 -264.68,177.04 -510.03,360.58 -731.08,546.87 -41.95,-38.4 -82.01,-76.2 -120.44,-113.46 183.72,-147.31 381.97,-292.46 592.71,-433.41 173.25,-115.78 354.26,-228.28 538.08,-334.39 v 0"
46
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
47
- id="path32" /><path
48
- d="m 7908.63,3851.91 c 125.41,217.22 -99.42,744.51 -884.63,1432.98 -0.12,0.09 -0.21,0.21 -0.33,0.3 -41.14,36.08 -83.28,72.1 -126.32,107.97 -184.69,154 -386.46,305.83 -602.17,453.18 -0.63,0.45 -1.27,0.87 -1.9,1.32 -2.59,1.75 -5.21,3.53 -7.8,5.3 -1.66,1.12 -3.25,2.23 -4.91,3.35 -19.61,13.34 -39.34,26.62 -59.18,39.9 -166.29,111.11 -338.99,218.49 -513.42,319.39 -66.59,-34.61 -142.04,-54.4 -222.15,-54.4 -44.85,0 -88.13,6.63 -129.39,18.07 -41.24,-11.5 -84.52,-18.07 -129.4,-18.07 -267.33,0 -484.79,217.49 -484.79,484.83 0,267.31 217.46,484.8 484.79,484.8 44.85,0 88.13,-6.6 129.4,-18.07 41.26,11.47 84.54,18.07 129.39,18.07 267.33,0 484.82,-217.49 484.82,-484.8 0,-26.62 -2.74,-52.59 -6.86,-78.04 49.57,-27.47 98.97,-55.33 148.12,-83.7 182.68,-105.48 363.63,-217.97 537.87,-334.35 210.47,-140.72 408.81,-285.92 592.93,-433.63 607.77,589.34 778.82,1036.19 665.9,1231.79 -54.18,93.85 -191.29,159.9 -408.99,177.79 -264.66,-17.92 -603.71,-87.41 -1015.98,-227.46 -41.59,-14.1 -87.28,-9.64 -125.38,12.35 -10.63,6.14 -20.15,13.73 -28.86,22.07 -34.36,-10.99 -69.12,-22.37 -104.57,-34.42 -41.56,-14.1 -87.29,-9.64 -125.36,12.35 -38.07,21.98 -64.78,59.27 -73.37,102.4 -170.44,857.22 -439.37,1318.02 -669.64,1445.72 -230.2,-127.7 -499.01,-588.47 -669.48,-1445.6 0,-0.03 0,-0.06 0,-0.12 -34.1,-171.56 -62.41,-351.16 -84.94,-537.05 -14.58,-120.39 -26.81,-243.36 -36.38,-368.69 L 6641.28,4909.09 c 50.3,-29.06 79.75,-84.15 75.99,-142.1 -2.83,-42.8 -5.97,-85.36 -9.34,-127.71 -1.14,-14.3 -2.44,-28.49 -3.64,-42.77 -2.35,-28.04 -4.76,-56.02 -7.38,-83.85 -1.57,-16.65 -3.26,-33.22 -4.91,-49.81 -2.53,-25.27 -5.09,-50.45 -7.83,-75.54 -1.9,-17.29 -3.83,-34.52 -5.82,-51.72 -2.8,-24.45 -5.72,-48.79 -8.73,-73.04 -2.11,-16.98 -4.22,-33.97 -6.42,-50.84 -3.25,-24.97 -6.68,-49.73 -10.15,-74.48 -2.17,-15.63 -4.3,-31.36 -6.59,-46.93 -4.25,-29.09 -8.74,-57.95 -13.29,-86.71 -1.71,-10.81 -3.28,-21.72 -5.03,-32.47 -6.05,-37.26 -12.34,-74.27 -18.88,-110.96 355.74,-112.52 652.53,-169.93 889.72,-186.01 218.03,17.8 355.41,83.85 409.65,177.76 v 0"
49
- style="fill:#fbce28;fill-opacity:1;fill-rule:nonzero;stroke:none"
50
- id="path34" /><path
51
- d="m 6026.03,3786.37 c 0.03,0.09 0.03,0.15 0.06,0.24 42.17,212.46 75.6,436.73 99.91,669.91 8.1,77.71 15.21,156.41 21.26,235.98 L 4071.57,5890.91 c -50.33,29.07 -79.78,84.19 -75.96,142.17 2.83,42.92 6,85.56 9.4,128 1.11,14.07 2.38,28.01 3.58,42.02 2.41,28.37 4.85,56.71 7.5,84.84 1.57,16.36 3.2,32.62 4.85,48.89 2.56,25.69 5.18,51.32 7.98,76.8 1.84,16.87 3.74,33.7 5.67,50.51 2.89,25 5.9,49.88 8.97,74.67 2.05,16.41 4.07,32.86 6.21,49.18 3.37,25.75 6.89,51.29 10.48,76.8 2.11,14.88 4.12,29.82 6.29,44.64 4.46,30.54 9.16,60.81 13.95,90.99 1.47,9.37 2.86,18.86 4.37,28.16 6.08,37.32 12.37,74.37 18.91,111.08 -355.86,112.59 -652.74,170.02 -889.96,186.14 -217.88,-17.83 -355.19,-83.82 -409.38,-177.7 -125.45,-217.34 99.52,-744.88 884.93,-1433.46 217.16,-190.48 461.97,-378.99 728.73,-561.24 8.11,-5.55 16.24,-11.09 24.37,-16.6 3.88,-2.62 7.8,-5.27 11.66,-7.89 12.43,-8.4 24.88,-16.78 37.37,-25.15 165.33,-110.48 338.15,-217.88 513.66,-319.44 66.5,34.54 141.86,54.27 221.88,54.27 44.85,0 88.13,-6.6 129.4,-18.04 41.23,11.5 84.51,18.04 129.39,18.04 267.33,0 484.82,-217.46 484.82,-484.8 0,-267.33 -217.49,-484.79 -484.82,-484.79 -44.85,0 -88.13,6.59 -129.39,18.07 -41.27,-11.48 -84.55,-18.07 -129.4,-18.07 -267.33,0 -484.79,217.46 -484.79,484.79 0,26.72 2.74,52.74 6.89,78.28 -49.6,27.53 -99,55.36 -147.97,83.64 -183.82,106.11 -364.83,218.61 -538.08,334.39 -210.74,140.95 -408.99,286.1 -592.71,433.41 -607.81,-589.31 -778.86,-1036.1 -665.94,-1231.6 54.19,-93.85 191.35,-159.9 409.17,-177.76 264.63,17.89 603.65,87.31 1015.86,227.25 15.96,5.39 32.53,8.07 49.03,8.07 26.51,0 52.86,-6.9 76.32,-20.42 10.64,-6.15 20.12,-13.74 28.83,-22.08 34.39,11.02 69.15,22.38 104.6,34.43 15.99,5.39 32.56,8.07 49.04,8.07 26.53,0 52.85,-6.9 76.32,-20.42 38.04,-21.99 64.78,-59.31 73.34,-102.41 170.44,-857.1 439.28,-1317.86 669.51,-1445.54 230.27,127.68 499.14,588.32 669.58,1445.27 v 0"
52
- style="fill:#fbce28;fill-opacity:1;fill-rule:nonzero;stroke:none"
1
+ <svg
2
+ version="1.1"
3
+ class="brvmw-color-theme"
4
+ id="vcenter-"
5
+ data-name="Layer 1"
6
+ xml:space="preserve"
7
+ width="38"
8
+ height="38"
9
+ viewBox="0 0 1440 1440"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ xmlns:svg="http://www.w3.org/2000/svg"
12
+ >
13
+ <defs id="defs6"/>
14
+ <g id="g8"
15
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1150)"><g
16
+ id="g10"
17
+ transform="scale(0.1)"><path
18
+ d="m 5485.82,3974.16 c 99.06,0 179.66,80.57 179.66,179.63 0,99.04 -80.6,179.63 -179.66,179.63 -50.81,0 -96.69,-21.29 -129.39,-55.36 -31.03,-32.28 -50.24,-76.05 -50.24,-124.27 0,-48.25 19.21,-91.98 50.24,-124.3 32.7,-34.03 78.58,-55.33 129.39,-55.33 v 0"
19
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
20
+ id="path14" /><path
21
+ d="m 4254.43,6033.08 c 2.83,42.92 5.99,85.56 9.36,128 1.15,14.07 2.41,28.01 3.59,42.02 2.41,28.37 4.88,56.71 7.53,84.84 1.53,16.36 3.19,32.62 4.82,48.89 2.59,25.69 5.21,51.32 8.01,76.8 1.84,16.87 3.73,33.7 5.66,50.51 2.86,25 5.87,49.88 8.98,74.67 2.01,16.41 4.06,32.86 6.2,49.18 3.37,25.75 6.9,51.29 10.48,76.8 2.08,14.88 4.1,29.82 6.27,44.64 4.49,30.54 9.18,60.81 13.97,90.99 1.48,9.37 2.86,18.86 4.37,28.16 6.05,37.32 12.35,74.37 18.91,111.08 -500.09,158.22 -883.99,207.79 -1148.77,186.14 237.22,-16.12 534.1,-73.55 889.96,-186.14 -6.54,-36.71 -12.83,-73.76 -18.91,-111.08 -1.51,-9.3 -2.9,-18.79 -4.37,-28.16 -4.79,-30.18 -9.49,-60.45 -13.95,-90.99 -2.17,-14.82 -4.18,-29.76 -6.29,-44.64 -3.59,-25.51 -7.11,-51.05 -10.48,-76.8 -2.14,-16.32 -4.16,-32.77 -6.21,-49.18 -3.07,-24.79 -6.08,-49.67 -8.97,-74.67 -1.93,-16.81 -3.83,-33.64 -5.67,-50.51 -2.8,-25.48 -5.42,-51.11 -7.98,-76.8 -1.65,-16.27 -3.28,-32.53 -4.85,-48.89 -2.65,-28.13 -5.09,-56.47 -7.5,-84.84 -1.2,-14.01 -2.47,-27.95 -3.58,-42.02 -3.4,-42.44 -6.57,-85.08 -9.4,-128 -3.82,-57.98 25.63,-113.1 75.96,-142.17 L 6147.26,4692.5 c -6.05,-79.57 -13.16,-158.27 -21.26,-235.98 -24.31,-233.18 -57.74,-457.45 -99.91,-669.91 -0.03,-0.09 -0.03,-0.15 -0.06,-0.24 -170.44,-856.95 -439.31,-1317.59 -669.58,-1445.27 44.91,-24.93 88.41,-37.4 129.37,-37.4 250.95,0 595.3,458.47 799.03,1482.67 0.03,0.09 0.03,0.15 0.03,0.24 42.19,212.46 75.63,436.73 99.93,669.91 8.1,77.71 15.18,156.41 21.24,235.98 L 4330.39,5890.91 c -50.33,29.07 -79.79,84.19 -75.96,142.17 v 0"
22
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
23
+ id="path16" /><path
24
+ d="m 4742.24,6646.03 c 0,-267.34 217.46,-484.83 484.79,-484.83 44.88,0 88.16,6.57 129.4,18.07 -204.61,56.81 -355.41,244.27 -355.41,466.76 0,222.46 150.8,409.92 355.41,466.73 -41.27,11.47 -84.55,18.07 -129.4,18.07 -267.33,0 -484.79,-217.49 -484.79,-484.8 v 0"
25
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
26
+ id="path18" /><path
27
+ d="m 5356.43,6770.3 c -31.03,-32.29 -50.24,-76.05 -50.24,-124.27 0,-48.25 19.21,-92.01 50.24,-124.3 32.7,-34.04 78.58,-55.36 129.39,-55.36 99.06,0 179.66,80.6 179.66,179.66 0,99.03 -80.6,179.63 -179.66,179.63 -50.81,0 -96.69,-21.32 -129.39,-55.36 v 0"
28
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
29
+ id="path20" /><path
30
+ d="m 7908.6,6948.1 c 112.92,-195.6 -58.13,-642.45 -665.9,-1231.79 46.98,-37.68 93.27,-75.48 138.33,-113.46 705.6,645.34 906.41,1137.3 786.38,1345.25 -73.19,126.77 -297.54,202.82 -667.8,177.79 217.7,-17.89 354.81,-83.94 408.99,-177.79 v 0"
31
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
32
+ id="path22" /><path
33
+ d="m 6026.09,7013.18 c 8.59,-43.13 35.3,-80.42 73.37,-102.4 38.07,-21.99 83.8,-26.45 125.36,-12.35 35.45,12.05 70.21,23.43 104.57,34.42 -22.46,21.48 -38.31,49.28 -44.48,80.33 -203.73,1024.53 -548.14,1483.12 -799.09,1483.12 -40.96,0 -84.46,-12.47 -129.37,-37.4 230.27,-127.7 499.2,-588.5 669.64,-1445.72 v 0"
34
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
35
+ id="path24" /><path
36
+ d="m 7282.81,5284.89 c -0.12,0.09 -0.24,0.21 -0.36,0.3 -41.14,36.08 -83.25,72.1 -126.29,107.97 -184.69,154 -386.46,305.83 -602.17,453.18 -0.66,0.45 -1.26,0.87 -1.9,1.32 -2.59,1.75 -5.21,3.53 -7.8,5.3 -1.65,1.12 -3.28,2.23 -4.94,3.35 -19.6,13.34 -39.33,26.62 -59.15,39.9 -168.67,112.68 -343.93,221.65 -520.88,323.79 -45.51,26.26 -91.26,52.13 -137.16,77.61 -33.74,-32.56 -72.23,-60.18 -114.19,-82.01 174.43,-100.9 347.13,-208.28 513.42,-319.39 19.84,-13.28 39.57,-26.56 59.18,-39.9 1.66,-1.12 3.25,-2.23 4.91,-3.35 2.59,-1.77 5.21,-3.55 7.8,-5.3 0.63,-0.45 1.27,-0.87 1.9,-1.32 215.71,-147.35 417.48,-299.18 602.17,-453.18 43.04,-35.87 85.18,-71.89 126.32,-107.97 0.12,-0.09 0.21,-0.21 0.33,-0.3 785.21,-688.47 1010.04,-1215.76 884.63,-1432.98 -54.24,-93.91 -191.62,-159.96 -409.65,-177.76 370.62,-25.15 595.21,50.96 668.43,177.76 125.45,217.22 -99.42,744.51 -884.6,1432.98 v 0"
37
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
38
+ id="path26" /><path
39
+ d="m 4278.49,3909.47 c -16.5,0 -33.07,-2.68 -49.03,-8.07 -412.21,-139.94 -751.23,-209.36 -1015.86,-227.25 268.45,-22.02 659.64,29.39 1170.04,192.82 -8.71,8.34 -18.19,15.93 -28.83,22.08 -23.46,13.52 -49.81,20.42 -76.32,20.42 v 0"
40
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
41
+ id="path28" /><path
42
+ d="m 5005.15,4584.32 c 2.47,-1.42 4.91,-2.9 7.38,-4.34 45.41,-26.2 91.17,-52.08 137.16,-77.62 57.22,55.21 128.03,96.23 206.74,118.19 -41.27,11.44 -84.55,18.04 -129.4,18.04 -80.02,0 -155.38,-19.73 -221.88,-54.27 v 0"
43
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
44
+ id="path30" /><path
45
+ d="m 4601.16,4315.71 c 48.97,-28.28 98.37,-56.11 147.97,-83.64 -4.15,-25.54 -6.89,-51.56 -6.89,-78.28 0,-267.33 217.46,-484.79 484.79,-484.79 44.85,0 88.13,6.59 129.4,18.07 -204.61,56.8 -355.41,244.26 -355.41,466.72 0,26.72 2.74,52.74 6.93,78.28 -49.64,27.53 -99.01,55.36 -148.01,83.64 -183.79,106.11 -364.83,218.61 -538.05,334.39 -264.68,177.04 -510.03,360.58 -731.08,546.87 -41.95,-38.4 -82.01,-76.2 -120.44,-113.46 183.72,-147.31 381.97,-292.46 592.71,-433.41 173.25,-115.78 354.26,-228.28 538.08,-334.39 v 0"
46
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
47
+ id="path32" /><path
48
+ d="m 7908.63,3851.91 c 125.41,217.22 -99.42,744.51 -884.63,1432.98 -0.12,0.09 -0.21,0.21 -0.33,0.3 -41.14,36.08 -83.28,72.1 -126.32,107.97 -184.69,154 -386.46,305.83 -602.17,453.18 -0.63,0.45 -1.27,0.87 -1.9,1.32 -2.59,1.75 -5.21,3.53 -7.8,5.3 -1.66,1.12 -3.25,2.23 -4.91,3.35 -19.61,13.34 -39.34,26.62 -59.18,39.9 -166.29,111.11 -338.99,218.49 -513.42,319.39 -66.59,-34.61 -142.04,-54.4 -222.15,-54.4 -44.85,0 -88.13,6.63 -129.39,18.07 -41.24,-11.5 -84.52,-18.07 -129.4,-18.07 -267.33,0 -484.79,217.49 -484.79,484.83 0,267.31 217.46,484.8 484.79,484.8 44.85,0 88.13,-6.6 129.4,-18.07 41.26,11.47 84.54,18.07 129.39,18.07 267.33,0 484.82,-217.49 484.82,-484.8 0,-26.62 -2.74,-52.59 -6.86,-78.04 49.57,-27.47 98.97,-55.33 148.12,-83.7 182.68,-105.48 363.63,-217.97 537.87,-334.35 210.47,-140.72 408.81,-285.92 592.93,-433.63 607.77,589.34 778.82,1036.19 665.9,1231.79 -54.18,93.85 -191.29,159.9 -408.99,177.79 -264.66,-17.92 -603.71,-87.41 -1015.98,-227.46 -41.59,-14.1 -87.28,-9.64 -125.38,12.35 -10.63,6.14 -20.15,13.73 -28.86,22.07 -34.36,-10.99 -69.12,-22.37 -104.57,-34.42 -41.56,-14.1 -87.29,-9.64 -125.36,12.35 -38.07,21.98 -64.78,59.27 -73.37,102.4 -170.44,857.22 -439.37,1318.02 -669.64,1445.72 -230.2,-127.7 -499.01,-588.47 -669.48,-1445.6 0,-0.03 0,-0.06 0,-0.12 -34.1,-171.56 -62.41,-351.16 -84.94,-537.05 -14.58,-120.39 -26.81,-243.36 -36.38,-368.69 L 6641.28,4909.09 c 50.3,-29.06 79.75,-84.15 75.99,-142.1 -2.83,-42.8 -5.97,-85.36 -9.34,-127.71 -1.14,-14.3 -2.44,-28.49 -3.64,-42.77 -2.35,-28.04 -4.76,-56.02 -7.38,-83.85 -1.57,-16.65 -3.26,-33.22 -4.91,-49.81 -2.53,-25.27 -5.09,-50.45 -7.83,-75.54 -1.9,-17.29 -3.83,-34.52 -5.82,-51.72 -2.8,-24.45 -5.72,-48.79 -8.73,-73.04 -2.11,-16.98 -4.22,-33.97 -6.42,-50.84 -3.25,-24.97 -6.68,-49.73 -10.15,-74.48 -2.17,-15.63 -4.3,-31.36 -6.59,-46.93 -4.25,-29.09 -8.74,-57.95 -13.29,-86.71 -1.71,-10.81 -3.28,-21.72 -5.03,-32.47 -6.05,-37.26 -12.34,-74.27 -18.88,-110.96 355.74,-112.52 652.53,-169.93 889.72,-186.01 218.03,17.8 355.41,83.85 409.65,177.76 v 0"
49
+ style="fill:#fbce28;fill-opacity:1;fill-rule:nonzero;stroke:none"
50
+ id="path34" /><path
51
+ d="m 6026.03,3786.37 c 0.03,0.09 0.03,0.15 0.06,0.24 42.17,212.46 75.6,436.73 99.91,669.91 8.1,77.71 15.21,156.41 21.26,235.98 L 4071.57,5890.91 c -50.33,29.07 -79.78,84.19 -75.96,142.17 2.83,42.92 6,85.56 9.4,128 1.11,14.07 2.38,28.01 3.58,42.02 2.41,28.37 4.85,56.71 7.5,84.84 1.57,16.36 3.2,32.62 4.85,48.89 2.56,25.69 5.18,51.32 7.98,76.8 1.84,16.87 3.74,33.7 5.67,50.51 2.89,25 5.9,49.88 8.97,74.67 2.05,16.41 4.07,32.86 6.21,49.18 3.37,25.75 6.89,51.29 10.48,76.8 2.11,14.88 4.12,29.82 6.29,44.64 4.46,30.54 9.16,60.81 13.95,90.99 1.47,9.37 2.86,18.86 4.37,28.16 6.08,37.32 12.37,74.37 18.91,111.08 -355.86,112.59 -652.74,170.02 -889.96,186.14 -217.88,-17.83 -355.19,-83.82 -409.38,-177.7 -125.45,-217.34 99.52,-744.88 884.93,-1433.46 217.16,-190.48 461.97,-378.99 728.73,-561.24 8.11,-5.55 16.24,-11.09 24.37,-16.6 3.88,-2.62 7.8,-5.27 11.66,-7.89 12.43,-8.4 24.88,-16.78 37.37,-25.15 165.33,-110.48 338.15,-217.88 513.66,-319.44 66.5,34.54 141.86,54.27 221.88,54.27 44.85,0 88.13,-6.6 129.4,-18.04 41.23,11.5 84.51,18.04 129.39,18.04 267.33,0 484.82,-217.46 484.82,-484.8 0,-267.33 -217.49,-484.79 -484.82,-484.79 -44.85,0 -88.13,6.59 -129.39,18.07 -41.27,-11.48 -84.55,-18.07 -129.4,-18.07 -267.33,0 -484.79,217.46 -484.79,484.79 0,26.72 2.74,52.74 6.89,78.28 -49.6,27.53 -99,55.36 -147.97,83.64 -183.82,106.11 -364.83,218.61 -538.08,334.39 -210.74,140.95 -408.99,286.1 -592.71,433.41 -607.81,-589.31 -778.86,-1036.1 -665.94,-1231.6 54.19,-93.85 191.35,-159.9 409.17,-177.76 264.63,17.89 603.65,87.31 1015.86,227.25 15.96,5.39 32.53,8.07 49.03,8.07 26.51,0 52.86,-6.9 76.32,-20.42 10.64,-6.15 20.12,-13.74 28.83,-22.08 34.39,11.02 69.15,22.38 104.6,34.43 15.99,5.39 32.56,8.07 49.04,8.07 26.53,0 52.85,-6.9 76.32,-20.42 38.04,-21.99 64.78,-59.31 73.34,-102.41 170.44,-857.1 439.28,-1317.86 669.51,-1445.54 230.27,127.68 499.14,588.32 669.58,1445.27 v 0"
52
+ style="fill:#fbce28;fill-opacity:1;fill-rule:nonzero;stroke:none"
53
53
  id="path36" /></g></g></svg>
@@ -1,50 +1,50 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-
4
- <svg
5
- version="1.1"
6
- id="svg2"
7
- xml:space="preserve"
8
- width="1440"
9
- height="1440"
10
- viewBox="0 0 1440 1440"
11
- xmlns="http://www.w3.org/2000/svg"
12
- xmlns:svg="http://www.w3.org/2000/svg"><defs
13
- id="defs6" /><g id="g10"
14
- transform="scale(0.1)"><path
15
- d="m 5485.82,3974.16 c 99.06,0 179.66,80.57 179.66,179.63 0,99.04 -80.6,179.63 -179.66,179.63 -50.81,0 -96.69,-21.29 -129.39,-55.36 -31.03,-32.28 -50.24,-76.05 -50.24,-124.27 0,-48.25 19.21,-91.98 50.24,-124.3 32.7,-34.03 78.58,-55.33 129.39,-55.33 v 0"
16
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
17
- id="path14" /><path
18
- d="m 4254.43,6033.08 c 2.83,42.92 5.99,85.56 9.36,128 1.15,14.07 2.41,28.01 3.59,42.02 2.41,28.37 4.88,56.71 7.53,84.84 1.53,16.36 3.19,32.62 4.82,48.89 2.59,25.69 5.21,51.32 8.01,76.8 1.84,16.87 3.73,33.7 5.66,50.51 2.86,25 5.87,49.88 8.98,74.67 2.01,16.41 4.06,32.86 6.2,49.18 3.37,25.75 6.9,51.29 10.48,76.8 2.08,14.88 4.1,29.82 6.27,44.64 4.49,30.54 9.18,60.81 13.97,90.99 1.48,9.37 2.86,18.86 4.37,28.16 6.05,37.32 12.35,74.37 18.91,111.08 -500.09,158.22 -883.99,207.79 -1148.77,186.14 237.22,-16.12 534.1,-73.55 889.96,-186.14 -6.54,-36.71 -12.83,-73.76 -18.91,-111.08 -1.51,-9.3 -2.9,-18.79 -4.37,-28.16 -4.79,-30.18 -9.49,-60.45 -13.95,-90.99 -2.17,-14.82 -4.18,-29.76 -6.29,-44.64 -3.59,-25.51 -7.11,-51.05 -10.48,-76.8 -2.14,-16.32 -4.16,-32.77 -6.21,-49.18 -3.07,-24.79 -6.08,-49.67 -8.97,-74.67 -1.93,-16.81 -3.83,-33.64 -5.67,-50.51 -2.8,-25.48 -5.42,-51.11 -7.98,-76.8 -1.65,-16.27 -3.28,-32.53 -4.85,-48.89 -2.65,-28.13 -5.09,-56.47 -7.5,-84.84 -1.2,-14.01 -2.47,-27.95 -3.58,-42.02 -3.4,-42.44 -6.57,-85.08 -9.4,-128 -3.82,-57.98 25.63,-113.1 75.96,-142.17 L 6147.26,4692.5 c -6.05,-79.57 -13.16,-158.27 -21.26,-235.98 -24.31,-233.18 -57.74,-457.45 -99.91,-669.91 -0.03,-0.09 -0.03,-0.15 -0.06,-0.24 -170.44,-856.95 -439.31,-1317.59 -669.58,-1445.27 44.91,-24.93 88.41,-37.4 129.37,-37.4 250.95,0 595.3,458.47 799.03,1482.67 0.03,0.09 0.03,0.15 0.03,0.24 42.19,212.46 75.63,436.73 99.93,669.91 8.1,77.71 15.18,156.41 21.24,235.98 L 4330.39,5890.91 c -50.33,29.07 -79.79,84.19 -75.96,142.17 v 0"
19
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
20
- id="path16" /><path
21
- d="m 4742.24,6646.03 c 0,-267.34 217.46,-484.83 484.79,-484.83 44.88,0 88.16,6.57 129.4,18.07 -204.61,56.81 -355.41,244.27 -355.41,466.76 0,222.46 150.8,409.92 355.41,466.73 -41.27,11.47 -84.55,18.07 -129.4,18.07 -267.33,0 -484.79,-217.49 -484.79,-484.8 v 0"
22
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
23
- id="path18" /><path
24
- d="m 5356.43,6770.3 c -31.03,-32.29 -50.24,-76.05 -50.24,-124.27 0,-48.25 19.21,-92.01 50.24,-124.3 32.7,-34.04 78.58,-55.36 129.39,-55.36 99.06,0 179.66,80.6 179.66,179.66 0,99.03 -80.6,179.63 -179.66,179.63 -50.81,0 -96.69,-21.32 -129.39,-55.36 v 0"
25
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
26
- id="path20" /><path
27
- d="m 7908.6,6948.1 c 112.92,-195.6 -58.13,-642.45 -665.9,-1231.79 46.98,-37.68 93.27,-75.48 138.33,-113.46 705.6,645.34 906.41,1137.3 786.38,1345.25 -73.19,126.77 -297.54,202.82 -667.8,177.79 217.7,-17.89 354.81,-83.94 408.99,-177.79 v 0"
28
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
29
- id="path22" /><path
30
- d="m 6026.09,7013.18 c 8.59,-43.13 35.3,-80.42 73.37,-102.4 38.07,-21.99 83.8,-26.45 125.36,-12.35 35.45,12.05 70.21,23.43 104.57,34.42 -22.46,21.48 -38.31,49.28 -44.48,80.33 -203.73,1024.53 -548.14,1483.12 -799.09,1483.12 -40.96,0 -84.46,-12.47 -129.37,-37.4 230.27,-127.7 499.2,-588.5 669.64,-1445.72 v 0"
31
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
32
- id="path24" /><path
33
- d="m 7282.81,5284.89 c -0.12,0.09 -0.24,0.21 -0.36,0.3 -41.14,36.08 -83.25,72.1 -126.29,107.97 -184.69,154 -386.46,305.83 -602.17,453.18 -0.66,0.45 -1.26,0.87 -1.9,1.32 -2.59,1.75 -5.21,3.53 -7.8,5.3 -1.65,1.12 -3.28,2.23 -4.94,3.35 -19.6,13.34 -39.33,26.62 -59.15,39.9 -168.67,112.68 -343.93,221.65 -520.88,323.79 -45.51,26.26 -91.26,52.13 -137.16,77.61 -33.74,-32.56 -72.23,-60.18 -114.19,-82.01 174.43,-100.9 347.13,-208.28 513.42,-319.39 19.84,-13.28 39.57,-26.56 59.18,-39.9 1.66,-1.12 3.25,-2.23 4.91,-3.35 2.59,-1.77 5.21,-3.55 7.8,-5.3 0.63,-0.45 1.27,-0.87 1.9,-1.32 215.71,-147.35 417.48,-299.18 602.17,-453.18 43.04,-35.87 85.18,-71.89 126.32,-107.97 0.12,-0.09 0.21,-0.21 0.33,-0.3 785.21,-688.47 1010.04,-1215.76 884.63,-1432.98 -54.24,-93.91 -191.62,-159.96 -409.65,-177.76 370.62,-25.15 595.21,50.96 668.43,177.76 125.45,217.22 -99.42,744.51 -884.6,1432.98 v 0"
34
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
35
- id="path26" /><path
36
- d="m 4278.49,3909.47 c -16.5,0 -33.07,-2.68 -49.03,-8.07 -412.21,-139.94 -751.23,-209.36 -1015.86,-227.25 268.45,-22.02 659.64,29.39 1170.04,192.82 -8.71,8.34 -18.19,15.93 -28.83,22.08 -23.46,13.52 -49.81,20.42 -76.32,20.42 v 0"
37
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
38
- id="path28" /><path
39
- d="m 5005.15,4584.32 c 2.47,-1.42 4.91,-2.9 7.38,-4.34 45.41,-26.2 91.17,-52.08 137.16,-77.62 57.22,55.21 128.03,96.23 206.74,118.19 -41.27,11.44 -84.55,18.04 -129.4,18.04 -80.02,0 -155.38,-19.73 -221.88,-54.27 v 0"
40
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
41
- id="path30" /><path
42
- d="m 4601.16,4315.71 c 48.97,-28.28 98.37,-56.11 147.97,-83.64 -4.15,-25.54 -6.89,-51.56 -6.89,-78.28 0,-267.33 217.46,-484.79 484.79,-484.79 44.85,0 88.13,6.59 129.4,18.07 -204.61,56.8 -355.41,244.26 -355.41,466.72 0,26.72 2.74,52.74 6.93,78.28 -49.64,27.53 -99.01,55.36 -148.01,83.64 -183.79,106.11 -364.83,218.61 -538.05,334.39 -264.68,177.04 -510.03,360.58 -731.08,546.87 -41.95,-38.4 -82.01,-76.2 -120.44,-113.46 183.72,-147.31 381.97,-292.46 592.71,-433.41 173.25,-115.78 354.26,-228.28 538.08,-334.39 v 0"
43
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
44
- id="path32" /><path
45
- d="m 7908.63,3851.91 c 125.41,217.22 -99.42,744.51 -884.63,1432.98 -0.12,0.09 -0.21,0.21 -0.33,0.3 -41.14,36.08 -83.28,72.1 -126.32,107.97 -184.69,154 -386.46,305.83 -602.17,453.18 -0.63,0.45 -1.27,0.87 -1.9,1.32 -2.59,1.75 -5.21,3.53 -7.8,5.3 -1.66,1.12 -3.25,2.23 -4.91,3.35 -19.61,13.34 -39.34,26.62 -59.18,39.9 -166.29,111.11 -338.99,218.49 -513.42,319.39 -66.59,-34.61 -142.04,-54.4 -222.15,-54.4 -44.85,0 -88.13,6.63 -129.39,18.07 -41.24,-11.5 -84.52,-18.07 -129.4,-18.07 -267.33,0 -484.79,217.49 -484.79,484.83 0,267.31 217.46,484.8 484.79,484.8 44.85,0 88.13,-6.6 129.4,-18.07 41.26,11.47 84.54,18.07 129.39,18.07 267.33,0 484.82,-217.49 484.82,-484.8 0,-26.62 -2.74,-52.59 -6.86,-78.04 49.57,-27.47 98.97,-55.33 148.12,-83.7 182.68,-105.48 363.63,-217.97 537.87,-334.35 210.47,-140.72 408.81,-285.92 592.93,-433.63 607.77,589.34 778.82,1036.19 665.9,1231.79 -54.18,93.85 -191.29,159.9 -408.99,177.79 -264.66,-17.92 -603.71,-87.41 -1015.98,-227.46 -41.59,-14.1 -87.28,-9.64 -125.38,12.35 -10.63,6.14 -20.15,13.73 -28.86,22.07 -34.36,-10.99 -69.12,-22.37 -104.57,-34.42 -41.56,-14.1 -87.29,-9.64 -125.36,12.35 -38.07,21.98 -64.78,59.27 -73.37,102.4 -170.44,857.22 -439.37,1318.02 -669.64,1445.72 -230.2,-127.7 -499.01,-588.47 -669.48,-1445.6 0,-0.03 0,-0.06 0,-0.12 -34.1,-171.56 -62.41,-351.16 -84.94,-537.05 -14.58,-120.39 -26.81,-243.36 -36.38,-368.69 L 6641.28,4909.09 c 50.3,-29.06 79.75,-84.15 75.99,-142.1 -2.83,-42.8 -5.97,-85.36 -9.34,-127.71 -1.14,-14.3 -2.44,-28.49 -3.64,-42.77 -2.35,-28.04 -4.76,-56.02 -7.38,-83.85 -1.57,-16.65 -3.26,-33.22 -4.91,-49.81 -2.53,-25.27 -5.09,-50.45 -7.83,-75.54 -1.9,-17.29 -3.83,-34.52 -5.82,-51.72 -2.8,-24.45 -5.72,-48.79 -8.73,-73.04 -2.11,-16.98 -4.22,-33.97 -6.42,-50.84 -3.25,-24.97 -6.68,-49.73 -10.15,-74.48 -2.17,-15.63 -4.3,-31.36 -6.59,-46.93 -4.25,-29.09 -8.74,-57.95 -13.29,-86.71 -1.71,-10.81 -3.28,-21.72 -5.03,-32.47 -6.05,-37.26 -12.34,-74.27 -18.88,-110.96 355.74,-112.52 652.53,-169.93 889.72,-186.01 218.03,17.8 355.41,83.85 409.65,177.76 v 0"
46
- style="fill:#fbce28;fill-opacity:1;fill-rule:nonzero;stroke:none"
47
- id="path34" /><path
48
- d="m 6026.03,3786.37 c 0.03,0.09 0.03,0.15 0.06,0.24 42.17,212.46 75.6,436.73 99.91,669.91 8.1,77.71 15.21,156.41 21.26,235.98 L 4071.57,5890.91 c -50.33,29.07 -79.78,84.19 -75.96,142.17 2.83,42.92 6,85.56 9.4,128 1.11,14.07 2.38,28.01 3.58,42.02 2.41,28.37 4.85,56.71 7.5,84.84 1.57,16.36 3.2,32.62 4.85,48.89 2.56,25.69 5.18,51.32 7.98,76.8 1.84,16.87 3.74,33.7 5.67,50.51 2.89,25 5.9,49.88 8.97,74.67 2.05,16.41 4.07,32.86 6.21,49.18 3.37,25.75 6.89,51.29 10.48,76.8 2.11,14.88 4.12,29.82 6.29,44.64 4.46,30.54 9.16,60.81 13.95,90.99 1.47,9.37 2.86,18.86 4.37,28.16 6.08,37.32 12.37,74.37 18.91,111.08 -355.86,112.59 -652.74,170.02 -889.96,186.14 -217.88,-17.83 -355.19,-83.82 -409.38,-177.7 -125.45,-217.34 99.52,-744.88 884.93,-1433.46 217.16,-190.48 461.97,-378.99 728.73,-561.24 8.11,-5.55 16.24,-11.09 24.37,-16.6 3.88,-2.62 7.8,-5.27 11.66,-7.89 12.43,-8.4 24.88,-16.78 37.37,-25.15 165.33,-110.48 338.15,-217.88 513.66,-319.44 66.5,34.54 141.86,54.27 221.88,54.27 44.85,0 88.13,-6.6 129.4,-18.04 41.23,11.5 84.51,18.04 129.39,18.04 267.33,0 484.82,-217.46 484.82,-484.8 0,-267.33 -217.49,-484.79 -484.82,-484.79 -44.85,0 -88.13,6.59 -129.39,18.07 -41.27,-11.48 -84.55,-18.07 -129.4,-18.07 -267.33,0 -484.79,217.46 -484.79,484.79 0,26.72 2.74,52.74 6.89,78.28 -49.6,27.53 -99,55.36 -147.97,83.64 -183.82,106.11 -364.83,218.61 -538.08,334.39 -210.74,140.95 -408.99,286.1 -592.71,433.41 -607.81,-589.31 -778.86,-1036.1 -665.94,-1231.6 54.19,-93.85 191.35,-159.9 409.17,-177.76 264.63,17.89 603.65,87.31 1015.86,227.25 15.96,5.39 32.53,8.07 49.03,8.07 26.51,0 52.86,-6.9 76.32,-20.42 10.64,-6.15 20.12,-13.74 28.83,-22.08 34.39,11.02 69.15,22.38 104.6,34.43 15.99,5.39 32.56,8.07 49.04,8.07 26.53,0 52.85,-6.9 76.32,-20.42 38.04,-21.99 64.78,-59.31 73.34,-102.41 170.44,-857.1 439.28,-1317.86 669.51,-1445.54 230.27,127.68 499.14,588.32 669.58,1445.27 v 0"
49
- style="fill:#fbce28;fill-opacity:1;fill-rule:nonzero;stroke:none"
50
- id="path36" /></g></g></svg>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ version="1.1"
6
+ id="svg2"
7
+ xml:space="preserve"
8
+ width="1440"
9
+ height="1440"
10
+ viewBox="0 0 1440 1440"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ xmlns:svg="http://www.w3.org/2000/svg"><defs
13
+ id="defs6" /><g id="g10"
14
+ transform="scale(0.1)"><path
15
+ d="m 5485.82,3974.16 c 99.06,0 179.66,80.57 179.66,179.63 0,99.04 -80.6,179.63 -179.66,179.63 -50.81,0 -96.69,-21.29 -129.39,-55.36 -31.03,-32.28 -50.24,-76.05 -50.24,-124.27 0,-48.25 19.21,-91.98 50.24,-124.3 32.7,-34.03 78.58,-55.33 129.39,-55.33 v 0"
16
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
17
+ id="path14" /><path
18
+ d="m 4254.43,6033.08 c 2.83,42.92 5.99,85.56 9.36,128 1.15,14.07 2.41,28.01 3.59,42.02 2.41,28.37 4.88,56.71 7.53,84.84 1.53,16.36 3.19,32.62 4.82,48.89 2.59,25.69 5.21,51.32 8.01,76.8 1.84,16.87 3.73,33.7 5.66,50.51 2.86,25 5.87,49.88 8.98,74.67 2.01,16.41 4.06,32.86 6.2,49.18 3.37,25.75 6.9,51.29 10.48,76.8 2.08,14.88 4.1,29.82 6.27,44.64 4.49,30.54 9.18,60.81 13.97,90.99 1.48,9.37 2.86,18.86 4.37,28.16 6.05,37.32 12.35,74.37 18.91,111.08 -500.09,158.22 -883.99,207.79 -1148.77,186.14 237.22,-16.12 534.1,-73.55 889.96,-186.14 -6.54,-36.71 -12.83,-73.76 -18.91,-111.08 -1.51,-9.3 -2.9,-18.79 -4.37,-28.16 -4.79,-30.18 -9.49,-60.45 -13.95,-90.99 -2.17,-14.82 -4.18,-29.76 -6.29,-44.64 -3.59,-25.51 -7.11,-51.05 -10.48,-76.8 -2.14,-16.32 -4.16,-32.77 -6.21,-49.18 -3.07,-24.79 -6.08,-49.67 -8.97,-74.67 -1.93,-16.81 -3.83,-33.64 -5.67,-50.51 -2.8,-25.48 -5.42,-51.11 -7.98,-76.8 -1.65,-16.27 -3.28,-32.53 -4.85,-48.89 -2.65,-28.13 -5.09,-56.47 -7.5,-84.84 -1.2,-14.01 -2.47,-27.95 -3.58,-42.02 -3.4,-42.44 -6.57,-85.08 -9.4,-128 -3.82,-57.98 25.63,-113.1 75.96,-142.17 L 6147.26,4692.5 c -6.05,-79.57 -13.16,-158.27 -21.26,-235.98 -24.31,-233.18 -57.74,-457.45 -99.91,-669.91 -0.03,-0.09 -0.03,-0.15 -0.06,-0.24 -170.44,-856.95 -439.31,-1317.59 -669.58,-1445.27 44.91,-24.93 88.41,-37.4 129.37,-37.4 250.95,0 595.3,458.47 799.03,1482.67 0.03,0.09 0.03,0.15 0.03,0.24 42.19,212.46 75.63,436.73 99.93,669.91 8.1,77.71 15.18,156.41 21.24,235.98 L 4330.39,5890.91 c -50.33,29.07 -79.79,84.19 -75.96,142.17 v 0"
19
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
20
+ id="path16" /><path
21
+ d="m 4742.24,6646.03 c 0,-267.34 217.46,-484.83 484.79,-484.83 44.88,0 88.16,6.57 129.4,18.07 -204.61,56.81 -355.41,244.27 -355.41,466.76 0,222.46 150.8,409.92 355.41,466.73 -41.27,11.47 -84.55,18.07 -129.4,18.07 -267.33,0 -484.79,-217.49 -484.79,-484.8 v 0"
22
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
23
+ id="path18" /><path
24
+ d="m 5356.43,6770.3 c -31.03,-32.29 -50.24,-76.05 -50.24,-124.27 0,-48.25 19.21,-92.01 50.24,-124.3 32.7,-34.04 78.58,-55.36 129.39,-55.36 99.06,0 179.66,80.6 179.66,179.66 0,99.03 -80.6,179.63 -179.66,179.63 -50.81,0 -96.69,-21.32 -129.39,-55.36 v 0"
25
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
26
+ id="path20" /><path
27
+ d="m 7908.6,6948.1 c 112.92,-195.6 -58.13,-642.45 -665.9,-1231.79 46.98,-37.68 93.27,-75.48 138.33,-113.46 705.6,645.34 906.41,1137.3 786.38,1345.25 -73.19,126.77 -297.54,202.82 -667.8,177.79 217.7,-17.89 354.81,-83.94 408.99,-177.79 v 0"
28
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
29
+ id="path22" /><path
30
+ d="m 6026.09,7013.18 c 8.59,-43.13 35.3,-80.42 73.37,-102.4 38.07,-21.99 83.8,-26.45 125.36,-12.35 35.45,12.05 70.21,23.43 104.57,34.42 -22.46,21.48 -38.31,49.28 -44.48,80.33 -203.73,1024.53 -548.14,1483.12 -799.09,1483.12 -40.96,0 -84.46,-12.47 -129.37,-37.4 230.27,-127.7 499.2,-588.5 669.64,-1445.72 v 0"
31
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
32
+ id="path24" /><path
33
+ d="m 7282.81,5284.89 c -0.12,0.09 -0.24,0.21 -0.36,0.3 -41.14,36.08 -83.25,72.1 -126.29,107.97 -184.69,154 -386.46,305.83 -602.17,453.18 -0.66,0.45 -1.26,0.87 -1.9,1.32 -2.59,1.75 -5.21,3.53 -7.8,5.3 -1.65,1.12 -3.28,2.23 -4.94,3.35 -19.6,13.34 -39.33,26.62 -59.15,39.9 -168.67,112.68 -343.93,221.65 -520.88,323.79 -45.51,26.26 -91.26,52.13 -137.16,77.61 -33.74,-32.56 -72.23,-60.18 -114.19,-82.01 174.43,-100.9 347.13,-208.28 513.42,-319.39 19.84,-13.28 39.57,-26.56 59.18,-39.9 1.66,-1.12 3.25,-2.23 4.91,-3.35 2.59,-1.77 5.21,-3.55 7.8,-5.3 0.63,-0.45 1.27,-0.87 1.9,-1.32 215.71,-147.35 417.48,-299.18 602.17,-453.18 43.04,-35.87 85.18,-71.89 126.32,-107.97 0.12,-0.09 0.21,-0.21 0.33,-0.3 785.21,-688.47 1010.04,-1215.76 884.63,-1432.98 -54.24,-93.91 -191.62,-159.96 -409.65,-177.76 370.62,-25.15 595.21,50.96 668.43,177.76 125.45,217.22 -99.42,744.51 -884.6,1432.98 v 0"
34
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
35
+ id="path26" /><path
36
+ d="m 4278.49,3909.47 c -16.5,0 -33.07,-2.68 -49.03,-8.07 -412.21,-139.94 -751.23,-209.36 -1015.86,-227.25 268.45,-22.02 659.64,29.39 1170.04,192.82 -8.71,8.34 -18.19,15.93 -28.83,22.08 -23.46,13.52 -49.81,20.42 -76.32,20.42 v 0"
37
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
38
+ id="path28" /><path
39
+ d="m 5005.15,4584.32 c 2.47,-1.42 4.91,-2.9 7.38,-4.34 45.41,-26.2 91.17,-52.08 137.16,-77.62 57.22,55.21 128.03,96.23 206.74,118.19 -41.27,11.44 -84.55,18.04 -129.4,18.04 -80.02,0 -155.38,-19.73 -221.88,-54.27 v 0"
40
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
41
+ id="path30" /><path
42
+ d="m 4601.16,4315.71 c 48.97,-28.28 98.37,-56.11 147.97,-83.64 -4.15,-25.54 -6.89,-51.56 -6.89,-78.28 0,-267.33 217.46,-484.79 484.79,-484.79 44.85,0 88.13,6.59 129.4,18.07 -204.61,56.8 -355.41,244.26 -355.41,466.72 0,26.72 2.74,52.74 6.93,78.28 -49.64,27.53 -99.01,55.36 -148.01,83.64 -183.79,106.11 -364.83,218.61 -538.05,334.39 -264.68,177.04 -510.03,360.58 -731.08,546.87 -41.95,-38.4 -82.01,-76.2 -120.44,-113.46 183.72,-147.31 381.97,-292.46 592.71,-433.41 173.25,-115.78 354.26,-228.28 538.08,-334.39 v 0"
43
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
44
+ id="path32" /><path
45
+ d="m 7908.63,3851.91 c 125.41,217.22 -99.42,744.51 -884.63,1432.98 -0.12,0.09 -0.21,0.21 -0.33,0.3 -41.14,36.08 -83.28,72.1 -126.32,107.97 -184.69,154 -386.46,305.83 -602.17,453.18 -0.63,0.45 -1.27,0.87 -1.9,1.32 -2.59,1.75 -5.21,3.53 -7.8,5.3 -1.66,1.12 -3.25,2.23 -4.91,3.35 -19.61,13.34 -39.34,26.62 -59.18,39.9 -166.29,111.11 -338.99,218.49 -513.42,319.39 -66.59,-34.61 -142.04,-54.4 -222.15,-54.4 -44.85,0 -88.13,6.63 -129.39,18.07 -41.24,-11.5 -84.52,-18.07 -129.4,-18.07 -267.33,0 -484.79,217.49 -484.79,484.83 0,267.31 217.46,484.8 484.79,484.8 44.85,0 88.13,-6.6 129.4,-18.07 41.26,11.47 84.54,18.07 129.39,18.07 267.33,0 484.82,-217.49 484.82,-484.8 0,-26.62 -2.74,-52.59 -6.86,-78.04 49.57,-27.47 98.97,-55.33 148.12,-83.7 182.68,-105.48 363.63,-217.97 537.87,-334.35 210.47,-140.72 408.81,-285.92 592.93,-433.63 607.77,589.34 778.82,1036.19 665.9,1231.79 -54.18,93.85 -191.29,159.9 -408.99,177.79 -264.66,-17.92 -603.71,-87.41 -1015.98,-227.46 -41.59,-14.1 -87.28,-9.64 -125.38,12.35 -10.63,6.14 -20.15,13.73 -28.86,22.07 -34.36,-10.99 -69.12,-22.37 -104.57,-34.42 -41.56,-14.1 -87.29,-9.64 -125.36,12.35 -38.07,21.98 -64.78,59.27 -73.37,102.4 -170.44,857.22 -439.37,1318.02 -669.64,1445.72 -230.2,-127.7 -499.01,-588.47 -669.48,-1445.6 0,-0.03 0,-0.06 0,-0.12 -34.1,-171.56 -62.41,-351.16 -84.94,-537.05 -14.58,-120.39 -26.81,-243.36 -36.38,-368.69 L 6641.28,4909.09 c 50.3,-29.06 79.75,-84.15 75.99,-142.1 -2.83,-42.8 -5.97,-85.36 -9.34,-127.71 -1.14,-14.3 -2.44,-28.49 -3.64,-42.77 -2.35,-28.04 -4.76,-56.02 -7.38,-83.85 -1.57,-16.65 -3.26,-33.22 -4.91,-49.81 -2.53,-25.27 -5.09,-50.45 -7.83,-75.54 -1.9,-17.29 -3.83,-34.52 -5.82,-51.72 -2.8,-24.45 -5.72,-48.79 -8.73,-73.04 -2.11,-16.98 -4.22,-33.97 -6.42,-50.84 -3.25,-24.97 -6.68,-49.73 -10.15,-74.48 -2.17,-15.63 -4.3,-31.36 -6.59,-46.93 -4.25,-29.09 -8.74,-57.95 -13.29,-86.71 -1.71,-10.81 -3.28,-21.72 -5.03,-32.47 -6.05,-37.26 -12.34,-74.27 -18.88,-110.96 355.74,-112.52 652.53,-169.93 889.72,-186.01 218.03,17.8 355.41,83.85 409.65,177.76 v 0"
46
+ style="fill:#fbce28;fill-opacity:1;fill-rule:nonzero;stroke:none"
47
+ id="path34" /><path
48
+ d="m 6026.03,3786.37 c 0.03,0.09 0.03,0.15 0.06,0.24 42.17,212.46 75.6,436.73 99.91,669.91 8.1,77.71 15.21,156.41 21.26,235.98 L 4071.57,5890.91 c -50.33,29.07 -79.78,84.19 -75.96,142.17 2.83,42.92 6,85.56 9.4,128 1.11,14.07 2.38,28.01 3.58,42.02 2.41,28.37 4.85,56.71 7.5,84.84 1.57,16.36 3.2,32.62 4.85,48.89 2.56,25.69 5.18,51.32 7.98,76.8 1.84,16.87 3.74,33.7 5.67,50.51 2.89,25 5.9,49.88 8.97,74.67 2.05,16.41 4.07,32.86 6.21,49.18 3.37,25.75 6.89,51.29 10.48,76.8 2.11,14.88 4.12,29.82 6.29,44.64 4.46,30.54 9.16,60.81 13.95,90.99 1.47,9.37 2.86,18.86 4.37,28.16 6.08,37.32 12.37,74.37 18.91,111.08 -355.86,112.59 -652.74,170.02 -889.96,186.14 -217.88,-17.83 -355.19,-83.82 -409.38,-177.7 -125.45,-217.34 99.52,-744.88 884.93,-1433.46 217.16,-190.48 461.97,-378.99 728.73,-561.24 8.11,-5.55 16.24,-11.09 24.37,-16.6 3.88,-2.62 7.8,-5.27 11.66,-7.89 12.43,-8.4 24.88,-16.78 37.37,-25.15 165.33,-110.48 338.15,-217.88 513.66,-319.44 66.5,34.54 141.86,54.27 221.88,54.27 44.85,0 88.13,-6.6 129.4,-18.04 41.23,11.5 84.51,18.04 129.39,18.04 267.33,0 484.82,-217.46 484.82,-484.8 0,-267.33 -217.49,-484.79 -484.82,-484.79 -44.85,0 -88.13,6.59 -129.39,18.07 -41.27,-11.48 -84.55,-18.07 -129.4,-18.07 -267.33,0 -484.79,217.46 -484.79,484.79 0,26.72 2.74,52.74 6.89,78.28 -49.6,27.53 -99,55.36 -147.97,83.64 -183.82,106.11 -364.83,218.61 -538.08,334.39 -210.74,140.95 -408.99,286.1 -592.71,433.41 -607.81,-589.31 -778.86,-1036.1 -665.94,-1231.6 54.19,-93.85 191.35,-159.9 409.17,-177.76 264.63,17.89 603.65,87.31 1015.86,227.25 15.96,5.39 32.53,8.07 49.03,8.07 26.51,0 52.86,-6.9 76.32,-20.42 10.64,-6.15 20.12,-13.74 28.83,-22.08 34.39,11.02 69.15,22.38 104.6,34.43 15.99,5.39 32.56,8.07 49.04,8.07 26.53,0 52.85,-6.9 76.32,-20.42 38.04,-21.99 64.78,-59.31 73.34,-102.41 170.44,-857.1 439.28,-1317.86 669.51,-1445.54 230.27,127.68 499.14,588.32 669.58,1445.27 v 0"
49
+ style="fill:#fbce28;fill-opacity:1;fill-rule:nonzero;stroke:none"
50
+ id="path36" /></g></g></svg>
@@ -1,51 +1,51 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-
4
- <svg
5
- version="1.1"
6
- id="svg2"
7
- xml:space="preserve"
8
- width="96"
9
- height="124"
10
- viewBox="0 0 1440 1440"
11
- xmlns="http://www.w3.org/2000/svg"
12
- xmlns:svg="http://www.w3.org/2000/svg">
13
- <defs id="defs6"/>
14
- <g id="g10"
15
- transform="scale(0.1)"><path
16
- d="m 5485.82,3974.16 c 99.06,0 179.66,80.57 179.66,179.63 0,99.04 -80.6,179.63 -179.66,179.63 -50.81,0 -96.69,-21.29 -129.39,-55.36 -31.03,-32.28 -50.24,-76.05 -50.24,-124.27 0,-48.25 19.21,-91.98 50.24,-124.3 32.7,-34.03 78.58,-55.33 129.39,-55.33 v 0"
17
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
18
- id="path14" /><path
19
- d="m 4254.43,6033.08 c 2.83,42.92 5.99,85.56 9.36,128 1.15,14.07 2.41,28.01 3.59,42.02 2.41,28.37 4.88,56.71 7.53,84.84 1.53,16.36 3.19,32.62 4.82,48.89 2.59,25.69 5.21,51.32 8.01,76.8 1.84,16.87 3.73,33.7 5.66,50.51 2.86,25 5.87,49.88 8.98,74.67 2.01,16.41 4.06,32.86 6.2,49.18 3.37,25.75 6.9,51.29 10.48,76.8 2.08,14.88 4.1,29.82 6.27,44.64 4.49,30.54 9.18,60.81 13.97,90.99 1.48,9.37 2.86,18.86 4.37,28.16 6.05,37.32 12.35,74.37 18.91,111.08 -500.09,158.22 -883.99,207.79 -1148.77,186.14 237.22,-16.12 534.1,-73.55 889.96,-186.14 -6.54,-36.71 -12.83,-73.76 -18.91,-111.08 -1.51,-9.3 -2.9,-18.79 -4.37,-28.16 -4.79,-30.18 -9.49,-60.45 -13.95,-90.99 -2.17,-14.82 -4.18,-29.76 -6.29,-44.64 -3.59,-25.51 -7.11,-51.05 -10.48,-76.8 -2.14,-16.32 -4.16,-32.77 -6.21,-49.18 -3.07,-24.79 -6.08,-49.67 -8.97,-74.67 -1.93,-16.81 -3.83,-33.64 -5.67,-50.51 -2.8,-25.48 -5.42,-51.11 -7.98,-76.8 -1.65,-16.27 -3.28,-32.53 -4.85,-48.89 -2.65,-28.13 -5.09,-56.47 -7.5,-84.84 -1.2,-14.01 -2.47,-27.95 -3.58,-42.02 -3.4,-42.44 -6.57,-85.08 -9.4,-128 -3.82,-57.98 25.63,-113.1 75.96,-142.17 L 6147.26,4692.5 c -6.05,-79.57 -13.16,-158.27 -21.26,-235.98 -24.31,-233.18 -57.74,-457.45 -99.91,-669.91 -0.03,-0.09 -0.03,-0.15 -0.06,-0.24 -170.44,-856.95 -439.31,-1317.59 -669.58,-1445.27 44.91,-24.93 88.41,-37.4 129.37,-37.4 250.95,0 595.3,458.47 799.03,1482.67 0.03,0.09 0.03,0.15 0.03,0.24 42.19,212.46 75.63,436.73 99.93,669.91 8.1,77.71 15.18,156.41 21.24,235.98 L 4330.39,5890.91 c -50.33,29.07 -79.79,84.19 -75.96,142.17 v 0"
20
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
21
- id="path16" /><path
22
- d="m 4742.24,6646.03 c 0,-267.34 217.46,-484.83 484.79,-484.83 44.88,0 88.16,6.57 129.4,18.07 -204.61,56.81 -355.41,244.27 -355.41,466.76 0,222.46 150.8,409.92 355.41,466.73 -41.27,11.47 -84.55,18.07 -129.4,18.07 -267.33,0 -484.79,-217.49 -484.79,-484.8 v 0"
23
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
24
- id="path18" /><path
25
- d="m 5356.43,6770.3 c -31.03,-32.29 -50.24,-76.05 -50.24,-124.27 0,-48.25 19.21,-92.01 50.24,-124.3 32.7,-34.04 78.58,-55.36 129.39,-55.36 99.06,0 179.66,80.6 179.66,179.66 0,99.03 -80.6,179.63 -179.66,179.63 -50.81,0 -96.69,-21.32 -129.39,-55.36 v 0"
26
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
27
- id="path20" /><path
28
- d="m 7908.6,6948.1 c 112.92,-195.6 -58.13,-642.45 -665.9,-1231.79 46.98,-37.68 93.27,-75.48 138.33,-113.46 705.6,645.34 906.41,1137.3 786.38,1345.25 -73.19,126.77 -297.54,202.82 -667.8,177.79 217.7,-17.89 354.81,-83.94 408.99,-177.79 v 0"
29
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
30
- id="path22" /><path
31
- d="m 6026.09,7013.18 c 8.59,-43.13 35.3,-80.42 73.37,-102.4 38.07,-21.99 83.8,-26.45 125.36,-12.35 35.45,12.05 70.21,23.43 104.57,34.42 -22.46,21.48 -38.31,49.28 -44.48,80.33 -203.73,1024.53 -548.14,1483.12 -799.09,1483.12 -40.96,0 -84.46,-12.47 -129.37,-37.4 230.27,-127.7 499.2,-588.5 669.64,-1445.72 v 0"
32
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
33
- id="path24" /><path
34
- d="m 7282.81,5284.89 c -0.12,0.09 -0.24,0.21 -0.36,0.3 -41.14,36.08 -83.25,72.1 -126.29,107.97 -184.69,154 -386.46,305.83 -602.17,453.18 -0.66,0.45 -1.26,0.87 -1.9,1.32 -2.59,1.75 -5.21,3.53 -7.8,5.3 -1.65,1.12 -3.28,2.23 -4.94,3.35 -19.6,13.34 -39.33,26.62 -59.15,39.9 -168.67,112.68 -343.93,221.65 -520.88,323.79 -45.51,26.26 -91.26,52.13 -137.16,77.61 -33.74,-32.56 -72.23,-60.18 -114.19,-82.01 174.43,-100.9 347.13,-208.28 513.42,-319.39 19.84,-13.28 39.57,-26.56 59.18,-39.9 1.66,-1.12 3.25,-2.23 4.91,-3.35 2.59,-1.77 5.21,-3.55 7.8,-5.3 0.63,-0.45 1.27,-0.87 1.9,-1.32 215.71,-147.35 417.48,-299.18 602.17,-453.18 43.04,-35.87 85.18,-71.89 126.32,-107.97 0.12,-0.09 0.21,-0.21 0.33,-0.3 785.21,-688.47 1010.04,-1215.76 884.63,-1432.98 -54.24,-93.91 -191.62,-159.96 -409.65,-177.76 370.62,-25.15 595.21,50.96 668.43,177.76 125.45,217.22 -99.42,744.51 -884.6,1432.98 v 0"
35
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
36
- id="path26" /><path
37
- d="m 4278.49,3909.47 c -16.5,0 -33.07,-2.68 -49.03,-8.07 -412.21,-139.94 -751.23,-209.36 -1015.86,-227.25 268.45,-22.02 659.64,29.39 1170.04,192.82 -8.71,8.34 -18.19,15.93 -28.83,22.08 -23.46,13.52 -49.81,20.42 -76.32,20.42 v 0"
38
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
39
- id="path28" /><path
40
- d="m 5005.15,4584.32 c 2.47,-1.42 4.91,-2.9 7.38,-4.34 45.41,-26.2 91.17,-52.08 137.16,-77.62 57.22,55.21 128.03,96.23 206.74,118.19 -41.27,11.44 -84.55,18.04 -129.4,18.04 -80.02,0 -155.38,-19.73 -221.88,-54.27 v 0"
41
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
42
- id="path30" /><path
43
- d="m 4601.16,4315.71 c 48.97,-28.28 98.37,-56.11 147.97,-83.64 -4.15,-25.54 -6.89,-51.56 -6.89,-78.28 0,-267.33 217.46,-484.79 484.79,-484.79 44.85,0 88.13,6.59 129.4,18.07 -204.61,56.8 -355.41,244.26 -355.41,466.72 0,26.72 2.74,52.74 6.93,78.28 -49.64,27.53 -99.01,55.36 -148.01,83.64 -183.79,106.11 -364.83,218.61 -538.05,334.39 -264.68,177.04 -510.03,360.58 -731.08,546.87 -41.95,-38.4 -82.01,-76.2 -120.44,-113.46 183.72,-147.31 381.97,-292.46 592.71,-433.41 173.25,-115.78 354.26,-228.28 538.08,-334.39 v 0"
44
- style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
45
- id="path32" /><path
46
- d="m 7908.63,3851.91 c 125.41,217.22 -99.42,744.51 -884.63,1432.98 -0.12,0.09 -0.21,0.21 -0.33,0.3 -41.14,36.08 -83.28,72.1 -126.32,107.97 -184.69,154 -386.46,305.83 -602.17,453.18 -0.63,0.45 -1.27,0.87 -1.9,1.32 -2.59,1.75 -5.21,3.53 -7.8,5.3 -1.66,1.12 -3.25,2.23 -4.91,3.35 -19.61,13.34 -39.34,26.62 -59.18,39.9 -166.29,111.11 -338.99,218.49 -513.42,319.39 -66.59,-34.61 -142.04,-54.4 -222.15,-54.4 -44.85,0 -88.13,6.63 -129.39,18.07 -41.24,-11.5 -84.52,-18.07 -129.4,-18.07 -267.33,0 -484.79,217.49 -484.79,484.83 0,267.31 217.46,484.8 484.79,484.8 44.85,0 88.13,-6.6 129.4,-18.07 41.26,11.47 84.54,18.07 129.39,18.07 267.33,0 484.82,-217.49 484.82,-484.8 0,-26.62 -2.74,-52.59 -6.86,-78.04 49.57,-27.47 98.97,-55.33 148.12,-83.7 182.68,-105.48 363.63,-217.97 537.87,-334.35 210.47,-140.72 408.81,-285.92 592.93,-433.63 607.77,589.34 778.82,1036.19 665.9,1231.79 -54.18,93.85 -191.29,159.9 -408.99,177.79 -264.66,-17.92 -603.71,-87.41 -1015.98,-227.46 -41.59,-14.1 -87.28,-9.64 -125.38,12.35 -10.63,6.14 -20.15,13.73 -28.86,22.07 -34.36,-10.99 -69.12,-22.37 -104.57,-34.42 -41.56,-14.1 -87.29,-9.64 -125.36,12.35 -38.07,21.98 -64.78,59.27 -73.37,102.4 -170.44,857.22 -439.37,1318.02 -669.64,1445.72 -230.2,-127.7 -499.01,-588.47 -669.48,-1445.6 0,-0.03 0,-0.06 0,-0.12 -34.1,-171.56 -62.41,-351.16 -84.94,-537.05 -14.58,-120.39 -26.81,-243.36 -36.38,-368.69 L 6641.28,4909.09 c 50.3,-29.06 79.75,-84.15 75.99,-142.1 -2.83,-42.8 -5.97,-85.36 -9.34,-127.71 -1.14,-14.3 -2.44,-28.49 -3.64,-42.77 -2.35,-28.04 -4.76,-56.02 -7.38,-83.85 -1.57,-16.65 -3.26,-33.22 -4.91,-49.81 -2.53,-25.27 -5.09,-50.45 -7.83,-75.54 -1.9,-17.29 -3.83,-34.52 -5.82,-51.72 -2.8,-24.45 -5.72,-48.79 -8.73,-73.04 -2.11,-16.98 -4.22,-33.97 -6.42,-50.84 -3.25,-24.97 -6.68,-49.73 -10.15,-74.48 -2.17,-15.63 -4.3,-31.36 -6.59,-46.93 -4.25,-29.09 -8.74,-57.95 -13.29,-86.71 -1.71,-10.81 -3.28,-21.72 -5.03,-32.47 -6.05,-37.26 -12.34,-74.27 -18.88,-110.96 355.74,-112.52 652.53,-169.93 889.72,-186.01 218.03,17.8 355.41,83.85 409.65,177.76 v 0"
47
- style="fill:#fbce28;fill-opacity:1;fill-rule:nonzero;stroke:none"
48
- id="path34" /><path
49
- d="m 6026.03,3786.37 c 0.03,0.09 0.03,0.15 0.06,0.24 42.17,212.46 75.6,436.73 99.91,669.91 8.1,77.71 15.21,156.41 21.26,235.98 L 4071.57,5890.91 c -50.33,29.07 -79.78,84.19 -75.96,142.17 2.83,42.92 6,85.56 9.4,128 1.11,14.07 2.38,28.01 3.58,42.02 2.41,28.37 4.85,56.71 7.5,84.84 1.57,16.36 3.2,32.62 4.85,48.89 2.56,25.69 5.18,51.32 7.98,76.8 1.84,16.87 3.74,33.7 5.67,50.51 2.89,25 5.9,49.88 8.97,74.67 2.05,16.41 4.07,32.86 6.21,49.18 3.37,25.75 6.89,51.29 10.48,76.8 2.11,14.88 4.12,29.82 6.29,44.64 4.46,30.54 9.16,60.81 13.95,90.99 1.47,9.37 2.86,18.86 4.37,28.16 6.08,37.32 12.37,74.37 18.91,111.08 -355.86,112.59 -652.74,170.02 -889.96,186.14 -217.88,-17.83 -355.19,-83.82 -409.38,-177.7 -125.45,-217.34 99.52,-744.88 884.93,-1433.46 217.16,-190.48 461.97,-378.99 728.73,-561.24 8.11,-5.55 16.24,-11.09 24.37,-16.6 3.88,-2.62 7.8,-5.27 11.66,-7.89 12.43,-8.4 24.88,-16.78 37.37,-25.15 165.33,-110.48 338.15,-217.88 513.66,-319.44 66.5,34.54 141.86,54.27 221.88,54.27 44.85,0 88.13,-6.6 129.4,-18.04 41.23,11.5 84.51,18.04 129.39,18.04 267.33,0 484.82,-217.46 484.82,-484.8 0,-267.33 -217.49,-484.79 -484.82,-484.79 -44.85,0 -88.13,6.59 -129.39,18.07 -41.27,-11.48 -84.55,-18.07 -129.4,-18.07 -267.33,0 -484.79,217.46 -484.79,484.79 0,26.72 2.74,52.74 6.89,78.28 -49.6,27.53 -99,55.36 -147.97,83.64 -183.82,106.11 -364.83,218.61 -538.08,334.39 -210.74,140.95 -408.99,286.1 -592.71,433.41 -607.81,-589.31 -778.86,-1036.1 -665.94,-1231.6 54.19,-93.85 191.35,-159.9 409.17,-177.76 264.63,17.89 603.65,87.31 1015.86,227.25 15.96,5.39 32.53,8.07 49.03,8.07 26.51,0 52.86,-6.9 76.32,-20.42 10.64,-6.15 20.12,-13.74 28.83,-22.08 34.39,11.02 69.15,22.38 104.6,34.43 15.99,5.39 32.56,8.07 49.04,8.07 26.53,0 52.85,-6.9 76.32,-20.42 38.04,-21.99 64.78,-59.31 73.34,-102.41 170.44,-857.1 439.28,-1317.86 669.51,-1445.54 230.27,127.68 499.14,588.32 669.58,1445.27 v 0"
50
- style="fill:#fbce28;fill-opacity:1;fill-rule:nonzero;stroke:none"
51
- id="path36" /></g></g></svg>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ version="1.1"
6
+ id="svg2"
7
+ xml:space="preserve"
8
+ width="96"
9
+ height="124"
10
+ viewBox="0 0 1440 1440"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ xmlns:svg="http://www.w3.org/2000/svg">
13
+ <defs id="defs6"/>
14
+ <g id="g10"
15
+ transform="scale(0.1)"><path
16
+ d="m 5485.82,3974.16 c 99.06,0 179.66,80.57 179.66,179.63 0,99.04 -80.6,179.63 -179.66,179.63 -50.81,0 -96.69,-21.29 -129.39,-55.36 -31.03,-32.28 -50.24,-76.05 -50.24,-124.27 0,-48.25 19.21,-91.98 50.24,-124.3 32.7,-34.03 78.58,-55.33 129.39,-55.33 v 0"
17
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
18
+ id="path14" /><path
19
+ d="m 4254.43,6033.08 c 2.83,42.92 5.99,85.56 9.36,128 1.15,14.07 2.41,28.01 3.59,42.02 2.41,28.37 4.88,56.71 7.53,84.84 1.53,16.36 3.19,32.62 4.82,48.89 2.59,25.69 5.21,51.32 8.01,76.8 1.84,16.87 3.73,33.7 5.66,50.51 2.86,25 5.87,49.88 8.98,74.67 2.01,16.41 4.06,32.86 6.2,49.18 3.37,25.75 6.9,51.29 10.48,76.8 2.08,14.88 4.1,29.82 6.27,44.64 4.49,30.54 9.18,60.81 13.97,90.99 1.48,9.37 2.86,18.86 4.37,28.16 6.05,37.32 12.35,74.37 18.91,111.08 -500.09,158.22 -883.99,207.79 -1148.77,186.14 237.22,-16.12 534.1,-73.55 889.96,-186.14 -6.54,-36.71 -12.83,-73.76 -18.91,-111.08 -1.51,-9.3 -2.9,-18.79 -4.37,-28.16 -4.79,-30.18 -9.49,-60.45 -13.95,-90.99 -2.17,-14.82 -4.18,-29.76 -6.29,-44.64 -3.59,-25.51 -7.11,-51.05 -10.48,-76.8 -2.14,-16.32 -4.16,-32.77 -6.21,-49.18 -3.07,-24.79 -6.08,-49.67 -8.97,-74.67 -1.93,-16.81 -3.83,-33.64 -5.67,-50.51 -2.8,-25.48 -5.42,-51.11 -7.98,-76.8 -1.65,-16.27 -3.28,-32.53 -4.85,-48.89 -2.65,-28.13 -5.09,-56.47 -7.5,-84.84 -1.2,-14.01 -2.47,-27.95 -3.58,-42.02 -3.4,-42.44 -6.57,-85.08 -9.4,-128 -3.82,-57.98 25.63,-113.1 75.96,-142.17 L 6147.26,4692.5 c -6.05,-79.57 -13.16,-158.27 -21.26,-235.98 -24.31,-233.18 -57.74,-457.45 -99.91,-669.91 -0.03,-0.09 -0.03,-0.15 -0.06,-0.24 -170.44,-856.95 -439.31,-1317.59 -669.58,-1445.27 44.91,-24.93 88.41,-37.4 129.37,-37.4 250.95,0 595.3,458.47 799.03,1482.67 0.03,0.09 0.03,0.15 0.03,0.24 42.19,212.46 75.63,436.73 99.93,669.91 8.1,77.71 15.18,156.41 21.24,235.98 L 4330.39,5890.91 c -50.33,29.07 -79.79,84.19 -75.96,142.17 v 0"
20
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
21
+ id="path16" /><path
22
+ d="m 4742.24,6646.03 c 0,-267.34 217.46,-484.83 484.79,-484.83 44.88,0 88.16,6.57 129.4,18.07 -204.61,56.81 -355.41,244.27 -355.41,466.76 0,222.46 150.8,409.92 355.41,466.73 -41.27,11.47 -84.55,18.07 -129.4,18.07 -267.33,0 -484.79,-217.49 -484.79,-484.8 v 0"
23
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
24
+ id="path18" /><path
25
+ d="m 5356.43,6770.3 c -31.03,-32.29 -50.24,-76.05 -50.24,-124.27 0,-48.25 19.21,-92.01 50.24,-124.3 32.7,-34.04 78.58,-55.36 129.39,-55.36 99.06,0 179.66,80.6 179.66,179.66 0,99.03 -80.6,179.63 -179.66,179.63 -50.81,0 -96.69,-21.32 -129.39,-55.36 v 0"
26
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
27
+ id="path20" /><path
28
+ d="m 7908.6,6948.1 c 112.92,-195.6 -58.13,-642.45 -665.9,-1231.79 46.98,-37.68 93.27,-75.48 138.33,-113.46 705.6,645.34 906.41,1137.3 786.38,1345.25 -73.19,126.77 -297.54,202.82 -667.8,177.79 217.7,-17.89 354.81,-83.94 408.99,-177.79 v 0"
29
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
30
+ id="path22" /><path
31
+ d="m 6026.09,7013.18 c 8.59,-43.13 35.3,-80.42 73.37,-102.4 38.07,-21.99 83.8,-26.45 125.36,-12.35 35.45,12.05 70.21,23.43 104.57,34.42 -22.46,21.48 -38.31,49.28 -44.48,80.33 -203.73,1024.53 -548.14,1483.12 -799.09,1483.12 -40.96,0 -84.46,-12.47 -129.37,-37.4 230.27,-127.7 499.2,-588.5 669.64,-1445.72 v 0"
32
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
33
+ id="path24" /><path
34
+ d="m 7282.81,5284.89 c -0.12,0.09 -0.24,0.21 -0.36,0.3 -41.14,36.08 -83.25,72.1 -126.29,107.97 -184.69,154 -386.46,305.83 -602.17,453.18 -0.66,0.45 -1.26,0.87 -1.9,1.32 -2.59,1.75 -5.21,3.53 -7.8,5.3 -1.65,1.12 -3.28,2.23 -4.94,3.35 -19.6,13.34 -39.33,26.62 -59.15,39.9 -168.67,112.68 -343.93,221.65 -520.88,323.79 -45.51,26.26 -91.26,52.13 -137.16,77.61 -33.74,-32.56 -72.23,-60.18 -114.19,-82.01 174.43,-100.9 347.13,-208.28 513.42,-319.39 19.84,-13.28 39.57,-26.56 59.18,-39.9 1.66,-1.12 3.25,-2.23 4.91,-3.35 2.59,-1.77 5.21,-3.55 7.8,-5.3 0.63,-0.45 1.27,-0.87 1.9,-1.32 215.71,-147.35 417.48,-299.18 602.17,-453.18 43.04,-35.87 85.18,-71.89 126.32,-107.97 0.12,-0.09 0.21,-0.21 0.33,-0.3 785.21,-688.47 1010.04,-1215.76 884.63,-1432.98 -54.24,-93.91 -191.62,-159.96 -409.65,-177.76 370.62,-25.15 595.21,50.96 668.43,177.76 125.45,217.22 -99.42,744.51 -884.6,1432.98 v 0"
35
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
36
+ id="path26" /><path
37
+ d="m 4278.49,3909.47 c -16.5,0 -33.07,-2.68 -49.03,-8.07 -412.21,-139.94 -751.23,-209.36 -1015.86,-227.25 268.45,-22.02 659.64,29.39 1170.04,192.82 -8.71,8.34 -18.19,15.93 -28.83,22.08 -23.46,13.52 -49.81,20.42 -76.32,20.42 v 0"
38
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
39
+ id="path28" /><path
40
+ d="m 5005.15,4584.32 c 2.47,-1.42 4.91,-2.9 7.38,-4.34 45.41,-26.2 91.17,-52.08 137.16,-77.62 57.22,55.21 128.03,96.23 206.74,118.19 -41.27,11.44 -84.55,18.04 -129.4,18.04 -80.02,0 -155.38,-19.73 -221.88,-54.27 v 0"
41
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
42
+ id="path30" /><path
43
+ d="m 4601.16,4315.71 c 48.97,-28.28 98.37,-56.11 147.97,-83.64 -4.15,-25.54 -6.89,-51.56 -6.89,-78.28 0,-267.33 217.46,-484.79 484.79,-484.79 44.85,0 88.13,6.59 129.4,18.07 -204.61,56.8 -355.41,244.26 -355.41,466.72 0,26.72 2.74,52.74 6.93,78.28 -49.64,27.53 -99.01,55.36 -148.01,83.64 -183.79,106.11 -364.83,218.61 -538.05,334.39 -264.68,177.04 -510.03,360.58 -731.08,546.87 -41.95,-38.4 -82.01,-76.2 -120.44,-113.46 183.72,-147.31 381.97,-292.46 592.71,-433.41 173.25,-115.78 354.26,-228.28 538.08,-334.39 v 0"
44
+ style="fill:#dfac13;fill-opacity:1;fill-rule:nonzero;stroke:none"
45
+ id="path32" /><path
46
+ d="m 7908.63,3851.91 c 125.41,217.22 -99.42,744.51 -884.63,1432.98 -0.12,0.09 -0.21,0.21 -0.33,0.3 -41.14,36.08 -83.28,72.1 -126.32,107.97 -184.69,154 -386.46,305.83 -602.17,453.18 -0.63,0.45 -1.27,0.87 -1.9,1.32 -2.59,1.75 -5.21,3.53 -7.8,5.3 -1.66,1.12 -3.25,2.23 -4.91,3.35 -19.61,13.34 -39.34,26.62 -59.18,39.9 -166.29,111.11 -338.99,218.49 -513.42,319.39 -66.59,-34.61 -142.04,-54.4 -222.15,-54.4 -44.85,0 -88.13,6.63 -129.39,18.07 -41.24,-11.5 -84.52,-18.07 -129.4,-18.07 -267.33,0 -484.79,217.49 -484.79,484.83 0,267.31 217.46,484.8 484.79,484.8 44.85,0 88.13,-6.6 129.4,-18.07 41.26,11.47 84.54,18.07 129.39,18.07 267.33,0 484.82,-217.49 484.82,-484.8 0,-26.62 -2.74,-52.59 -6.86,-78.04 49.57,-27.47 98.97,-55.33 148.12,-83.7 182.68,-105.48 363.63,-217.97 537.87,-334.35 210.47,-140.72 408.81,-285.92 592.93,-433.63 607.77,589.34 778.82,1036.19 665.9,1231.79 -54.18,93.85 -191.29,159.9 -408.99,177.79 -264.66,-17.92 -603.71,-87.41 -1015.98,-227.46 -41.59,-14.1 -87.28,-9.64 -125.38,12.35 -10.63,6.14 -20.15,13.73 -28.86,22.07 -34.36,-10.99 -69.12,-22.37 -104.57,-34.42 -41.56,-14.1 -87.29,-9.64 -125.36,12.35 -38.07,21.98 -64.78,59.27 -73.37,102.4 -170.44,857.22 -439.37,1318.02 -669.64,1445.72 -230.2,-127.7 -499.01,-588.47 -669.48,-1445.6 0,-0.03 0,-0.06 0,-0.12 -34.1,-171.56 -62.41,-351.16 -84.94,-537.05 -14.58,-120.39 -26.81,-243.36 -36.38,-368.69 L 6641.28,4909.09 c 50.3,-29.06 79.75,-84.15 75.99,-142.1 -2.83,-42.8 -5.97,-85.36 -9.34,-127.71 -1.14,-14.3 -2.44,-28.49 -3.64,-42.77 -2.35,-28.04 -4.76,-56.02 -7.38,-83.85 -1.57,-16.65 -3.26,-33.22 -4.91,-49.81 -2.53,-25.27 -5.09,-50.45 -7.83,-75.54 -1.9,-17.29 -3.83,-34.52 -5.82,-51.72 -2.8,-24.45 -5.72,-48.79 -8.73,-73.04 -2.11,-16.98 -4.22,-33.97 -6.42,-50.84 -3.25,-24.97 -6.68,-49.73 -10.15,-74.48 -2.17,-15.63 -4.3,-31.36 -6.59,-46.93 -4.25,-29.09 -8.74,-57.95 -13.29,-86.71 -1.71,-10.81 -3.28,-21.72 -5.03,-32.47 -6.05,-37.26 -12.34,-74.27 -18.88,-110.96 355.74,-112.52 652.53,-169.93 889.72,-186.01 218.03,17.8 355.41,83.85 409.65,177.76 v 0"
47
+ style="fill:#fbce28;fill-opacity:1;fill-rule:nonzero;stroke:none"
48
+ id="path34" /><path
49
+ d="m 6026.03,3786.37 c 0.03,0.09 0.03,0.15 0.06,0.24 42.17,212.46 75.6,436.73 99.91,669.91 8.1,77.71 15.21,156.41 21.26,235.98 L 4071.57,5890.91 c -50.33,29.07 -79.78,84.19 -75.96,142.17 2.83,42.92 6,85.56 9.4,128 1.11,14.07 2.38,28.01 3.58,42.02 2.41,28.37 4.85,56.71 7.5,84.84 1.57,16.36 3.2,32.62 4.85,48.89 2.56,25.69 5.18,51.32 7.98,76.8 1.84,16.87 3.74,33.7 5.67,50.51 2.89,25 5.9,49.88 8.97,74.67 2.05,16.41 4.07,32.86 6.21,49.18 3.37,25.75 6.89,51.29 10.48,76.8 2.11,14.88 4.12,29.82 6.29,44.64 4.46,30.54 9.16,60.81 13.95,90.99 1.47,9.37 2.86,18.86 4.37,28.16 6.08,37.32 12.37,74.37 18.91,111.08 -355.86,112.59 -652.74,170.02 -889.96,186.14 -217.88,-17.83 -355.19,-83.82 -409.38,-177.7 -125.45,-217.34 99.52,-744.88 884.93,-1433.46 217.16,-190.48 461.97,-378.99 728.73,-561.24 8.11,-5.55 16.24,-11.09 24.37,-16.6 3.88,-2.62 7.8,-5.27 11.66,-7.89 12.43,-8.4 24.88,-16.78 37.37,-25.15 165.33,-110.48 338.15,-217.88 513.66,-319.44 66.5,34.54 141.86,54.27 221.88,54.27 44.85,0 88.13,-6.6 129.4,-18.04 41.23,11.5 84.51,18.04 129.39,18.04 267.33,0 484.82,-217.46 484.82,-484.8 0,-267.33 -217.49,-484.79 -484.82,-484.79 -44.85,0 -88.13,6.59 -129.39,18.07 -41.27,-11.48 -84.55,-18.07 -129.4,-18.07 -267.33,0 -484.79,217.46 -484.79,484.79 0,26.72 2.74,52.74 6.89,78.28 -49.6,27.53 -99,55.36 -147.97,83.64 -183.82,106.11 -364.83,218.61 -538.08,334.39 -210.74,140.95 -408.99,286.1 -592.71,433.41 -607.81,-589.31 -778.86,-1036.1 -665.94,-1231.6 54.19,-93.85 191.35,-159.9 409.17,-177.76 264.63,17.89 603.65,87.31 1015.86,227.25 15.96,5.39 32.53,8.07 49.03,8.07 26.51,0 52.86,-6.9 76.32,-20.42 10.64,-6.15 20.12,-13.74 28.83,-22.08 34.39,11.02 69.15,22.38 104.6,34.43 15.99,5.39 32.56,8.07 49.04,8.07 26.53,0 52.85,-6.9 76.32,-20.42 38.04,-21.99 64.78,-59.31 73.34,-102.41 170.44,-857.1 439.28,-1317.86 669.51,-1445.54 230.27,127.68 499.14,588.32 669.58,1445.27 v 0"
50
+ style="fill:#fbce28;fill-opacity:1;fill-rule:nonzero;stroke:none"
51
+ id="path36" /></g></g></svg>