@node-projects/web-component-designer 0.0.33 → 0.0.37
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/README.md +7 -0
- package/assets/images/chromeDevtools/LICENSE +27 -0
- package/assets/images/chromeDevtools/flex-direction-column-icon.svg +1 -0
- package/assets/images/chromeDevtools/flex-direction-row-icon.svg +82 -0
- package/assets/images/chromeDevtools/{flex-nowrap-icon.svg → flex-wrap-nowrap-icon.svg} +0 -0
- package/assets/images/chromeDevtools/{flex-wrap-icon.svg → flex-wrap-wrap-icon.svg} +0 -0
- package/assets/images/chromeDevtools/info.txt +2 -0
- package/dist/elements/controls/DesignerTabControl.js +93 -88
- package/dist/elements/controls/ImageButtonListSelector.js +38 -39
- package/dist/elements/controls/ThicknessEditor.js +22 -22
- package/dist/elements/documentContainer.js +20 -13
- package/dist/elements/helper/CssAttributeParser.js +3 -3
- package/dist/elements/helper/CssCombiner.js +1 -1
- package/dist/elements/helper/IndentedTextWriter.js +3 -5
- package/dist/elements/helper/Screenshot.js +4 -0
- package/dist/elements/helper/contextMenu/ContextMenuHelper.js +59 -53
- package/dist/elements/helper/w3color.js +15 -17
- package/dist/elements/item/DesignItem.d.ts +1 -0
- package/dist/elements/item/DesignItem.js +24 -15
- package/dist/elements/item/IDesignItem.d.ts +1 -0
- package/dist/elements/services/BaseServiceContainer.js +1 -3
- package/dist/elements/services/DefaultServiceBootstrap.js +2 -0
- package/dist/elements/services/GlobalContext.js +8 -6
- package/dist/elements/services/InstanceServiceContainer.js +1 -4
- package/dist/elements/services/ServiceContainer.d.ts +3 -0
- package/dist/elements/services/ServiceContainer.js +11 -10
- package/dist/elements/services/bindingsService/BaseCustomWebcomponentBindingsService.js +1 -1
- package/dist/elements/services/bindingsService/SpecialTagsBindingService.js +5 -5
- package/dist/elements/services/contentService/ContentService.js +2 -1
- package/dist/elements/services/copyPasteService/CopyPasteService.d.ts +8 -0
- package/dist/elements/services/copyPasteService/CopyPasteService.js +12 -0
- package/dist/elements/services/copyPasteService/ICopyPasteService copy.d.ts +0 -0
- package/dist/elements/services/copyPasteService/ICopyPasteService copy.js +1 -0
- package/dist/elements/services/copyPasteService/ICopyPasteService.d.ts +7 -0
- package/dist/elements/services/copyPasteService/ICopyPasteService.js +1 -0
- package/dist/elements/services/elementsService/JsonFileElementsService.js +14 -10
- package/dist/elements/services/elementsService/PreDefinedElementsService.js +6 -4
- package/dist/elements/services/htmlParserService/NodeHtmlParserService.js +2 -1
- package/dist/elements/services/htmlWriterService/IHtmlWriterOptions.js +3 -0
- package/dist/elements/services/placementService/DefaultPlacementService.d.ts +3 -4
- package/dist/elements/services/placementService/DefaultPlacementService.js +10 -10
- package/dist/elements/services/placementService/FlexBoxPlacementService.d.ts +3 -4
- package/dist/elements/services/placementService/FlexBoxPlacementService.js +3 -3
- package/dist/elements/services/placementService/GridPlacementService.d.ts +3 -4
- package/dist/elements/services/placementService/GridPlacementService.js +3 -3
- package/dist/elements/services/placementService/IPlacementService.d.ts +3 -4
- package/dist/elements/services/popupService/PopupService.js +3 -1
- package/dist/elements/services/propertiesService/propertyEditors/BasePropertyEditor.js +4 -1
- package/dist/elements/services/propertiesService/propertyEditors/JsonPropertyEditor.js +7 -6
- package/dist/elements/services/propertiesService/propertyEditors/JsonPropertyPopupEditor.js +6 -6
- package/dist/elements/services/propertiesService/propertyEditors/NumberPropertyEditor.js +1 -1
- package/dist/elements/services/propertiesService/propertyEditors/TextPropertyEditor.js +1 -2
- package/dist/elements/services/propertiesService/services/AttributesPropertiesService.js +1 -3
- package/dist/elements/services/propertiesService/services/BaseCustomWebComponentPropertiesService.js +1 -4
- package/dist/elements/services/propertiesService/services/CommonPropertiesService.js +21 -23
- package/dist/elements/services/propertiesService/services/CssPropertiesService.js +196 -185
- package/dist/elements/services/propertiesService/services/ListPropertiesService.js +2 -2
- package/dist/elements/services/propertiesService/services/Lit2PropertiesService.js +1 -4
- package/dist/elements/services/propertiesService/services/LitElementPropertiesService.js +1 -4
- package/dist/elements/services/propertiesService/services/NativeElementsPropertiesService.js +72 -75
- package/dist/elements/services/propertiesService/services/PolymerPropertiesService.js +1 -4
- package/dist/elements/services/propertiesService/services/UnkownElementPropertiesService.js +1 -3
- package/dist/elements/services/selectionService/SelectionService.js +3 -4
- package/dist/elements/services/undoService/ChangeGroup.js +6 -2
- package/dist/elements/services/undoService/UndoService.js +3 -5
- package/dist/elements/services/undoService/transactionItems/AttributeChangeAction.js +5 -0
- package/dist/elements/services/undoService/transactionItems/CssStyleChangeAction.js +5 -0
- package/dist/elements/services/undoService/transactionItems/DeleteAction.js +5 -0
- package/dist/elements/services/undoService/transactionItems/InsertAction.js +4 -0
- package/dist/elements/services/undoService/transactionItems/MoveElementInDomAction.js +7 -0
- package/dist/elements/services/undoService/transactionItems/PropertyChangeAction.js +5 -0
- package/dist/elements/widgets/bindableObjectsBrowser/bindable-objects-browser.js +27 -24
- package/dist/elements/widgets/bindings/BindingsEditor.js +6 -6
- package/dist/elements/widgets/codeView/code-view-ace.js +12 -7
- package/dist/elements/widgets/codeView/code-view-code-mirror.js +18 -13
- package/dist/elements/widgets/codeView/code-view-monaco.js +16 -11
- package/dist/elements/widgets/demoView/demoView.js +24 -22
- package/dist/elements/widgets/designerView/DesignContext.js +1 -3
- package/dist/elements/widgets/designerView/IDesignerCanvas.d.ts +2 -2
- package/dist/elements/widgets/designerView/Snaplines.js +8 -5
- package/dist/elements/widgets/designerView/designerCanvas.d.ts +6 -3
- package/dist/elements/widgets/designerView/designerCanvas.js +126 -104
- package/dist/elements/widgets/designerView/designerView.js +89 -87
- package/dist/elements/widgets/designerView/extensions/AbstractExtension.js +5 -1
- package/dist/elements/widgets/designerView/extensions/AltToEnterContainerExtension.js +2 -0
- package/dist/elements/widgets/designerView/extensions/AltToEnterContainerExtensionProvider.js +4 -6
- package/dist/elements/widgets/designerView/extensions/CanvasExtension copy.d.ts +10 -0
- package/dist/elements/widgets/designerView/extensions/CanvasExtension copy.js +29 -0
- package/dist/elements/widgets/designerView/extensions/CanvasExtensionProvider copy.d.ts +10 -0
- package/dist/elements/widgets/designerView/extensions/CanvasExtensionProvider copy.js +15 -0
- package/dist/elements/widgets/designerView/extensions/CanvasExtensionProvider.js +3 -5
- package/dist/elements/widgets/designerView/extensions/EditText/EditTextExtension.js +11 -8
- package/dist/elements/widgets/designerView/extensions/ExtensionManager.js +1 -0
- package/dist/elements/widgets/designerView/extensions/GrayOutExtension.js +1 -0
- package/dist/elements/widgets/designerView/extensions/GrayOutExtensionProvider.js +3 -5
- package/dist/elements/widgets/designerView/extensions/GridExtensionProvider.js +5 -7
- package/dist/elements/widgets/designerView/extensions/InvisibleDivExtension.js +1 -0
- package/dist/elements/widgets/designerView/extensions/InvisibleDivExtensionProvider.js +3 -5
- package/dist/elements/widgets/designerView/extensions/MouseOverExtension.js +1 -0
- package/dist/elements/widgets/designerView/extensions/MouseOverExtensionProvider.js +3 -5
- package/dist/elements/widgets/designerView/extensions/PathExtension.js +4 -0
- package/dist/elements/widgets/designerView/extensions/PermamentCursorExtension.d.ts +10 -0
- package/dist/elements/widgets/designerView/extensions/PermamentCursorExtension.js +29 -0
- package/dist/elements/widgets/designerView/extensions/PermamentCursorExtensionProvider copy.d.ts +10 -0
- package/dist/elements/widgets/designerView/extensions/PermamentCursorExtensionProvider copy.js +15 -0
- package/dist/elements/widgets/designerView/extensions/PermamentCursorExtensionProvider.d.ts +10 -0
- package/dist/elements/widgets/designerView/extensions/PermamentCursorExtensionProvider.js +15 -0
- package/dist/elements/widgets/designerView/extensions/PositionExtension.js +4 -0
- package/dist/elements/widgets/designerView/extensions/PrimarySelectionDefaultExtension.js +2 -0
- package/dist/elements/widgets/designerView/extensions/ResizeExtension.js +14 -4
- package/dist/elements/widgets/designerView/extensions/ResizeExtensionProvider.js +1 -0
- package/dist/elements/widgets/designerView/extensions/RotateExtensionProvider.js +3 -5
- package/dist/elements/widgets/designerView/extensions/SelectionDefaultExtension.js +1 -0
- package/dist/elements/widgets/designerView/extensions/SelectionDefaultExtensionProvider.js +3 -5
- package/dist/elements/widgets/designerView/extensions/TransformOriginExtension.js +3 -0
- package/dist/elements/widgets/designerView/extensions/TransformOriginExtensionProvider.js +3 -5
- package/dist/elements/widgets/designerView/extensions/contextMenu/MultipleItemsSelectedContextMenu.js +1 -3
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/AbstractDesignerPointerExtension.d.ts +22 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/AbstractDesignerPointerExtension.js +82 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/AbstractExtension.d.ts +22 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/AbstractExtension.js +78 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/CursorRectangleExtension.d.ts +7 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/CursorRectangleExtension.js +20 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/CursorRectanglePointerExtension copy.d.ts +7 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/CursorRectanglePointerExtension copy.js +20 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/CursorRectanglePointerExtension.d.ts +7 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/CursorRectanglePointerExtension.js +20 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerExtension.d.ts +5 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerExtension.js +1 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerExtensionProvider.d.ts +9 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerExtensionProvider.js +1 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerPointerExtension.d.ts +5 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerPointerExtension.js +1 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerPointerExtensionProvider.d.ts +9 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerPointerExtensionProvider.js +1 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/RulerExtension.d.ts +7 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/RulerExtension.js +20 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/RulerPointerExtension.d.ts +7 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/RulerPointerExtension.js +20 -0
- package/dist/elements/widgets/designerView/overlay/EditTextOverlay.js +3 -3
- package/dist/elements/widgets/designerView/overlayLayerView.js +28 -24
- package/dist/elements/widgets/designerView/tools/DrawElementTool.js +5 -1
- package/dist/elements/widgets/designerView/tools/DrawPathTool.d.ts +0 -1
- package/dist/elements/widgets/designerView/tools/DrawPathTool.js +4 -3
- package/dist/elements/widgets/designerView/tools/MagicWandSelectorTool.d.ts +0 -1
- package/dist/elements/widgets/designerView/tools/MagicWandSelectorTool.js +4 -5
- package/dist/elements/widgets/designerView/tools/PanTool.js +1 -3
- package/dist/elements/widgets/designerView/tools/PickColorTool.js +1 -3
- package/dist/elements/widgets/designerView/tools/PointerTool.d.ts +2 -1
- package/dist/elements/widgets/designerView/tools/PointerTool.js +71 -63
- package/dist/elements/widgets/designerView/tools/RectangleSelectorTool.js +16 -15
- package/dist/elements/widgets/designerView/tools/TextTool.js +1 -1
- package/dist/elements/widgets/designerView/tools/ZoomTool.js +1 -3
- package/dist/elements/widgets/miniatureView/html-2-canvas-miniature-view.js +5 -4
- package/dist/elements/widgets/paletteView/paletteElements.js +45 -45
- package/dist/elements/widgets/paletteView/paletteTreeView.js +53 -51
- package/dist/elements/widgets/paletteView/paletteView.js +9 -8
- package/dist/elements/widgets/propertyGrid/PropertyGrid.js +24 -19
- package/dist/elements/widgets/propertyGrid/PropertyGridPropertyList.js +12 -8
- package/dist/elements/widgets/treeView/treeView.js +102 -96
- package/dist/elements/widgets/treeView/treeViewExtended.js +72 -70
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -0
- package/package.json +1 -1
- package/tsconfig.json +1 -1
- package/assets/images/chromeDevtools/accelerometer-back.svg +0 -69
- package/assets/images/chromeDevtools/accelerometer-front.svg +0 -28
- package/assets/images/chromeDevtools/accessibility-icon.svg +0 -3
- package/assets/images/chromeDevtools/add-icon.svg +0 -3
- package/assets/images/chromeDevtools/checkboxCheckmark.svg +0 -60
- package/assets/images/chromeDevtools/chevrons.svg +0 -62
- package/assets/images/chromeDevtools/chromeSelect.svg +0 -1
- package/assets/images/chromeDevtools/chromeSelectDark.svg +0 -1
- package/assets/images/chromeDevtools/close-icon.svg +0 -5
- package/assets/images/chromeDevtools/copy_icon.svg +0 -79
- package/assets/images/chromeDevtools/dropdown_7x6_icon.svg +0 -1
- package/assets/images/chromeDevtools/elements_panel_icon.svg +0 -1
- package/assets/images/chromeDevtools/errorWave.svg +0 -74
- package/assets/images/chromeDevtools/error_icon.svg +0 -125
- package/assets/images/chromeDevtools/feedback_button_icon.svg +0 -3
- package/assets/images/chromeDevtools/help_outline.svg +0 -1
- package/assets/images/chromeDevtools/ic_checkmark_16x16.svg +0 -3
- package/assets/images/chromeDevtools/ic_command_go_to_line.svg +0 -4
- package/assets/images/chromeDevtools/ic_command_go_to_symbol.svg +0 -3
- package/assets/images/chromeDevtools/ic_command_help.svg +0 -3
- package/assets/images/chromeDevtools/ic_command_open_file.svg +0 -3
- package/assets/images/chromeDevtools/ic_command_run_command.svg +0 -3
- package/assets/images/chromeDevtools/ic_command_run_snippet.svg +0 -3
- package/assets/images/chromeDevtools/ic_delete_filter.svg +0 -1
- package/assets/images/chromeDevtools/ic_delete_list.svg +0 -1
- package/assets/images/chromeDevtools/ic_dimension_single.svg +0 -4
- package/assets/images/chromeDevtools/ic_file_default.svg +0 -3
- package/assets/images/chromeDevtools/ic_file_document.svg +0 -3
- package/assets/images/chromeDevtools/ic_file_font.svg +0 -3
- package/assets/images/chromeDevtools/ic_file_image.svg +0 -3
- package/assets/images/chromeDevtools/ic_file_script.svg +0 -3
- package/assets/images/chromeDevtools/ic_file_snippet.svg +0 -3
- package/assets/images/chromeDevtools/ic_file_stylesheet.svg +0 -3
- package/assets/images/chromeDevtools/ic_file_webbundle.svg +0 -5
- package/assets/images/chromeDevtools/ic_file_webbundle_inner_request.svg +0 -9
- package/assets/images/chromeDevtools/ic_folder_default.svg +0 -3
- package/assets/images/chromeDevtools/ic_folder_local.svg +0 -3
- package/assets/images/chromeDevtools/ic_folder_network.svg +0 -3
- package/assets/images/chromeDevtools/ic_info_black_18dp.svg +0 -1
- package/assets/images/chromeDevtools/ic_memory_16x16.svg +0 -6
- package/assets/images/chromeDevtools/ic_page_next_16x16_icon.svg +0 -1
- package/assets/images/chromeDevtools/ic_page_prev_16x16_icon.svg +0 -1
- package/assets/images/chromeDevtools/ic_preview_feature.svg +0 -3
- package/assets/images/chromeDevtools/ic_redo_16x16_icon.svg +0 -1
- package/assets/images/chromeDevtools/ic_request_response.svg +0 -5
- package/assets/images/chromeDevtools/ic_response.svg +0 -4
- package/assets/images/chromeDevtools/ic_show_node_16x16.svg +0 -4
- package/assets/images/chromeDevtools/ic_suggest_color.svg +0 -6
- package/assets/images/chromeDevtools/ic_undo_16x16_icon.svg +0 -1
- package/assets/images/chromeDevtools/ic_warning_black_18dp.svg +0 -1
- package/assets/images/chromeDevtools/issue-cross-icon.svg +0 -70
- package/assets/images/chromeDevtools/issue-exclamation-icon.svg +0 -64
- package/assets/images/chromeDevtools/issue-questionmark-icon.svg +0 -82
- package/assets/images/chromeDevtools/issue-text-icon.svg +0 -56
- package/assets/images/chromeDevtools/largeIcons.svg +0 -1629
- package/assets/images/chromeDevtools/lighthouse_logo.svg +0 -158
- package/assets/images/chromeDevtools/link_icon.svg +0 -1
- package/assets/images/chromeDevtools/mediumIcons.svg +0 -1101
- package/assets/images/chromeDevtools/network_conditions_icon.svg +0 -6
- package/assets/images/chromeDevtools/network_panel_icon.svg +0 -1
- package/assets/images/chromeDevtools/node_search_icon.svg +0 -1
- package/assets/images/chromeDevtools/preview_feature_video_thumbnail.svg +0 -92
- package/assets/images/chromeDevtools/refresh_12x12_icon.svg +0 -1
- package/assets/images/chromeDevtools/resizeDiagonal.svg +0 -1
- package/assets/images/chromeDevtools/resizeHorizontal.svg +0 -1
- package/assets/images/chromeDevtools/resizeVertical.svg +0 -1
- package/assets/images/chromeDevtools/securityIcons.svg +0 -278
- package/assets/images/chromeDevtools/settings_14x14_icon.svg +0 -1
- package/assets/images/chromeDevtools/smallIcons.svg +0 -1277
- package/assets/images/chromeDevtools/sources_panel_icon.svg +0 -1
- package/assets/images/chromeDevtools/survey_feedback_icon.svg +0 -1
- package/assets/images/chromeDevtools/switcherIcon.svg +0 -57
- package/assets/images/chromeDevtools/three_dots_menu_icon.svg +0 -1
- package/assets/images/chromeDevtools/trash_bin_icon.svg +0 -1
- package/assets/images/chromeDevtools/treeoutlineTriangles.svg +0 -70
- package/assets/images/chromeDevtools/warning_icon.svg +0 -83
|
@@ -1,1101 +0,0 @@
|
|
|
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:xlink="http://www.w3.org/1999/xlink"
|
|
9
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
10
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
11
|
-
inkscape:export-ydpi="90"
|
|
12
|
-
inkscape:export-xdpi="90"
|
|
13
|
-
sodipodi:docname="mediumIcons.svg"
|
|
14
|
-
inkscape:version="1.0 (4035a4f, 2020-05-01)"
|
|
15
|
-
version="1.1"
|
|
16
|
-
id="svg4775"
|
|
17
|
-
height="112"
|
|
18
|
-
width="112"
|
|
19
|
-
viewBox="0 -16 112 112">
|
|
20
|
-
<metadata
|
|
21
|
-
id="metadata4917">
|
|
22
|
-
<rdf:RDF>
|
|
23
|
-
<cc:Work
|
|
24
|
-
rdf:about="">
|
|
25
|
-
<dc:format>image/svg+xml</dc:format>
|
|
26
|
-
<dc:type
|
|
27
|
-
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
28
|
-
<dc:title />
|
|
29
|
-
</cc:Work>
|
|
30
|
-
</rdf:RDF>
|
|
31
|
-
</metadata>
|
|
32
|
-
<defs
|
|
33
|
-
id="defs4915">
|
|
34
|
-
<linearGradient
|
|
35
|
-
id="sprite6_b-6">
|
|
36
|
-
<stop
|
|
37
|
-
stop-color="#d7687d"
|
|
38
|
-
offset="0"
|
|
39
|
-
id="stop4236-2" />
|
|
40
|
-
<stop
|
|
41
|
-
stop-color="#b21402"
|
|
42
|
-
offset="1"
|
|
43
|
-
id="stop4238-6" />
|
|
44
|
-
</linearGradient>
|
|
45
|
-
<linearGradient
|
|
46
|
-
id="sprite6_a-0"
|
|
47
|
-
x2="24"
|
|
48
|
-
gradientTransform="matrix(0,-0.41667,-0.41667,0,25,10)"
|
|
49
|
-
gradientUnits="userSpaceOnUse"
|
|
50
|
-
xlink:href="#sprite6_b-6" />
|
|
51
|
-
<linearGradient
|
|
52
|
-
id="sprite9_d-9">
|
|
53
|
-
<stop
|
|
54
|
-
stop-color="#606eda"
|
|
55
|
-
offset="0"
|
|
56
|
-
id="stop4292-1" />
|
|
57
|
-
<stop
|
|
58
|
-
stop-color="#021db2"
|
|
59
|
-
offset="1"
|
|
60
|
-
id="stop4294-2" />
|
|
61
|
-
</linearGradient>
|
|
62
|
-
<linearGradient
|
|
63
|
-
id="sprite9_a-2"
|
|
64
|
-
x1="113"
|
|
65
|
-
x2="127"
|
|
66
|
-
y1="104"
|
|
67
|
-
y2="104"
|
|
68
|
-
gradientTransform="matrix(0.71429,0,0,0.71429,-0.714,-69.286)"
|
|
69
|
-
gradientUnits="userSpaceOnUse"
|
|
70
|
-
xlink:href="#sprite9_d-9" />
|
|
71
|
-
<linearGradient
|
|
72
|
-
x2="24"
|
|
73
|
-
gradientTransform="matrix(0,-0.41667,-0.41667,0,25,10)"
|
|
74
|
-
gradientUnits="userSpaceOnUse"
|
|
75
|
-
id="linearGradient5055"
|
|
76
|
-
xlink:href="#sprite6_b-6"
|
|
77
|
-
inkscape:collect="always" />
|
|
78
|
-
<linearGradient
|
|
79
|
-
y2="104"
|
|
80
|
-
x2="127"
|
|
81
|
-
y1="104"
|
|
82
|
-
x1="113"
|
|
83
|
-
gradientTransform="matrix(0.71429,0,0,0.71429,-0.714,-69.286)"
|
|
84
|
-
gradientUnits="userSpaceOnUse"
|
|
85
|
-
id="linearGradient5057"
|
|
86
|
-
xlink:href="#sprite9_d-9"
|
|
87
|
-
inkscape:collect="always" />
|
|
88
|
-
</defs>
|
|
89
|
-
<sodipodi:namedview
|
|
90
|
-
inkscape:snap-page="false"
|
|
91
|
-
inkscape:snap-grids="true"
|
|
92
|
-
showguides="true"
|
|
93
|
-
inkscape:document-rotation="0"
|
|
94
|
-
inkscape:current-layer="g222"
|
|
95
|
-
inkscape:window-maximized="0"
|
|
96
|
-
inkscape:window-y="23"
|
|
97
|
-
inkscape:window-x="0"
|
|
98
|
-
inkscape:cy="37.762071"
|
|
99
|
-
inkscape:cx="69.881083"
|
|
100
|
-
inkscape:zoom="4.4716643"
|
|
101
|
-
showgrid="true"
|
|
102
|
-
id="namedview4913"
|
|
103
|
-
inkscape:window-height="995"
|
|
104
|
-
inkscape:window-width="1792"
|
|
105
|
-
inkscape:pageshadow="2"
|
|
106
|
-
inkscape:pageopacity="0"
|
|
107
|
-
guidetolerance="10"
|
|
108
|
-
gridtolerance="10"
|
|
109
|
-
objecttolerance="10"
|
|
110
|
-
borderopacity="1"
|
|
111
|
-
bordercolor="#666666"
|
|
112
|
-
pagecolor="#ffffff"
|
|
113
|
-
showborder="true"
|
|
114
|
-
fit-margin-top="-16"
|
|
115
|
-
lock-margins="true"
|
|
116
|
-
viewbox-x="0"
|
|
117
|
-
viewbox-y="-16">
|
|
118
|
-
<inkscape:grid
|
|
119
|
-
originy="0"
|
|
120
|
-
originx="0"
|
|
121
|
-
spacingy="16"
|
|
122
|
-
spacingx="16"
|
|
123
|
-
snapvisiblegridlinesonly="true"
|
|
124
|
-
enabled="true"
|
|
125
|
-
visible="true"
|
|
126
|
-
empspacing="5"
|
|
127
|
-
id="grid4919"
|
|
128
|
-
type="xygrid" />
|
|
129
|
-
</sodipodi:namedview>
|
|
130
|
-
<g
|
|
131
|
-
transform="translate(1.2171069e-6,32)"
|
|
132
|
-
id="g4777">
|
|
133
|
-
<path
|
|
134
|
-
style="fill:#212121"
|
|
135
|
-
inkscape:connector-curvature="0"
|
|
136
|
-
id="path4781"
|
|
137
|
-
d="m 3,4 h 10 v 9.008 C 13,14.1082 12.11257,15 11.0004,15 H 4.9996 C 3.8952,15 3,14.09982 3,13.008 Z M 2,2 H 14 V 3 H 2 Z M 5,1 h 6 V 2 H 5 Z" />
|
|
138
|
-
</g>
|
|
139
|
-
<g
|
|
140
|
-
id="g4783"
|
|
141
|
-
transform="translate(16.000002,32)">
|
|
142
|
-
<path
|
|
143
|
-
style="fill:#212121"
|
|
144
|
-
inkscape:connector-curvature="0"
|
|
145
|
-
id="path4787"
|
|
146
|
-
d="M 13.526,6.25 H 12.0523 V 5.5 c 0,-0.414 -0.33011,-0.75 -0.73684,-0.75 H 9.84176 V 4 c 0,-0.414 -0.33011,-0.75 -0.73684,-0.75 H 8.36808 V 1.75 C 8.36808,1.423 8.16029,1.153 7.87366,1.0495 7.81987,1.021 7.74913,1 7.63124,1 c -3.6628,0 -6.6316,3.0218 -6.6316,6.75 0,3.7275 2.9687,6.75 6.6316,6.75 3.6629,0 6.6316,-3.0225 6.6316,-6.75 V 7 c 0,-0.414 -0.3301,-0.75 -0.73684,-0.75 z M 3.5786,8.5 C 2.96784,8.5 2.4733,7.99667 2.4733,7.375 2.4733,6.75333 2.9678,6.25 3.5786,6.25 4.1894,6.25 4.6839,6.75333 4.6839,7.375 4.6839,7.99667 4.1894,8.5 3.5786,8.5 Z M 4.6839,4.375 c 0,-0.62175 0.49516,-1.125 1.1053,-1.125 0.61084,0 1.1053,0.50325 1.1053,1.125 C 6.8945,4.996 6.40008,5.5 5.7892,5.5 5.17909,5.5 4.6839,4.996 4.6839,4.375 Z M 6.8944,13 c -0.61059,0 -1.1053,-0.50334 -1.1053,-1.1246 0,-0.62129 0.49467,-1.1254 1.1053,-1.1254 0.61063,0 1.1053,0.50409 1.1053,1.1254 C 7.9997,12.49668 7.50503,13 6.8944,13 Z M 7.26282,9.25 C 6.65271,9.25 6.15752,8.746 6.15752,8.125 6.15752,7.504 6.65268,7 7.26282,7 c 0.61014,0 1.1053,0.504 1.1053,1.125 0,0.621 -0.49516,1.125 -1.1053,1.125 z m 3.6842,1.5 c -0.6101,0 -1.1053,-0.504 -1.1053,-1.125 0,-0.621 0.49516,-1.125 1.1053,-1.125 0.61011,0 1.1053,0.504 1.1053,1.125 0,0.621 -0.49516,1.125 -1.1053,1.125 z" />
|
|
147
|
-
</g>
|
|
148
|
-
<g
|
|
149
|
-
id="g4789"
|
|
150
|
-
transform="translate(32.000002,32)">
|
|
151
|
-
<path
|
|
152
|
-
inkscape:connector-curvature="0"
|
|
153
|
-
id="path4793"
|
|
154
|
-
d="M 8,6 C 11.3137,6 14,5.10457 14,4 14,2.89543 11.3137,2 8,2 4.6863,2 2,2.89543 2,4 2,5.10457 4.6863,6 8,6 Z m -6,7 c 0,1.1046 2.6863,2 6,2 3.3137,0 6,-0.89543 6,-2 v -2 c 0,1.1046 -2.6863,2 -6,2 -3.3137,0 -6,-0.89543 -6,-2 z m 0,-3 c 0,1.1046 2.6863,2 6,2 3.3137,0 6,-0.89543 6,-2 V 8 C 14,9.1046 11.3137,10 8,10 4.6863,10 2,9.10457 2,8 Z M 2,7 c 0,1.1046 2.6863,2 6,2 3.3137,0 6,-0.89543 6,-2 V 5 C 14,6.1046 11.3137,7 8,7 4.6863,7 2,6.10457 2,5 Z" />
|
|
155
|
-
</g>
|
|
156
|
-
<g
|
|
157
|
-
id="g4795"
|
|
158
|
-
transform="translate(48.000002,32)">
|
|
159
|
-
<g
|
|
160
|
-
id="g4799">
|
|
161
|
-
<g
|
|
162
|
-
style="fill:none"
|
|
163
|
-
id="g4801">
|
|
164
|
-
<path
|
|
165
|
-
inkscape:connector-curvature="0"
|
|
166
|
-
id="path4803"
|
|
167
|
-
d="M 0,0 H 16 V 16 H 0 Z" />
|
|
168
|
-
<path
|
|
169
|
-
style="fill:#000000"
|
|
170
|
-
inkscape:connector-curvature="0"
|
|
171
|
-
id="path4805"
|
|
172
|
-
d="M 6,0 H 0.9954 C 0.45567,0 0,0.45078 0,1.0068 v 11.986 c 0,0.5569 0.44565,1.0068 0.9954,1.0068 H 9.0046 C 9.54433,13.9996 10,13.54882 10,12.9928 V 3.9996 l -4,-4 z M 9.29,4 H 6 V 0.71 Z"
|
|
173
|
-
transform="translate(3,1)" />
|
|
174
|
-
</g>
|
|
175
|
-
</g>
|
|
176
|
-
</g>
|
|
177
|
-
<g
|
|
178
|
-
id="g4807"
|
|
179
|
-
transform="translate(1.2171069e-6,48)">
|
|
180
|
-
<path
|
|
181
|
-
style="fill:#212121"
|
|
182
|
-
inkscape:connector-curvature="0"
|
|
183
|
-
id="path4811"
|
|
184
|
-
d="M 6.5,3.2289 V 1 h 3 v 2.2289 c 0.70763,0.22225 1.3475,0.59759 1.8807,1.0872 l 1.9315,-1.1151 1.5,2.5981 -1.9305,1.1146 c 0.07749,0.34976 0.11835,0.71329 0.11835,1.0864 0,0.37311 -0.04086,0.73661 -0.11835,1.0864 l 1.9305,1.1146 -1.5,2.5981 -1.9315,-1.1151 C 10.84746,12.17371 10.2076,12.54904 9.5,12.7713 v 2.2289 h -3 V 12.7713 C 5.79237,12.54905 5.1525,12.17371 4.6193,11.6841 l -1.9315,1.1151 -1.5,-2.5981 1.9305,-1.1146 C 3.04081,8.73674 2.99995,8.37321 2.99995,8.0001 2.99995,7.62699 3.04081,7.26349 3.1183,6.9137 L 1.1878,5.7991 2.6878,3.201 4.6193,4.3161 C 5.15253,3.82649 5.7924,3.45116 6.5,3.2289 Z M 8,10.5 C 9.3807,10.5 10.5,9.3807 10.5,8 10.5,6.6193 9.3807,5.5 8,5.5 6.6193,5.5 5.5,6.6193 5.5,8 c 0,1.3807 1.1193,2.5 2.5,2.5 z" />
|
|
185
|
-
</g>
|
|
186
|
-
<g
|
|
187
|
-
id="g4813"
|
|
188
|
-
transform="translate(16.000002,48)">
|
|
189
|
-
<path
|
|
190
|
-
style="fill:#212121"
|
|
191
|
-
inkscape:connector-curvature="0"
|
|
192
|
-
id="path4817"
|
|
193
|
-
d="M 2,3.999 C 2,3.44729 2.45098,3.00004 2.99078,3.00004 h 5.0092 v 3 h -6 v -2.001 z M 2,11 h 6 v 3 H 2.9908 C 2.44361,14 2.00002,13.55734 2.00002,13.00104 v -2.001 z M 2,7 h 6 v 3 H 2 Z M 9,3 h 5.0092 c 0.54719,0 0.99078,0.44266 0.99078,0.99896 v 2.001 h -6 v -3 z m 0,8 h 6 v 2.001 c 0,0.55171 -0.45098,0.99896 -0.99078,0.99896 h -5.0092 v -3 z M 9,7 h 6 v 3 H 9 Z" />
|
|
194
|
-
</g>
|
|
195
|
-
<g
|
|
196
|
-
id="g4819"
|
|
197
|
-
transform="translate(34.000002,50)">
|
|
198
|
-
<path
|
|
199
|
-
inkscape:connector-curvature="0"
|
|
200
|
-
id="path4823"
|
|
201
|
-
d="m 8,13 c 2.7614,0 5,-2.2386 5,-5 C 13,5.2386 10.7614,3 8,3 5.2386,3 3,5.2386 3,8 c 0,2.7614 2.2386,5 5,5 z M 8,11 V 9 H 5 V 7 H 8 V 5 l 3,3 z"
|
|
202
|
-
transform="matrix(1.1,0,0,1.1,-3.3,-3.3)" />
|
|
203
|
-
</g>
|
|
204
|
-
<g
|
|
205
|
-
id="g4825"
|
|
206
|
-
transform="translate(50.000002,49)">
|
|
207
|
-
<g
|
|
208
|
-
id="g4829"
|
|
209
|
-
transform="translate(-76,-24)">
|
|
210
|
-
<circle
|
|
211
|
-
style="fill:#009802"
|
|
212
|
-
id="circle4831"
|
|
213
|
-
r="2.5"
|
|
214
|
-
cy="11.5"
|
|
215
|
-
cx="10.5"
|
|
216
|
-
transform="matrix(1.2,0,0,1.2,72.4,21.2)" />
|
|
217
|
-
<path
|
|
218
|
-
inkscape:connector-curvature="0"
|
|
219
|
-
id="path4833"
|
|
220
|
-
d="m 78,25 c -0.54399,0 -1,0.45026 -1,1 v 8 c 0,0.53973 0.44936,1 1,1 h 3.0312 c -0.02335,-0.1633 -0.03125,-0.33024 -0.03125,-0.5 0,-0.16976 0.0079,-0.3367 0.03125,-0.5 H 78 v -8 h 3 v 3 h 3 v 1.5 c 0.1633,-0.02335 0.33024,0 0.5,0 0.16976,0 0.3367,-0.02335 0.5,0 V 28 l -3,-3 z m 4,1 2,2 h -2 z" />
|
|
221
|
-
</g>
|
|
222
|
-
</g>
|
|
223
|
-
<g
|
|
224
|
-
id="g4835"
|
|
225
|
-
transform="translate(2.0000012,65)">
|
|
226
|
-
<path
|
|
227
|
-
inkscape:connector-curvature="0"
|
|
228
|
-
id="path4839"
|
|
229
|
-
d="m 71.625,25.5 h -4.003 c -0.54399,0 -0.99703,0.44566 -0.99703,0.9954 v 8.0092 c 0,0.53973 0.44639,0.9954 0.99703,0.9954 h 6.0059 c 0.54399,0 0.99703,-0.44566 0.99703,-0.9954 V 28.5 l -3,-3 z m 0,1 2,2 h -2 z m -4,0 h 3 v 3 h 3 v 5 h -6 z"
|
|
230
|
-
transform="translate(-65.625,-24.5)" />
|
|
231
|
-
</g>
|
|
232
|
-
<g
|
|
233
|
-
id="g4841"
|
|
234
|
-
transform="translate(17.000002,65)">
|
|
235
|
-
<path
|
|
236
|
-
style="fill:#9f9f9f"
|
|
237
|
-
inkscape:connector-curvature="0"
|
|
238
|
-
id="path4845"
|
|
239
|
-
d="m 160,102.5 c 0,3.59 2.91,6.5 6.5,6.5 3.59,0 6.5,-2.91 6.5,-6.5 0,-3.59 -2.91,-6.5 -6.5,-6.5 -3.59,0 -6.5,2.91 -6.5,6.5"
|
|
240
|
-
transform="translate(-160,-96)" />
|
|
241
|
-
<path
|
|
242
|
-
style="fill-opacity:0.36"
|
|
243
|
-
inkscape:connector-curvature="0"
|
|
244
|
-
id="path4847"
|
|
245
|
-
d="m 170,100.43 -0.93,-0.93 -2.57,2.57 -2.57,-2.57 -0.93,0.93 2.57,2.57 -2.57,2.57 0.93,0.93 2.57,-2.57 2.57,2.57 0.93,-0.93 -2.57,-2.57 z"
|
|
246
|
-
transform="translate(-160,-96)" />
|
|
247
|
-
<path
|
|
248
|
-
style="fill:#ffffff"
|
|
249
|
-
inkscape:connector-curvature="0"
|
|
250
|
-
id="path4849"
|
|
251
|
-
d="M 170,99.93 169.07,99 166.5,101.57 163.93,99 163,99.93 l 2.57,2.57 -2.57,2.57 0.93,0.93 2.57,-2.57 2.57,2.57 0.93,-0.93 -2.57,-2.57 z"
|
|
252
|
-
transform="translate(-160,-96)" />
|
|
253
|
-
</g>
|
|
254
|
-
<g
|
|
255
|
-
id="g4851"
|
|
256
|
-
transform="translate(33.000002,65)">
|
|
257
|
-
<path
|
|
258
|
-
style="fill:#bebebe"
|
|
259
|
-
inkscape:connector-curvature="0"
|
|
260
|
-
id="path4855"
|
|
261
|
-
d="m 143,102.5 c 0,3.59 2.91,6.5 6.5,6.5 3.59,0 6.5,-2.91 6.5,-6.5 0,-3.59 -2.91,-6.5 -6.5,-6.5 -3.59,0 -6.5,2.91 -6.5,6.5"
|
|
262
|
-
transform="translate(-143,-96)" />
|
|
263
|
-
<path
|
|
264
|
-
style="fill-opacity:0.37"
|
|
265
|
-
inkscape:connector-curvature="0"
|
|
266
|
-
id="path4857"
|
|
267
|
-
d="m 153,100.43 -0.93,-0.93 -2.57,2.57 -2.57,-2.57 -0.93,0.93 2.57,2.57 -2.57,2.57 0.93,0.93 2.57,-2.57 2.57,2.57 0.93,-0.93 -2.57,-2.57 z"
|
|
268
|
-
transform="translate(-143,-96)" />
|
|
269
|
-
<path
|
|
270
|
-
style="fill:#ffffff"
|
|
271
|
-
inkscape:connector-curvature="0"
|
|
272
|
-
id="path4859"
|
|
273
|
-
d="M 153,99.93 152.07,99 149.5,101.57 146.93,99 146,99.93 l 2.57,2.57 -2.57,2.57 0.93,0.93 2.57,-2.57 2.57,2.57 0.93,-0.93 -2.57,-2.57 z"
|
|
274
|
-
transform="translate(-143,-96)" />
|
|
275
|
-
</g>
|
|
276
|
-
<g
|
|
277
|
-
id="g4861"
|
|
278
|
-
transform="translate(49.000002,65)">
|
|
279
|
-
<path
|
|
280
|
-
style="fill:url(#sprite12_a)"
|
|
281
|
-
inkscape:connector-curvature="0"
|
|
282
|
-
id="path4865"
|
|
283
|
-
d="m 118,96 c -3.87,0 -7,3.13 -7,7 0,3.87 3.13,7 7,7 3.87,0 7,-3.13 7,-7 0,-3.87 -3.13,-7 -7,-7"
|
|
284
|
-
transform="translate(-111,-96)" />
|
|
285
|
-
<path
|
|
286
|
-
style="fill:#f27d82"
|
|
287
|
-
inkscape:connector-curvature="0"
|
|
288
|
-
id="path4867"
|
|
289
|
-
d="m 111.5,103 c 0,3.59 2.91,6.5 6.5,6.5 3.59,0 6.5,-2.91 6.5,-6.5 0,-3.59 -2.91,-6.5 -6.5,-6.5 -3.59,0 -6.5,2.91 -6.5,6.5"
|
|
290
|
-
transform="translate(-111,-96)" />
|
|
291
|
-
<path
|
|
292
|
-
style="fill-opacity:0.36"
|
|
293
|
-
inkscape:connector-curvature="0"
|
|
294
|
-
id="path4869"
|
|
295
|
-
d="m 121.5,100.93 -0.93,-0.93 -2.57,2.57 -2.57,-2.57 -0.93,0.93 2.57,2.57 -2.57,2.57 0.93,0.93 2.57,-2.57 2.57,2.57 0.93,-0.93 -2.57,-2.57 z"
|
|
296
|
-
transform="translate(-111,-96)" />
|
|
297
|
-
<path
|
|
298
|
-
style="fill:#ffffff"
|
|
299
|
-
inkscape:connector-curvature="0"
|
|
300
|
-
id="path4871"
|
|
301
|
-
d="m 121.5,100.43 -0.93,-0.93 -2.57,2.57 -2.57,-2.57 -0.93,0.93 2.57,2.57 -2.57,2.57 0.93,0.93 2.57,-2.57 2.57,2.57 0.93,-0.93 -2.57,-2.57 z"
|
|
302
|
-
transform="translate(-111,-96)" />
|
|
303
|
-
<defs
|
|
304
|
-
id="defs4873">
|
|
305
|
-
<linearGradient
|
|
306
|
-
id="sprite12_r">
|
|
307
|
-
<stop
|
|
308
|
-
id="stop4876"
|
|
309
|
-
offset="0"
|
|
310
|
-
stop-color="#d7687d" />
|
|
311
|
-
<stop
|
|
312
|
-
id="stop4878"
|
|
313
|
-
offset="1"
|
|
314
|
-
stop-color="#b21402" />
|
|
315
|
-
</linearGradient>
|
|
316
|
-
<linearGradient
|
|
317
|
-
xlink:href="#sprite12_r"
|
|
318
|
-
gradientUnits="userSpaceOnUse"
|
|
319
|
-
gradientTransform="matrix(0,-0.58333,-0.58333,0,118,110)"
|
|
320
|
-
x2="24"
|
|
321
|
-
id="sprite12_a" />
|
|
322
|
-
</defs>
|
|
323
|
-
</g>
|
|
324
|
-
<g
|
|
325
|
-
id="g4881"
|
|
326
|
-
transform="translate(1.0000012,81)">
|
|
327
|
-
<path
|
|
328
|
-
style="fill:url(#sprite13_a)"
|
|
329
|
-
inkscape:connector-curvature="0"
|
|
330
|
-
id="path4885"
|
|
331
|
-
d="m 103,110 c 3.87,0 7,-3.13 7,-7 0,-3.87 -3.13,-7 -7,-7 -3.87,0 -7,3.13 -7,7 0,3.87 3.13,7 7,7"
|
|
332
|
-
transform="translate(-96,-96)" />
|
|
333
|
-
<path
|
|
334
|
-
style="fill:url(#sprite13_b)"
|
|
335
|
-
inkscape:connector-curvature="0"
|
|
336
|
-
id="path4887"
|
|
337
|
-
d="m 103,96.5 c -3.59,0 -6.5,2.91 -6.5,6.5 0,3.59 2.91,6.5 6.5,6.5 3.59,0 6.5,-2.91 6.5,-6.5 0,-3.59 -2.91,-6.5 -6.5,-6.5"
|
|
338
|
-
transform="translate(-96,-96)" />
|
|
339
|
-
<path
|
|
340
|
-
style="fill:#993c35"
|
|
341
|
-
inkscape:connector-curvature="0"
|
|
342
|
-
id="path4889"
|
|
343
|
-
d="m 106.5,100.93 -0.93,-0.93 -2.57,2.57 -2.57,-2.57 -0.93,0.93 2.57,2.57 -2.57,2.57 0.93,0.93 2.57,-2.57 2.57,2.57 0.93,-0.93 -2.57,-2.57 z"
|
|
344
|
-
transform="translate(-96,-96)" />
|
|
345
|
-
<path
|
|
346
|
-
style="fill:#ffffff"
|
|
347
|
-
inkscape:connector-curvature="0"
|
|
348
|
-
id="path4891"
|
|
349
|
-
d="m 106.5,100.43 -0.93,-0.93 -2.57,2.57 -2.57,-2.57 -0.93,0.93 2.57,2.57 -2.57,2.57 0.93,0.93 2.57,-2.57 2.57,2.57 0.93,-0.93 -2.57,-2.57 z"
|
|
350
|
-
transform="translate(-96,-96)" />
|
|
351
|
-
<defs
|
|
352
|
-
id="defs4893">
|
|
353
|
-
<linearGradient
|
|
354
|
-
xlink:href="#sprite13_q"
|
|
355
|
-
gradientUnits="userSpaceOnUse"
|
|
356
|
-
gradientTransform="rotate(90,103,103)"
|
|
357
|
-
y2="103"
|
|
358
|
-
y1="103"
|
|
359
|
-
x2="109.5"
|
|
360
|
-
x1="96.5"
|
|
361
|
-
id="sprite13_b" />
|
|
362
|
-
<linearGradient
|
|
363
|
-
id="sprite13_q">
|
|
364
|
-
<stop
|
|
365
|
-
id="stop4897"
|
|
366
|
-
offset="0"
|
|
367
|
-
stop-color="#e59290" />
|
|
368
|
-
<stop
|
|
369
|
-
id="stop4899"
|
|
370
|
-
offset="1"
|
|
371
|
-
stop-color="#e99890" />
|
|
372
|
-
</linearGradient>
|
|
373
|
-
<linearGradient
|
|
374
|
-
xlink:href="#sprite13_r"
|
|
375
|
-
gradientUnits="userSpaceOnUse"
|
|
376
|
-
gradientTransform="rotate(90,112,95)"
|
|
377
|
-
y2="104"
|
|
378
|
-
y1="104"
|
|
379
|
-
x2="127"
|
|
380
|
-
x1="113"
|
|
381
|
-
id="sprite13_a" />
|
|
382
|
-
<linearGradient
|
|
383
|
-
id="sprite13_r">
|
|
384
|
-
<stop
|
|
385
|
-
id="stop4903"
|
|
386
|
-
offset="0"
|
|
387
|
-
stop-color="#c0544f" />
|
|
388
|
-
<stop
|
|
389
|
-
id="stop4905"
|
|
390
|
-
offset="1"
|
|
391
|
-
stop-color="#d08481" />
|
|
392
|
-
</linearGradient>
|
|
393
|
-
</defs>
|
|
394
|
-
</g>
|
|
395
|
-
<g
|
|
396
|
-
id="g4907"
|
|
397
|
-
transform="translate(18.000002,82)">
|
|
398
|
-
<path
|
|
399
|
-
style="fill:#5b5b5b"
|
|
400
|
-
inkscape:connector-curvature="0"
|
|
401
|
-
id="path4911"
|
|
402
|
-
d="m 242.27,38.92 c -0.75073,0.56132 -1.6826,0.89372 -2.6921,0.89372 -2.4853,0 -4.5,-2.0147 -4.5,-4.5 0,-2.4853 2.0147,-4.5 4.5,-4.5 2.4853,0 4.5,2.0147 4.5,4.5 0,1.1154 -0.40579,2.136 -1.0778,2.9222 l 2.3456,2.3456 -0.70711,0.70711 z m -2.6921,-0.10628 c 1.933,0 3.5,-1.567 3.5,-3.5 0,-1.933 -1.567,-3.5 -3.5,-3.5 -1.933,0 -3.5,1.567 -3.5,3.5 0,1.933 1.567,3.5 3.5,3.5 z"
|
|
403
|
-
transform="translate(-234,-30)" />
|
|
404
|
-
</g>
|
|
405
|
-
<text
|
|
406
|
-
id="text4355"
|
|
407
|
-
y="91.207672"
|
|
408
|
-
x="-11.403087"
|
|
409
|
-
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
|
|
410
|
-
xml:space="preserve"><tspan
|
|
411
|
-
style="font-size:10px;line-height:1.25;font-family:sans-serif"
|
|
412
|
-
y="91.207672"
|
|
413
|
-
x="-11.403087"
|
|
414
|
-
id="tspan4357"
|
|
415
|
-
sodipodi:role="line">1</tspan></text>
|
|
416
|
-
<text
|
|
417
|
-
id="text4355-8"
|
|
418
|
-
y="75.675293"
|
|
419
|
-
x="-11.144298"
|
|
420
|
-
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
|
|
421
|
-
xml:space="preserve"><tspan
|
|
422
|
-
style="font-size:10px;line-height:1.25;font-family:sans-serif"
|
|
423
|
-
y="75.675293"
|
|
424
|
-
x="-11.144298"
|
|
425
|
-
id="tspan4357-8"
|
|
426
|
-
sodipodi:role="line">2</tspan></text>
|
|
427
|
-
<text
|
|
428
|
-
id="text4355-4"
|
|
429
|
-
y="60.142918"
|
|
430
|
-
x="-11.066173"
|
|
431
|
-
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
|
|
432
|
-
xml:space="preserve"><tspan
|
|
433
|
-
style="font-size:10px;line-height:1.25;font-family:sans-serif"
|
|
434
|
-
y="60.142918"
|
|
435
|
-
x="-11.066173"
|
|
436
|
-
id="tspan4357-3"
|
|
437
|
-
sodipodi:role="line">3</tspan></text>
|
|
438
|
-
<text
|
|
439
|
-
id="text4355-1"
|
|
440
|
-
y="44.610538"
|
|
441
|
-
x="-11.266369"
|
|
442
|
-
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
|
|
443
|
-
xml:space="preserve"><tspan
|
|
444
|
-
style="font-size:10px;line-height:1.25;font-family:sans-serif"
|
|
445
|
-
y="44.610538"
|
|
446
|
-
x="-11.266369"
|
|
447
|
-
id="tspan4357-4"
|
|
448
|
-
sodipodi:role="line">4</tspan></text>
|
|
449
|
-
<text
|
|
450
|
-
id="text4355-9"
|
|
451
|
-
y="108.08236"
|
|
452
|
-
x="5.9353313"
|
|
453
|
-
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
|
|
454
|
-
xml:space="preserve"><tspan
|
|
455
|
-
style="font-size:10px;line-height:1.25;font-family:sans-serif"
|
|
456
|
-
y="108.08236"
|
|
457
|
-
x="5.9353313"
|
|
458
|
-
id="tspan4357-2"
|
|
459
|
-
sodipodi:role="line">a</tspan></text>
|
|
460
|
-
<text
|
|
461
|
-
id="text4355-0"
|
|
462
|
-
y="108.08236"
|
|
463
|
-
x="21.659466"
|
|
464
|
-
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
|
|
465
|
-
xml:space="preserve"><tspan
|
|
466
|
-
style="font-size:10px;line-height:1.25;font-family:sans-serif"
|
|
467
|
-
y="108.08236"
|
|
468
|
-
x="21.659466"
|
|
469
|
-
id="tspan4357-6"
|
|
470
|
-
sodipodi:role="line">b</tspan></text>
|
|
471
|
-
<text
|
|
472
|
-
id="text4355-89"
|
|
473
|
-
y="108.08236"
|
|
474
|
-
x="37.38361"
|
|
475
|
-
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
|
|
476
|
-
xml:space="preserve"><tspan
|
|
477
|
-
style="font-size:10px;line-height:1.25;font-family:sans-serif"
|
|
478
|
-
y="108.08236"
|
|
479
|
-
x="37.38361"
|
|
480
|
-
id="tspan4357-26"
|
|
481
|
-
sodipodi:role="line">c</tspan></text>
|
|
482
|
-
<text
|
|
483
|
-
id="text4355-6"
|
|
484
|
-
y="108.08236"
|
|
485
|
-
x="53.107746"
|
|
486
|
-
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#b3b3b3;fill-opacity:1;stroke:none"
|
|
487
|
-
xml:space="preserve"><tspan
|
|
488
|
-
style="font-size:10px;line-height:1.25;font-family:sans-serif"
|
|
489
|
-
y="108.08236"
|
|
490
|
-
x="53.107746"
|
|
491
|
-
id="tspan4357-49"
|
|
492
|
-
sodipodi:role="line">d</tspan></text>
|
|
493
|
-
<g
|
|
494
|
-
transform="translate(32.000002,80)"
|
|
495
|
-
id="g6346"
|
|
496
|
-
style="fill:none;stroke:none">
|
|
497
|
-
<polygon
|
|
498
|
-
id="polygon6348"
|
|
499
|
-
points="0,0 16,0 16,16 0,16 " />
|
|
500
|
-
<path
|
|
501
|
-
d="M 8,1 C 4.136,1 1,4.136 1,8 c 0,3.864 3.136,7 7,7 3.864,0 7,-3.136 7,-7 C 15,4.136 11.864,1 8,1 Z M 2.5,8 C 2.5,4.968125 4.968125,2.5 8,2.5 c 3.031875,0 5.5,2.468125 5.5,5.5 0,3.031875 -2.468125,5.5 -5.5,5.5 C 4.968125,13.5 2.5,11.031875 2.5,8 Z M 9,12 V 7 H 7 v 5 z M 7,6 H 9 V 4 H 7 Z"
|
|
502
|
-
id="path6350"
|
|
503
|
-
inkscape:connector-curvature="0"
|
|
504
|
-
style="fill:#000000" />
|
|
505
|
-
</g>
|
|
506
|
-
<g
|
|
507
|
-
mask="url(#path4453-6-mask)"
|
|
508
|
-
transform="matrix(1.3997356,0,0,1.3934295,65.053845,81.020556)"
|
|
509
|
-
id="g4443-7">
|
|
510
|
-
<path
|
|
511
|
-
style="stroke:#c19600;stroke-width:2;stroke-linejoin:round"
|
|
512
|
-
inkscape:connector-curvature="0"
|
|
513
|
-
id="path4447-5"
|
|
514
|
-
d="m 61,9 4,-8 4,8 z"
|
|
515
|
-
transform="translate(-60)" />
|
|
516
|
-
<path
|
|
517
|
-
style="fill:#f4bd00;stroke:#f5bd00;stroke-width:1.5;stroke-linejoin:round"
|
|
518
|
-
inkscape:connector-curvature="0"
|
|
519
|
-
id="path4449-3"
|
|
520
|
-
d="m 61,9 4,-8 4,8 z"
|
|
521
|
-
transform="translate(-60)" />
|
|
522
|
-
<path
|
|
523
|
-
style="fill:#ad8601"
|
|
524
|
-
inkscape:connector-curvature="0"
|
|
525
|
-
id="path4451-5"
|
|
526
|
-
d="m 63.75,2.75 h 2.5 v 2.5 L 65.75,7 h -1.5 l -0.5,-1.75 v -2.5 m 0,5.25 h 2.5 v 1.25 h -2.5"
|
|
527
|
-
transform="translate(-60)" />
|
|
528
|
-
<mask
|
|
529
|
-
id="path4453-6-mask">
|
|
530
|
-
<rect
|
|
531
|
-
y="0"
|
|
532
|
-
x="0"
|
|
533
|
-
id="rect8990"
|
|
534
|
-
style="fill:#ffffff"
|
|
535
|
-
height="10"
|
|
536
|
-
width="10" />
|
|
537
|
-
<path
|
|
538
|
-
style="fill:#000000"
|
|
539
|
-
inkscape:connector-curvature="0"
|
|
540
|
-
id="path4453-6"
|
|
541
|
-
d="m 64,3 h 2 V 5.25 L 65.5,7 h -1 L 64,5.25 V 3 m 0,5 h 2 v 1 h -2"
|
|
542
|
-
transform="translate(-60)" />
|
|
543
|
-
</mask>
|
|
544
|
-
</g>
|
|
545
|
-
<g
|
|
546
|
-
mask="url(#path4287-3-mask)"
|
|
547
|
-
transform="matrix(1.36,0,0,1.34,65.300002,65.5)"
|
|
548
|
-
id="g4279-7">
|
|
549
|
-
<path
|
|
550
|
-
style="fill:url(#linearGradient5057)"
|
|
551
|
-
inkscape:connector-curvature="0"
|
|
552
|
-
id="path4283-0"
|
|
553
|
-
d="m 85,-4.7795e-7 c -2.76,0 -5,2.23999997795 -5,4.99999997795 0,2.76 2.24,5 5,5 2.76,0 5,-2.24 5,-5 C 90,2.2399995 87.76,-4.7795e-7 85,-4.7795e-7"
|
|
554
|
-
transform="translate(-80)" />
|
|
555
|
-
<path
|
|
556
|
-
style="fill:#2a53cd"
|
|
557
|
-
inkscape:connector-curvature="0"
|
|
558
|
-
id="path4285-9"
|
|
559
|
-
d="m 80.36,5 c 0,2.56 2.08,4.64 4.64,4.64 2.56,0 4.64,-2.08 4.64,-4.64 0,-2.56 -2.08,-4.64 -4.64,-4.64 -2.56,0 -4.64,2.08 -4.64,4.64"
|
|
560
|
-
transform="translate(-80)" />
|
|
561
|
-
<mask
|
|
562
|
-
id="path4287-3-mask">
|
|
563
|
-
<rect
|
|
564
|
-
y="0"
|
|
565
|
-
x="0"
|
|
566
|
-
id="rect8997"
|
|
567
|
-
style="fill:#ffffff"
|
|
568
|
-
height="10"
|
|
569
|
-
width="10" />
|
|
570
|
-
<path
|
|
571
|
-
style="fill:#000000"
|
|
572
|
-
inkscape:connector-curvature="0"
|
|
573
|
-
id="path4287-3"
|
|
574
|
-
d="m 83.93,2.14 c -0.03,-0.53 0.55,-0.97 1.06,-0.83 0.5,0.12 0.79,0.73 0.56,1.18 -0.2,0.44 -0.79,0.61 -1.2,0.36 C 84.09,2.71 83.93,2.43 83.93,2.14 Z m 1.7,5.46 H 86.3 V 8.13 H 83.41 V 7.6 h 0.66 V 3.99 H 83.41 V 3.46 h 2.22 z"
|
|
575
|
-
transform="translate(-80)" />
|
|
576
|
-
</mask>
|
|
577
|
-
<defs
|
|
578
|
-
id="defs4289-6">
|
|
579
|
-
<linearGradient
|
|
580
|
-
id="linearGradient3198">
|
|
581
|
-
<stop
|
|
582
|
-
id="stop3200"
|
|
583
|
-
offset="0"
|
|
584
|
-
stop-color="#606eda" />
|
|
585
|
-
<stop
|
|
586
|
-
id="stop3202"
|
|
587
|
-
offset="1"
|
|
588
|
-
stop-color="#021db2" />
|
|
589
|
-
</linearGradient>
|
|
590
|
-
<linearGradient
|
|
591
|
-
xlink:href="#sprite9_d-9"
|
|
592
|
-
gradientUnits="userSpaceOnUse"
|
|
593
|
-
gradientTransform="matrix(0.71429,0,0,0.71429,-0.714,-69.286)"
|
|
594
|
-
y2="104"
|
|
595
|
-
y1="104"
|
|
596
|
-
x2="127"
|
|
597
|
-
x1="113"
|
|
598
|
-
id="linearGradient3204" />
|
|
599
|
-
</defs>
|
|
600
|
-
</g>
|
|
601
|
-
<g
|
|
602
|
-
mask="url(#path4229-9-path4231-2-mask)"
|
|
603
|
-
transform="matrix(1.37,0,0,1.36,65.200002,49.3)"
|
|
604
|
-
id="g4221-1">
|
|
605
|
-
<path
|
|
606
|
-
style="fill:url(#linearGradient5055)"
|
|
607
|
-
inkscape:connector-curvature="0"
|
|
608
|
-
id="path4225-8"
|
|
609
|
-
d="m 25,-4.7795e-7 c -2.76,0 -5,2.23999997795 -5,4.99999997795 0,2.76 2.24,5 5,5 2.76,0 5,-2.24 5,-5 C 30,2.2399995 27.76,-4.7795e-7 25,-4.7795e-7"
|
|
610
|
-
transform="translate(-20)" />
|
|
611
|
-
<path
|
|
612
|
-
style="fill:#eb3941"
|
|
613
|
-
inkscape:connector-curvature="0"
|
|
614
|
-
id="path4227-7"
|
|
615
|
-
d="m 20.36,5 c 0,2.56 2.08,4.64 4.64,4.64 2.56,0 4.64,-2.08 4.64,-4.64 0,-2.56 -2.08,-4.64 -4.64,-4.64 -2.56,0 -4.64,2.08 -4.64,4.64"
|
|
616
|
-
transform="translate(-20)" />
|
|
617
|
-
<mask
|
|
618
|
-
id="path4229-9-path4231-2-mask">
|
|
619
|
-
<rect
|
|
620
|
-
y="0"
|
|
621
|
-
x="0"
|
|
622
|
-
id="rect9010"
|
|
623
|
-
style="fill:#ffffff"
|
|
624
|
-
height="10"
|
|
625
|
-
width="10" />
|
|
626
|
-
<path
|
|
627
|
-
style="stroke:#000000"
|
|
628
|
-
inkscape:connector-curvature="0"
|
|
629
|
-
id="path4229-9"
|
|
630
|
-
d="m 23,3 4,4"
|
|
631
|
-
transform="translate(-20)" />
|
|
632
|
-
<path
|
|
633
|
-
style="stroke:#000000"
|
|
634
|
-
inkscape:connector-curvature="0"
|
|
635
|
-
id="path4231-2"
|
|
636
|
-
d="M 27,3 23,7"
|
|
637
|
-
transform="translate(-20)" />
|
|
638
|
-
</mask>
|
|
639
|
-
<defs
|
|
640
|
-
id="defs4233-0">
|
|
641
|
-
<linearGradient
|
|
642
|
-
id="linearGradient3257">
|
|
643
|
-
<stop
|
|
644
|
-
id="stop3259"
|
|
645
|
-
offset="0"
|
|
646
|
-
stop-color="#d7687d" />
|
|
647
|
-
<stop
|
|
648
|
-
id="stop3261"
|
|
649
|
-
offset="1"
|
|
650
|
-
stop-color="#b21402" />
|
|
651
|
-
</linearGradient>
|
|
652
|
-
<linearGradient
|
|
653
|
-
xlink:href="#sprite6_b-6"
|
|
654
|
-
gradientUnits="userSpaceOnUse"
|
|
655
|
-
gradientTransform="matrix(0,-0.41667,-0.41667,0,25,10)"
|
|
656
|
-
x2="24"
|
|
657
|
-
id="linearGradient3263" />
|
|
658
|
-
</defs>
|
|
659
|
-
</g>
|
|
660
|
-
<g
|
|
661
|
-
transform="matrix(0.66666667,0,0,0.66666667,64.000002,32)"
|
|
662
|
-
id="g9271"
|
|
663
|
-
style="fill:#000000">
|
|
664
|
-
<path
|
|
665
|
-
inkscape:connector-curvature="0"
|
|
666
|
-
d="M 12,2 C 6.48,2 2,6.48 2,12 2,17.52 6.48,22 12,22 17.52,22 22,17.52 22,12 22,6.48 17.52,2 12,2 Z m 0,3 c 1.66,0 3,1.34 3,3 0,1.66 -1.34,3 -3,3 C 10.34,11 9,9.66 9,8 9,6.34 10.34,5 12,5 Z m 0,14.2 c -2.5,0 -4.71,-1.28 -6,-3.22 0.03,-1.99 4,-3.08 6,-3.08 1.99,0 5.97,1.09 6,3.08 -1.29,1.94 -3.5,3.22 -6,3.22 z"
|
|
667
|
-
id="path9261" />
|
|
668
|
-
<path
|
|
669
|
-
style="fill:none"
|
|
670
|
-
inkscape:connector-curvature="0"
|
|
671
|
-
d="M 0,0 H 24 V 24 H 0 Z"
|
|
672
|
-
id="path9263" />
|
|
673
|
-
</g>
|
|
674
|
-
<text
|
|
675
|
-
id="text5090"
|
|
676
|
-
y="28.11775"
|
|
677
|
-
x="-10.738435"
|
|
678
|
-
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:0.373333;stroke:none"
|
|
679
|
-
xml:space="preserve"><tspan
|
|
680
|
-
style="font-size:10px;line-height:1.25;font-family:sans-serif"
|
|
681
|
-
y="28.11775"
|
|
682
|
-
x="-10.738435"
|
|
683
|
-
id="tspan5092"
|
|
684
|
-
sodipodi:role="line">5</tspan></text>
|
|
685
|
-
<text
|
|
686
|
-
id="text5862"
|
|
687
|
-
y="107.69722"
|
|
688
|
-
x="68.649277"
|
|
689
|
-
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:0.351111;stroke:none"
|
|
690
|
-
xml:space="preserve"><tspan
|
|
691
|
-
style="font-size:10px;line-height:1.25;font-family:sans-serif"
|
|
692
|
-
y="107.69722"
|
|
693
|
-
x="68.649277"
|
|
694
|
-
id="tspan5864"
|
|
695
|
-
sodipodi:role="line">e</tspan></text>
|
|
696
|
-
<g
|
|
697
|
-
transform="scale(0.75)"
|
|
698
|
-
id="g5994"
|
|
699
|
-
style="fill:#000000">
|
|
700
|
-
<path
|
|
701
|
-
inkscape:connector-curvature="0"
|
|
702
|
-
d="M 87 33 h 2 v -2 h -2 z m 0 4 h 2 v -2 h -2 z m 0 -8 h 2 v -2 h -2 z m 4 4 h 14 v -2 h -14 z m 0 4 h 14 v -2 h -14 z m 0 -10 v 2 h 14 v -2 z"
|
|
703
|
-
id="path5984" />
|
|
704
|
-
<path
|
|
705
|
-
style="fill:none"
|
|
706
|
-
inkscape:connector-curvature="0"
|
|
707
|
-
d="M 87,20 h 24 v 24 h -24 z"
|
|
708
|
-
id="path5986" />
|
|
709
|
-
</g>
|
|
710
|
-
<g
|
|
711
|
-
transform="matrix(0.75,0,0,0.75,47.000002,79)"
|
|
712
|
-
id="g6079"
|
|
713
|
-
style="fill:#000000">
|
|
714
|
-
<path
|
|
715
|
-
style="fill:none"
|
|
716
|
-
inkscape:connector-curvature="0"
|
|
717
|
-
d="M 0,0 H 24 V 24 H 0 Z"
|
|
718
|
-
id="path6069" />
|
|
719
|
-
<path
|
|
720
|
-
inkscape:connector-curvature="0"
|
|
721
|
-
d="M 20,8 H 17.19 C 16.74,7.22 16.12,6.55 15.37,6.04 L 17,4.41 15.59,3 13.42,5.17 C 12.96,5.06 12.49,5 12,5 11.51,5 11.04,5.06 10.59,5.17 L 8.41,3 7,4.41 8.62,6.04 C 7.88,6.55 7.26,7.22 6.81,8 H 4 v 2 H 6.09 C 6.04,10.33 6,10.66 6,11 v 1 H 4 v 2 h 2 v 1 c 0,0.34 0.04,0.67 0.09,1 H 4 v 2 h 2.81 c 1.04,1.79 2.97,3 5.19,3 2.22,0 4.15,-1.21 5.19,-3 H 20 V 16 H 17.91 C 17.96,15.67 18,15.34 18,15 v -1 h 2 v -2 h -2 v -1 c 0,-0.34 -0.04,-0.67 -0.09,-1 H 20 Z m -6,8 h -4 v -2 h 4 z m 0,-4 h -4 v -2 h 4 z"
|
|
722
|
-
id="path6071" />
|
|
723
|
-
</g>
|
|
724
|
-
<g
|
|
725
|
-
transform="translate(48.000002,16)"
|
|
726
|
-
id="g6340"
|
|
727
|
-
style="fill:none;stroke:none">
|
|
728
|
-
<rect
|
|
729
|
-
id="rect6342"
|
|
730
|
-
x="0"
|
|
731
|
-
y="0"
|
|
732
|
-
width="16"
|
|
733
|
-
height="16"
|
|
734
|
-
style="opacity:0.2" />
|
|
735
|
-
<path
|
|
736
|
-
d="m 0.5,14 h 15 L 8,1 Z M 9,12 H 7 V 10 H 9 Z M 9,9 H 7 V 6 h 2 z"
|
|
737
|
-
id="path6344"
|
|
738
|
-
inkscape:connector-curvature="0"
|
|
739
|
-
style="fill:#000000" />
|
|
740
|
-
</g>
|
|
741
|
-
<text
|
|
742
|
-
id="text3111"
|
|
743
|
-
y="23.902472"
|
|
744
|
-
x="32.46965"
|
|
745
|
-
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
|
746
|
-
xml:space="preserve"><tspan
|
|
747
|
-
style="font-weight:bold;font-size:10px;line-height:1.25;font-family:sans-serif"
|
|
748
|
-
y="23.902472"
|
|
749
|
-
x="32.46965"
|
|
750
|
-
id="tspan3113"
|
|
751
|
-
sodipodi:role="line">A</tspan></text>
|
|
752
|
-
<text
|
|
753
|
-
id="text3115"
|
|
754
|
-
y="31.525425"
|
|
755
|
-
x="40.362785"
|
|
756
|
-
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
|
757
|
-
xml:space="preserve"><tspan
|
|
758
|
-
style="font-weight:bold;font-size:10px;line-height:1.25;font-family:sans-serif"
|
|
759
|
-
y="31.525425"
|
|
760
|
-
x="40.362785"
|
|
761
|
-
id="tspan3117"
|
|
762
|
-
sodipodi:role="line">B</tspan></text>
|
|
763
|
-
<path
|
|
764
|
-
sodipodi:nodetypes="ccccccc"
|
|
765
|
-
inkscape:connector-curvature="0"
|
|
766
|
-
id="path448"
|
|
767
|
-
d="m 37.955043,29.088794 c -1.914609,-0.291809 -2.119489,-0.899233 -2.237,-4.129445 H 34.49826 c 0.04662,3.855641 0.06137,5.297137 5.735435,5.257508 l 0.316769,-0.01434 -2.595652,-2.995518 c -0.01446,0.611794 -0.01486,1.270551 2.31e-4,1.881795 z" />
|
|
768
|
-
<g
|
|
769
|
-
transform="matrix(0.32,0,0,0.32,1.2171069e-6,16)"
|
|
770
|
-
style="fill:none;fill-rule:evenodd;stroke:none;stroke-width:1"
|
|
771
|
-
id="BackgroundSyncIcon">
|
|
772
|
-
<g
|
|
773
|
-
id="Sync-Icon">
|
|
774
|
-
<rect
|
|
775
|
-
id="Mask"
|
|
776
|
-
x="0"
|
|
777
|
-
y="0"
|
|
778
|
-
width="50"
|
|
779
|
-
height="50" />
|
|
780
|
-
<g
|
|
781
|
-
style="fill:#000000;fill-rule:nonzero"
|
|
782
|
-
id="Group"
|
|
783
|
-
transform="translate(8,2)">
|
|
784
|
-
<path
|
|
785
|
-
inkscape:connector-curvature="0"
|
|
786
|
-
d="m 21.939098,33.353403 4.42699,4.044699 C 23.680429,39.200531 20.460997,40.25 17,40.25 7.6111592,40.25 0,32.526912 0,23 c 0,-2.865443 0.68854129,-5.567703 1.9068985,-7.945722 3.722e-4,-7.26e-4 7.445e-4,-0.0015 0.00112,-0.0022 L 6.335865,19.097583 C 5.9027264,20.316125 5.6666667,21.63009 5.6666667,23 c 0,6.351275 5.0741063,11.5 11.3333333,11.5 1.770533,0 3.446239,-0.411971 4.939098,-1.146597 z m 5.704636,-6.394068 C 28.08984,25.724919 28.333333,24.391313 28.333333,23 28.333333,16.648725 23.259227,11.5 17,11.5 c -1.791763,0 -3.486411,0.42191 -4.992721,1.173162 L 7.5863091,8.6339629 C 10.281491,6.811921 13.518531,5.75 17,5.75 c 9.388841,0 17,7.723088 17,17.25 0,2.886982 -0.698932,5.60832 -1.934464,7.999293 z"
|
|
787
|
-
id="Combined-Shape" />
|
|
788
|
-
<polygon
|
|
789
|
-
id="Shape"
|
|
790
|
-
transform="rotate(180,21.722222,37.375)"
|
|
791
|
-
points="26.444444,46 26.444444,28.75 17,37.375 " />
|
|
792
|
-
<polygon
|
|
793
|
-
id="polygon4215"
|
|
794
|
-
points="17,17.25 17,0 7.5555556,8.625 " />
|
|
795
|
-
</g>
|
|
796
|
-
</g>
|
|
797
|
-
</g>
|
|
798
|
-
<g
|
|
799
|
-
transform="matrix(0.66666667,0,0,0.66666667,17.333335,16.666667)"
|
|
800
|
-
style="fill:none;fill-rule:evenodd;stroke:none;stroke-width:1"
|
|
801
|
-
id="Page-1">
|
|
802
|
-
<g
|
|
803
|
-
id="3px-Fetch"
|
|
804
|
-
transform="translate(-2,-1)">
|
|
805
|
-
<g
|
|
806
|
-
id="Fetch">
|
|
807
|
-
<rect
|
|
808
|
-
style="fill:#000000"
|
|
809
|
-
id="Rectangle"
|
|
810
|
-
x="6"
|
|
811
|
-
y="6"
|
|
812
|
-
width="3"
|
|
813
|
-
height="9" />
|
|
814
|
-
<rect
|
|
815
|
-
style="fill:#000000"
|
|
816
|
-
id="rect4301"
|
|
817
|
-
x="15"
|
|
818
|
-
y="9"
|
|
819
|
-
width="3"
|
|
820
|
-
height="9" />
|
|
821
|
-
<polygon
|
|
822
|
-
style="fill:#000000;fill-rule:nonzero"
|
|
823
|
-
id="Path"
|
|
824
|
-
points="2,7 6.125,7 8.875,7 13,7 7.5,1 " />
|
|
825
|
-
<polygon
|
|
826
|
-
style="fill:#000000;fill-rule:nonzero"
|
|
827
|
-
id="polygon4304"
|
|
828
|
-
transform="rotate(180,16.5,20)"
|
|
829
|
-
points="11,23 15.125,23 17.875,23 22,23 16.5,17 " />
|
|
830
|
-
<rect
|
|
831
|
-
id="rect4306"
|
|
832
|
-
x="0"
|
|
833
|
-
y="0"
|
|
834
|
-
width="24"
|
|
835
|
-
height="24" />
|
|
836
|
-
</g>
|
|
837
|
-
</g>
|
|
838
|
-
</g>
|
|
839
|
-
<text
|
|
840
|
-
id="text5090-3"
|
|
841
|
-
y="11.352402"
|
|
842
|
-
x="-10.546677"
|
|
843
|
-
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:0.373333;stroke:none"
|
|
844
|
-
xml:space="preserve"><tspan
|
|
845
|
-
style="font-size:10px;line-height:1.25;font-family:sans-serif"
|
|
846
|
-
y="11.352402"
|
|
847
|
-
x="-10.546677"
|
|
848
|
-
id="tspan5092-6"
|
|
849
|
-
sodipodi:role="line">6</tspan></text>
|
|
850
|
-
<text
|
|
851
|
-
id="text5862-7"
|
|
852
|
-
y="108.23496"
|
|
853
|
-
x="85.724823"
|
|
854
|
-
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:0.351111;stroke:none"
|
|
855
|
-
xml:space="preserve"><tspan
|
|
856
|
-
style="font-size:10px;line-height:1.25;font-family:sans-serif"
|
|
857
|
-
y="108.23496"
|
|
858
|
-
x="85.724823"
|
|
859
|
-
id="tspan5864-5"
|
|
860
|
-
sodipodi:role="line">f</tspan></text>
|
|
861
|
-
<g
|
|
862
|
-
transform="matrix(0.58333333,0,0,0.58333333,1.0000012,1.0000001)"
|
|
863
|
-
id="g259"
|
|
864
|
-
style="fill:#000000">
|
|
865
|
-
<path
|
|
866
|
-
style="fill:none"
|
|
867
|
-
inkscape:connector-curvature="0"
|
|
868
|
-
d="M 0,0 H 24 V 24 H 0 Z"
|
|
869
|
-
id="path245" />
|
|
870
|
-
<path
|
|
871
|
-
inkscape:connector-curvature="0"
|
|
872
|
-
d="M 19.35,10.04 C 18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14 c 0,3.31 2.69,6 6,6 h 13 c 2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96 z"
|
|
873
|
-
id="path247" />
|
|
874
|
-
</g>
|
|
875
|
-
<g
|
|
876
|
-
transform="matrix(0.71794872,0,0,0.71794872,15.428207,-0.79487184)"
|
|
877
|
-
id="g320"
|
|
878
|
-
style="fill:#000000">
|
|
879
|
-
<path
|
|
880
|
-
inkscape:connector-curvature="0"
|
|
881
|
-
d="m 12,22 c 1.1,0 2,-0.9 2,-2 h -4 c 0,1.1 0.89,2 2,2 z m 6,-6 V 11 C 18,7.93 16.36,5.36 13.5,4.68 V 4 C 13.5,3.17 12.83,2.5 12,2.5 11.17,2.5 10.5,3.17 10.5,4 V 4.68 C 7.63,5.36 6,7.92 6,11 v 5 l -2,2 v 1 h 16 v -1 z"
|
|
882
|
-
id="path309" />
|
|
883
|
-
</g>
|
|
884
|
-
<g
|
|
885
|
-
transform="matrix(0.66666667,0,0,0.66666667,32.000002,0)"
|
|
886
|
-
id="g232"
|
|
887
|
-
style="fill:#000000">
|
|
888
|
-
<path
|
|
889
|
-
style="fill:none"
|
|
890
|
-
inkscape:connector-curvature="0"
|
|
891
|
-
d="M 0,0 H 24 V 24 H 0 Z"
|
|
892
|
-
id="path218" />
|
|
893
|
-
<path
|
|
894
|
-
inkscape:connector-curvature="0"
|
|
895
|
-
d="M 20,4 H 4 C 2.89,4 2.01,4.89 2.01,6 L 2,18 c 0,1.11 0.89,2 2,2 h 16 c 1.11,0 2,-0.89 2,-2 V 6 C 22,4.89 21.11,4 20,4 Z m 0,14 H 4 V 12 H 20 Z M 20,8 H 4 V 6 h 16 z"
|
|
896
|
-
id="path220" />
|
|
897
|
-
</g>
|
|
898
|
-
<g
|
|
899
|
-
transform="matrix(0.66666667,0,0,0.66666667,48.000002,0)"
|
|
900
|
-
id="g306">
|
|
901
|
-
<path
|
|
902
|
-
inkscape:connector-curvature="0"
|
|
903
|
-
d="M 11.99,2 C 6.47,2 2,6.48 2,12 2,17.52 6.47,22 11.99,22 17.52,22 22,17.52 22,12 22,6.48 17.52,2 11.99,2 Z M 12,20 C 7.58,20 4,16.42 4,12 4,7.58 7.58,4 12,4 c 4.42,0 8,3.58 8,8 0,4.42 -3.58,8 -8,8 z"
|
|
904
|
-
id="path289" />
|
|
905
|
-
<path
|
|
906
|
-
style="fill:none"
|
|
907
|
-
inkscape:connector-curvature="0"
|
|
908
|
-
d="M 0,0 H 24 V 24 H 0 Z"
|
|
909
|
-
id="path291" />
|
|
910
|
-
<path
|
|
911
|
-
inkscape:connector-curvature="0"
|
|
912
|
-
d="M 12.5,7 H 11 v 6 l 5.25,3.15 0.75,-1.23 -4.5,-2.67 z"
|
|
913
|
-
id="path293" />
|
|
914
|
-
</g>
|
|
915
|
-
<g
|
|
916
|
-
transform="translate(80.000002,16)"
|
|
917
|
-
id="g1891"
|
|
918
|
-
style="fill:#000000">
|
|
919
|
-
<path
|
|
920
|
-
inkscape:connector-curvature="0"
|
|
921
|
-
fill-rule="evenodd"
|
|
922
|
-
clip-rule="evenodd"
|
|
923
|
-
d="M 5,2.5 C 5,1.67157 5.67157,1 6.5,1 h 7 C 14.3284,1 15,1.67157 15,2.5 v 6 C 15,9.32843 14.3284,10 13.5,10 h -1 v 2.5 C 12.5,13.3284 11.8284,14 11,14 H 2.5 C 1.67157,14 1,13.3284 1,12.5 v -8 C 1,3.67157 1.67157,3 2.5,3 H 5 Z m 1.5,0 h 7 v 6 h -7 z M 5,6 H 2.5 v 6.5 H 11 V 10 H 6.5 C 5.67157,10 5,9.32843 5,8.5 Z"
|
|
924
|
-
id="path1879" />
|
|
925
|
-
</g>
|
|
926
|
-
<g
|
|
927
|
-
transform="translate(80.000002,32)"
|
|
928
|
-
id="g1875"
|
|
929
|
-
style="fill:#000000">
|
|
930
|
-
<path
|
|
931
|
-
inkscape:connector-curvature="0"
|
|
932
|
-
fill-rule="evenodd"
|
|
933
|
-
clip-rule="evenodd"
|
|
934
|
-
d="m 10.35,14 0.9882,1.8529 1.3236,-0.7058 L 4.66176,0.147059 3.33824,0.852941 3.95,2 H 2.5 C 1.67157,2 1,2.67157 1,3.5 v 9 C 1,13.3284 1.67157,14 2.5,14 Z M 9.55,12.5 8.75,11 H 5 V 6 H 6.08333 L 5.55,5 H 2.5 v 7.5 z M 6.61667,7 H 6 v 3 h 2.21667 z"
|
|
935
|
-
id="path1857" />
|
|
936
|
-
<path
|
|
937
|
-
inkscape:connector-curvature="0"
|
|
938
|
-
d="m 14.5,12.5 c 0,0.5627 -0.3098,1.053 -0.7682,1.3097 L 13,12.4375 V 5 H 9.03333 l -1.6,-3 H 13 c 0.8284,0 1.5,0.67157 1.5,1.5 z"
|
|
939
|
-
id="path1859" />
|
|
940
|
-
<path
|
|
941
|
-
inkscape:connector-curvature="0"
|
|
942
|
-
d="M 12,10.5625 11,8.6875 V 7 H 10.1 L 9.56667,6 H 12 Z"
|
|
943
|
-
id="path1861" />
|
|
944
|
-
</g>
|
|
945
|
-
<g
|
|
946
|
-
id="g1853"
|
|
947
|
-
style="fill:#000000">
|
|
948
|
-
<path
|
|
949
|
-
inkscape:connector-curvature="0"
|
|
950
|
-
fill-rule="evenodd"
|
|
951
|
-
clip-rule="evenodd"
|
|
952
|
-
d="M 85,6 h 7 v 5 h -7 z m 1,1 h 5 v 3 h -5 Z"
|
|
953
|
-
id="path1838" />
|
|
954
|
-
<path
|
|
955
|
-
inkscape:connector-curvature="0"
|
|
956
|
-
fill-rule="evenodd"
|
|
957
|
-
clip-rule="evenodd"
|
|
958
|
-
d="M 82.5,2 C 81.67157,2 81,2.67157 81,3.5 v 9 C 81,13.3284 81.67157,14 82.5,14 H 93 c 0.8284,0 1.5,-0.6716 1.5,-1.5 v -9 C 94.5,2.67157 93.8284,2 93,2 Z m 0,10.5 V 5 H 93 v 7.5 z"
|
|
959
|
-
id="path1840" />
|
|
960
|
-
</g>
|
|
961
|
-
<g
|
|
962
|
-
transform="translate(64.000002)"
|
|
963
|
-
id="g1834"
|
|
964
|
-
style="fill:#000000">
|
|
965
|
-
<path
|
|
966
|
-
inkscape:connector-curvature="0"
|
|
967
|
-
fill-rule="evenodd"
|
|
968
|
-
clip-rule="evenodd"
|
|
969
|
-
d="M 1,3.5 C 1,2.67157 1.67157,2 2.5,2 H 13 c 0.8284,0 1.5,0.67157 1.5,1.5 v 9 C 14.5,13.3284 13.8284,14 13,14 H 2.5 C 1.67157,14 1,13.3284 1,12.5 Z M 2.5,5 v 7.5 H 13 V 5 Z"
|
|
970
|
-
id="path1822" />
|
|
971
|
-
</g>
|
|
972
|
-
<g
|
|
973
|
-
transform="translate(80.000002,48)"
|
|
974
|
-
id="g361"
|
|
975
|
-
style="fill:#000000">
|
|
976
|
-
<path
|
|
977
|
-
inkscape:connector-curvature="0"
|
|
978
|
-
d="M 5.14645,5.64645 2.79289,8 5.14645,10.3536 5.85355,9.64645 4.20711,8 5.85355,6.35355 Z"
|
|
979
|
-
id="path341" />
|
|
980
|
-
<path
|
|
981
|
-
inkscape:connector-curvature="0"
|
|
982
|
-
d="m 9.48507,4.12127 -2,8.00003 -0.97014,-0.2426 2,-7.99997 z"
|
|
983
|
-
id="path343" />
|
|
984
|
-
<path
|
|
985
|
-
inkscape:connector-curvature="0"
|
|
986
|
-
d="M 10.8536,5.64645 13.2071,8 10.8536,10.3536 10.1464,9.64645 11.7929,8 10.1464,6.35355 Z"
|
|
987
|
-
id="path345" />
|
|
988
|
-
<path
|
|
989
|
-
inkscape:connector-curvature="0"
|
|
990
|
-
fill-rule="evenodd"
|
|
991
|
-
clip-rule="evenodd"
|
|
992
|
-
d="m 15,8 c 0,3.866 -3.134,7 -7,7 C 4.13401,15 1,11.866 1,8 1,4.13401 4.13401,1 8,1 c 3.866,0 7,3.13401 7,7 z m -1,0 c 0,3.3137 -2.6863,6 -6,6 C 4.68629,14 2,11.3137 2,8 2,4.68629 4.68629,2 8,2 c 3.3137,0 6,2.68629 6,6 z"
|
|
993
|
-
id="path347" />
|
|
994
|
-
</g>
|
|
995
|
-
<g
|
|
996
|
-
transform="translate(80.000002,64)"
|
|
997
|
-
id="g374"
|
|
998
|
-
style="fill:#000000">
|
|
999
|
-
<path
|
|
1000
|
-
inkscape:connector-curvature="0"
|
|
1001
|
-
fill-rule="evenodd"
|
|
1002
|
-
clip-rule="evenodd"
|
|
1003
|
-
d="m 15,8 c 0,3.866 -3.134,7 -7,7 C 4.13401,15 1,11.866 1,8 1,4.13401 4.13401,1 8,1 c 3.866,0 7,3.13401 7,7 z m -5,5.6586 C 9.37444,13.8797 8.70127,14 8,14 4.68629,14 2,11.3137 2,8 2,5.77915 3.2066,3.84012 5,2.80269 v 6.4902 L 3.85355,8.14645 3.14645,8.85355 5.5,11.2071 7.85355,8.85355 7.14645,8.14645 6,9.29289 V 2.34141 C 6.62556,2.12031 7.29873,2 8,2 c 3.3137,0 6,2.68629 6,6 0,2.2208 -1.2066,4.1599 -3,5.1973 V 6.70711 L 12.1464,7.85355 12.8536,7.14645 10.5,4.79289 8.14645,7.14645 8.85355,7.85355 10,6.70711 Z"
|
|
1004
|
-
id="path363" />
|
|
1005
|
-
</g>
|
|
1006
|
-
<g
|
|
1007
|
-
style="fill:#000000"
|
|
1008
|
-
id="g237"
|
|
1009
|
-
transform="translate(80,80)">
|
|
1010
|
-
<path
|
|
1011
|
-
inkscape:connector-curvature="0"
|
|
1012
|
-
id="path225"
|
|
1013
|
-
d="M 12.875,12.4796 V 5.47959 C 9.41663,5.47959 5.95833,5.47835 2.5,5.5 v 6.9796 z M 2,2 C 1.44772,2 1,2.44772 1,3 v 9.4796 c 0,0.8284 0.67157,1.5 1.5,1.5 h 10.375 c 0.8284,0 1.5,-0.6716 1.5,-1.5 V 5.47959 c 0,-0.82843 -0.6716,-1.5 -1.5,-1.5 H 7.9898 C 7.44315,3.97959 7,3.53644 7,2.9898 7,2.44315 6.55685,2 6.0102,2 Z"
|
|
1014
|
-
clip-rule="evenodd"
|
|
1015
|
-
fill-rule="evenodd" />
|
|
1016
|
-
</g>
|
|
1017
|
-
<g
|
|
1018
|
-
style="fill:#000000"
|
|
1019
|
-
id="g1875-3"
|
|
1020
|
-
transform="translate(96,31.999941)">
|
|
1021
|
-
<path
|
|
1022
|
-
sodipodi:nodetypes="ccccccsssscccccc"
|
|
1023
|
-
inkscape:connector-curvature="0"
|
|
1024
|
-
id="path1857-6"
|
|
1025
|
-
d="m 10.35,14 0.9882,1.8529 1.3236,-0.7058 L 4.66176,0.147059 3.33824,0.852941 3.95,2 H 2.5 C 1.67157,2 1,2.67157 1,3.5 v 9 C 1,13.3284 1.67157,14 2.5,14 Z m -0.8,-1.5 c -4,-7.5 0,0 -4,-7.5 H 2.5 v 7.5 z"
|
|
1026
|
-
clip-rule="evenodd"
|
|
1027
|
-
fill-rule="evenodd" />
|
|
1028
|
-
<path
|
|
1029
|
-
inkscape:connector-curvature="0"
|
|
1030
|
-
id="path1859-7"
|
|
1031
|
-
d="m 14.5,12.5 c 0,0.5627 -0.3098,1.053 -0.7682,1.3097 L 13,12.4375 V 5 H 9.03333 l -1.6,-3 H 13 c 0.8284,0 1.5,0.67157 1.5,1.5 z" />
|
|
1032
|
-
</g>
|
|
1033
|
-
<text
|
|
1034
|
-
xml:space="preserve"
|
|
1035
|
-
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:0.351111;stroke:none"
|
|
1036
|
-
x="101.22978"
|
|
1037
|
-
y="107.70163"
|
|
1038
|
-
id="text5862-7-3"><tspan
|
|
1039
|
-
sodipodi:role="line"
|
|
1040
|
-
id="tspan5864-5-5"
|
|
1041
|
-
x="101.22978"
|
|
1042
|
-
y="107.70163"
|
|
1043
|
-
style="font-size:10px;line-height:1.25;font-family:sans-serif">g</tspan></text>
|
|
1044
|
-
<g
|
|
1045
|
-
style="fill:#000000"
|
|
1046
|
-
id="g236"
|
|
1047
|
-
transform="matrix(1,0,0,-1,96,96)">
|
|
1048
|
-
<path
|
|
1049
|
-
style="stroke-width:0.999999"
|
|
1050
|
-
id="path224"
|
|
1051
|
-
d="m 14,8 c 0,3.3137 -2.6863,6 -6,6 C 4.68629,14 2,11.3137 2,8 2,4.68629 4.68629,2 8,2 c 3.3137,0 6,2.68629 6,6 z m 1,0 c 0,3.866 -3.134,7 -7,7 C 4.13401,15 1,11.866 1,8 1,4.13401 4.13401,1 8,1 c 3.866,0 7,3.13401 7,7 z M 5,6 h 5.0716 l 1.6363,2 -1.6363,2 H 5 Z M 4,6 C 4,5.4477201 4.44772,5.0000001 5,5.0000001 h 5.0716 c 0.2999,0 0.584,0.1346298 0.7739,0.3667599 l 1.6364,2 c 0.3014,0.3683699 0.3014,0.8981101 0,1.26648 L 10.8455,10.6332 C 10.6556,10.8654 10.3715,11 10.0716,11 H 5 C 4.44771,11 4,10.5523 4,10 Z"
|
|
1052
|
-
clip-rule="evenodd"
|
|
1053
|
-
fill-rule="evenodd" />
|
|
1054
|
-
</g>
|
|
1055
|
-
<g
|
|
1056
|
-
transform="translate(96,64)"
|
|
1057
|
-
id="g216"
|
|
1058
|
-
style="fill:#000000">
|
|
1059
|
-
<path
|
|
1060
|
-
d="M 8,0.5 C 3.86,0.5 0.5,3.86 0.5,8 c 0,4.14 3.36,7.5 7.5,7.5 4.14,0 7.5,-3.36 7.5,-7.5 C 15.5,3.86 12.14,0.5 8,0.5 Z M 8,14 C 4.6925,14 2,11.3075 2,8 2,4.6925 4.6925,2 8,2 c 3.3075,0 6,2.6925 6,6 0,3.3075 -2.6925,6 -6,6 z M 6.5,9.65 4.55,7.7 3.5,8.75 l 3,3 6,-6 -1.05,-1.05 z"
|
|
1061
|
-
id="path204" />
|
|
1062
|
-
</g>
|
|
1063
|
-
<g
|
|
1064
|
-
transform="translate(96,48)"
|
|
1065
|
-
id="g233"
|
|
1066
|
-
style="fill:#000000">
|
|
1067
|
-
<path
|
|
1068
|
-
d="M 8,0.5 C 3.86,0.5 0.5,3.86 0.5,8 c 0,4.14 3.36,7.5 7.5,7.5 4.14,0 7.5,-3.36 7.5,-7.5 C 15.5,3.86 12.14,0.5 8,0.5 Z M 8,14 C 4.685,14 2,11.315 2,8 2,6.6125 2.4725,5.3375 3.2675,4.325 l 8.4075,8.4075 C 10.6625,13.5275 9.3875,14 8,14 Z M 12.7325,11.675 4.325,3.2675 C 5.3375,2.4725 6.6125,2 8,2 c 3.315,0 6,2.685 6,6 0,1.3875 -0.4725,2.6625 -1.2675,3.675 z"
|
|
1069
|
-
id="path220-3" />
|
|
1070
|
-
</g>
|
|
1071
|
-
<g
|
|
1072
|
-
transform="translate(96,16)"
|
|
1073
|
-
id="g249"
|
|
1074
|
-
style="fill:#000000">
|
|
1075
|
-
<path
|
|
1076
|
-
d="m 7.25,10.25 h 1.5 v 1.5 h -1.5 z m 0,-6 h 1.5 v 4.5 h -1.5 Z M 7.9925,0.5 C 3.8525,0.5 0.5,3.86 0.5,8 c 0,4.14 3.3525,7.5 7.4925,7.5 C 12.14,15.5 15.5,12.14 15.5,8 15.5,3.86 12.14,0.5 7.9925,0.5 Z M 8,14 C 4.685,14 2,11.315 2,8 2,4.685 4.685,2 8,2 c 3.315,0 6,2.685 6,6 0,3.315 -2.685,6 -6,6 z"
|
|
1077
|
-
id="path237" />
|
|
1078
|
-
</g>
|
|
1079
|
-
<g
|
|
1080
|
-
style="fill:#000000"
|
|
1081
|
-
id="g222"
|
|
1082
|
-
transform="translate(96)">
|
|
1083
|
-
<path
|
|
1084
|
-
id="path210"
|
|
1085
|
-
d="M 13.3333,1.33334 H 2.66665 c -0.73334,0 -1.32667,0.6 -1.32667,1.33333 L 1.33331,14.6667 3.99998,12 h 9.33332 c 0.7333,0 1.3333,-0.6 1.3333,-1.3333 V 2.66667 c 0,-0.73333 -0.6,-1.33333 -1.3333,-1.33333 z m 0,9.33336 H 3.44665 L 3.05331,11.06 2.66665,11.4467 V 2.66667 H 13.3333 Z M 7.33331,8 h 1.5 V 9.33334 H 7.33331 Z m 0,-4 h 1.5 v 3 h -1.5 Z" />
|
|
1086
|
-
<text
|
|
1087
|
-
id="text538"
|
|
1088
|
-
y="-25.168846"
|
|
1089
|
-
x="-114.70573"
|
|
1090
|
-
style="font-style:normal;font-weight:normal;font-size:5.33333px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none"
|
|
1091
|
-
xml:space="preserve"><tspan
|
|
1092
|
-
y="-25.168846"
|
|
1093
|
-
x="-114.70573"
|
|
1094
|
-
id="tspan536"
|
|
1095
|
-
sodipodi:role="line">Sprites are deprecated, do not modify this file.</tspan><tspan
|
|
1096
|
-
id="tspan540"
|
|
1097
|
-
y="-18.50218"
|
|
1098
|
-
x="-114.70573"
|
|
1099
|
-
sodipodi:role="line">See readme in front_end/Images for the new workflow.</tspan></text>
|
|
1100
|
-
</g>
|
|
1101
|
-
</svg>
|