qwc2 2025.3.31

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 (528) hide show
  1. package/LICENSE +28 -0
  2. package/README.md +68 -0
  3. package/actions/display.js +7 -0
  4. package/actions/editing.js +7 -0
  5. package/actions/layerinfo.js +7 -0
  6. package/actions/layers.js +8 -0
  7. package/actions/localConfig.js +7 -0
  8. package/actions/locale.js +10 -0
  9. package/actions/locate.js +8 -0
  10. package/actions/logging.js +7 -0
  11. package/actions/map.js +15 -0
  12. package/actions/measurement.js +8 -0
  13. package/actions/processNotifications.js +7 -0
  14. package/actions/redlining.js +7 -0
  15. package/actions/redliningPick.js +7 -0
  16. package/actions/serviceinfo.js +7 -0
  17. package/actions/task.js +9 -0
  18. package/actions/theme.js +24 -0
  19. package/actions/windows.js +10 -0
  20. package/components/AppMenu.js +8 -0
  21. package/components/AttributeForm.js +34 -0
  22. package/components/AutoEditForm.js +8 -0
  23. package/components/CoordinateDisplayer.js +7 -0
  24. package/components/EditComboField.js +10 -0
  25. package/components/EditUploadField.js +8 -0
  26. package/components/FullscreenSwitcher.js +8 -0
  27. package/components/Icon.js +7 -0
  28. package/components/IdentifyViewer.js +16 -0
  29. package/components/ImportLayer.js +25 -0
  30. package/components/LayerInfoWindow.js +7 -0
  31. package/components/LinkFeatureForm.js +10 -0
  32. package/components/MapSelection.js +13 -0
  33. package/components/NumericInputWindow.js +7 -0
  34. package/components/PickFeature.js +7 -0
  35. package/components/PluginsContainer.js +8 -0
  36. package/components/PrintSelection.js +54 -0
  37. package/components/QtDesignerForm.js +30 -0
  38. package/components/ResizeableWindow.js +12 -0
  39. package/components/SearchBox.js +26 -0
  40. package/components/ServiceInfoWindow.js +7 -0
  41. package/components/SideBar.js +9 -0
  42. package/components/StandardApp.js +35 -0
  43. package/components/Swipeable.js +1 -0
  44. package/components/TaskBar.js +7 -0
  45. package/components/ThemeLayersListWindow.js +9 -0
  46. package/components/ThemeList.js +12 -0
  47. package/components/Toolbar.js +7 -0
  48. package/components/WindowManager.js +7 -0
  49. package/components/map/OlLayer.js +12 -0
  50. package/components/map/OlLocate.css +56 -0
  51. package/components/map/OlLocate.js +17 -0
  52. package/components/map/OlMap.js +11 -0
  53. package/components/map/layers/BingLayer.js +8 -0
  54. package/components/map/layers/GoogleLayer.js +27 -0
  55. package/components/map/layers/GraticuleLayer.js +8 -0
  56. package/components/map/layers/ImageLayer.js +8 -0
  57. package/components/map/layers/MVTLayer.js +7 -0
  58. package/components/map/layers/OSMLayer.js +8 -0
  59. package/components/map/layers/OverlayLayer.js +10 -0
  60. package/components/map/layers/VectorLayer.js +14 -0
  61. package/components/map/layers/WFSLayer.js +11 -0
  62. package/components/map/layers/WMSLayer.js +11 -0
  63. package/components/map/layers/WMTSLayer.js +9 -0
  64. package/components/map/layers/XYZLayer.js +7 -0
  65. package/components/map/layers/index.js +8 -0
  66. package/components/map3d/BottomBar3D.js +7 -0
  67. package/components/map3d/Compare3D.js +12 -0
  68. package/components/map3d/Draw3D.js +10 -0
  69. package/components/map3d/ExportObjects3D.js +17 -0
  70. package/components/map3d/HeightProfile3D.js +8 -0
  71. package/components/map3d/HideObjects3D.js +12 -0
  72. package/components/map3d/Identify3D.js +13 -0
  73. package/components/map3d/LayerTree3D.js +8 -0
  74. package/components/map3d/Map3D.js +29 -0
  75. package/components/map3d/Map3DLight.js +10 -0
  76. package/components/map3d/MapControls3D.js +20 -0
  77. package/components/map3d/MapExport3D.js +11 -0
  78. package/components/map3d/Measure3D.js +23 -0
  79. package/components/map3d/OverviewMap3D.js +9 -0
  80. package/components/map3d/SearchField3D.js +16 -0
  81. package/components/map3d/TopBar3D.js +7 -0
  82. package/components/map3d/View3DSwitcher.js +7 -0
  83. package/components/map3d/drawtool/CreateTool3D.js +9 -0
  84. package/components/map3d/drawtool/EditTool3D.js +9 -0
  85. package/components/map3d/drawtool/NumericInput3D.js +7 -0
  86. package/components/map3d/img/viewcone.svg +124 -0
  87. package/components/map3d/layers/VectorLayer3D.js +7 -0
  88. package/components/map3d/layers/WFSLayer3D.js +8 -0
  89. package/components/map3d/layers/WMSLayer3D.js +7 -0
  90. package/components/map3d/layers/WMTSLayer3D.js +9 -0
  91. package/components/map3d/layers/index.js +8 -0
  92. package/components/map3d/models/arrow.glb +0 -0
  93. package/components/map3d/models/pin.glb +0 -0
  94. package/components/map3d/slices/map3d.js +1 -0
  95. package/components/map3d/style/BottomBar3D.css +67 -0
  96. package/components/map3d/style/Compare3D.css +57 -0
  97. package/components/map3d/style/Draw3D.css +7 -0
  98. package/components/map3d/style/HideObjects3D.css +29 -0
  99. package/components/map3d/style/LayerTree3D.css +126 -0
  100. package/components/map3d/style/Map3D.css +42 -0
  101. package/components/map3d/style/Map3DLight.css +72 -0
  102. package/components/map3d/style/MapControls3D.css +56 -0
  103. package/components/map3d/style/MapExport3D.css +25 -0
  104. package/components/map3d/style/OverviewMap3D.css +37 -0
  105. package/components/map3d/style/SearchField3D.css +7 -0
  106. package/components/map3d/style/View3DSwitcher.css +27 -0
  107. package/components/map3d/utils/Tiles3DStyle.js +1 -0
  108. package/components/share/ShareLink.js +7 -0
  109. package/components/share/ShareQRCode.js +8 -0
  110. package/components/share/ShareSocials.js +9 -0
  111. package/components/share/style/ShareLink.css +13 -0
  112. package/components/share/style/ShareSocials.css +9 -0
  113. package/components/style/App.css +229 -0
  114. package/components/style/AppMenu.css +162 -0
  115. package/components/style/AttributeForm.css +57 -0
  116. package/components/style/AutoEditForm.css +64 -0
  117. package/components/style/DefaultColorScheme.css +60 -0
  118. package/components/style/EditUploadField.css +103 -0
  119. package/components/style/FullscreenSwitcher.css +25 -0
  120. package/components/style/Icon.css +26 -0
  121. package/components/style/IdentifyViewer.css +249 -0
  122. package/components/style/ImportLayer.css +28 -0
  123. package/components/style/LayerInfoWindow.css +46 -0
  124. package/components/style/LinkFeatureForm.css +48 -0
  125. package/components/style/NumericInputWindow.css +11 -0
  126. package/components/style/PickFeature.css +25 -0
  127. package/components/style/PluginsContainer.css +4 -0
  128. package/components/style/QtDesignerForm.css +225 -0
  129. package/components/style/ResizeableWindow.css +178 -0
  130. package/components/style/SearchBox.css +159 -0
  131. package/components/style/ServiceInfoWindow.css +34 -0
  132. package/components/style/SideBar.css +100 -0
  133. package/components/style/TaskBar.css +35 -0
  134. package/components/style/ThemeLayersListWindow.css +47 -0
  135. package/components/style/ThemeList.css +200 -0
  136. package/components/style/Toolbar.css +20 -0
  137. package/components/style/WindowManager.css +50 -0
  138. package/components/timeline/FixedTimeline.js +10 -0
  139. package/components/timeline/InfiniteTimeline.js +13 -0
  140. package/components/timeline/TimelineFeaturesSlider.js +10 -0
  141. package/components/timeline/style/FixedTimeline.css +76 -0
  142. package/components/timeline/style/InfiniteTimeline.css +94 -0
  143. package/components/timeline/style/TimelineFeaturesSlider.css +131 -0
  144. package/components/widgets/AccordeonWidget.js +7 -0
  145. package/components/widgets/ButtonBar.js +7 -0
  146. package/components/widgets/ColorButton.js +8 -0
  147. package/components/widgets/ComboBox.js +7 -0
  148. package/components/widgets/CopyButton.js +7 -0
  149. package/components/widgets/DateTimeInput.js +8 -0
  150. package/components/widgets/EditableSelect.js +8 -0
  151. package/components/widgets/FileSelector.js +9 -0
  152. package/components/widgets/Input.js +7 -0
  153. package/components/widgets/InputContainer.js +7 -0
  154. package/components/widgets/LayerCatalogWidget.js +3 -0
  155. package/components/widgets/MenuButton.js +1 -0
  156. package/components/widgets/ModalDialog.js +7 -0
  157. package/components/widgets/NavBar.js +7 -0
  158. package/components/widgets/NumberInput.js +9 -0
  159. package/components/widgets/PopupMenu.js +1 -0
  160. package/components/widgets/Primitives.js +7 -0
  161. package/components/widgets/ReCaptchaWidget.js +1 -0
  162. package/components/widgets/SearchWidget.js +7 -0
  163. package/components/widgets/Spinner.js +6 -0
  164. package/components/widgets/SuggestionInput.js +7 -0
  165. package/components/widgets/TextInput.js +7 -0
  166. package/components/widgets/ToggleSwitch.js +7 -0
  167. package/components/widgets/VectorLayerPicker.js +8 -0
  168. package/components/widgets/style/AccordeonWidget.css +22 -0
  169. package/components/widgets/style/ButtonBar.css +88 -0
  170. package/components/widgets/style/ColorButton.css +88 -0
  171. package/components/widgets/style/ComboBox.css +83 -0
  172. package/components/widgets/style/CopyButton.css +21 -0
  173. package/components/widgets/style/EditableSelect.css +47 -0
  174. package/components/widgets/style/FileSelector.css +14 -0
  175. package/components/widgets/style/InputContainer.css +34 -0
  176. package/components/widgets/style/LayerCatalogWidget.css +59 -0
  177. package/components/widgets/style/MenuButton.css +122 -0
  178. package/components/widgets/style/ModalDialog.css +50 -0
  179. package/components/widgets/style/NavBar.css +12 -0
  180. package/components/widgets/style/NumberInput.css +76 -0
  181. package/components/widgets/style/SearchWidget.css +43 -0
  182. package/components/widgets/style/Spinner.css +32 -0
  183. package/components/widgets/style/SuggestionInput.css +8 -0
  184. package/components/widgets/style/TextInput.css +94 -0
  185. package/components/widgets/style/ToggleSwitch.css +61 -0
  186. package/components/widgets/style/VectorLayerPicker.css +3 -0
  187. package/icons/2d.svg +70 -0
  188. package/icons/3d.svg +70 -0
  189. package/icons/3d2d.svg +92 -0
  190. package/icons/after.svg +76 -0
  191. package/icons/arrow-down.svg +60 -0
  192. package/icons/arrow-up.svg +60 -0
  193. package/icons/before.svg +76 -0
  194. package/icons/bglayer.svg +71 -0
  195. package/icons/bookmark.svg +170 -0
  196. package/icons/box.svg +63 -0
  197. package/icons/buffer.svg +67 -0
  198. package/icons/camera.svg +118 -0
  199. package/icons/catalog.svg +62 -0
  200. package/icons/checked.svg +80 -0
  201. package/icons/chevron-down.svg +60 -0
  202. package/icons/chevron-left.svg +59 -0
  203. package/icons/chevron-right.svg +60 -0
  204. package/icons/chevron-up.svg +60 -0
  205. package/icons/circle.svg +70 -0
  206. package/icons/clear.svg +62 -0
  207. package/icons/clock.svg +71 -0
  208. package/icons/cog.svg +60 -0
  209. package/icons/collapse.svg +73 -0
  210. package/icons/compare.svg +72 -0
  211. package/icons/cone.svg +58 -0
  212. package/icons/confirm.svg +62 -0
  213. package/icons/copy.svg +60 -0
  214. package/icons/cuboid.svg +58 -0
  215. package/icons/cyclomedia.svg +47 -0
  216. package/icons/cylinder.svg +58 -0
  217. package/icons/dataimport.svg +116 -0
  218. package/icons/detach.svg +79 -0
  219. package/icons/dock.svg +82 -0
  220. package/icons/dock_bottom.svg +82 -0
  221. package/icons/dock_left.svg +84 -0
  222. package/icons/dock_right.svg +84 -0
  223. package/icons/dock_top.svg +84 -0
  224. package/icons/draw.svg +78 -0
  225. package/icons/editdraw.svg +84 -0
  226. package/icons/edited.svg +78 -0
  227. package/icons/editing.svg +118 -0
  228. package/icons/ellipse.svg +72 -0
  229. package/icons/embed.svg +88 -0
  230. package/icons/expand.svg +73 -0
  231. package/icons/export.svg +126 -0
  232. package/icons/eye.svg +127 -0
  233. package/icons/featureform.svg +115 -0
  234. package/icons/fill.svg +62 -0
  235. package/icons/filter.svg +69 -0
  236. package/icons/folder-open.svg +60 -0
  237. package/icons/freehand.svg +82 -0
  238. package/icons/group.svg +76 -0
  239. package/icons/home.svg +60 -0
  240. package/icons/identify_radius.svg +71 -0
  241. package/icons/identify_region.svg +71 -0
  242. package/icons/import.svg +62 -0
  243. package/icons/info-sign.svg +60 -0
  244. package/icons/info.svg +80 -0
  245. package/icons/layers.svg +71 -0
  246. package/icons/light.svg +77 -0
  247. package/icons/line.svg +61 -0
  248. package/icons/line_buffer.svg +65 -0
  249. package/icons/link.svg +75 -0
  250. package/icons/list-alt.svg +111 -0
  251. package/icons/lock.svg +54 -0
  252. package/icons/login.svg +56 -0
  253. package/icons/logout.svg +56 -0
  254. package/icons/map3d.svg +51 -0
  255. package/icons/maximize.svg +84 -0
  256. package/icons/measure.svg +82 -0
  257. package/icons/measure_line.svg +87 -0
  258. package/icons/measure_polygon.svg +88 -0
  259. package/icons/menu-hamburger.svg +60 -0
  260. package/icons/minimize.svg +76 -0
  261. package/icons/minus-sign.svg +60 -0
  262. package/icons/minus.svg +61 -0
  263. package/icons/nav-end.svg +74 -0
  264. package/icons/nav-left.svg +74 -0
  265. package/icons/nav-right.svg +74 -0
  266. package/icons/nav-start.svg +73 -0
  267. package/icons/new.svg +84 -0
  268. package/icons/nodetool.svg +68 -0
  269. package/icons/numericinput.svg +86 -0
  270. package/icons/ok.svg +60 -0
  271. package/icons/open.svg +79 -0
  272. package/icons/open_link.svg +74 -0
  273. package/icons/paint.svg +75 -0
  274. package/icons/pen.svg +41 -0
  275. package/icons/person.svg +44 -0
  276. package/icons/pick.svg +67 -0
  277. package/icons/pick_point.svg +74 -0
  278. package/icons/pick_region.svg +71 -0
  279. package/icons/plus.svg +60 -0
  280. package/icons/point.svg +67 -0
  281. package/icons/point_buffer.svg +74 -0
  282. package/icons/polygon.svg +61 -0
  283. package/icons/print.svg +60 -0
  284. package/icons/pyramid.svg +58 -0
  285. package/icons/radio_checked.svg +78 -0
  286. package/icons/radio_tristate.svg +75 -0
  287. package/icons/radio_unchecked.svg +72 -0
  288. package/icons/rasterexport.svg +124 -0
  289. package/icons/rect.svg +63 -0
  290. package/icons/refresh.svg +44 -0
  291. package/icons/remove.svg +60 -0
  292. package/icons/report.svg +84 -0
  293. package/icons/routing-bicycle.svg +40 -0
  294. package/icons/routing-bus.svg +40 -0
  295. package/icons/routing-cablecar.svg +40 -0
  296. package/icons/routing-car.svg +40 -0
  297. package/icons/routing-ship.svg +40 -0
  298. package/icons/routing-train.svg +40 -0
  299. package/icons/routing-tram.svg +40 -0
  300. package/icons/routing-truck.svg +40 -0
  301. package/icons/routing-walking.svg +40 -0
  302. package/icons/routing.svg +68 -0
  303. package/icons/save.svg +190 -0
  304. package/icons/scale.svg +62 -0
  305. package/icons/screenshot.svg +60 -0
  306. package/icons/search.svg +60 -0
  307. package/icons/selectbox.svg +79 -0
  308. package/icons/share.svg +64 -0
  309. package/icons/snap_edge.svg +79 -0
  310. package/icons/snap_vertex.svg +79 -0
  311. package/icons/sphere.svg +58 -0
  312. package/icons/square.svg +68 -0
  313. package/icons/sync.svg +72 -0
  314. package/icons/text.svg +68 -0
  315. package/icons/themes.svg +81 -0
  316. package/icons/tilt-down.svg +67 -0
  317. package/icons/tilt-left.svg +48 -0
  318. package/icons/tilt-right.svg +48 -0
  319. package/icons/tilt-up.svg +67 -0
  320. package/icons/today.svg +45 -0
  321. package/icons/tools.svg +77 -0
  322. package/icons/transformtool.svg +74 -0
  323. package/icons/transparency.svg +132 -0
  324. package/icons/trash.svg +60 -0
  325. package/icons/tree_minus.svg +81 -0
  326. package/icons/tree_plus.svg +81 -0
  327. package/icons/triangle-down.svg +59 -0
  328. package/icons/triangle-left.svg +60 -0
  329. package/icons/triangle-right.svg +60 -0
  330. package/icons/triangle-up.svg +59 -0
  331. package/icons/tristate.svg +79 -0
  332. package/icons/unchecked.svg +74 -0
  333. package/icons/undock.svg +82 -0
  334. package/icons/undock_bottom.svg +82 -0
  335. package/icons/undock_left.svg +82 -0
  336. package/icons/undock_right.svg +84 -0
  337. package/icons/undock_top.svg +84 -0
  338. package/icons/unmaximize.svg +84 -0
  339. package/icons/unminimize.svg +76 -0
  340. package/icons/up-down-arrow.svg +66 -0
  341. package/icons/warning.svg +72 -0
  342. package/icons/wedge.svg +58 -0
  343. package/icons/zoom.svg +60 -0
  344. package/icons/zoomin.svg +71 -0
  345. package/icons/zoomout.svg +80 -0
  346. package/libs/openlayers.js +11 -0
  347. package/package.json +135 -0
  348. package/plugins/API.js +114 -0
  349. package/plugins/AttributeTable.js +25 -0
  350. package/plugins/Authentication.js +13 -0
  351. package/plugins/BackgroundSwitcher.js +10 -0
  352. package/plugins/Bookmark.js +13 -0
  353. package/plugins/BottomBar.js +10 -0
  354. package/plugins/CookiePopup.js +9 -0
  355. package/plugins/Cyclomedia.js +11 -0
  356. package/plugins/Editing.js +21 -0
  357. package/plugins/FeatureForm.js +21 -0
  358. package/plugins/FeatureSearch.js +11 -0
  359. package/plugins/GeometryDigitizer.js +43 -0
  360. package/plugins/HeightProfile.js +26 -0
  361. package/plugins/Help.js +11 -0
  362. package/plugins/HomeButton.js +9 -0
  363. package/plugins/Identify.js +18 -0
  364. package/plugins/LayerCatalog.js +45 -0
  365. package/plugins/LayerTree.js +15 -0
  366. package/plugins/LocateButton.js +10 -0
  367. package/plugins/Map.js +22 -0
  368. package/plugins/MapCompare.js +11 -0
  369. package/plugins/MapCopyright.js +11 -0
  370. package/plugins/MapExport.js +23 -0
  371. package/plugins/MapFilter.js +20 -0
  372. package/plugins/MapInfoTooltip.js +32 -0
  373. package/plugins/MapLegend.js +14 -0
  374. package/plugins/MapTip.js +15 -0
  375. package/plugins/Measure.js +10 -0
  376. package/plugins/NewsPopup.js +12 -0
  377. package/plugins/Panoramax.js +10 -0
  378. package/plugins/Portal.js +10 -0
  379. package/plugins/Print.js +22 -0
  380. package/plugins/ProcessNotifications.js +11 -0
  381. package/plugins/Redlining.js +12 -0
  382. package/plugins/Reports.js +15 -0
  383. package/plugins/Routing.js +23 -0
  384. package/plugins/ScratchDrawing.js +15 -0
  385. package/plugins/Settings.js +12 -0
  386. package/plugins/Share.js +11 -0
  387. package/plugins/StartupMarker.js +12 -0
  388. package/plugins/TaskButton.js +9 -0
  389. package/plugins/ThemeSwitcher.js +10 -0
  390. package/plugins/TimeManager.js +21 -0
  391. package/plugins/TopBar.js +13 -0
  392. package/plugins/ValueTool.js +11 -0
  393. package/plugins/View3D.js +34 -0
  394. package/plugins/ZoomButtons.js +11 -0
  395. package/plugins/map/EditingSupport.js +13 -0
  396. package/plugins/map/LocateSupport.js +14 -0
  397. package/plugins/map/MeasurementSupport.js +15 -0
  398. package/plugins/map/OverviewSupport.js +14 -0
  399. package/plugins/map/RedliningPickSupport.js +12 -0
  400. package/plugins/map/RedliningSupport.js +28 -0
  401. package/plugins/map/ScaleBarSupport.js +10 -0
  402. package/plugins/map/SnapInteraction.js +1 -0
  403. package/plugins/map/SnapSupport.js +7 -0
  404. package/plugins/map/SnappingSupport.js +23 -0
  405. package/plugins/map/style/OverviewSupport.css +42 -0
  406. package/plugins/map/style/ScaleBarSupport.css +18 -0
  407. package/plugins/map/style/SnappingSupport.css +33 -0
  408. package/plugins/redlining/RedliningBufferSupport.js +8 -0
  409. package/plugins/style/AttributeTable.css +220 -0
  410. package/plugins/style/Authentication.css +16 -0
  411. package/plugins/style/BackgroundSwitcher.css +99 -0
  412. package/plugins/style/Bookmark.css +62 -0
  413. package/plugins/style/BottomBar.css +53 -0
  414. package/plugins/style/Buttons.css +68 -0
  415. package/plugins/style/CookiePopup.css +24 -0
  416. package/plugins/style/Cyclomedia.css +66 -0
  417. package/plugins/style/Editing.css +40 -0
  418. package/plugins/style/FeatureForm.css +21 -0
  419. package/plugins/style/FeatureSearch.css +71 -0
  420. package/plugins/style/GeometryDigitizer.css +28 -0
  421. package/plugins/style/HeightProfile.css +26 -0
  422. package/plugins/style/Identify.css +4 -0
  423. package/plugins/style/LayerCatalog.css +8 -0
  424. package/plugins/style/LayerTree.css +316 -0
  425. package/plugins/style/Map.css +43 -0
  426. package/plugins/style/MapCompare.css +27 -0
  427. package/plugins/style/MapCopyright.css +17 -0
  428. package/plugins/style/MapExport.css +55 -0
  429. package/plugins/style/MapFilter.css +101 -0
  430. package/plugins/style/MapInfoTooltip.css +78 -0
  431. package/plugins/style/MapLegend.css +36 -0
  432. package/plugins/style/MapTip.css +22 -0
  433. package/plugins/style/Measure.css +23 -0
  434. package/plugins/style/NewsPopup.css +87 -0
  435. package/plugins/style/Panoramax.css +15 -0
  436. package/plugins/style/Portal.css +115 -0
  437. package/plugins/style/Print.css +116 -0
  438. package/plugins/style/ProcessNotifications.css +55 -0
  439. package/plugins/style/Redlining.css +101 -0
  440. package/plugins/style/Reports.css +11 -0
  441. package/plugins/style/Routing.css +243 -0
  442. package/plugins/style/ScratchDrawing.css +8 -0
  443. package/plugins/style/Settings.css +11 -0
  444. package/plugins/style/Share.css +59 -0
  445. package/plugins/style/ThemeSwitcher.css +7 -0
  446. package/plugins/style/TimeManager.css +91 -0
  447. package/plugins/style/TopBar.css +50 -0
  448. package/plugins/style/ValueTool.css +60 -0
  449. package/reducers/display.js +7 -0
  450. package/reducers/editing.js +8 -0
  451. package/reducers/index.js +7 -0
  452. package/reducers/layerinfo.js +7 -0
  453. package/reducers/layers.js +14 -0
  454. package/reducers/localConfig.js +8 -0
  455. package/reducers/locale.js +8 -0
  456. package/reducers/locate.js +8 -0
  457. package/reducers/map.js +11 -0
  458. package/reducers/measurement.js +8 -0
  459. package/reducers/processNotifications.js +7 -0
  460. package/reducers/redlining.js +7 -0
  461. package/reducers/redliningPick.js +7 -0
  462. package/reducers/serviceinfo.js +7 -0
  463. package/reducers/task.js +7 -0
  464. package/reducers/theme.js +7 -0
  465. package/reducers/windows.js +7 -0
  466. package/scripts/dist.sh +16 -0
  467. package/scripts/gen-plugin-docs.js +9 -0
  468. package/scripts/makeIconkit.js +7 -0
  469. package/scripts/package-commands.bat +8 -0
  470. package/scripts/package-commands.sh +22 -0
  471. package/scripts/themesConfig.js +48 -0
  472. package/scripts/themesConfig.py +659 -0
  473. package/scripts/translateui.sh +51 -0
  474. package/scripts/updateTranslations.js +17 -0
  475. package/scripts/wmts_config_generator.py +169 -0
  476. package/selectors/searchproviders.js +12 -0
  477. package/static/translations/bg-BG.json +709 -0
  478. package/static/translations/ca-ES.json +709 -0
  479. package/static/translations/cs-CZ.json +709 -0
  480. package/static/translations/de-CH.json +709 -0
  481. package/static/translations/de-DE.json +709 -0
  482. package/static/translations/en-US.json +709 -0
  483. package/static/translations/es-ES.json +709 -0
  484. package/static/translations/fi-FI.json +709 -0
  485. package/static/translations/fr-FR.json +709 -0
  486. package/static/translations/hu-HU.json +709 -0
  487. package/static/translations/it-IT.json +709 -0
  488. package/static/translations/ja-JP.json +709 -0
  489. package/static/translations/nl-NL.json +709 -0
  490. package/static/translations/no-NO.json +709 -0
  491. package/static/translations/pl-PL.json +709 -0
  492. package/static/translations/pt-BR.json +709 -0
  493. package/static/translations/pt-PT.json +709 -0
  494. package/static/translations/ro-RO.json +709 -0
  495. package/static/translations/ru-RU.json +709 -0
  496. package/static/translations/sv-SE.json +709 -0
  497. package/static/translations/tr-TR.json +709 -0
  498. package/static/translations/tsconfig.json +606 -0
  499. package/stores/StandardStore.js +8 -0
  500. package/utils/ConfigUtils.js +9 -0
  501. package/utils/CoordinatesUtils.js +29 -0
  502. package/utils/DxfUtils.js +10 -0
  503. package/utils/EditingInterface.js +67 -0
  504. package/utils/EditingUtils.js +11 -0
  505. package/utils/FeatureStyles.js +10 -0
  506. package/utils/IdentifyUtils.js +12 -0
  507. package/utils/ImageEditor.js +15 -0
  508. package/utils/LayerUtils.js +57 -0
  509. package/utils/LocaleUtils.js +9 -0
  510. package/utils/MapUtils.js +66 -0
  511. package/utils/MeasureUtils.js +9 -0
  512. package/utils/MiscUtils.js +15 -0
  513. package/utils/PermaLinkUtils.js +11 -0
  514. package/utils/ResourceRegistry.js +7 -0
  515. package/utils/RoutingInterface.js +12 -0
  516. package/utils/SearchProviders.js +19 -0
  517. package/utils/ServiceLayerUtils.js +20 -0
  518. package/utils/Signal.js +2 -0
  519. package/utils/ThemeUtils.js +12 -0
  520. package/utils/VectorLayerUtils.js +20 -0
  521. package/utils/expr_grammar/README.md +3 -0
  522. package/utils/expr_grammar/grammar.js +3 -0
  523. package/utils/expr_grammar/grammar.ne +118 -0
  524. package/utils/expr_grammar/test.js +13 -0
  525. package/utils/img/README.markers +1 -0
  526. package/utils/img/arrowhead.svg +4 -0
  527. package/utils/img/marker-icon.png +0 -0
  528. package/utils/img/measurehead.svg +4 -0
