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.
- package/LICENSE +28 -0
- package/README.md +68 -0
- package/actions/display.js +7 -0
- package/actions/editing.js +7 -0
- package/actions/layerinfo.js +7 -0
- package/actions/layers.js +8 -0
- package/actions/localConfig.js +7 -0
- package/actions/locale.js +10 -0
- package/actions/locate.js +8 -0
- package/actions/logging.js +7 -0
- package/actions/map.js +15 -0
- package/actions/measurement.js +8 -0
- package/actions/processNotifications.js +7 -0
- package/actions/redlining.js +7 -0
- package/actions/redliningPick.js +7 -0
- package/actions/serviceinfo.js +7 -0
- package/actions/task.js +9 -0
- package/actions/theme.js +24 -0
- package/actions/windows.js +10 -0
- package/components/AppMenu.js +8 -0
- package/components/AttributeForm.js +34 -0
- package/components/AutoEditForm.js +8 -0
- package/components/CoordinateDisplayer.js +7 -0
- package/components/EditComboField.js +10 -0
- package/components/EditUploadField.js +8 -0
- package/components/FullscreenSwitcher.js +8 -0
- package/components/Icon.js +7 -0
- package/components/IdentifyViewer.js +16 -0
- package/components/ImportLayer.js +25 -0
- package/components/LayerInfoWindow.js +7 -0
- package/components/LinkFeatureForm.js +10 -0
- package/components/MapSelection.js +13 -0
- package/components/NumericInputWindow.js +7 -0
- package/components/PickFeature.js +7 -0
- package/components/PluginsContainer.js +8 -0
- package/components/PrintSelection.js +54 -0
- package/components/QtDesignerForm.js +30 -0
- package/components/ResizeableWindow.js +12 -0
- package/components/SearchBox.js +26 -0
- package/components/ServiceInfoWindow.js +7 -0
- package/components/SideBar.js +9 -0
- package/components/StandardApp.js +35 -0
- package/components/Swipeable.js +1 -0
- package/components/TaskBar.js +7 -0
- package/components/ThemeLayersListWindow.js +9 -0
- package/components/ThemeList.js +12 -0
- package/components/Toolbar.js +7 -0
- package/components/WindowManager.js +7 -0
- package/components/map/OlLayer.js +12 -0
- package/components/map/OlLocate.css +56 -0
- package/components/map/OlLocate.js +17 -0
- package/components/map/OlMap.js +11 -0
- package/components/map/layers/BingLayer.js +8 -0
- package/components/map/layers/GoogleLayer.js +27 -0
- package/components/map/layers/GraticuleLayer.js +8 -0
- package/components/map/layers/ImageLayer.js +8 -0
- package/components/map/layers/MVTLayer.js +7 -0
- package/components/map/layers/OSMLayer.js +8 -0
- package/components/map/layers/OverlayLayer.js +10 -0
- package/components/map/layers/VectorLayer.js +14 -0
- package/components/map/layers/WFSLayer.js +11 -0
- package/components/map/layers/WMSLayer.js +11 -0
- package/components/map/layers/WMTSLayer.js +9 -0
- package/components/map/layers/XYZLayer.js +7 -0
- package/components/map/layers/index.js +8 -0
- package/components/map3d/BottomBar3D.js +7 -0
- package/components/map3d/Compare3D.js +12 -0
- package/components/map3d/Draw3D.js +10 -0
- package/components/map3d/ExportObjects3D.js +17 -0
- package/components/map3d/HeightProfile3D.js +8 -0
- package/components/map3d/HideObjects3D.js +12 -0
- package/components/map3d/Identify3D.js +13 -0
- package/components/map3d/LayerTree3D.js +8 -0
- package/components/map3d/Map3D.js +29 -0
- package/components/map3d/Map3DLight.js +10 -0
- package/components/map3d/MapControls3D.js +20 -0
- package/components/map3d/MapExport3D.js +11 -0
- package/components/map3d/Measure3D.js +23 -0
- package/components/map3d/OverviewMap3D.js +9 -0
- package/components/map3d/SearchField3D.js +16 -0
- package/components/map3d/TopBar3D.js +7 -0
- package/components/map3d/View3DSwitcher.js +7 -0
- package/components/map3d/drawtool/CreateTool3D.js +9 -0
- package/components/map3d/drawtool/EditTool3D.js +9 -0
- package/components/map3d/drawtool/NumericInput3D.js +7 -0
- package/components/map3d/img/viewcone.svg +124 -0
- package/components/map3d/layers/VectorLayer3D.js +7 -0
- package/components/map3d/layers/WFSLayer3D.js +8 -0
- package/components/map3d/layers/WMSLayer3D.js +7 -0
- package/components/map3d/layers/WMTSLayer3D.js +9 -0
- package/components/map3d/layers/index.js +8 -0
- package/components/map3d/models/arrow.glb +0 -0
- package/components/map3d/models/pin.glb +0 -0
- package/components/map3d/slices/map3d.js +1 -0
- package/components/map3d/style/BottomBar3D.css +67 -0
- package/components/map3d/style/Compare3D.css +57 -0
- package/components/map3d/style/Draw3D.css +7 -0
- package/components/map3d/style/HideObjects3D.css +29 -0
- package/components/map3d/style/LayerTree3D.css +126 -0
- package/components/map3d/style/Map3D.css +42 -0
- package/components/map3d/style/Map3DLight.css +72 -0
- package/components/map3d/style/MapControls3D.css +56 -0
- package/components/map3d/style/MapExport3D.css +25 -0
- package/components/map3d/style/OverviewMap3D.css +37 -0
- package/components/map3d/style/SearchField3D.css +7 -0
- package/components/map3d/style/View3DSwitcher.css +27 -0
- package/components/map3d/utils/Tiles3DStyle.js +1 -0
- package/components/share/ShareLink.js +7 -0
- package/components/share/ShareQRCode.js +8 -0
- package/components/share/ShareSocials.js +9 -0
- package/components/share/style/ShareLink.css +13 -0
- package/components/share/style/ShareSocials.css +9 -0
- package/components/style/App.css +229 -0
- package/components/style/AppMenu.css +162 -0
- package/components/style/AttributeForm.css +57 -0
- package/components/style/AutoEditForm.css +64 -0
- package/components/style/DefaultColorScheme.css +60 -0
- package/components/style/EditUploadField.css +103 -0
- package/components/style/FullscreenSwitcher.css +25 -0
- package/components/style/Icon.css +26 -0
- package/components/style/IdentifyViewer.css +249 -0
- package/components/style/ImportLayer.css +28 -0
- package/components/style/LayerInfoWindow.css +46 -0
- package/components/style/LinkFeatureForm.css +48 -0
- package/components/style/NumericInputWindow.css +11 -0
- package/components/style/PickFeature.css +25 -0
- package/components/style/PluginsContainer.css +4 -0
- package/components/style/QtDesignerForm.css +225 -0
- package/components/style/ResizeableWindow.css +178 -0
- package/components/style/SearchBox.css +159 -0
- package/components/style/ServiceInfoWindow.css +34 -0
- package/components/style/SideBar.css +100 -0
- package/components/style/TaskBar.css +35 -0
- package/components/style/ThemeLayersListWindow.css +47 -0
- package/components/style/ThemeList.css +200 -0
- package/components/style/Toolbar.css +20 -0
- package/components/style/WindowManager.css +50 -0
- package/components/timeline/FixedTimeline.js +10 -0
- package/components/timeline/InfiniteTimeline.js +13 -0
- package/components/timeline/TimelineFeaturesSlider.js +10 -0
- package/components/timeline/style/FixedTimeline.css +76 -0
- package/components/timeline/style/InfiniteTimeline.css +94 -0
- package/components/timeline/style/TimelineFeaturesSlider.css +131 -0
- package/components/widgets/AccordeonWidget.js +7 -0
- package/components/widgets/ButtonBar.js +7 -0
- package/components/widgets/ColorButton.js +8 -0
- package/components/widgets/ComboBox.js +7 -0
- package/components/widgets/CopyButton.js +7 -0
- package/components/widgets/DateTimeInput.js +8 -0
- package/components/widgets/EditableSelect.js +8 -0
- package/components/widgets/FileSelector.js +9 -0
- package/components/widgets/Input.js +7 -0
- package/components/widgets/InputContainer.js +7 -0
- package/components/widgets/LayerCatalogWidget.js +3 -0
- package/components/widgets/MenuButton.js +1 -0
- package/components/widgets/ModalDialog.js +7 -0
- package/components/widgets/NavBar.js +7 -0
- package/components/widgets/NumberInput.js +9 -0
- package/components/widgets/PopupMenu.js +1 -0
- package/components/widgets/Primitives.js +7 -0
- package/components/widgets/ReCaptchaWidget.js +1 -0
- package/components/widgets/SearchWidget.js +7 -0
- package/components/widgets/Spinner.js +6 -0
- package/components/widgets/SuggestionInput.js +7 -0
- package/components/widgets/TextInput.js +7 -0
- package/components/widgets/ToggleSwitch.js +7 -0
- package/components/widgets/VectorLayerPicker.js +8 -0
- package/components/widgets/style/AccordeonWidget.css +22 -0
- package/components/widgets/style/ButtonBar.css +88 -0
- package/components/widgets/style/ColorButton.css +88 -0
- package/components/widgets/style/ComboBox.css +83 -0
- package/components/widgets/style/CopyButton.css +21 -0
- package/components/widgets/style/EditableSelect.css +47 -0
- package/components/widgets/style/FileSelector.css +14 -0
- package/components/widgets/style/InputContainer.css +34 -0
- package/components/widgets/style/LayerCatalogWidget.css +59 -0
- package/components/widgets/style/MenuButton.css +122 -0
- package/components/widgets/style/ModalDialog.css +50 -0
- package/components/widgets/style/NavBar.css +12 -0
- package/components/widgets/style/NumberInput.css +76 -0
- package/components/widgets/style/SearchWidget.css +43 -0
- package/components/widgets/style/Spinner.css +32 -0
- package/components/widgets/style/SuggestionInput.css +8 -0
- package/components/widgets/style/TextInput.css +94 -0
- package/components/widgets/style/ToggleSwitch.css +61 -0
- package/components/widgets/style/VectorLayerPicker.css +3 -0
- package/icons/2d.svg +70 -0
- package/icons/3d.svg +70 -0
- package/icons/3d2d.svg +92 -0
- package/icons/after.svg +76 -0
- package/icons/arrow-down.svg +60 -0
- package/icons/arrow-up.svg +60 -0
- package/icons/before.svg +76 -0
- package/icons/bglayer.svg +71 -0
- package/icons/bookmark.svg +170 -0
- package/icons/box.svg +63 -0
- package/icons/buffer.svg +67 -0
- package/icons/camera.svg +118 -0
- package/icons/catalog.svg +62 -0
- package/icons/checked.svg +80 -0
- package/icons/chevron-down.svg +60 -0
- package/icons/chevron-left.svg +59 -0
- package/icons/chevron-right.svg +60 -0
- package/icons/chevron-up.svg +60 -0
- package/icons/circle.svg +70 -0
- package/icons/clear.svg +62 -0
- package/icons/clock.svg +71 -0
- package/icons/cog.svg +60 -0
- package/icons/collapse.svg +73 -0
- package/icons/compare.svg +72 -0
- package/icons/cone.svg +58 -0
- package/icons/confirm.svg +62 -0
- package/icons/copy.svg +60 -0
- package/icons/cuboid.svg +58 -0
- package/icons/cyclomedia.svg +47 -0
- package/icons/cylinder.svg +58 -0
- package/icons/dataimport.svg +116 -0
- package/icons/detach.svg +79 -0
- package/icons/dock.svg +82 -0
- package/icons/dock_bottom.svg +82 -0
- package/icons/dock_left.svg +84 -0
- package/icons/dock_right.svg +84 -0
- package/icons/dock_top.svg +84 -0
- package/icons/draw.svg +78 -0
- package/icons/editdraw.svg +84 -0
- package/icons/edited.svg +78 -0
- package/icons/editing.svg +118 -0
- package/icons/ellipse.svg +72 -0
- package/icons/embed.svg +88 -0
- package/icons/expand.svg +73 -0
- package/icons/export.svg +126 -0
- package/icons/eye.svg +127 -0
- package/icons/featureform.svg +115 -0
- package/icons/fill.svg +62 -0
- package/icons/filter.svg +69 -0
- package/icons/folder-open.svg +60 -0
- package/icons/freehand.svg +82 -0
- package/icons/group.svg +76 -0
- package/icons/home.svg +60 -0
- package/icons/identify_radius.svg +71 -0
- package/icons/identify_region.svg +71 -0
- package/icons/import.svg +62 -0
- package/icons/info-sign.svg +60 -0
- package/icons/info.svg +80 -0
- package/icons/layers.svg +71 -0
- package/icons/light.svg +77 -0
- package/icons/line.svg +61 -0
- package/icons/line_buffer.svg +65 -0
- package/icons/link.svg +75 -0
- package/icons/list-alt.svg +111 -0
- package/icons/lock.svg +54 -0
- package/icons/login.svg +56 -0
- package/icons/logout.svg +56 -0
- package/icons/map3d.svg +51 -0
- package/icons/maximize.svg +84 -0
- package/icons/measure.svg +82 -0
- package/icons/measure_line.svg +87 -0
- package/icons/measure_polygon.svg +88 -0
- package/icons/menu-hamburger.svg +60 -0
- package/icons/minimize.svg +76 -0
- package/icons/minus-sign.svg +60 -0
- package/icons/minus.svg +61 -0
- package/icons/nav-end.svg +74 -0
- package/icons/nav-left.svg +74 -0
- package/icons/nav-right.svg +74 -0
- package/icons/nav-start.svg +73 -0
- package/icons/new.svg +84 -0
- package/icons/nodetool.svg +68 -0
- package/icons/numericinput.svg +86 -0
- package/icons/ok.svg +60 -0
- package/icons/open.svg +79 -0
- package/icons/open_link.svg +74 -0
- package/icons/paint.svg +75 -0
- package/icons/pen.svg +41 -0
- package/icons/person.svg +44 -0
- package/icons/pick.svg +67 -0
- package/icons/pick_point.svg +74 -0
- package/icons/pick_region.svg +71 -0
- package/icons/plus.svg +60 -0
- package/icons/point.svg +67 -0
- package/icons/point_buffer.svg +74 -0
- package/icons/polygon.svg +61 -0
- package/icons/print.svg +60 -0
- package/icons/pyramid.svg +58 -0
- package/icons/radio_checked.svg +78 -0
- package/icons/radio_tristate.svg +75 -0
- package/icons/radio_unchecked.svg +72 -0
- package/icons/rasterexport.svg +124 -0
- package/icons/rect.svg +63 -0
- package/icons/refresh.svg +44 -0
- package/icons/remove.svg +60 -0
- package/icons/report.svg +84 -0
- package/icons/routing-bicycle.svg +40 -0
- package/icons/routing-bus.svg +40 -0
- package/icons/routing-cablecar.svg +40 -0
- package/icons/routing-car.svg +40 -0
- package/icons/routing-ship.svg +40 -0
- package/icons/routing-train.svg +40 -0
- package/icons/routing-tram.svg +40 -0
- package/icons/routing-truck.svg +40 -0
- package/icons/routing-walking.svg +40 -0
- package/icons/routing.svg +68 -0
- package/icons/save.svg +190 -0
- package/icons/scale.svg +62 -0
- package/icons/screenshot.svg +60 -0
- package/icons/search.svg +60 -0
- package/icons/selectbox.svg +79 -0
- package/icons/share.svg +64 -0
- package/icons/snap_edge.svg +79 -0
- package/icons/snap_vertex.svg +79 -0
- package/icons/sphere.svg +58 -0
- package/icons/square.svg +68 -0
- package/icons/sync.svg +72 -0
- package/icons/text.svg +68 -0
- package/icons/themes.svg +81 -0
- package/icons/tilt-down.svg +67 -0
- package/icons/tilt-left.svg +48 -0
- package/icons/tilt-right.svg +48 -0
- package/icons/tilt-up.svg +67 -0
- package/icons/today.svg +45 -0
- package/icons/tools.svg +77 -0
- package/icons/transformtool.svg +74 -0
- package/icons/transparency.svg +132 -0
- package/icons/trash.svg +60 -0
- package/icons/tree_minus.svg +81 -0
- package/icons/tree_plus.svg +81 -0
- package/icons/triangle-down.svg +59 -0
- package/icons/triangle-left.svg +60 -0
- package/icons/triangle-right.svg +60 -0
- package/icons/triangle-up.svg +59 -0
- package/icons/tristate.svg +79 -0
- package/icons/unchecked.svg +74 -0
- package/icons/undock.svg +82 -0
- package/icons/undock_bottom.svg +82 -0
- package/icons/undock_left.svg +82 -0
- package/icons/undock_right.svg +84 -0
- package/icons/undock_top.svg +84 -0
- package/icons/unmaximize.svg +84 -0
- package/icons/unminimize.svg +76 -0
- package/icons/up-down-arrow.svg +66 -0
- package/icons/warning.svg +72 -0
- package/icons/wedge.svg +58 -0
- package/icons/zoom.svg +60 -0
- package/icons/zoomin.svg +71 -0
- package/icons/zoomout.svg +80 -0
- package/libs/openlayers.js +11 -0
- package/package.json +135 -0
- package/plugins/API.js +114 -0
- package/plugins/AttributeTable.js +25 -0
- package/plugins/Authentication.js +13 -0
- package/plugins/BackgroundSwitcher.js +10 -0
- package/plugins/Bookmark.js +13 -0
- package/plugins/BottomBar.js +10 -0
- package/plugins/CookiePopup.js +9 -0
- package/plugins/Cyclomedia.js +11 -0
- package/plugins/Editing.js +21 -0
- package/plugins/FeatureForm.js +21 -0
- package/plugins/FeatureSearch.js +11 -0
- package/plugins/GeometryDigitizer.js +43 -0
- package/plugins/HeightProfile.js +26 -0
- package/plugins/Help.js +11 -0
- package/plugins/HomeButton.js +9 -0
- package/plugins/Identify.js +18 -0
- package/plugins/LayerCatalog.js +45 -0
- package/plugins/LayerTree.js +15 -0
- package/plugins/LocateButton.js +10 -0
- package/plugins/Map.js +22 -0
- package/plugins/MapCompare.js +11 -0
- package/plugins/MapCopyright.js +11 -0
- package/plugins/MapExport.js +23 -0
- package/plugins/MapFilter.js +20 -0
- package/plugins/MapInfoTooltip.js +32 -0
- package/plugins/MapLegend.js +14 -0
- package/plugins/MapTip.js +15 -0
- package/plugins/Measure.js +10 -0
- package/plugins/NewsPopup.js +12 -0
- package/plugins/Panoramax.js +10 -0
- package/plugins/Portal.js +10 -0
- package/plugins/Print.js +22 -0
- package/plugins/ProcessNotifications.js +11 -0
- package/plugins/Redlining.js +12 -0
- package/plugins/Reports.js +15 -0
- package/plugins/Routing.js +23 -0
- package/plugins/ScratchDrawing.js +15 -0
- package/plugins/Settings.js +12 -0
- package/plugins/Share.js +11 -0
- package/plugins/StartupMarker.js +12 -0
- package/plugins/TaskButton.js +9 -0
- package/plugins/ThemeSwitcher.js +10 -0
- package/plugins/TimeManager.js +21 -0
- package/plugins/TopBar.js +13 -0
- package/plugins/ValueTool.js +11 -0
- package/plugins/View3D.js +34 -0
- package/plugins/ZoomButtons.js +11 -0
- package/plugins/map/EditingSupport.js +13 -0
- package/plugins/map/LocateSupport.js +14 -0
- package/plugins/map/MeasurementSupport.js +15 -0
- package/plugins/map/OverviewSupport.js +14 -0
- package/plugins/map/RedliningPickSupport.js +12 -0
- package/plugins/map/RedliningSupport.js +28 -0
- package/plugins/map/ScaleBarSupport.js +10 -0
- package/plugins/map/SnapInteraction.js +1 -0
- package/plugins/map/SnapSupport.js +7 -0
- package/plugins/map/SnappingSupport.js +23 -0
- package/plugins/map/style/OverviewSupport.css +42 -0
- package/plugins/map/style/ScaleBarSupport.css +18 -0
- package/plugins/map/style/SnappingSupport.css +33 -0
- package/plugins/redlining/RedliningBufferSupport.js +8 -0
- package/plugins/style/AttributeTable.css +220 -0
- package/plugins/style/Authentication.css +16 -0
- package/plugins/style/BackgroundSwitcher.css +99 -0
- package/plugins/style/Bookmark.css +62 -0
- package/plugins/style/BottomBar.css +53 -0
- package/plugins/style/Buttons.css +68 -0
- package/plugins/style/CookiePopup.css +24 -0
- package/plugins/style/Cyclomedia.css +66 -0
- package/plugins/style/Editing.css +40 -0
- package/plugins/style/FeatureForm.css +21 -0
- package/plugins/style/FeatureSearch.css +71 -0
- package/plugins/style/GeometryDigitizer.css +28 -0
- package/plugins/style/HeightProfile.css +26 -0
- package/plugins/style/Identify.css +4 -0
- package/plugins/style/LayerCatalog.css +8 -0
- package/plugins/style/LayerTree.css +316 -0
- package/plugins/style/Map.css +43 -0
- package/plugins/style/MapCompare.css +27 -0
- package/plugins/style/MapCopyright.css +17 -0
- package/plugins/style/MapExport.css +55 -0
- package/plugins/style/MapFilter.css +101 -0
- package/plugins/style/MapInfoTooltip.css +78 -0
- package/plugins/style/MapLegend.css +36 -0
- package/plugins/style/MapTip.css +22 -0
- package/plugins/style/Measure.css +23 -0
- package/plugins/style/NewsPopup.css +87 -0
- package/plugins/style/Panoramax.css +15 -0
- package/plugins/style/Portal.css +115 -0
- package/plugins/style/Print.css +116 -0
- package/plugins/style/ProcessNotifications.css +55 -0
- package/plugins/style/Redlining.css +101 -0
- package/plugins/style/Reports.css +11 -0
- package/plugins/style/Routing.css +243 -0
- package/plugins/style/ScratchDrawing.css +8 -0
- package/plugins/style/Settings.css +11 -0
- package/plugins/style/Share.css +59 -0
- package/plugins/style/ThemeSwitcher.css +7 -0
- package/plugins/style/TimeManager.css +91 -0
- package/plugins/style/TopBar.css +50 -0
- package/plugins/style/ValueTool.css +60 -0
- package/reducers/display.js +7 -0
- package/reducers/editing.js +8 -0
- package/reducers/index.js +7 -0
- package/reducers/layerinfo.js +7 -0
- package/reducers/layers.js +14 -0
- package/reducers/localConfig.js +8 -0
- package/reducers/locale.js +8 -0
- package/reducers/locate.js +8 -0
- package/reducers/map.js +11 -0
- package/reducers/measurement.js +8 -0
- package/reducers/processNotifications.js +7 -0
- package/reducers/redlining.js +7 -0
- package/reducers/redliningPick.js +7 -0
- package/reducers/serviceinfo.js +7 -0
- package/reducers/task.js +7 -0
- package/reducers/theme.js +7 -0
- package/reducers/windows.js +7 -0
- package/scripts/dist.sh +16 -0
- package/scripts/gen-plugin-docs.js +9 -0
- package/scripts/makeIconkit.js +7 -0
- package/scripts/package-commands.bat +8 -0
- package/scripts/package-commands.sh +22 -0
- package/scripts/themesConfig.js +48 -0
- package/scripts/themesConfig.py +659 -0
- package/scripts/translateui.sh +51 -0
- package/scripts/updateTranslations.js +17 -0
- package/scripts/wmts_config_generator.py +169 -0
- package/selectors/searchproviders.js +12 -0
- package/static/translations/bg-BG.json +709 -0
- package/static/translations/ca-ES.json +709 -0
- package/static/translations/cs-CZ.json +709 -0
- package/static/translations/de-CH.json +709 -0
- package/static/translations/de-DE.json +709 -0
- package/static/translations/en-US.json +709 -0
- package/static/translations/es-ES.json +709 -0
- package/static/translations/fi-FI.json +709 -0
- package/static/translations/fr-FR.json +709 -0
- package/static/translations/hu-HU.json +709 -0
- package/static/translations/it-IT.json +709 -0
- package/static/translations/ja-JP.json +709 -0
- package/static/translations/nl-NL.json +709 -0
- package/static/translations/no-NO.json +709 -0
- package/static/translations/pl-PL.json +709 -0
- package/static/translations/pt-BR.json +709 -0
- package/static/translations/pt-PT.json +709 -0
- package/static/translations/ro-RO.json +709 -0
- package/static/translations/ru-RU.json +709 -0
- package/static/translations/sv-SE.json +709 -0
- package/static/translations/tr-TR.json +709 -0
- package/static/translations/tsconfig.json +606 -0
- package/stores/StandardStore.js +8 -0
- package/utils/ConfigUtils.js +9 -0
- package/utils/CoordinatesUtils.js +29 -0
- package/utils/DxfUtils.js +10 -0
- package/utils/EditingInterface.js +67 -0
- package/utils/EditingUtils.js +11 -0
- package/utils/FeatureStyles.js +10 -0
- package/utils/IdentifyUtils.js +12 -0
- package/utils/ImageEditor.js +15 -0
- package/utils/LayerUtils.js +57 -0
- package/utils/LocaleUtils.js +9 -0
- package/utils/MapUtils.js +66 -0
- package/utils/MeasureUtils.js +9 -0
- package/utils/MiscUtils.js +15 -0
- package/utils/PermaLinkUtils.js +11 -0
- package/utils/ResourceRegistry.js +7 -0
- package/utils/RoutingInterface.js +12 -0
- package/utils/SearchProviders.js +19 -0
- package/utils/ServiceLayerUtils.js +20 -0
- package/utils/Signal.js +2 -0
- package/utils/ThemeUtils.js +12 -0
- package/utils/VectorLayerUtils.js +20 -0
- package/utils/expr_grammar/README.md +3 -0
- package/utils/expr_grammar/grammar.js +3 -0
- package/utils/expr_grammar/grammar.ne +118 -0
- package/utils/expr_grammar/test.js +13 -0
- package/utils/img/README.markers +1 -0
- package/utils/img/arrowhead.svg +4 -0
- package/utils/img/marker-icon.png +0 -0
- package/utils/img/measurehead.svg +4 -0
package/icons/after.svg
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
width="24"
|
|
5
|
+
height="24"
|
|
6
|
+
viewBox="0 0 24 24"
|
|
7
|
+
id="svg6"
|
|
8
|
+
sodipodi:docname="after.svg"
|
|
9
|
+
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
|
10
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
15
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
16
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
17
|
+
<metadata
|
|
18
|
+
id="metadata12">
|
|
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>uniE080</dc:title>
|
|
26
|
+
</cc:Work>
|
|
27
|
+
</rdf:RDF>
|
|
28
|
+
</metadata>
|
|
29
|
+
<defs
|
|
30
|
+
id="defs10" />
|
|
31
|
+
<sodipodi:namedview
|
|
32
|
+
pagecolor="#ffffff"
|
|
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="1600"
|
|
41
|
+
inkscape:window-height="837"
|
|
42
|
+
id="namedview8"
|
|
43
|
+
showgrid="true"
|
|
44
|
+
inkscape:zoom="14.75"
|
|
45
|
+
inkscape:cx="4.4745763"
|
|
46
|
+
inkscape:cy="5.3898305"
|
|
47
|
+
inkscape:window-x="0"
|
|
48
|
+
inkscape:window-y="0"
|
|
49
|
+
inkscape:window-maximized="1"
|
|
50
|
+
inkscape:current-layer="g1132"
|
|
51
|
+
inkscape:document-rotation="0"
|
|
52
|
+
inkscape:pagecheckerboard="0"
|
|
53
|
+
inkscape:showpageshadow="2"
|
|
54
|
+
inkscape:deskcolor="#d1d1d1">
|
|
55
|
+
<inkscape:grid
|
|
56
|
+
type="xygrid"
|
|
57
|
+
id="grid908" />
|
|
58
|
+
</sodipodi:namedview>
|
|
59
|
+
<title
|
|
60
|
+
id="title2">uniE080</title>
|
|
61
|
+
<g
|
|
62
|
+
id="g3356"
|
|
63
|
+
transform="translate(4.2175145,-1.0000001)">
|
|
64
|
+
<g
|
|
65
|
+
id="g1132">
|
|
66
|
+
<path
|
|
67
|
+
id="rect847"
|
|
68
|
+
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stop-color:#000000"
|
|
69
|
+
d="m 1.7824855,23 v -8 l 11.0000005,0 v 4 L 18.782485,13 12.782486,7.0000001 V 11 L 1.7824855,11 V 3.0000001 h -4 V 23 Z"
|
|
70
|
+
sodipodi:nodetypes="cccccccccccc" />
|
|
71
|
+
<g
|
|
72
|
+
id="g1126"
|
|
73
|
+
transform="rotate(135,0.59619369,-3.6213202)" />
|
|
74
|
+
</g>
|
|
75
|
+
</g>
|
|
76
|
+
</svg>
|
|
@@ -0,0 +1,60 @@
|
|
|
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="uniE094.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>uniE094</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="false"
|
|
46
|
+
inkscape:zoom="7.375"
|
|
47
|
+
inkscape:cx="16"
|
|
48
|
+
inkscape:cy="16"
|
|
49
|
+
inkscape:window-x="1600"
|
|
50
|
+
inkscape:window-y="0"
|
|
51
|
+
inkscape:window-maximized="1"
|
|
52
|
+
inkscape:current-layer="svg6" />
|
|
53
|
+
<title
|
|
54
|
+
id="title2">uniE094</title>
|
|
55
|
+
<path
|
|
56
|
+
d="m 10.133241,1.0142 h 3.7331 q 0.392,0 0.6629,0.2709 0.2709,0.2709 0.2709,0.6629 v 10.2669 h 5.432 q 0.392,0 0.4851,0.2149 0.0931,0.2149 -0.1491,0.5131 l -7.9709,9.744 q -0.2429,0.2989 -0.5971,0.2989 -0.3542,0 -0.5971,-0.2989 l -7.9709006,-9.744 q -0.2429,-0.2989 -0.1491,-0.5131 0.0938,-0.2142 0.4851,-0.2149 H 9.2001406 V 1.948 q 0,-0.392 0.2709,-0.6629 0.2709,-0.2709 0.6629004,-0.2709 z"
|
|
57
|
+
id="path4"
|
|
58
|
+
inkscape:connector-curvature="0"
|
|
59
|
+
style="stroke-width:0.69999999" />
|
|
60
|
+
</svg>
|
|
@@ -0,0 +1,60 @@
|
|
|
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="uniE093.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>uniE093</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="false"
|
|
46
|
+
inkscape:zoom="7.375"
|
|
47
|
+
inkscape:cx="16"
|
|
48
|
+
inkscape:cy="16"
|
|
49
|
+
inkscape:window-x="1600"
|
|
50
|
+
inkscape:window-y="0"
|
|
51
|
+
inkscape:window-maximized="1"
|
|
52
|
+
inkscape:current-layer="svg6" />
|
|
53
|
+
<title
|
|
54
|
+
id="title2">uniE093</title>
|
|
55
|
+
<path
|
|
56
|
+
d="m 12.597309,1.3131 7.9709,9.744 q 0.2429,0.2989 0.1491,0.5131 -0.0938,0.2142 -0.4851,0.2149 h -5.432 V 22.052 q 0,0.392 -0.2709,0.6629 -0.2709,0.2709 -0.6629,0.2709 h -3.7331 q -0.3919997,0 -0.6628997,-0.2709 -0.2709,-0.2709 -0.2709,-0.6629 V 11.7851 H 3.7675096 q -0.392,0 -0.4851,-0.2149 -0.0931,-0.2149 0.1491,-0.5131 l 7.9708994,-9.744 q 0.2429,-0.2989 0.5971,-0.2989 0.3542,0 0.5971,0.2989 z"
|
|
57
|
+
id="path4"
|
|
58
|
+
inkscape:connector-curvature="0"
|
|
59
|
+
style="stroke-width:0.69999999" />
|
|
60
|
+
</svg>
|
package/icons/before.svg
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
width="24"
|
|
5
|
+
height="24"
|
|
6
|
+
viewBox="0 0 24 24"
|
|
7
|
+
id="svg6"
|
|
8
|
+
sodipodi:docname="before.svg"
|
|
9
|
+
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
|
10
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
15
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
16
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
17
|
+
<metadata
|
|
18
|
+
id="metadata12">
|
|
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>uniE080</dc:title>
|
|
26
|
+
</cc:Work>
|
|
27
|
+
</rdf:RDF>
|
|
28
|
+
</metadata>
|
|
29
|
+
<defs
|
|
30
|
+
id="defs10" />
|
|
31
|
+
<sodipodi:namedview
|
|
32
|
+
pagecolor="#ffffff"
|
|
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="1600"
|
|
41
|
+
inkscape:window-height="837"
|
|
42
|
+
id="namedview8"
|
|
43
|
+
showgrid="true"
|
|
44
|
+
inkscape:zoom="29.5"
|
|
45
|
+
inkscape:cx="6.5084746"
|
|
46
|
+
inkscape:cy="8.4576271"
|
|
47
|
+
inkscape:window-x="0"
|
|
48
|
+
inkscape:window-y="0"
|
|
49
|
+
inkscape:window-maximized="1"
|
|
50
|
+
inkscape:current-layer="g1132"
|
|
51
|
+
inkscape:document-rotation="0"
|
|
52
|
+
inkscape:pagecheckerboard="0"
|
|
53
|
+
inkscape:showpageshadow="2"
|
|
54
|
+
inkscape:deskcolor="#d1d1d1">
|
|
55
|
+
<inkscape:grid
|
|
56
|
+
type="xygrid"
|
|
57
|
+
id="grid908" />
|
|
58
|
+
</sodipodi:namedview>
|
|
59
|
+
<title
|
|
60
|
+
id="title2">uniE080</title>
|
|
61
|
+
<g
|
|
62
|
+
id="g3356"
|
|
63
|
+
transform="translate(4.2175145,-1.0000001)">
|
|
64
|
+
<g
|
|
65
|
+
id="g1132">
|
|
66
|
+
<path
|
|
67
|
+
id="rect847"
|
|
68
|
+
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stop-color:#000000"
|
|
69
|
+
d="M 13.782485,3.0000001 V 11 L 2.7824855,11 V 7.0000001 l -6,5.9999999 6,6 v -4 l 10.9999995,0 v 8 h 4 V 3.0000001 Z"
|
|
70
|
+
sodipodi:nodetypes="cccccccccccc" />
|
|
71
|
+
<g
|
|
72
|
+
id="g1126"
|
|
73
|
+
transform="rotate(-45,6.9393399,12.62132)" />
|
|
74
|
+
</g>
|
|
75
|
+
</g>
|
|
76
|
+
</svg>
|
|
@@ -0,0 +1,71 @@
|
|
|
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="bglayer.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>uniE094</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="7.375"
|
|
47
|
+
inkscape:cx="-2.9440213"
|
|
48
|
+
inkscape:cy="15.394863"
|
|
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="grid824" />
|
|
56
|
+
</sodipodi:namedview>
|
|
57
|
+
<title
|
|
58
|
+
id="title2">uniE094</title>
|
|
59
|
+
<rect
|
|
60
|
+
style="color:#000000;overflow:visible;opacity:1;vector-effect:none;fill:#000008;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.33333325;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
61
|
+
id="rect828"
|
|
62
|
+
width="16"
|
|
63
|
+
height="16"
|
|
64
|
+
x="1.5833336"
|
|
65
|
+
y="1.5833336" />
|
|
66
|
+
<path
|
|
67
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
68
|
+
d="M 6.5833335,22.583333 H 22.583333 V 6.5833335 h -3 V 19.583333 H 6.5833335 Z"
|
|
69
|
+
id="path817"
|
|
70
|
+
inkscape:connector-curvature="0" />
|
|
71
|
+
</svg>
|
|
@@ -0,0 +1,170 @@
|
|
|
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
|
+
inkscape:version="1.0.2 (394de47547, 2021-03-26)"
|
|
11
|
+
height="24"
|
|
12
|
+
width="24"
|
|
13
|
+
sodipodi:docname="bookmark.svg"
|
|
14
|
+
id="svg6"
|
|
15
|
+
version="1.1"
|
|
16
|
+
viewBox="0 0 24 24">
|
|
17
|
+
<metadata
|
|
18
|
+
id="metadata10">
|
|
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 />
|
|
26
|
+
</cc:Work>
|
|
27
|
+
</rdf:RDF>
|
|
28
|
+
</metadata>
|
|
29
|
+
<sodipodi:namedview
|
|
30
|
+
inkscape:document-rotation="0"
|
|
31
|
+
inkscape:snap-bbox="true"
|
|
32
|
+
inkscape:current-layer="layer4"
|
|
33
|
+
inkscape:window-maximized="1"
|
|
34
|
+
inkscape:window-y="27"
|
|
35
|
+
inkscape:window-x="1992"
|
|
36
|
+
inkscape:cy="9.7708989"
|
|
37
|
+
inkscape:cx="7.9416369"
|
|
38
|
+
inkscape:zoom="32"
|
|
39
|
+
showgrid="true"
|
|
40
|
+
id="namedview8"
|
|
41
|
+
inkscape:window-height="1016"
|
|
42
|
+
inkscape:window-width="1848"
|
|
43
|
+
inkscape:pageshadow="2"
|
|
44
|
+
inkscape:pageopacity="0"
|
|
45
|
+
guidetolerance="10"
|
|
46
|
+
gridtolerance="10"
|
|
47
|
+
objecttolerance="10"
|
|
48
|
+
borderopacity="1"
|
|
49
|
+
bordercolor="#666666"
|
|
50
|
+
pagecolor="#8b8b8b"
|
|
51
|
+
inkscape:snap-grids="false"
|
|
52
|
+
inkscape:bbox-nodes="true"
|
|
53
|
+
inkscape:snap-bbox-midpoints="true"
|
|
54
|
+
inkscape:snap-object-midpoints="true"
|
|
55
|
+
inkscape:bbox-paths="true">
|
|
56
|
+
<inkscape:grid
|
|
57
|
+
originy="0"
|
|
58
|
+
originx="0"
|
|
59
|
+
id="grid4474"
|
|
60
|
+
type="xygrid" />
|
|
61
|
+
</sodipodi:namedview>
|
|
62
|
+
<defs
|
|
63
|
+
id="defs3051">
|
|
64
|
+
<inkscape:path-effect
|
|
65
|
+
effect="fillet_chamfer"
|
|
66
|
+
id="path-effect889"
|
|
67
|
+
is_visible="true"
|
|
68
|
+
lpeversion="1"
|
|
69
|
+
satellites_param="F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 | F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1"
|
|
70
|
+
unit="px"
|
|
71
|
+
method="auto"
|
|
72
|
+
mode="F"
|
|
73
|
+
radius="0.1"
|
|
74
|
+
chamfer_steps="1"
|
|
75
|
+
flexible="false"
|
|
76
|
+
use_knot_distance="true"
|
|
77
|
+
apply_no_radius="true"
|
|
78
|
+
apply_with_radius="true"
|
|
79
|
+
only_selected="false"
|
|
80
|
+
hide_knots="false" />
|
|
81
|
+
<inkscape:path-effect
|
|
82
|
+
effect="fillet_chamfer"
|
|
83
|
+
id="path-effect886"
|
|
84
|
+
is_visible="true"
|
|
85
|
+
lpeversion="1"
|
|
86
|
+
satellites_param="F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1"
|
|
87
|
+
unit="px"
|
|
88
|
+
method="auto"
|
|
89
|
+
mode="F"
|
|
90
|
+
radius="0.2"
|
|
91
|
+
chamfer_steps="1"
|
|
92
|
+
flexible="false"
|
|
93
|
+
use_knot_distance="true"
|
|
94
|
+
apply_no_radius="true"
|
|
95
|
+
apply_with_radius="true"
|
|
96
|
+
only_selected="false"
|
|
97
|
+
hide_knots="false" />
|
|
98
|
+
<inkscape:path-effect
|
|
99
|
+
effect="fillet_chamfer"
|
|
100
|
+
id="path-effect840"
|
|
101
|
+
is_visible="true"
|
|
102
|
+
lpeversion="1"
|
|
103
|
+
satellites_param="F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 | F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1 @ F,0,0,1,0,0.1,0,1"
|
|
104
|
+
unit="px"
|
|
105
|
+
method="auto"
|
|
106
|
+
mode="F"
|
|
107
|
+
radius="0.1"
|
|
108
|
+
chamfer_steps="1"
|
|
109
|
+
flexible="false"
|
|
110
|
+
use_knot_distance="true"
|
|
111
|
+
apply_no_radius="true"
|
|
112
|
+
apply_with_radius="true"
|
|
113
|
+
only_selected="false"
|
|
114
|
+
hide_knots="false" />
|
|
115
|
+
<inkscape:path-effect
|
|
116
|
+
effect="fillet_chamfer"
|
|
117
|
+
id="path-effect836"
|
|
118
|
+
is_visible="true"
|
|
119
|
+
lpeversion="1"
|
|
120
|
+
satellites_param="F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1"
|
|
121
|
+
unit="px"
|
|
122
|
+
method="auto"
|
|
123
|
+
mode="F"
|
|
124
|
+
radius="0.2"
|
|
125
|
+
chamfer_steps="1"
|
|
126
|
+
flexible="false"
|
|
127
|
+
use_knot_distance="true"
|
|
128
|
+
apply_no_radius="true"
|
|
129
|
+
apply_with_radius="true"
|
|
130
|
+
only_selected="false"
|
|
131
|
+
hide_knots="false" />
|
|
132
|
+
<inkscape:path-effect
|
|
133
|
+
effect="fillet_chamfer"
|
|
134
|
+
id="path-effect832"
|
|
135
|
+
is_visible="true"
|
|
136
|
+
lpeversion="1"
|
|
137
|
+
satellites_param="F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1 @ F,0,0,1,0,0.2,0,1"
|
|
138
|
+
unit="px"
|
|
139
|
+
method="auto"
|
|
140
|
+
mode="F"
|
|
141
|
+
radius="0.2"
|
|
142
|
+
chamfer_steps="1"
|
|
143
|
+
flexible="false"
|
|
144
|
+
use_knot_distance="true"
|
|
145
|
+
apply_no_radius="true"
|
|
146
|
+
apply_with_radius="true"
|
|
147
|
+
only_selected="false"
|
|
148
|
+
hide_knots="false" />
|
|
149
|
+
<style
|
|
150
|
+
id="current-color-scheme"
|
|
151
|
+
type="text/css">
|
|
152
|
+
.ColorScheme-Text {
|
|
153
|
+
color:#4d4d4d;
|
|
154
|
+
}
|
|
155
|
+
</style>
|
|
156
|
+
</defs>
|
|
157
|
+
<g
|
|
158
|
+
inkscape:groupmode="layer"
|
|
159
|
+
id="layer4"
|
|
160
|
+
inkscape:label="Layer"
|
|
161
|
+
style="display:inline"
|
|
162
|
+
sodipodi:insensitive="true">
|
|
163
|
+
<path
|
|
164
|
+
id="rect835"
|
|
165
|
+
style="fill:#000000;stroke:#ffffff;stroke-width:0.380255;stroke-linecap:round;stroke-linejoin:miter;paint-order:stroke markers fill"
|
|
166
|
+
d="M 5.6971784,3.1459105 C 5.664124,3.1641698 5.6367896,3.1915115 5.6185394,3.2245716 5.5921425,3.2723894 5.59375,3.365084 5.59375,3.4203125 V 20.452734 c 0,0.05523 0.00151,0.155709 0.046309,0.183773 0.00609,0.0038 0.012582,0.007 0.01934,0.0094 0.049688,0.01802 0.1301535,-0.04216 0.1741254,-0.07558 L 11.760226,16.06637 c 0.04397,-0.03342 0.115643,-0.09017 0.168493,-0.105016 0.04659,-0.01309 0.09601,-0.01309 0.142593,8e-6 0.05283,0.01485 0.12449,0.07159 0.168462,0.105008 l 5.926702,4.503988 c 0.04397,0.03342 0.124451,0.09361 0.174146,0.07557 0.0068,-0.0025 0.01325,-0.0056 0.01934,-0.0094 0.04479,-0.02807 0.04629,-0.128534 0.04629,-0.183762 V 3.4203125 c 0,-0.055229 0.0016,-0.1479536 -0.02482,-0.1957904 -0.01826,-0.033054 -0.0456,-0.060389 -0.07866,-0.078639 -0.04782,-0.026397 -0.140513,-0.024789 -0.195741,-0.024789 H 5.8929688 c -0.055229,0 -0.1479536,-0.00161 -0.1957904,0.024816 z m 6.3281766,2.413937 1.01179,3.0795238 a 0.13836235,0.13836235 35.954706 0 0 0.131214,0.095174 l 3.241407,0.00552 a 0.03276036,0.03276036 71.958581 0 1 0.01928,0.059203 l -2.615912,1.9131837 a 0.13829637,0.13829637 107.94948 0 0 -0.04995,0.154181 l 0.997054,3.083142 a 0.03277769,0.03277769 143.93141 0 1 -0.05035,0.03668 l -2.62877,-1.894776 a 0.13843915,0.13843915 179.94141 0 0 -0.162127,1.66e-4 l -2.6251019,1.900302 a 0.03276385,0.03276385 35.958575 0 1 -0.050404,-0.03657 l 0.9915359,-3.084984 a 0.13837556,0.13837556 71.96324 0 0 -0.05019,-0.154135 L 7.5671181,8.8069788 a 0.03278543,0.03278543 107.95674 0 1 0.019209,-0.059273 l 3.2394549,-0.011037 a 0.13834926,0.13834926 143.94507 0 0 0.131042,-0.0954 l 1.006274,-3.0813653 a 0.03275605,0.03275605 179.9486 0 1 0.06226,-5.58e-5 z"
|
|
167
|
+
inkscape:path-effect="#path-effect889"
|
|
168
|
+
inkscape:original-d="M 5.7929688,3.1210938 A 0.2,0.2 0 0 0 5.59375,3.3203125 V 20.552734 a 0.09922437,0.09922437 0 0 0 0.1601562,0.07813 l 6.0859378,-4.625 a 0.2632424,0.2632424 0 0 1 0.320312,0 l 6.085938,4.625 a 0.09922437,0.09922437 0 0 0 0.160156,-0.07813 V 3.3203125 A 0.2,0.2 0 0 0 18.207031,3.1210938 Z m 6.2011722,2.34375 1.074218,3.2695312 3.441407,0.00586 -2.777344,2.03125 1.058594,3.273438 L 12,12.033203 9.2128906,14.050781 10.265625,10.775391 7.4863281,8.7480469 10.925781,8.7363281 Z" />
|
|
169
|
+
</g>
|
|
170
|
+
</svg>
|
package/icons/box.svg
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
width="24"
|
|
4
|
+
height="24"
|
|
5
|
+
viewBox="0 0 24 24"
|
|
6
|
+
version="1.1"
|
|
7
|
+
id="svg11"
|
|
8
|
+
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
|
9
|
+
sodipodi:docname="box.svg"
|
|
10
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
15
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
16
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
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
|
+
</cc:Work>
|
|
26
|
+
</rdf:RDF>
|
|
27
|
+
</metadata>
|
|
28
|
+
<defs
|
|
29
|
+
id="defs15" />
|
|
30
|
+
<sodipodi:namedview
|
|
31
|
+
pagecolor="#878787"
|
|
32
|
+
bordercolor="#666666"
|
|
33
|
+
borderopacity="1"
|
|
34
|
+
objecttolerance="10"
|
|
35
|
+
gridtolerance="10"
|
|
36
|
+
guidetolerance="10"
|
|
37
|
+
inkscape:pageopacity="0"
|
|
38
|
+
inkscape:pageshadow="2"
|
|
39
|
+
inkscape:window-width="1920"
|
|
40
|
+
inkscape:window-height="1171"
|
|
41
|
+
id="namedview13"
|
|
42
|
+
showgrid="true"
|
|
43
|
+
units="px"
|
|
44
|
+
inkscape:zoom="39.333332"
|
|
45
|
+
inkscape:cx="7.1694918"
|
|
46
|
+
inkscape:cy="12.851695"
|
|
47
|
+
inkscape:window-x="1600"
|
|
48
|
+
inkscape:window-y="0"
|
|
49
|
+
inkscape:window-maximized="1"
|
|
50
|
+
inkscape:current-layer="svg11"
|
|
51
|
+
inkscape:showpageshadow="2"
|
|
52
|
+
inkscape:pagecheckerboard="0"
|
|
53
|
+
inkscape:deskcolor="#878787">
|
|
54
|
+
<inkscape:grid
|
|
55
|
+
type="xygrid"
|
|
56
|
+
id="grid4473" />
|
|
57
|
+
</sodipodi:namedview>
|
|
58
|
+
<path
|
|
59
|
+
style="color:#000000;fill:#000000;-inkscape-stroke:none"
|
|
60
|
+
d="M 2,2 V 3.5 22 H 22 V 2 Z M 4,4 H 20 V 20 H 4 Z"
|
|
61
|
+
id="rect738"
|
|
62
|
+
sodipodi:nodetypes="ccccccccccc" />
|
|
63
|
+
</svg>
|
package/icons/buffer.svg
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
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="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="1280"
|
|
41
|
+
inkscape:window-height="995"
|
|
42
|
+
id="namedview13"
|
|
43
|
+
showgrid="true"
|
|
44
|
+
units="px"
|
|
45
|
+
inkscape:zoom="19.666666"
|
|
46
|
+
inkscape:cx="15.459901"
|
|
47
|
+
inkscape:cy="10.028021"
|
|
48
|
+
inkscape:window-x="1600"
|
|
49
|
+
inkscape:window-y="0"
|
|
50
|
+
inkscape:window-maximized="1"
|
|
51
|
+
inkscape:current-layer="svg11"
|
|
52
|
+
inkscape:snap-global="false">
|
|
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-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;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2, 1;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
|
59
|
+
d="M 8.4355469,7.1972656 7.6777344,7.9550781 8.3847656,8.6621094 8.9960938,8.0507812 h 0.7207031 v -1 H 8.7890625 8.5800781 Z m 2.2812501,0.8535156 h 2 v -1 h -2 z m 3,0 h 2 v -1 h -2 z m 3,-0.4570312 -0.357422,0.2148438 0.992187,1.6542968 0.857422,-0.515625 -0.992187,-1.6542968 -0.146485,-0.2421876 h -0.28125 -0.07227 z M 5.5566406,10.076172 6.2636719,10.783203 7.6777344,9.3691406 6.9707031,8.6621094 Z m 12.3105474,0.24414 1.027343,1.714844 0.857422,-0.515625 -1.027344,-1.7148435 z M 3.4355469,12.197266 3.7890625,12.550781 3.2949219,12.632812 3.59375,14.429688 4.5800781,14.265625 4.3242188,12.722656 5.5566406,11.490234 4.8496094,10.783203 Z m 14.5156251,1.484375 0.707031,0.707031 1.414063,-1.414063 -0.707032,-0.708984 z m -2.121094,2.121093 0.707031,0.707032 1.414063,-1.414063 -0.707031,-0.707031 z m -12.0703124,-0.386718 0.328125,1.972656 0.9863282,-0.164063 -0.328125,-1.972656 z m 9.5371094,1.080078 0.179687,0.982422 1.966797,-0.357422 -0.177734,-0.982422 z m -2.951172,0.537109 0.177735,0.982422 1.96875,-0.357422 -0.179688,-0.984375 z m -2.9511718,0.535156 0.1777344,0.984375 1.96875,-0.357422 -0.1796875,-0.984374 z m -2.6953124,0.490235 0.042969,0.234375 -0.4902344,0.08203 0.042969,0.257812 0.083984,0.5 0.4980469,-0.08984 1.7109375,-0.310547 -0.1777344,-0.984375 z"
|
|
60
|
+
id="path831"
|
|
61
|
+
inkscape:connector-curvature="0" />
|
|
62
|
+
<path
|
|
63
|
+
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: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"
|
|
64
|
+
d="m 18.203125,4.5605469 c -2.994818,0.00188 -7.315771,0.039079 -10.3027344,0.041016 L 7.7089844,4.6035156 7.5664062,4.7304688 C 5.1388748,6.9189485 3.0466595,9.09922 0.75390625,11.460938 l -0.17578125,0.18164 0.0410156,0.25 c 0.49358488,2.956362 1.13167808,6.738259 1.62499998,9.69336 l 0.087891,0.52539 0.5175782,-0.121094 C 7.7168961,20.86027 12.848401,20.485178 17.710938,18.78125 l 0.107421,-0.03906 5.72461,-5.722657 -0.201172,-0.333984 C 21.772909,10.057877 20.20244,7.4315352 18.632812,4.8046875 L 18.488281,4.5605469 Z M 17.921875,5.5625 c 1.454316,2.4337637 2.909864,4.866812 4.363281,7.300781 l -4.99414,4.994141 C 12.78211,19.420918 7.9187275,19.86307 3.1464844,20.919922 2.6786058,18.120433 2.1100217,14.747399 1.6484375,11.984375 3.8300349,9.73617 5.8338291,7.6634286 8.109375,5.6015625 c 2.902053,-0.0032 6.899726,-0.035435 9.8125,-0.039063 z"
|
|
65
|
+
id="path831-8-5"
|
|
66
|
+
inkscape:connector-curvature="0" />
|
|
67
|
+
</svg>
|