package/icons/line.svg ADDED
@@ -0,0 +1,61 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ width="24"
11
+ height="24"
12
+ viewBox="0 0 24 24"
13
+ version="1.1"
14
+ id="svg11"
15
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
16
+ sodipodi:docname="line.svg">
17
+ <metadata
18
+ id="metadata17">
19
+ <rdf:RDF>
20
+ <cc:Work
21
+ rdf:about="">
22
+ <dc:format>image/svg+xml</dc:format>
23
+ <dc:type
24
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
25
+ <dc:title></dc:title>
26
+ </cc:Work>
27
+ </rdf:RDF>
28
+ </metadata>
29
+ <defs
30
+ id="defs15" />
31
+ <sodipodi:namedview
32
+ pagecolor="#878787"
33
+ bordercolor="#666666"
34
+ borderopacity="1"
35
+ objecttolerance="10"
36
+ gridtolerance="10"
37
+ guidetolerance="10"
38
+ inkscape:pageopacity="0"
39
+ inkscape:pageshadow="2"
40
+ inkscape:window-width="1280"
41
+ inkscape:window-height="995"
42
+ id="namedview13"
43
+ showgrid="true"
44
+ units="px"
45
+ inkscape:zoom="13.906433"
46
+ inkscape:cx="2.060787"
47
+ inkscape:cy="10.137615"
48
+ inkscape:window-x="1600"
49
+ inkscape:window-y="0"
50
+ inkscape:window-maximized="1"
51
+ inkscape:current-layer="svg11">
52
+ <inkscape:grid
53
+ type="xygrid"
54
+ id="grid4473" />
55
+ </sodipodi:namedview>
56
+ <path
57
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.95494461;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
58
+ d="M 9.5295914,7.0528189 2,15.659157 3.4712994,16.947181 9.6237749,9.9139617 15.44279,15.730431 22,9.1757666 20.615247,7.7910141 15.44279,12.963472 Z"
59
+ id="path5038"
60
+ inkscape:connector-curvature="0" />
61
+ </svg>
@@ -0,0 +1,65 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ width="24"
11
+ height="24"
12
+ viewBox="0 0 24 24"
13
+ version="1.1"
14
+ id="svg11"
15
+ inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
16
+ sodipodi:docname="line_buffer.svg">
17
+ <metadata
18
+ id="metadata17">
19
+ <rdf:RDF>
20
+ <cc:Work
21
+ rdf:about="">
22
+ <dc:format>image/svg+xml</dc:format>
23
+ <dc:type
24
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
25
+ <dc:title></dc:title>
26
+ </cc:Work>
27
+ </rdf:RDF>
28
+ </metadata>
29
+ <defs
30
+ id="defs15" />
31
+ <sodipodi:namedview
32
+ pagecolor="#878787"
33
+ bordercolor="#666666"
34
+ borderopacity="1"
35
+ objecttolerance="10"
36
+ gridtolerance="10"
37
+ guidetolerance="10"
38
+ inkscape:pageopacity="0"
39
+ inkscape:pageshadow="2"
40
+ inkscape:window-width="1920"
41
+ inkscape:window-height="1051"
42
+ id="namedview13"
43
+ showgrid="true"
44
+ units="px"
45
+ inkscape:zoom="27.812866"
46
+ inkscape:cx="4.8429697"
47
+ inkscape:cy="13.98964"
48
+ inkscape:window-x="1920"
49
+ inkscape:window-y="0"
50
+ inkscape:window-maximized="1"
51
+ inkscape:current-layer="svg11"
52
+ inkscape:document-rotation="0">
53
+ <inkscape:grid
54
+ type="xygrid"
55
+ id="grid4473" />
56
+ </sodipodi:namedview>
57
+ <path
58
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2, 4;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1;opacity:1"
59
+ d="M 9.15625 7.4296875 L 8.4492188 8.1367188 L 7.0351562 9.5507812 L 6.328125 10.257812 L 7.7421875 11.671875 L 8.4492188 10.964844 L 9.8632812 9.5507812 L 10.570312 8.84375 L 9.15625 7.4296875 z M 20.5 8.0859375 L 19.792969 8.7929688 L 19.763672 8.8222656 L 19.056641 9.5292969 L 20.470703 10.943359 L 21.177734 10.236328 L 21.207031 10.207031 L 21.914062 9.5 L 20.5 8.0859375 z M 11.984375 9.5703125 L 10.570312 10.984375 L 11.277344 11.693359 L 12.693359 13.107422 L 13.400391 13.814453 L 14.814453 12.400391 L 14.107422 11.693359 L 12.693359 10.277344 L 11.984375 9.5703125 z M 17.642578 10.943359 L 16.935547 11.650391 L 15.521484 13.064453 L 14.814453 13.771484 L 16.228516 15.185547 L 16.935547 14.478516 L 18.349609 13.064453 L 19.056641 12.357422 L 17.642578 10.943359 z M 4.9140625 11.671875 L 4.2070312 12.378906 L 2.7929688 13.792969 L 2.0859375 14.5 L 3.5 15.914062 L 4.2070312 15.207031 L 5.6210938 13.792969 L 6.328125 13.085938 L 4.9140625 11.671875 z "
60
+ id="path1976" />
61
+ <path
62
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1;opacity:1"
63
+ d="M 9.5 4.7929688 L 1.1464844 13.146484 L -0.20703125 14.5 L 3.5 18.207031 L 9.5 12.207031 L 15.5 18.207031 L 24.207031 9.5 L 20.5 5.7929688 L 15.5 10.792969 L 9.5 4.7929688 z M 9.5 6.2070312 L 15.5 12.207031 L 20.5 7.2070312 L 22.792969 9.5 L 15.5 16.792969 L 9.5 10.792969 L 3.5 16.792969 L 1.2070312 14.5 L 1.8535156 13.853516 L 9.5 6.2070312 z "
64
+ id="path1972" />
65
+ </svg>
package/icons/link.svg ADDED
@@ -0,0 +1,75 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ height="24"
11
+ id="Capa_1"
12
+ version="1.1"
13
+ viewBox="0 0 24 24"
14
+ width="24"
15
+ xml:space="preserve"
16
+ sodipodi:docname="link.svg"
17
+ inkscape:version="0.92.4 (unknown)"><metadata
18
+ id="metadata933"><rdf:RDF><cc:Work
19
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
20
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
21
+ id="defs931" /><sodipodi:namedview
22
+ pagecolor="#ffffff"
23
+ bordercolor="#666666"
24
+ borderopacity="1"
25
+ objecttolerance="10"
26
+ gridtolerance="10"
27
+ guidetolerance="10"
28
+ inkscape:pageopacity="0"
29
+ inkscape:pageshadow="2"
30
+ inkscape:window-width="1280"
31
+ inkscape:window-height="995"
32
+ id="namedview929"
33
+ showgrid="false"
34
+ inkscape:zoom="26.870058"
35
+ inkscape:cx="15.721605"
36
+ inkscape:cy="9.640256"
37
+ inkscape:window-x="1600"
38
+ inkscape:window-y="0"
39
+ inkscape:window-maximized="1"
40
+ inkscape:current-layer="g896" /><g
41
+ id="g896"
42
+ transform="scale(0.3)"><path
43
+ d="m 29.298,63.471 -4.048,4.02 c -3.509,3.478 -9.216,3.481 -12.723,0 -1.686,-1.673 -2.612,-3.895 -2.612,-6.257 0,-2.362 0.927,-4.585 2.611,-6.258 l 14.9,-14.783 c 3.088,-3.062 8.897,-7.571 13.131,-3.372 1.943,1.93 5.081,1.917 7.01,-0.025 1.93,-1.942 1.918,-5.081 -0.025,-7.009 -7.197,-7.142 -17.834,-5.822 -27.098,3.37 L 5.543,47.941 C 1.968,51.49 0,56.21 0,61.234 c 0,5.024 1.968,9.743 5.544,13.292 3.679,3.65 8.51,5.474 13.343,5.474 4.834,0 9.667,-1.824 13.348,-5.476 l 4.051,-4.021 c 1.942,-1.928 1.953,-5.066 0.023,-7.009 -1.927,-1.941 -5.068,-1.952 -7.011,-0.023 z M 74.454,6.044 C 66.724,-1.626 55.916,-2.042 48.76,5.058 l -5.046,5.009 c -1.943,1.929 -1.955,5.066 -0.025,7.009 1.93,1.943 5.068,1.954 7.011,0.025 l 5.044,-5.006 c 3.707,-3.681 8.561,-2.155 11.727,0.986 1.688,1.673 2.615,3.896 2.615,6.258 0,2.363 -0.928,4.586 -2.613,6.259 l -15.897,15.77 c -7.269,7.212 -10.679,3.827 -12.134,2.383 -1.943,-1.929 -5.08,-1.917 -7.01,0.025 -1.93,1.942 -1.918,5.081 0.025,7.009 3.337,3.312 7.146,4.954 11.139,4.954 4.889,0 10.053,-2.462 14.963,-7.337 L 74.456,32.632 C 78.03,29.083 80,24.362 80,19.338 80,14.316 78.03,9.595 74.454,6.044 Z"
44
+ id="path894"
45
+ inkscape:connector-curvature="0" /></g><g
46
+ id="g898"
47
+ transform="scale(0.3)" /><g
48
+ id="g900"
49
+ transform="scale(0.3)" /><g
50
+ id="g902"
51
+ transform="scale(0.3)" /><g
52
+ id="g904"
53
+ transform="scale(0.3)" /><g
54
+ id="g906"
55
+ transform="scale(0.3)" /><g
56
+ id="g908"
57
+ transform="scale(0.3)" /><g
58
+ id="g910"
59
+ transform="scale(0.3)" /><g
60
+ id="g912"
61
+ transform="scale(0.3)" /><g
62
+ id="g914"
63
+ transform="scale(0.3)" /><g
64
+ id="g916"
65
+ transform="scale(0.3)" /><g
66
+ id="g918"
67
+ transform="scale(0.3)" /><g
68
+ id="g920"
69
+ transform="scale(0.3)" /><g
70
+ id="g922"
71
+ transform="scale(0.3)" /><g
72
+ id="g924"
73
+ transform="scale(0.3)" /><g
74
+ id="g926"
75
+ transform="scale(0.3)" /></svg>
@@ -0,0 +1,111 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Generated by IcoMoon.io -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ version="1.1"
13
+ width="24"
14
+ height="24"
15
+ viewBox="0 0 24 24"
16
+ id="svg6"
17
+ sodipodi:docname="list-alt.svg"
18
+ inkscape:version="0.92.3 (2405546, 2018-03-11)">
19
+ <metadata
20
+ id="metadata12">
21
+ <rdf:RDF>
22
+ <cc:Work
23
+ rdf:about="">
24
+ <dc:format>image/svg+xml</dc:format>
25
+ <dc:type
26
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
27
+ <dc:title>uniE032</dc:title>
28
+ </cc:Work>
29
+ </rdf:RDF>
30
+ </metadata>
31
+ <defs
32
+ id="defs10" />
33
+ <sodipodi:namedview
34
+ pagecolor="#ffffff"
35
+ bordercolor="#666666"
36
+ borderopacity="1"
37
+ objecttolerance="10"
38
+ gridtolerance="10"
39
+ guidetolerance="10"
40
+ inkscape:pageopacity="0"
41
+ inkscape:pageshadow="2"
42
+ inkscape:window-width="1280"
43
+ inkscape:window-height="995"
44
+ id="namedview8"
45
+ showgrid="true"
46
+ inkscape:zoom="22.627417"
47
+ inkscape:cx="13.032487"
48
+ inkscape:cy="13.562045"
49
+ inkscape:window-x="1600"
50
+ inkscape:window-y="0"
51
+ inkscape:window-maximized="1"
52
+ inkscape:current-layer="svg6">
53
+ <inkscape:grid
54
+ type="xygrid"
55
+ id="grid816"
56
+ originx="0"
57
+ originy="0" />
58
+ </sodipodi:namedview>
59
+ <title
60
+ id="title2">uniE032</title>
61
+ <path
62
+ d="M 2,1 H 22 V 23 H 2 Z M 20,4 H 4 v 17 h 16 z"
63
+ id="path4"
64
+ inkscape:connector-curvature="0"
65
+ style="stroke-width:0.69999999"
66
+ sodipodi:nodetypes="cccccccccc" />
67
+ <path
68
+ style="fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
69
+ d="M 5,6 H 7 V 8 H 5 Z"
70
+ id="path822"
71
+ inkscape:connector-curvature="0" />
72
+ <path
73
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
74
+ d="m 5,10 h 2 v 2 H 5 Z"
75
+ id="path822-3"
76
+ inkscape:connector-curvature="0" />
77
+ <path
78
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
79
+ d="m 5,14 h 2 v 2 H 5 Z"
80
+ id="path822-6"
81
+ inkscape:connector-curvature="0" />
82
+ <path
83
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
84
+ d="m 5,18 h 2 v 2 H 5 Z"
85
+ id="path822-7"
86
+ inkscape:connector-curvature="0" />
87
+ <path
88
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
89
+ d="m 9,6 h 9 V 8 H 9 Z"
90
+ id="path822-5"
91
+ inkscape:connector-curvature="0"
92
+ sodipodi:nodetypes="ccccc" />
93
+ <path
94
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
95
+ d="m 9,10 h 9 v 2 H 9 Z"
96
+ id="path822-5-3"
97
+ inkscape:connector-curvature="0"
98
+ sodipodi:nodetypes="ccccc" />
99
+ <path
100
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
101
+ d="m 9,14 h 9 v 2 H 9 Z"
102
+ id="path822-5-5"
103
+ inkscape:connector-curvature="0"
104
+ sodipodi:nodetypes="ccccc" />
105
+ <path
106
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
107
+ d="m 9,18 h 9 v 2 H 9 Z"
108
+ id="path822-5-6"
109
+ inkscape:connector-curvature="0"
110
+ sodipodi:nodetypes="ccccc" />
111
+ </svg>
package/icons/lock.svg ADDED
@@ -0,0 +1,54 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ version="1.1"
11
+ x="0px"
12
+ y="0px"
13
+ viewBox="0 0 24 24"
14
+ enable-background="new 0 0 1000 1000"
15
+ xml:space="preserve"
16
+ id="svg10"
17
+ sodipodi:docname="lock.svg"
18
+ width="24"
19
+ height="24"
20
+ inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"><defs
21
+ id="defs14" /><sodipodi:namedview
22
+ pagecolor="#ffffff"
23
+ bordercolor="#666666"
24
+ borderopacity="1"
25
+ objecttolerance="10"
26
+ gridtolerance="10"
27
+ guidetolerance="10"
28
+ inkscape:pageopacity="0"
29
+ inkscape:pageshadow="2"
30
+ inkscape:window-width="1920"
31
+ inkscape:window-height="1021"
32
+ id="namedview12"
33
+ showgrid="true"
34
+ inkscape:zoom="10.680141"
35
+ inkscape:cx="26.018786"
36
+ inkscape:cy="31.109627"
37
+ inkscape:window-x="0"
38
+ inkscape:window-y="0"
39
+ inkscape:window-maximized="1"
40
+ inkscape:current-layer="g8"
41
+ inkscape:document-rotation="0"><inkscape:grid
42
+ type="xygrid"
43
+ id="grid821" /></sodipodi:namedview>
44
+ <metadata
45
+ id="metadata2"> Svg Vector Icons : http://www.onlinewebfonts.com/icon <rdf:RDF><cc:Work
46
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
47
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata>
48
+ <g
49
+ id="g8"
50
+ transform="translate(0,-976)"><path
51
+ d="m 17,986.75002 v -3.75 c 0,-2.75633 -2.24242,-5 -5,-5 -2.75695,0 -5,2.24367 -5,5 v 3.75 c -1.38062,0 -2.5,1.11937 -2.5,2.5 v 6.25 c 0,1.38066 1.11938,2.49996 2.5,2.49996 h 10 c 1.38063,0 2.5,-1.1193 2.5,-2.49996 v -6.25 c 0,-1.38063 -1.11937,-2.5 -2.5,-2.5 z m -4.375,6.05836 v 2.06664 c 0,0.34547 -0.27953,0.625 -0.625,0.625 -0.34547,0 -0.625,-0.27953 -0.625,-0.625 v -2.06664 c -0.36684,-0.21731 -0.625,-0.60059 -0.625,-1.05836 0,-0.69094 0.55969,-1.25 1.25,-1.25 0.69031,0 1.25,0.5591 1.25,1.25 0,0.45777 -0.25816,0.84105 -0.625,1.05836 z m 1.875,-6.05836 h -5 v -3.75 c 0,-1.37941 1.12121,-2.5 2.5,-2.5 1.37816,0 2.5,1.12063 2.5,2.5 z"
52
+ id="path2"
53
+ style="stroke-width:0.0390625" /></g>
54
+ </svg>
@@ -0,0 +1,56 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Svg Vector Icons : http://www.onlinewebfonts.com/icon -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ version="1.1"
13
+ x="0px"
14
+ y="0px"
15
+ viewBox="0 0 24 24"
16
+ enable-background="new 0 0 1000 1000"
17
+ xml:space="preserve"
18
+ id="svg10"
19
+ sodipodi:docname="login.svg"
20
+ width="24"
21
+ height="24"
22
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"><defs
23
+ id="defs14" /><sodipodi:namedview
24
+ pagecolor="#ffffff"
25
+ bordercolor="#666666"
26
+ borderopacity="1"
27
+ objecttolerance="10"
28
+ gridtolerance="10"
29
+ guidetolerance="10"
30
+ inkscape:pageopacity="0"
31
+ inkscape:pageshadow="2"
32
+ inkscape:window-width="1280"
33
+ inkscape:window-height="995"
34
+ id="namedview12"
35
+ showgrid="true"
36
+ inkscape:zoom="10.680141"
37
+ inkscape:cx="13.507183"
38
+ inkscape:cy="17.695312"
39
+ inkscape:window-x="1600"
40
+ inkscape:window-y="0"
41
+ inkscape:window-maximized="1"
42
+ inkscape:current-layer="g8"><inkscape:grid
43
+ type="xygrid"
44
+ id="grid821" /></sodipodi:namedview>
45
+ <metadata
46
+ id="metadata2"> Svg Vector Icons : http://www.onlinewebfonts.com/icon <rdf:RDF><cc:Work
47
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
48
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata>
49
+ <g
50
+ id="g8"
51
+ transform="translate(0,-976)"><path
52
+ d="m 12.000001,976.8363 c -3.647896,0 -6.604357,2.95651 -6.604357,6.6044 0,2.42538 1.307182,4.54471 3.255308,5.69309 -4.02197,1.17892 -7.55557,4.40661 -7.6507592,8.9052 -0.011224,0.60836 0.4691752,1.11124 1.0775322,1.12471 h 19.844551 c 0.606112,-0.0135 1.088757,-0.51635 1.077532,-1.12471 -0.09544,-4.5105 -3.572399,-7.74343 -7.634799,-8.91459 1.939518,-1.15051 3.24014,-3.26491 3.241628,-5.6837 0,-3.64789 -2.958741,-6.6044 -6.606636,-6.6044 z"
53
+ id="path4"
54
+ inkscape:connector-curvature="0"
55
+ style="stroke-width:0.02244859" /></g>
56
+ </svg>
@@ -0,0 +1,56 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Svg Vector Icons : http://www.onlinewebfonts.com/icon -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ version="1.1"
13
+ x="0px"
14
+ y="0px"
15
+ viewBox="0 0 24 24"
16
+ enable-background="new 0 0 1000 1000"
17
+ xml:space="preserve"
18
+ id="svg10"
19
+ sodipodi:docname="login.svg"
20
+ width="24"
21
+ height="24"
22
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"><defs
23
+ id="defs14" /><sodipodi:namedview
24
+ pagecolor="#ffffff"
25
+ bordercolor="#666666"
26
+ borderopacity="1"
27
+ objecttolerance="10"
28
+ gridtolerance="10"
29
+ guidetolerance="10"
30
+ inkscape:pageopacity="0"
31
+ inkscape:pageshadow="2"
32
+ inkscape:window-width="1280"
33
+ inkscape:window-height="995"
34
+ id="namedview12"
35
+ showgrid="true"
36
+ inkscape:zoom="10.680141"
37
+ inkscape:cx="13.507183"
38
+ inkscape:cy="17.695312"
39
+ inkscape:window-x="1600"
40
+ inkscape:window-y="0"
41
+ inkscape:window-maximized="1"
42
+ inkscape:current-layer="g8"><inkscape:grid
43
+ type="xygrid"
44
+ id="grid821" /></sodipodi:namedview>
45
+ <metadata
46
+ id="metadata2"> Svg Vector Icons : http://www.onlinewebfonts.com/icon <rdf:RDF><cc:Work
47
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
48
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata>
49
+ <g
50
+ id="g8"
51
+ transform="translate(0,-976)"><path
52
+ d="m 12.000001,976.8363 c -3.647896,0 -6.604357,2.95651 -6.604357,6.6044 0,2.42538 1.307182,4.54471 3.255308,5.69309 -4.02197,1.17892 -7.55557,4.40661 -7.6507592,8.9052 -0.011224,0.60836 0.4691752,1.11124 1.0775322,1.12471 h 19.844551 c 0.606112,-0.0135 1.088757,-0.51635 1.077532,-1.12471 -0.09544,-4.5105 -3.572399,-7.74343 -7.634799,-8.91459 1.939518,-1.15051 3.24014,-3.26491 3.241628,-5.6837 0,-3.64789 -2.958741,-6.6044 -6.606636,-6.6044 z"
53
+ id="path4"
54
+ inkscape:connector-curvature="0"
55
+ style="stroke-width:0.02244859" /></g>
56
+ </svg>
@@ -0,0 +1,51 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="24"
6
+ height="24"
7
+ viewBox="0 0 6.3500001 6.3500001"
8
+ version="1.1"
9
+ id="svg442"
10
+ inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
11
+ sodipodi:docname="map3d.svg"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ xmlns:svg="http://www.w3.org/2000/svg">
16
+ <sodipodi:namedview
17
+ id="namedview444"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#666666"
20
+ borderopacity="1.0"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ inkscape:document-units="mm"
26
+ showgrid="false"
27
+ inkscape:zoom="20.639282"
28
+ inkscape:cx="3.0039805"
29
+ inkscape:cy="19.356294"
30
+ inkscape:window-width="1920"
31
+ inkscape:window-height="1051"
32
+ inkscape:window-x="1600"
33
+ inkscape:window-y="0"
34
+ inkscape:window-maximized="1"
35
+ inkscape:current-layer="layer1" />
36
+ <defs
37
+ id="defs439" />
38
+ <g
39
+ inkscape:label="Layer 1"
40
+ inkscape:groupmode="layer"
41
+ id="layer1">
42
+ <path
43
+ id="path2"
44
+ style="stroke-width:0.0651584"
45
+ sodipodi:type="inkscape:offset"
46
+ inkscape:radius="0.053396635"
47
+ inkscape:original="M 3.1757812 1.3417969 L 0 3.1757812 L 3.1757812 5.0078125 L 6.3496094 3.1757812 L 3.1757812 1.3417969 z M 3.1757812 1.5683594 L 3.6484375 1.8417969 C 3.493294 1.9311454 3.3363249 2.0207568 3.1757812 2.1054688 C 3.0152922 2.0207022 2.8563153 1.9311345 2.7011719 1.8417969 L 3.1757812 1.5683594 z M 2.6523438 1.8691406 C 2.8059163 1.9577256 2.9618484 2.0479805 3.1210938 2.1328125 C 3.0823658 2.1528865 3.0447727 2.1720963 3.0058594 2.1914062 C 2.9264388 2.2306806 2.845635 2.2689155 2.765625 2.3066406 C 2.70355 2.3359875 2.6410071 2.3659374 2.578125 2.3964844 C 2.5665606 2.3932143 2.5551871 2.391089 2.5429688 2.3867188 C 2.385349 2.3399173 2.2469317 2.2648474 2.1054688 2.1835938 L 2.6523438 1.8691406 z M 3.6972656 1.8691406 L 4.2441406 2.1855469 C 4.1027431 2.2664949 3.9642606 2.3398736 3.8066406 2.3867188 C 3.7944226 2.3899888 3.7831574 2.3932144 3.7714844 2.3964844 C 3.7085362 2.3658287 3.6462119 2.3359865 3.5839844 2.3066406 C 3.5040178 2.2688919 3.42304 2.230593 3.34375 2.1914062 C 3.3048033 2.1720965 3.2673752 2.152995 3.2285156 2.1328125 C 3.3877719 2.0479369 3.5436932 1.9577582 3.6972656 1.8691406 z M 3.1757812 2.1601562 C 3.2248743 2.1859022 3.2746897 2.2118921 3.3242188 2.2363281 C 3.4038577 2.2757111 3.4841705 2.3117755 3.5644531 2.3496094 C 3.6083091 2.3702284 3.6530164 2.3927895 3.6972656 2.4140625 C 3.5884983 2.4327185 3.5051006 2.4239479 3.40625 2.4140625 L 3.4042969 2.4140625 C 3.3463679 2.4086125 3.2808549 2.3999645 3.203125 2.3984375 C 3.200945 2.3984375 3.1994456 2.4000424 3.1972656 2.4003906 C 3.1907156 2.4001942 3.1848264 2.3984375 3.1777344 2.3984375 C 3.1700944 2.3984375 3.163231 2.4002934 3.15625 2.4003906 C 3.15298 2.3996487 3.1517175 2.3984375 3.1484375 2.3984375 C 3.0706525 2.3995275 3.0051948 2.4083925 2.9472656 2.4140625 C 2.8484266 2.4238825 2.7647337 2.4326312 2.65625 2.4140625 C 2.700433 2.3928975 2.743341 2.3721815 2.7871094 2.3515625 C 2.8674034 2.3135975 2.9476503 2.2757109 3.0273438 2.2363281 C 3.0768728 2.2117821 3.1266336 2.1859013 3.1757812 2.1601562 z M 2.0566406 2.2128906 C 2.1995982 2.2952573 2.3490263 2.3763836 2.5136719 2.4277344 C 2.4196328 2.474536 2.3250762 2.5245267 2.234375 2.578125 C 2.1480811 2.6291807 2.0638717 2.6828175 1.9804688 2.7382812 C 1.8144487 2.6958435 1.6564323 2.6131469 1.5097656 2.5292969 L 2.0566406 2.2128906 z M 4.2929688 2.2128906 L 4.8398438 2.5292969 C 4.6932314 2.6131907 4.5367865 2.6976766 4.3710938 2.7402344 C 4.2876363 2.6845962 4.2016374 2.629214 4.1152344 2.578125 C 4.0245768 2.5244504 3.9319084 2.4744597 3.8378906 2.4277344 C 4.0026016 2.3763509 4.1501421 2.295257 4.2929688 2.2128906 z M 2.5839844 2.4472656 C 2.6598044 2.4655936 2.723452 2.4726563 2.7832031 2.4726562 C 2.8177861 2.4726562 2.8511645 2.47202 2.8847656 2.46875 C 2.7984716 2.513696 2.7239527 2.5763707 2.6484375 2.6542969 C 2.6201815 2.6834249 2.5932442 2.7137026 2.5664062 2.7441406 C 2.5180773 2.7451225 2.4674537 2.7495362 2.4140625 2.7539062 C 2.3542785 2.7593563 2.2931533 2.7656141 2.2226562 2.7675781 C 2.1633083 2.7697581 2.1044115 2.7644902 2.046875 2.7539062 C 2.116914 2.7078683 2.1878941 2.6615786 2.2597656 2.6191406 C 2.3650419 2.5567385 2.474257 2.5008965 2.5839844 2.4472656 z M 3.1757812 2.4472656 C 3.3912539 2.4494456 3.523844 2.5423064 3.6679688 2.6914062 C 3.6850968 2.7090802 3.702276 2.7277657 3.71875 2.7460938 C 3.5777561 2.7537337 3.4444869 2.8023053 3.2734375 2.9707031 C 3.2394005 3.0041951 3.2076363 3.0387627 3.1757812 3.0742188 C 3.1439246 3.0387623 3.110209 3.0041947 3.0761719 2.9707031 C 2.905133 2.8023268 2.7719297 2.7535231 2.6308594 2.7460938 C 2.6480964 2.7271112 2.6658114 2.707781 2.6835938 2.6894531 C 2.8274023 2.5410954 2.9589993 2.4486948 3.1757812 2.4472656 z M 3.7675781 2.4492188 C 3.8771745 2.5027848 3.9864988 2.5588007 4.0917969 2.6210938 C 4.1636899 2.6636407 4.2344415 2.70789 4.3046875 2.7539062 C 4.2468675 2.7648152 4.1882646 2.7697601 4.1289062 2.7675781 C 4.0584309 2.7653985 3.9953635 2.7591393 3.9355469 2.7539062 C 3.8820911 2.7495461 3.8336815 2.7452307 3.7851562 2.7441406 C 3.7590824 2.7144666 3.732461 2.6866771 3.7050781 2.6582031 C 3.6276215 2.5782385 3.5515635 2.5134461 3.4667969 2.46875 C 3.4995249 2.47202 3.5326962 2.4746094 3.5664062 2.4746094 C 3.6261903 2.4746094 3.6917356 2.4677607 3.7675781 2.4492188 z M 1.4609375 2.5566406 C 1.6010259 2.6371523 1.7592378 2.7234613 1.9277344 2.7734375 C 1.8740596 2.8096567 1.8199326 2.8468108 1.7675781 2.8828125 C 1.6835753 2.9404144 1.6007188 2.9989728 1.515625 3.0546875 C 1.4730785 3.0826154 1.430029 3.1094448 1.3867188 3.1367188 C 1.2266878 3.0522792 1.0686823 2.9621227 0.9140625 2.8730469 L 1.4609375 2.5566406 z M 4.8886719 2.5566406 L 5.4375 2.8730469 C 5.2828693 2.9620681 5.1248746 3.0522795 4.9648438 3.1367188 C 4.9215333 3.1094451 4.8785062 3.0826157 4.8359375 3.0546875 C 4.7509528 2.9989401 4.6658268 2.940349 4.5820312 2.8828125 C 4.5293385 2.8467022 4.4758004 2.8096569 4.421875 2.7734375 C 4.5905134 2.7234721 4.7485181 2.6372397 4.8886719 2.5566406 z M 1.9902344 2.7910156 C 2.0664924 2.8089076 2.1435517 2.8188063 2.2226562 2.8164062 C 2.2944403 2.8142262 2.3602359 2.8080764 2.4179688 2.8027344 C 2.4547337 2.7994644 2.4904903 2.7960119 2.5234375 2.7949219 C 2.4682355 2.8600509 2.4150684 2.9269053 2.3632812 2.9921875 C 2.3326263 3.0309155 2.3007322 3.0690859 2.2695312 3.1074219 C 2.163273 3.2382622 2.0714969 3.339771 1.9785156 3.4257812 C 1.9176408 3.3962167 1.8570188 3.3683174 1.796875 3.3398438 C 1.7167995 3.302097 1.6359961 3.2639271 1.5566406 3.2246094 C 1.5162756 3.2046444 1.4756499 3.1829474 1.4355469 3.1621094 C 1.4708939 3.1397444 1.5062139 3.1186131 1.5410156 3.0957031 C 1.6264366 3.0396281 1.7107445 2.981561 1.7949219 2.9238281 C 1.8587419 2.8800811 1.9246141 2.8349156 1.9902344 2.7910156 z M 4.359375 2.7910156 C 4.425159 2.8348716 4.4907581 2.8779757 4.5546875 2.921875 C 4.6389085 2.979586 4.7231727 3.0377082 4.8085938 3.09375 C 4.8435037 3.11666 4.8788248 3.1397454 4.9140625 3.1621094 C 4.8740255 3.1829464 4.8334532 3.2026912 4.7929688 3.2226562 C 4.7134387 3.2620392 4.6330171 3.300002 4.5527344 3.3378906 C 4.4929504 3.3661466 4.433518 3.3947001 4.3730469 3.4238281 C 4.2795523 3.3376398 4.1870675 3.2385866 4.0820312 3.109375 C 4.0503942 3.0703187 4.0194823 3.0315928 3.9882812 2.9921875 C 3.9366796 2.9270584 3.8831196 2.8598223 3.828125 2.7949219 C 3.861072 2.7971019 3.8946571 2.7994544 3.9316406 2.8027344 C 3.9893516 2.8081844 4.055278 2.8143332 4.1269531 2.8164062 C 4.2058291 2.8185863 4.2832816 2.8091216 4.359375 2.7910156 z M 2.5898438 2.7929688 C 2.7409399 2.7924779 2.8662027 2.8298235 3.0429688 3.0039062 C 3.0776608 3.0379433 3.1101772 3.0749991 3.1425781 3.1113281 C 3.0763583 3.1875856 3.0141745 3.2663474 2.953125 3.34375 C 2.8696683 3.4494627 2.7836017 3.5587088 2.6894531 3.6582031 C 2.6530158 3.6966043 2.6146932 3.7327768 2.5761719 3.7675781 C 2.4950059 3.7136853 2.411986 3.659013 2.328125 3.609375 C 2.2293943 3.5510093 2.127885 3.4995878 2.0253906 3.4492188 C 2.1159391 3.3639067 2.2066121 3.2642944 2.3085938 3.1386719 C 2.3399037 3.1001619 2.3695176 3.0602666 2.4003906 3.0214844 C 2.4608286 2.9452264 2.5244852 2.8680912 2.5898438 2.7929688 z M 3.7617188 2.7929688 C 3.8268478 2.8679178 3.8888785 2.9453146 3.9492188 3.0214844 C 3.9804197 3.0609764 4.0112218 3.1014823 4.0429688 3.140625 C 4.1444266 3.2656037 4.2358634 3.3626955 4.3261719 3.4472656 C 4.2237321 3.4976674 4.1202696 3.5511185 4.0214844 3.609375 C 3.9375907 3.6591221 3.8565133 3.7117322 3.7753906 3.765625 C 3.7367711 3.731042 3.6984052 3.6967134 3.6621094 3.6582031 C 3.5680699 3.5588179 3.4818404 3.4495063 3.3984375 3.34375 C 3.3373446 3.2664019 3.2732953 3.1875634 3.2070312 3.1113281 C 3.2394323 3.0749999 3.273902 3.0379438 3.3085938 3.0039062 C 3.4854361 2.8299331 3.6106119 2.7925107 3.7617188 2.7929688 z M 0.86523438 2.9023438 C 1.020116 2.9916923 1.1771505 3.0805945 1.3378906 3.1660156 C 1.1775433 3.2657281 1.0173777 3.3611904 0.86523438 3.4492188 L 0.390625 3.1757812 L 0.86523438 2.9023438 z M 5.4863281 2.9023438 L 5.9589844 3.1757812 L 5.4863281 3.4492188 C 5.3341849 3.3610704 5.1720769 3.2658372 5.0117188 3.1660156 C 5.1723278 3.0804854 5.3313811 2.9916704 5.4863281 2.9023438 z M 3.1757812 3.1484375 C 3.2398193 3.2224045 3.3000167 3.2979898 3.359375 3.3730469 C 3.443596 3.4796324 3.531299 3.5904065 3.6269531 3.6914062 C 3.6614271 3.7278432 3.6960934 3.7618661 3.7324219 3.7949219 C 3.6730739 3.8347409 3.6143734 3.8746036 3.5566406 3.9140625 C 3.4724196 3.9718825 3.3882208 4.0298301 3.3027344 4.0859375 C 3.2606244 4.1135385 3.2185024 4.1410217 3.1757812 4.1679688 C 3.1330161 4.1410219 3.0890183 4.1135384 3.046875 4.0859375 C 2.9613448 4.0299719 2.8772117 3.9718608 2.7929688 3.9140625 C 2.7351486 3.8745703 2.6764805 3.8347087 2.6171875 3.7949219 C 2.6532977 3.7618658 2.6901356 3.727953 2.7246094 3.6914062 C 2.8202854 3.5903846 2.9061115 3.4795888 2.9902344 3.3730469 C 3.0494728 3.2980989 3.1117972 3.2223928 3.1757812 3.1484375 z M 1.3886719 3.1914062 C 1.4374379 3.2169342 1.4860085 3.2431421 1.5351562 3.2675781 C 1.6147953 3.3069611 1.6950533 3.3449021 1.7753906 3.3828125 C 1.8295016 3.4084495 1.8846767 3.4345365 1.9394531 3.4609375 C 1.8000847 3.5836252 1.6558895 3.6784304 1.4609375 3.7929688 L 0.9140625 3.4765625 C 1.0672421 3.3877595 1.2283247 3.2938355 1.3886719 3.1933594 L 1.3886719 3.1914062 z M 4.9609375 3.1914062 C 5.1212957 3.2918824 5.2842548 3.3878141 5.4375 3.4765625 L 4.890625 3.7929688 C 4.6991313 3.6801868 4.5530378 3.5846071 4.4121094 3.4609375 C 4.4664384 3.4348635 4.5205006 3.4082315 4.5742188 3.3828125 C 4.6547307 3.3449565 4.7346396 3.3070374 4.8144531 3.2675781 C 4.8635461 3.2431411 4.9122268 3.2170432 4.9609375 3.1914062 z M 1.9863281 3.484375 C 2.0935681 3.53685 2.1999236 3.5915454 2.3027344 3.6523438 C 2.3820464 3.6992548 2.4600233 3.7497468 2.5371094 3.8007812 C 2.3811152 3.9352731 2.2143914 4.0434102 2.0566406 4.1367188 L 1.5078125 3.8203125 C 1.6975498 3.7079123 1.8442106 3.6116338 1.9863281 3.484375 z M 4.3632812 3.484375 C 4.505388 3.6115683 4.6519941 3.7078468 4.8417969 3.8203125 L 4.2949219 4.1367188 C 4.1371712 4.0434429 3.9686253 3.9353386 3.8125 3.8007812 C 3.889739 3.749725 3.9675742 3.6993417 4.046875 3.6523438 C 4.1497512 3.5914691 4.2560958 3.5368276 4.3632812 3.484375 z M 2.5800781 3.828125 C 2.6428071 3.870235 2.7045757 3.9131202 2.765625 3.9550781 C 2.850173 4.0131161 2.935736 4.0705293 3.0214844 4.1269531 C 3.0574854 4.1505181 3.0924141 4.1742476 3.1289062 4.1972656 C 2.9671189 4.2979602 2.8054687 4.3918513 2.6523438 4.4804688 L 2.1035156 4.1640625 C 2.2598918 4.0706775 2.4262438 3.9624205 2.5800781 3.828125 z M 3.7695312 3.828125 C 3.9234309 3.9625405 4.089783 4.0707648 4.2460938 4.1640625 L 3.6972656 4.4804688 C 3.5447983 4.3921513 3.3840885 4.2957765 3.2226562 4.1953125 C 3.2583498 4.1726774 3.2949315 4.150028 3.3300781 4.1269531 C 3.4158271 4.0707691 3.4994034 4.0130729 3.5839844 3.9550781 C 3.645078 3.9131855 3.7068454 3.8701703 3.7695312 3.828125 z M 3.1757812 4.2246094 C 3.336063 4.3249765 3.4959014 4.4213444 3.6484375 4.5097656 L 3.1757812 4.7832031 L 2.7011719 4.5097656 C 2.8537734 4.4212899 3.015554 4.3249547 3.1757812 4.2246094 z "
48
+ d="m 3.1484375,1.2949219 -3.17578125,1.8339843 a 0.05340197,0.05340197 0 0 0 0,0.09375 L 3.1484375,5.0546875 a 0.05340197,0.05340197 0 0 0 0.054687,0 L 6.3769531,3.2226562 a 0.05340197,0.05340197 0 0 0 0,-0.09375 L 3.203125,1.2949219 a 0.05340197,0.05340197 0 0 0 -0.054687,0 z m 0.027344,0.3359375 0.3632813,0.2109375 C 3.4190566,1.9105497 3.298577,1.9795845 3.1757812,2.0449219 3.0526244,1.9794229 2.9310236,1.9105531 2.8105469,1.8417969 Z M 2.6523438,1.9316406 c 0.1162145,0.067045 0.2354328,0.1334418 0.3554687,0.1992188 -0.00862,0.00433 -0.016676,0.00935 -0.025391,0.013672 v -0.00195 c -0.078864,0.038999 -0.160269,0.07753 -0.2402344,0.1152344 -0.056481,0.026702 -0.1127529,0.054332 -0.1699219,0.082031 -0.00359,-9.436e-4 -0.00889,-0.0029 -0.011719,-0.00391 a 0.05340197,0.05340197 0 0 0 -0.00195,0 C 2.4379548,2.3001166 2.3280679,2.243018 2.2167969,2.1816406 Z m 1.0449218,0 0.4355469,0.2519532 C 4.0217891,2.24426 3.9118154,2.3000354 3.7910156,2.3359375 c -0.00427,0.00115 -0.00767,0.00278 -0.011719,0.00391 C 3.7215387,2.3117939 3.6645964,2.2847755 3.6074219,2.2578125 3.5274793,2.2200751 3.4459205,2.1814896 3.3671875,2.1425781 v 0.00195 c -0.00872,-0.00433 -0.016783,-0.00935 -0.025391,-0.013672 C 3.4618277,2.0650815 3.5810416,1.9987066 3.6972656,1.9316406 Z M 3.1757812,2.2207031 c 0.041064,0.021467 0.08329,0.043875 0.125,0.064453 0.054498,0.026951 0.1080085,0.051075 0.1621094,0.076172 -0.017003,-0.00155 -0.032525,0.00183 -0.050781,0 a 0.05340197,0.05340197 0 0 0 -0.00195,0 c -0.056422,-0.00531 -0.123979,-0.014032 -0.2050781,-0.015625 a 0.05340197,0.05340197 0 0 0 -0.00195,0 c -3.655e-4,0 -0.00651,0.00111 -0.011719,0.00195 -4.132e-4,-8.24e-5 -0.00139,8.94e-5 -0.00195,0 -0.00341,-5.44e-4 -0.00298,-0.00195 -0.011719,-0.00195 -0.00748,0 -0.00596,0.0015 -0.00977,0.00195 0,0 0.00195,0.00195 0.00195,0.00195 -0.00164,-5.718e-4 -0.00631,-0.00124 -0.00977,-0.00195 -2.769e-4,1.026e-4 -0.00427,5.1e-6 -0.00391,0 -0.00304,-4.77e-4 -0.00479,-0.00195 -0.00781,-0.00195 -0.081421,0.00114 -0.1505911,0.010101 -0.2070313,0.015625 -0.017552,0.00174 -0.032427,-0.0015 -0.048828,0 0.052975,-0.025162 0.1053097,-0.050033 0.1582031,-0.076172 a 0.05340197,0.05340197 0 0 0 0,-0.00195 c 0.041582,-0.020608 0.083955,-0.041076 0.125,-0.0625 z M 2.0566406,2.2753906 C 2.1602405,2.3345653 2.271836,2.3889041 2.3886719,2.4355469 2.3279281,2.4673597 2.2660488,2.4963746 2.2070312,2.53125 2.1270737,2.5785568 2.0497454,2.6287995 1.9726562,2.6796875 1.8521206,2.6460793 1.7348424,2.5891336 1.6210938,2.5273438 Z m 2.2363282,0 0.4355468,0.2519532 C 4.6149981,2.5896496 4.4987986,2.6479116 4.3789062,2.6816406 4.3015441,2.6303817 4.2228725,2.5787271 4.1425781,2.53125 4.0839305,2.4965271 4.0229455,2.4672957 3.9628906,2.4355469 4.0792683,2.3888983 4.1897566,2.3344754 4.2929688,2.2753906 Z M 3.1757812,2.5 c 0.1945577,0.00197 0.30644,0.081306 0.4414063,0.21875 -0.119511,0.025549 -0.241977,0.078114 -0.3808594,0.2148438 -0.021513,0.021168 -0.040558,0.042853 -0.060547,0.064453 -0.02077,-0.021823 -0.041306,-0.043599 -0.0625,-0.064453 C 2.9744243,2.7968985 2.8520009,2.7442628 2.7324219,2.71875 2.8680355,2.5805876 2.9788377,2.5012984 3.1757812,2.5 Z m -0.5800781,0.00195 c 0.044983,0.00975 0.083766,0.012673 0.1230469,0.015625 -0.037336,0.030652 -0.073805,0.062904 -0.109375,0.099609 -0.02412,0.024865 -0.046004,0.050957 -0.068359,0.076172 -0.043305,0.00171 -0.08574,0.00412 -0.1308594,0.00781 -0.060187,0.00549 -0.1212533,0.011772 -0.1894531,0.013672 -0.00325,1.192e-4 -0.00652,-7.15e-5 -0.00977,0 0.025525,-0.01602 0.050587,-0.033721 0.076172,-0.048828 0.099628,-0.059054 0.2034774,-0.1125061 0.3085937,-0.1640625 z m 1.1601563,0.00195 c 0.1049816,0.051497 0.2088983,0.1050839 0.3085937,0.1640626 0.025157,0.014888 0.049304,0.031555 0.074219,0.046875 -0.0026,-6.64e-5 -0.00521,9.58e-5 -0.00781,0 -0.068302,-0.00211 -0.1311533,-0.0084 -0.1914063,-0.013672 -0.045017,-0.00367 -0.08613,-0.00605 -0.1289062,-0.00781 -0.022137,-0.024486 -0.044015,-0.048983 -0.066406,-0.072266 -0.035816,-0.036976 -0.072293,-0.070611 -0.109375,-0.1015626 0.038874,-0.00298 0.076831,-0.00599 0.1210938,-0.015625 z M 1.4628906,2.6191406 c 0.1063722,0.060602 0.2255172,0.1181024 0.3515625,0.1660156 -0.025634,0.017536 -0.051151,0.035529 -0.076172,0.052734 C 1.6538642,2.8957766 1.5703664,2.954742 1.4863281,3.0097656 1.453383,3.0313911 1.4187329,3.0528605 1.3847656,3.0742188 1.263041,3.009403 1.1426165,2.94133 1.0234375,2.8730469 Z m 3.4238282,0 0.4414062,0.2539063 C 5.2089323,2.9413195 5.0885145,3.0094019 4.9667969,3.0742188 4.9328368,3.0528621 4.8982082,3.0313989 4.8652344,3.0097656 4.7809233,2.9544601 4.6951573,2.8954502 4.6113281,2.8378906 4.5862219,2.8206853 4.5607227,2.8026816 4.5351562,2.7851562 4.6612301,2.7372615 4.7803191,2.6797945 4.8867188,2.6191406 Z M 2.0039062,2.8457031 c 0.071961,0.01525 0.1448052,0.02574 0.2207032,0.023437 0.066585,-0.00202 0.1260213,-0.00678 0.1796875,-0.011719 -0.027446,0.033957 -0.055567,0.068202 -0.082031,0.1015625 -0.030065,0.037983 -0.062257,0.07654 -0.09375,0.1152344 C 2.1324808,3.1924705 2.0493539,3.2804139 1.9667969,3.359375 1.9175386,3.3358669 1.8684131,3.3137877 1.8203125,3.2910156 1.7402633,3.2532812 1.6588317,3.2167538 1.5800781,3.1777344 a 0.05340197,0.05340197 0 0 0 0,-0.00195 c -0.012085,-0.00598 -0.024863,-0.011285 -0.037109,-0.017578 0.00933,-0.00591 0.017938,-0.011386 0.027344,-0.017578 0.086084,-0.05651 0.1697869,-0.1141819 0.2539063,-0.171875 0.058848,-0.040339 0.1194484,-0.082596 0.1796874,-0.1230469 z m 2.3417969,0 c 0.060719,0.040404 0.1213243,0.081017 0.1796875,0.1210938 0.084131,0.057649 0.1677935,0.1153794 0.2539063,0.171875 0.00904,0.00593 0.018231,0.011621 0.027344,0.017578 -0.012471,0.00615 -0.024538,0.011379 -0.037109,0.017578 a 0.05340197,0.05340197 0 0 0 0,0.00195 c -0.07893,0.039086 -0.1599545,0.075394 -0.2402343,0.1132813 -0.048152,0.022758 -0.096224,0.045126 -0.1445313,0.068359 -0.083282,-0.078979 -0.1671221,-0.1648809 -0.2617187,-0.28125 -0.031479,-0.038861 -0.062635,-0.07789 -0.09375,-0.1171875 -0.026386,-0.033303 -0.054534,-0.067555 -0.082031,-0.1015625 0.053318,0.00498 0.1119238,0.00982 0.1777344,0.011719 0.075453,0.00209 0.1485651,-0.00805 0.2207031,-0.023437 z m -1.7324219,0.00391 c 0.1297283,0.00312 0.232186,0.033449 0.3925782,0.1914062 a 0.05340197,0.05340197 0 0 0 0,0.00195 c 0.02227,0.021849 0.04448,0.045899 0.066406,0.070312 -0.055589,0.065777 -0.1086746,0.1319938 -0.1601562,0.1972657 -0.08348,0.1057419 -0.169816,0.2134259 -0.2617188,0.3105469 -0.02561,0.02699 -0.052725,0.052689 -0.080078,0.078125 C 2.5000101,3.6527359 2.4286809,3.6058349 2.3554688,3.5625 2.275311,3.5151139 2.1931164,3.474512 2.1113281,3.4335938 2.1882805,3.3569422 2.2642519,3.2770195 2.3496094,3.171875 c 0.032301,-0.039729 0.061675,-0.079348 0.091797,-0.1171875 0.054351,-0.068577 0.1134971,-0.1373182 0.171875,-0.2050781 z m 1.125,0 c 0.057697,0.06737 0.1153931,0.1362444 0.1699219,0.2050781 0.030788,0.038969 0.061294,0.079124 0.09375,0.1191406 C 4.0870143,3.278609 4.1635215,3.3562767 4.2402344,3.4316406 4.157712,3.4732198 4.0743112,3.5152211 3.9941406,3.5625 3.9209409,3.6059058 3.8514337,3.6529542 3.78125,3.6992188 3.7534571,3.6740259 3.7264099,3.6478716 3.7011719,3.6210938 3.6093668,3.5240699 3.5228531,3.4162995 3.4394531,3.3105469 3.3876407,3.2449485 3.3332455,3.1788989 3.2773438,3.1132812 c 0.022424,-0.024351 0.045502,-0.047886 0.068359,-0.070312 a 0.05340197,0.05340197 0 0 0 0,-0.00195 C 3.5061804,2.883142 3.608559,2.8527659 3.7382812,2.8496094 Z M 0.86523438,2.9648438 C 0.9853581,3.0339794 1.1085559,3.1007983 1.2324219,3.1679688 1.1084443,3.2440388 0.98382526,3.3178521 0.86523438,3.3867188 L 0.5,3.1757812 Z m 4.62109372,0 0.3652344,0.2109374 -0.3652344,0.2109376 C 5.3677851,3.3179106 5.2430527,3.2437337 5.1191406,3.1679688 5.242868,3.1010194 5.366249,3.0338086 5.4863281,2.9648438 Z M 3.1757812,3.2324219 c 0.048099,0.057408 0.096395,0.1154308 0.1425782,0.1738281 0.084243,0.1066133 0.1716786,0.2189445 0.2695312,0.3222656 0.019603,0.02072 0.040526,0.039105 0.060547,0.058594 -0.040675,0.027481 -0.081267,0.054811 -0.1210937,0.082031 -0.084255,0.057843 -0.1690733,0.1161965 -0.2539063,0.171875 -0.032254,0.021141 -0.065358,0.041836 -0.097656,0.0625 -0.033183,-0.020887 -0.067682,-0.04159 -0.099609,-0.0625 -0.084784,-0.055477 -0.1695714,-0.1140136 -0.2539063,-0.171875 -0.039875,-0.027235 -0.080441,-0.05456 -0.1210937,-0.082031 0.02067,-0.019529 0.042284,-0.037162 0.0625,-0.058594 C 2.8617885,3.6249171 2.9473383,3.5125245 3.03125,3.40625 3.0771033,3.3482367 3.1269172,3.2901176 3.1757812,3.2324219 Z m 1.7832032,0.019531 c 0.1254669,0.078083 0.249471,0.1536749 0.3710937,0.2246094 L 4.890625,3.7304688 C 4.7436847,3.6430983 4.6246361,3.5623852 4.5136719,3.4726562 c 0.028039,-0.013591 0.056351,-0.02794 0.083984,-0.041016 0.080626,-0.037909 0.1599109,-0.075523 0.2402344,-0.1152344 a 0.05340197,0.05340197 0 0 0 0,-0.00195 c 0.040891,-0.020354 0.081326,-0.041489 0.1210938,-0.0625 z m -3.5664063,0.00195 c 0.038936,0.020544 0.078915,0.040547 0.1191407,0.060547 a 0.05340197,0.05340197 0 0 0 0,0.00195 c 0.080202,0.039661 0.1598747,0.077314 0.2402343,0.1152344 0.02837,0.013441 0.057267,0.027382 0.085937,0.041016 C 1.728264,3.5615223 1.6099739,3.6420457 1.4609375,3.7304688 L 1.0214844,3.4765625 C 1.142902,3.4058932 1.266881,3.3320961 1.3925781,3.2539062 Z M 1.9902344,3.546875 c 0.097139,0.047985 0.192879,0.097774 0.2851562,0.1523438 0.056354,0.033332 0.112334,0.069273 0.1679688,0.1054687 C 2.3159042,3.9077597 2.183862,3.9969351 2.0546875,4.0742188 L 1.6113281,3.8183594 C 1.7524999,3.7321179 1.8751416,3.6461436 1.9902344,3.546875 Z m 2.3691406,0 c 0.1150738,0.099218 0.2377088,0.1852067 0.3789062,0.2714844 L 4.296875,4.0742188 C 4.1673337,3.9968295 4.0341115,3.9078284 3.90625,3.8046875 3.9619148,3.7685012 4.0178472,3.7326275 4.0742188,3.6992188 4.1665402,3.6445896 4.2622701,3.5948401 4.359375,3.546875 Z M 2.5820312,3.8945312 C 2.6336159,3.9295128 2.6854591,3.9650388 2.7363281,4 c 0.08486,0.058252 0.169842,0.1152742 0.2558594,0.171875 0.012134,0.00794 0.024944,0.015374 0.037109,0.023437 C 2.9021037,4.2729905 2.7741543,4.3474262 2.6523438,4.4179688 L 2.2070312,4.1601562 c 0.1243801,-0.076941 0.2519559,-0.1620953 0.375,-0.265625 z m 1.1855469,0 c 0.123093,0.103612 0.2506504,0.1887341 0.375,0.265625 L 3.6972656,4.4179688 C 3.5770854,4.3480596 3.4504104,4.2729634 3.3242188,4.1953125 3.3362518,4.1876447 3.3474461,4.1797067 3.359375,4.171875 3.4458372,4.1152237 3.5287924,4.0579316 3.6132812,4 3.6642491,3.9650507 3.716045,3.9294861 3.7675781,3.8945312 Z M 3.1757812,4.2871094 C 3.2994142,4.3641746 3.421501,4.437563 3.5410156,4.5078125 L 3.1757812,4.7207031 2.8085938,4.5078125 C 2.9285746,4.4375373 3.0517851,4.3642997 3.1757812,4.2871094 Z"
49
+ transform="matrix(0.98298215,0,0,0.98298215,0.05422367,0.05422365)" />
50
+ </g>
51
+ </svg>