@humanforest/nuxt-layer 0.1.0
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 +67 -0
- package/README.md +208 -0
- package/app.config.ts +10 -0
- package/assets/icons/forest/bike-asterisk.svg +21 -0
- package/assets/icons/forest/bike-down.svg +19 -0
- package/assets/icons/forest/bike-off.svg +20 -0
- package/assets/icons/forest/bike-up.svg +19 -0
- package/assets/icons/forest/bike-x.svg +19 -0
- package/assets/icons/forest/bike.svg +18 -0
- package/assets/icons/forest/mark-fill.svg +6 -0
- package/assets/icons/forest/mark.svg +6 -0
- package/assets/icons/forest/parking.svg +3 -0
- package/assets/icons/forest/star-fill.svg +4 -0
- package/assets/icons/forest/star.svg +4 -0
- package/assets/icons/forest/traffic-light-caution.svg +8 -0
- package/assets/icons/forest/traffic-light-go.svg +8 -0
- package/assets/icons/forest/traffic-light-lit.svg +8 -0
- package/assets/icons/forest/traffic-light-stop.svg +8 -0
- package/assets/icons/forest/traffic-light.svg +8 -0
- package/nuxt.config.ts +81 -0
- package/package.json +35 -0
- package/packages/charts/src/FBoroughShape.vue +52 -0
- package/packages/charts/src/FCalendarGrid.vue +332 -0
- package/packages/charts/src/FCellLegend.vue +54 -0
- package/packages/charts/src/FChartFrame.vue +201 -0
- package/packages/charts/src/FChartFrameSingle.vue +91 -0
- package/packages/charts/src/FChartLegend.vue +26 -0
- package/packages/charts/src/FDistributionBar.vue +224 -0
- package/packages/charts/src/FDottedMap.vue +335 -0
- package/packages/charts/src/FLondonMap.vue +399 -0
- package/packages/charts/src/FSparkline.vue +198 -0
- package/packages/charts/src/FStatusTrack.vue +151 -0
- package/packages/charts/src/cellSize.ts +46 -0
- package/packages/charts/src/distribution.ts +99 -0
- package/packages/charts/src/engine.ts +15 -0
- package/packages/charts/src/forestTooltip.ts +110 -0
- package/packages/charts/src/fromCategories.ts +43 -0
- package/packages/charts/src/index.ts +87 -0
- package/packages/charts/src/londonAreas.ts +75 -0
- package/packages/charts/src/londonGrid.ts +67 -0
- package/packages/charts/src/motionDuration.ts +49 -0
- package/packages/charts/src/presets.ts +143 -0
- package/packages/charts/src/resolveVar.ts +21 -0
- package/packages/charts/src/snapTooltip.ts +154 -0
- package/packages/charts/src/tooltipStandIn.ts +58 -0
- package/packages/charts/src/useCellScale.ts +155 -0
- package/packages/charts/src/useChartPalette.ts +61 -0
- package/packages/charts/src/useChartRepaintKey.ts +22 -0
- package/packages/charts/src/useThemeVersion.ts +17 -0
- package/packages/frames/src/FBrowserFrame.vue +53 -0
- package/packages/frames/src/FDeviceFrame.vue +242 -0
- package/packages/frames/src/FFitFrame.vue +83 -0
- package/packages/frames/src/art/iphone-11.svg +124 -0
- package/packages/frames/src/art/iphone-12.svg +601 -0
- package/packages/frames/src/art/iphone-13-pro.svg +820 -0
- package/packages/frames/src/art/iphone-13.svg +849 -0
- package/packages/frames/src/art/iphone-14.svg +681 -0
- package/packages/frames/src/art/iphone-15-pro.svg +633 -0
- package/packages/frames/src/art/iphone-15.svg +713 -0
- package/packages/frames/src/art/iphone-16-plus.svg +685 -0
- package/packages/frames/src/art/iphone-16-pro-max.svg +611 -0
- package/packages/frames/src/art/iphone-16-pro.svg +631 -0
- package/packages/frames/src/art/iphone-16.svg +713 -0
- package/packages/frames/src/art/iphone-17-pro-max.svg +355 -0
- package/packages/frames/src/art/iphone-17.svg +305 -0
- package/packages/frames/src/art/iphone-air.svg +389 -0
- package/packages/frames/src/art/iphone-se-3.svg +473 -0
- package/packages/frames/src/art/iphone-x.svg +652 -0
- package/packages/frames/src/art/pixel-10-pro-xl.svg +32 -0
- package/packages/frames/src/art/pixel-10-pro.svg +32 -0
- package/packages/frames/src/art/pixel-10.svg +32 -0
- package/packages/frames/src/art/pixel-8-pro.svg +208 -0
- package/packages/frames/src/art/pixel-8.svg +208 -0
- package/packages/frames/src/art/pixel-8a.svg +8 -0
- package/packages/frames/src/art/pixel-9-pro-xl.svg +32 -0
- package/packages/frames/src/art/pixel-9-pro.svg +34 -0
- package/packages/frames/src/art/pixel-9a.svg +25 -0
- package/packages/frames/src/art.ts +29 -0
- package/packages/frames/src/devices.ts +337 -0
- package/packages/frames/src/index.ts +15 -0
- package/packages/tokens/geo/london-boroughs.json +1 -0
- package/packages/tokens/geo/london-dots-coarse.json +1 -0
- package/packages/tokens/geo/london-dots-fine.json +1 -0
- package/packages/tokens/geo/london-dots-medium.json +1 -0
- package/packages/tokens/geo/london-dots-ultra.json +1 -0
- package/packages/tokens/geo/london-wards.json +1 -0
- package/packages/tokens/glyphs/glyphs.json +1 -0
- package/packages/tokens/logos/f-rot.svg +4 -0
- package/packages/tokens/logos/f.svg +4 -0
- package/packages/tokens/logos/favicon-c2w.svg +9 -0
- package/packages/tokens/logos/favicon-console.svg +9 -0
- package/packages/tokens/logos/favicon-ds.svg +9 -0
- package/packages/tokens/logos/favicon-fleet.svg +9 -0
- package/packages/tokens/logos/favicon-flex.svg +9 -0
- package/packages/tokens/logos/favicon-plus.svg +9 -0
- package/packages/tokens/logos/favicon-radar.svg +9 -0
- package/packages/tokens/logos/favicon-tower.svg +9 -0
- package/packages/tokens/logos/lockup-horizontal.svg +17 -0
- package/packages/tokens/logos/lockup-vertical.svg +17 -0
- package/packages/tokens/logos/mark-mono.svg +4 -0
- package/packages/tokens/logos/mark.svg +7 -0
- package/packages/tokens/logos/wordmark.svg +9 -0
- package/packages/tokens/src/colourEngine.ts +604 -0
- package/packages/tokens/src/glyphs.ts +127 -0
- package/packages/tokens/src/logo.ts +50 -0
- package/packages/tokens/src/subbrands.ts +44 -0
- package/packages/tokens/src/sublogo.ts +80 -0
- package/packages/ui/icons/forest/map/forest-place-count.svg +21 -0
- package/packages/ui/icons/forest/map/forest-place-marker.svg +17 -0
- package/packages/ui/icons/forest/map/forest-vehicle-marker.svg +73 -0
- package/packages/ui/icons/forest/map/manifest.json +373 -0
- package/packages/ui/icons/forest/map/place-count-manifest.json +83 -0
- package/packages/ui/icons/forest/map/place-manifest.json +74 -0
- package/packages/ui/src/address/address.ts +125 -0
- package/packages/ui/src/address/autofill.ts +78 -0
- package/packages/ui/src/address/geocode.ts +55 -0
- package/packages/ui/src/address/index.ts +31 -0
- package/packages/ui/src/address/validate.ts +91 -0
- package/packages/ui/src/canvas/FCanvasCard.vue +97 -0
- package/packages/ui/src/canvas/FCanvasControl.vue +121 -0
- package/packages/ui/src/canvas/FCanvasControlGroup.vue +100 -0
- package/packages/ui/src/canvas/FCanvasFlyout.vue +216 -0
- package/packages/ui/src/canvas/FCanvasHud.vue +402 -0
- package/packages/ui/src/canvas/canvasSurface.ts +39 -0
- package/packages/ui/src/canvas/index.ts +17 -0
- package/packages/ui/src/contexts/ForestContext.vue +53 -0
- package/packages/ui/src/contexts/contexts.ts +153 -0
- package/packages/ui/src/contexts/index.ts +23 -0
- package/packages/ui/src/contexts/marketing-theme.ts +214 -0
- package/packages/ui/src/contexts/mobile-theme.ts +402 -0
- package/packages/ui/src/filter/FFilterBar.vue +72 -0
- package/packages/ui/src/filter/FFilterChip.vue +362 -0
- package/packages/ui/src/filter/FFilterClauses.vue +104 -0
- package/packages/ui/src/filter/FFilterTrigger.vue +183 -0
- package/packages/ui/src/filter/filter.theme.ts +27 -0
- package/packages/ui/src/filter/filterClause.ts +265 -0
- package/packages/ui/src/filter/filterPredicate.ts +134 -0
- package/packages/ui/src/filter/filterSchema.ts +82 -0
- package/packages/ui/src/filter/index.ts +36 -0
- package/packages/ui/src/forest-preset.ts +68 -0
- package/packages/ui/src/icons.ts +79 -0
- package/packages/ui/src/index.ts +17 -0
- package/packages/ui/src/kpi/FKpi.vue +253 -0
- package/packages/ui/src/kpi/FKpiGroup.vue +161 -0
- package/packages/ui/src/kpi/index.ts +20 -0
- package/packages/ui/src/kpi/kpi.theme.ts +168 -0
- package/packages/ui/src/kpi/kpiDelta.ts +82 -0
- package/packages/ui/src/kpi/kpiFormat.ts +72 -0
- package/packages/ui/src/kpi/kpiGroupState.ts +63 -0
- package/packages/ui/src/logo/FLogo.vue +52 -0
- package/packages/ui/src/logo/FSubLogo.vue +214 -0
- package/packages/ui/src/logo/index.ts +8 -0
- package/packages/ui/src/map/FMap.vue +355 -0
- package/packages/ui/src/map/FMapCompass.vue +154 -0
- package/packages/ui/src/map/FMapCoordinates.vue +134 -0
- package/packages/ui/src/map/FMapDrawTools.vue +116 -0
- package/packages/ui/src/map/FMapFullscreen.vue +92 -0
- package/packages/ui/src/map/FMapGeolocate.vue +208 -0
- package/packages/ui/src/map/FMapLayers.vue +75 -0
- package/packages/ui/src/map/FMapLegend.vue +45 -0
- package/packages/ui/src/map/FMapPopup.vue +129 -0
- package/packages/ui/src/map/FMapRamp.vue +69 -0
- package/packages/ui/src/map/FMapRegion.vue +77 -0
- package/packages/ui/src/map/FMapScale.vue +107 -0
- package/packages/ui/src/map/FMapSearch.vue +362 -0
- package/packages/ui/src/map/FMapTilt.vue +87 -0
- package/packages/ui/src/map/FMapTools.vue +61 -0
- package/packages/ui/src/map/FMapZoom.vue +81 -0
- package/packages/ui/src/map/FMarker.vue +218 -0
- package/packages/ui/src/map/FTrackScrubber.vue +94 -0
- package/packages/ui/src/map/FVehicleLegend.vue +72 -0
- package/packages/ui/src/map/FVehicleMark.vue +166 -0
- package/packages/ui/src/map/bin.ts +196 -0
- package/packages/ui/src/map/coordinates.ts +83 -0
- package/packages/ui/src/map/density.ts +401 -0
- package/packages/ui/src/map/draw.ts +356 -0
- package/packages/ui/src/map/ease.ts +67 -0
- package/packages/ui/src/map/fullscreen.ts +59 -0
- package/packages/ui/src/map/heat.ts +160 -0
- package/packages/ui/src/map/index.ts +351 -0
- package/packages/ui/src/map/liveMarkers.ts +60 -0
- package/packages/ui/src/map/map.css +116 -0
- package/packages/ui/src/map/mapColor.ts +31 -0
- package/packages/ui/src/map/mapContext.ts +12 -0
- package/packages/ui/src/map/mapLayers.ts +55 -0
- package/packages/ui/src/map/mapLegend.ts +70 -0
- package/packages/ui/src/map/mapSearch.theme.ts +79 -0
- package/packages/ui/src/map/mapSearch.ts +279 -0
- package/packages/ui/src/map/mapUrl.ts +117 -0
- package/packages/ui/src/map/markerAsset.ts +3 -0
- package/packages/ui/src/map/padding.ts +39 -0
- package/packages/ui/src/map/place.ts +192 -0
- package/packages/ui/src/map/ramp.ts +95 -0
- package/packages/ui/src/map/regionSelect.ts +163 -0
- package/packages/ui/src/map/route.ts +167 -0
- package/packages/ui/src/map/scale.ts +329 -0
- package/packages/ui/src/map/scaleBar.ts +67 -0
- package/packages/ui/src/map/selectionModel.ts +50 -0
- package/packages/ui/src/map/sources/coordinates.ts +58 -0
- package/packages/ui/src/map/sources/mapboxPlaces.ts +71 -0
- package/packages/ui/src/map/style.ts +14 -0
- package/packages/ui/src/map/track.ts +279 -0
- package/packages/ui/src/map/useFeatureSelect.ts +230 -0
- package/packages/ui/src/map/useLiveMarkers.ts +84 -0
- package/packages/ui/src/map/useMap.ts +150 -0
- package/packages/ui/src/map/useMapDraw.ts +776 -0
- package/packages/ui/src/map/useMapOverlay.ts +421 -0
- package/packages/ui/src/map/useMapTableSelection.ts +101 -0
- package/packages/ui/src/map/useMapUrlState.ts +155 -0
- package/packages/ui/src/map/useMarkerSource.ts +163 -0
- package/packages/ui/src/map/useRegionSelect.ts +309 -0
- package/packages/ui/src/map/useTokenMode.ts +61 -0
- package/packages/ui/src/map/useTrackPlayback.ts +131 -0
- package/packages/ui/src/map/useVehicleFilter.ts +51 -0
- package/packages/ui/src/map/useVisibleFeatures.ts +124 -0
- package/packages/ui/src/map/vehicle.ts +807 -0
- package/packages/ui/src/map/vehicleFilter.ts +284 -0
- package/packages/ui/src/map/vehicleLegend.ts +155 -0
- package/packages/ui/src/map/visibleFeatures.ts +192 -0
- package/packages/ui/src/map/zone.ts +291 -0
- package/packages/ui/src/shell/FAppNavbar.vue +68 -0
- package/packages/ui/src/shell/FAppShell.vue +163 -0
- package/packages/ui/src/shell/FAppSidebar.vue +215 -0
- package/packages/ui/src/shell/FPageToolbar.vue +126 -0
- package/packages/ui/src/shell/FScrollShadow.vue +43 -0
- package/packages/ui/src/shell/FSidePanel.vue +258 -0
- package/packages/ui/src/shell/FToolbarActions.vue +32 -0
- package/packages/ui/src/shell/index.ts +33 -0
- package/packages/ui/src/shell/nav.ts +37 -0
- package/packages/ui/src/shell/pageToolbar.ts +69 -0
- package/packages/ui/src/shell/shell.ts +74 -0
- package/packages/ui/src/shell/sidePanel.ts +115 -0
- package/packages/ui/src/themes/accordion.ts +36 -0
- package/packages/ui/src/themes/alert.ts +16 -0
- package/packages/ui/src/themes/auth-form.ts +19 -0
- package/packages/ui/src/themes/avatar-group.ts +9 -0
- package/packages/ui/src/themes/avatar.ts +18 -0
- package/packages/ui/src/themes/badge.ts +51 -0
- package/packages/ui/src/themes/banner.ts +21 -0
- package/packages/ui/src/themes/breadcrumb.ts +10 -0
- package/packages/ui/src/themes/button.mechanics.ts +191 -0
- package/packages/ui/src/themes/button.ts +136 -0
- package/packages/ui/src/themes/calendar.ts +29 -0
- package/packages/ui/src/themes/card.ts +67 -0
- package/packages/ui/src/themes/carousel.ts +41 -0
- package/packages/ui/src/themes/checkbox-group.ts +20 -0
- package/packages/ui/src/themes/checkbox.ts +47 -0
- package/packages/ui/src/themes/chip.ts +50 -0
- package/packages/ui/src/themes/collapsible.ts +26 -0
- package/packages/ui/src/themes/color-picker.ts +13 -0
- package/packages/ui/src/themes/command-palette.ts +37 -0
- package/packages/ui/src/themes/container.ts +14 -0
- package/packages/ui/src/themes/context-menu.ts +38 -0
- package/packages/ui/src/themes/dashboard-group.ts +11 -0
- package/packages/ui/src/themes/dashboard-navbar.ts +10 -0
- package/packages/ui/src/themes/dashboard-panel.ts +18 -0
- package/packages/ui/src/themes/dashboard-resize-handle.ts +35 -0
- package/packages/ui/src/themes/dashboard-sidebar-collapse.ts +7 -0
- package/packages/ui/src/themes/dashboard-sidebar-toggle.ts +7 -0
- package/packages/ui/src/themes/dashboard-sidebar.ts +58 -0
- package/packages/ui/src/themes/dashboard-toolbar.ts +15 -0
- package/packages/ui/src/themes/drawer.ts +45 -0
- package/packages/ui/src/themes/dropdown-menu.ts +38 -0
- package/packages/ui/src/themes/empty.ts +43 -0
- package/packages/ui/src/themes/field-group.ts +52 -0
- package/packages/ui/src/themes/file-upload.ts +38 -0
- package/packages/ui/src/themes/footer-columns.ts +13 -0
- package/packages/ui/src/themes/footer.ts +9 -0
- package/packages/ui/src/themes/form-field.ts +25 -0
- package/packages/ui/src/themes/form.ts +22 -0
- package/packages/ui/src/themes/header.ts +12 -0
- package/packages/ui/src/themes/icon.ts +61 -0
- package/packages/ui/src/themes/index.ts +99 -0
- package/packages/ui/src/themes/input-date.ts +73 -0
- package/packages/ui/src/themes/input-menu.ts +66 -0
- package/packages/ui/src/themes/input-number.ts +58 -0
- package/packages/ui/src/themes/input-rating.ts +25 -0
- package/packages/ui/src/themes/input-tags.ts +63 -0
- package/packages/ui/src/themes/input-time.ts +70 -0
- package/packages/ui/src/themes/input.ts +148 -0
- package/packages/ui/src/themes/kbd.ts +27 -0
- package/packages/ui/src/themes/link.ts +27 -0
- package/packages/ui/src/themes/listbox.ts +48 -0
- package/packages/ui/src/themes/main.ts +6 -0
- package/packages/ui/src/themes/marquee.ts +45 -0
- package/packages/ui/src/themes/modal.ts +46 -0
- package/packages/ui/src/themes/navigation-menu.ts +80 -0
- package/packages/ui/src/themes/page-anchors.ts +7 -0
- package/packages/ui/src/themes/page-aside.ts +7 -0
- package/packages/ui/src/themes/page-card.ts +22 -0
- package/packages/ui/src/themes/page-cta.ts +18 -0
- package/packages/ui/src/themes/page-feature.ts +13 -0
- package/packages/ui/src/themes/page-header.ts +16 -0
- package/packages/ui/src/themes/page-hero.ts +15 -0
- package/packages/ui/src/themes/page-links.ts +12 -0
- package/packages/ui/src/themes/page-section.ts +14 -0
- package/packages/ui/src/themes/page.ts +7 -0
- package/packages/ui/src/themes/pagination.ts +17 -0
- package/packages/ui/src/themes/pin-input.ts +73 -0
- package/packages/ui/src/themes/popover.ts +30 -0
- package/packages/ui/src/themes/progress.ts +29 -0
- package/packages/ui/src/themes/prose.ts +45 -0
- package/packages/ui/src/themes/radio-group.ts +39 -0
- package/packages/ui/src/themes/scroll-area.ts +23 -0
- package/packages/ui/src/themes/select-menu.ts +71 -0
- package/packages/ui/src/themes/select.ts +72 -0
- package/packages/ui/src/themes/separator.ts +28 -0
- package/packages/ui/src/themes/sidebar.ts +127 -0
- package/packages/ui/src/themes/skeleton.ts +15 -0
- package/packages/ui/src/themes/slideover.ts +87 -0
- package/packages/ui/src/themes/slider.ts +48 -0
- package/packages/ui/src/themes/stepper.ts +41 -0
- package/packages/ui/src/themes/switch.ts +63 -0
- package/packages/ui/src/themes/table.ts +34 -0
- package/packages/ui/src/themes/tabs.ts +74 -0
- package/packages/ui/src/themes/textarea.ts +77 -0
- package/packages/ui/src/themes/timeline.ts +25 -0
- package/packages/ui/src/themes/toast.ts +29 -0
- package/packages/ui/src/themes/toaster.ts +66 -0
- package/packages/ui/src/themes/tooltip.ts +31 -0
- package/packages/ui/src/themes/tree.ts +41 -0
- package/packages/ui/src/themes/user.ts +28 -0
- package/styles.cdn.gen.css +2047 -0
- package/theme.gen.json +1 -0
|
@@ -0,0 +1,820 @@
|
|
|
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
|
+
width="361"
|
|
10
|
+
height="730"
|
|
11
|
+
viewBox="0 0 95.514583 193.14585"
|
|
12
|
+
version="1.1"
|
|
13
|
+
id="svg8">
|
|
14
|
+
<defs
|
|
15
|
+
id="defs2">
|
|
16
|
+
<linearGradient
|
|
17
|
+
id="linearGradient1516">
|
|
18
|
+
<stop
|
|
19
|
+
style="stop-color:#81aace;stop-opacity:1"
|
|
20
|
+
offset="0"
|
|
21
|
+
id="stop1508" />
|
|
22
|
+
<stop
|
|
23
|
+
style="stop-color:#b9d2e8;stop-opacity:1"
|
|
24
|
+
offset="0.1"
|
|
25
|
+
id="stop1510" />
|
|
26
|
+
<stop
|
|
27
|
+
style="stop-color:#b9d2e8;stop-opacity:1"
|
|
28
|
+
offset="0.89999998"
|
|
29
|
+
id="stop1512" />
|
|
30
|
+
<stop
|
|
31
|
+
style="stop-color:#81aace;stop-opacity:1"
|
|
32
|
+
offset="1"
|
|
33
|
+
id="stop1514" />
|
|
34
|
+
</linearGradient>
|
|
35
|
+
<linearGradient
|
|
36
|
+
id="linearGradient821">
|
|
37
|
+
<stop
|
|
38
|
+
style="stop-color:#000000;stop-opacity:1;"
|
|
39
|
+
offset="0"
|
|
40
|
+
id="stop817" />
|
|
41
|
+
<stop
|
|
42
|
+
style="stop-color:#000000;stop-opacity:0;"
|
|
43
|
+
offset="1"
|
|
44
|
+
id="stop819" />
|
|
45
|
+
</linearGradient>
|
|
46
|
+
<clipPath
|
|
47
|
+
clipPathUnits="userSpaceOnUse"
|
|
48
|
+
id="clipPath4960">
|
|
49
|
+
<path
|
|
50
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#ebebeb;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.2765;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
51
|
+
d="m 56.734381,2.01367 c -29.678552,0 -53.5722709,23.893694 -53.5722709,53.572268 V 666.02928 c 0,29.67855 23.8937189,53.57223 53.5722709,53.57223 H 303.26562 c 29.67859,0 53.57227,-23.89368 53.57227,-53.57223 V 55.585938 c 0,-29.678574 -23.89368,-53.572268 -53.57227,-53.572268 z M 55.310558,5.9921857 H 304.68944 c 26.58218,0 47.98243,21.3983043 47.98243,47.9804723 V 668.20893 c 0,26.58217 -21.40025,47.98246 -47.98243,47.98246 H 55.310558 c -26.582175,0 -47.9824257,-21.40029 -47.9824257,-47.98246 V 53.972658 c 0,-26.582168 21.4002507,-47.9804723 47.9824257,-47.9804723 z"
|
|
52
|
+
id="path4962" />
|
|
53
|
+
</clipPath>
|
|
54
|
+
<clipPath
|
|
55
|
+
clipPathUnits="userSpaceOnUse"
|
|
56
|
+
id="clipPath5059">
|
|
57
|
+
<path
|
|
58
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#ebebeb;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.2765;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
59
|
+
d="m 56.734381,2.01367 c -29.678554,0 -53.5722728,23.893694 -53.5722728,53.572268 V 666.02928 c 0,29.67855 23.8937188,53.57223 53.5722728,53.57223 H 303.26562 c 29.67859,0 53.57227,-23.89368 53.57227,-53.57223 V 55.585938 c 0,-29.678574 -23.89368,-53.572268 -53.57227,-53.572268 z M 55.310558,5.9921857 H 304.68945 c 26.58217,0 47.98242,21.3983043 47.98242,47.9804723 V 668.20893 c 0,26.58217 -21.40025,47.98246 -47.98242,47.98246 H 55.310558 c -26.582177,0 -47.9824276,-21.40029 -47.9824276,-47.98246 V 53.972658 c 0,-26.582168 21.4002506,-47.9804723 47.9824276,-47.9804723 z"
|
|
60
|
+
id="path5061" />
|
|
61
|
+
</clipPath>
|
|
62
|
+
<clipPath
|
|
63
|
+
clipPathUnits="userSpaceOnUse"
|
|
64
|
+
id="clipPath5401">
|
|
65
|
+
<rect
|
|
66
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0264583;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
67
|
+
id="rect5403"
|
|
68
|
+
width="4.3765388"
|
|
69
|
+
height="7.4167299"
|
|
70
|
+
x="-13.8777"
|
|
71
|
+
y="25.856594"
|
|
72
|
+
ry="0.45101735" />
|
|
73
|
+
</clipPath>
|
|
74
|
+
<clipPath
|
|
75
|
+
clipPathUnits="userSpaceOnUse"
|
|
76
|
+
id="clipPath5589">
|
|
77
|
+
<path
|
|
78
|
+
id="path5591"
|
|
79
|
+
d="M 0.45113526,39.688017 C 0.20127166,39.688017 0,39.888773 0,40.138637 v 12.912612 c 0,0.249864 0.20127166,0.451136 0.45113526,0.451136 H 3.9253421 c 0.2498635,0 0.4511352,-0.201272 0.4511352,-0.451136 V 40.138637 c 0,-0.249864 -0.2012717,-0.45062 -0.4511352,-0.45062 z"
|
|
80
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0264583;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
|
81
|
+
</clipPath>
|
|
82
|
+
<clipPath
|
|
83
|
+
clipPathUnits="userSpaceOnUse"
|
|
84
|
+
id="clipPath5589-7">
|
|
85
|
+
<path
|
|
86
|
+
id="path5591-5"
|
|
87
|
+
d="M 0.45113526,39.688017 C 0.20127166,39.688017 0,39.888773 0,40.138637 v 12.912612 c 0,0.249864 0.20127166,0.451136 0.45113526,0.451136 H 3.9253421 c 0.2498635,0 0.4511352,-0.201272 0.4511352,-0.451136 V 40.138637 c 0,-0.249864 -0.2012717,-0.45062 -0.4511352,-0.45062 z"
|
|
88
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0264583;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
|
89
|
+
</clipPath>
|
|
90
|
+
<clipPath
|
|
91
|
+
clipPathUnits="userSpaceOnUse"
|
|
92
|
+
id="clipPath5738">
|
|
93
|
+
<path
|
|
94
|
+
id="path5740"
|
|
95
|
+
d="m 0.45113544,39.688016 c -0.24986192,0 -0.4511331182662,0.200755 -0.4511331182662,0.450619 v 20.944606 c 0,0.249864 0.2012711982662,0.451135 0.4511331182662,0.451135 H 3.9253423 c 0.2498645,0 0.4511357,-0.201271 0.4511357,-0.451135 V 40.138635 c 0,-0.249864 -0.2012712,-0.450619 -0.4511357,-0.450619 z"
|
|
96
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0264583;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
|
97
|
+
</clipPath>
|
|
98
|
+
<clipPath
|
|
99
|
+
clipPathUnits="userSpaceOnUse"
|
|
100
|
+
id="clipPath922">
|
|
101
|
+
<rect
|
|
102
|
+
style="opacity:1;vector-effect:none;fill:#474747;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.4065;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
103
|
+
id="rect924"
|
|
104
|
+
width="77.201637"
|
|
105
|
+
height="33.545391"
|
|
106
|
+
x="-67.752235"
|
|
107
|
+
y="-14.211905" />
|
|
108
|
+
</clipPath>
|
|
109
|
+
<clipPath
|
|
110
|
+
clipPathUnits="userSpaceOnUse"
|
|
111
|
+
id="clipPath972">
|
|
112
|
+
<rect
|
|
113
|
+
style="opacity:1;vector-effect:none;fill:#29ec68;fill-opacity:0.658879;fill-rule:nonzero;stroke:none;stroke-width:38.3451;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
114
|
+
id="rect974"
|
|
115
|
+
width="253.12003"
|
|
116
|
+
height="506.59415"
|
|
117
|
+
x="-527.82013"
|
|
118
|
+
y="-172.67062" />
|
|
119
|
+
</clipPath>
|
|
120
|
+
<mask
|
|
121
|
+
maskUnits="userSpaceOnUse"
|
|
122
|
+
id="mask1062">
|
|
123
|
+
<path
|
|
124
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.0529167;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
125
|
+
d="m 42.746746,7.2620904 c -0.399166,0 -0.72037,0.3212029 -0.72037,0.7203695 0,0.3991665 0.321204,0.7203694 0.72037,0.7203694 h 9.921876 c 0.399166,0 0.72037,-0.3212029 0.72037,-0.7203694 0,-0.3991666 -0.321204,-0.7203695 -0.72037,-0.7203695 z"
|
|
126
|
+
id="path1064" />
|
|
127
|
+
</mask>
|
|
128
|
+
<pattern
|
|
129
|
+
patternUnits="userSpaceOnUse"
|
|
130
|
+
width="1.171848"
|
|
131
|
+
height="1.1718804"
|
|
132
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
133
|
+
id="pattern2874">
|
|
134
|
+
<g
|
|
135
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
136
|
+
id="g2781">
|
|
137
|
+
<rect
|
|
138
|
+
style="opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
139
|
+
id="rect2730"
|
|
140
|
+
width="0.15502979"
|
|
141
|
+
height="0.15502979"
|
|
142
|
+
x="-76.445686"
|
|
143
|
+
y="7.0699267" />
|
|
144
|
+
<rect
|
|
145
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
146
|
+
id="rect2730-5"
|
|
147
|
+
width="0.15502979"
|
|
148
|
+
height="0.15502979"
|
|
149
|
+
x="-76.290665"
|
|
150
|
+
y="7.224957" />
|
|
151
|
+
<rect
|
|
152
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
153
|
+
id="rect2730-5-5"
|
|
154
|
+
width="0.15502979"
|
|
155
|
+
height="0.15502979"
|
|
156
|
+
x="-76.290665"
|
|
157
|
+
y="7.0699267" />
|
|
158
|
+
<rect
|
|
159
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
160
|
+
id="rect2730-5-5-0"
|
|
161
|
+
width="0.15502979"
|
|
162
|
+
height="0.15502979"
|
|
163
|
+
x="-76.445686"
|
|
164
|
+
y="7.224957" />
|
|
165
|
+
</g>
|
|
166
|
+
</pattern>
|
|
167
|
+
<clipPath
|
|
168
|
+
clipPathUnits="userSpaceOnUse"
|
|
169
|
+
id="clipPath5738-4">
|
|
170
|
+
<path
|
|
171
|
+
id="path5740-9"
|
|
172
|
+
d="m 0.45113544,39.688016 c -0.24986192,0 -0.4511331182662,0.200755 -0.4511331182662,0.450619 v 20.944606 c 0,0.249864 0.2012711982662,0.451135 0.4511331182662,0.451135 H 3.9253423 c 0.2498645,0 0.4511357,-0.201271 0.4511357,-0.451135 V 40.138635 c 0,-0.249864 -0.2012712,-0.450619 -0.4511357,-0.450619 z"
|
|
173
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0264583;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
|
174
|
+
</clipPath>
|
|
175
|
+
<clipPath
|
|
176
|
+
clipPathUnits="userSpaceOnUse"
|
|
177
|
+
id="clipPath5401-9">
|
|
178
|
+
<rect
|
|
179
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0264583;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
180
|
+
id="rect5403-9"
|
|
181
|
+
width="4.3765388"
|
|
182
|
+
height="7.4167299"
|
|
183
|
+
x="-13.8777"
|
|
184
|
+
y="25.856594"
|
|
185
|
+
ry="0.45101735" />
|
|
186
|
+
</clipPath>
|
|
187
|
+
<clipPath
|
|
188
|
+
clipPathUnits="userSpaceOnUse"
|
|
189
|
+
id="clipPath5589-3">
|
|
190
|
+
<path
|
|
191
|
+
id="path5591-6"
|
|
192
|
+
d="M 0.45113526,39.688017 C 0.20127166,39.688017 0,39.888773 0,40.138637 v 12.912612 c 0,0.249864 0.20127166,0.451136 0.45113526,0.451136 H 3.9253421 c 0.2498635,0 0.4511352,-0.201272 0.4511352,-0.451136 V 40.138637 c 0,-0.249864 -0.2012717,-0.45062 -0.4511352,-0.45062 z"
|
|
193
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0264583;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
|
194
|
+
</clipPath>
|
|
195
|
+
<clipPath
|
|
196
|
+
clipPathUnits="userSpaceOnUse"
|
|
197
|
+
id="clipPath5589-7-8">
|
|
198
|
+
<path
|
|
199
|
+
id="path5591-5-3"
|
|
200
|
+
d="M 0.45113526,39.688017 C 0.20127166,39.688017 0,39.888773 0,40.138637 v 12.912612 c 0,0.249864 0.20127166,0.451136 0.45113526,0.451136 H 3.9253421 c 0.2498635,0 0.4511352,-0.201272 0.4511352,-0.451136 V 40.138637 c 0,-0.249864 -0.2012717,-0.45062 -0.4511352,-0.45062 z"
|
|
201
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0264583;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
|
202
|
+
</clipPath>
|
|
203
|
+
<clipPath
|
|
204
|
+
clipPathUnits="userSpaceOnUse"
|
|
205
|
+
id="clipPath4960-5">
|
|
206
|
+
<path
|
|
207
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#ebebeb;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.2765;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
208
|
+
d="m 56.734381,2.01367 c -29.678552,0 -53.5722709,23.893694 -53.5722709,53.572268 V 666.02928 c 0,29.67855 23.8937189,53.57223 53.5722709,53.57223 H 303.26562 c 29.67859,0 53.57227,-23.89368 53.57227,-53.57223 V 55.585938 c 0,-29.678574 -23.89368,-53.572268 -53.57227,-53.572268 z M 55.310558,5.9921857 H 304.68944 c 26.58218,0 47.98243,21.3983043 47.98243,47.9804723 V 668.20893 c 0,26.58217 -21.40025,47.98246 -47.98243,47.98246 H 55.310558 c -26.582175,0 -47.9824257,-21.40029 -47.9824257,-47.98246 V 53.972658 c 0,-26.582168 21.4002507,-47.9804723 47.9824257,-47.9804723 z"
|
|
209
|
+
id="path4962-4" />
|
|
210
|
+
</clipPath>
|
|
211
|
+
<pattern
|
|
212
|
+
patternUnits="userSpaceOnUse"
|
|
213
|
+
width="1.171848"
|
|
214
|
+
height="1.1718804"
|
|
215
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
216
|
+
id="pattern2874-7">
|
|
217
|
+
<g
|
|
218
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
219
|
+
id="g2781-1">
|
|
220
|
+
<rect
|
|
221
|
+
style="opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
222
|
+
id="rect2730-3"
|
|
223
|
+
width="0.15502979"
|
|
224
|
+
height="0.15502979"
|
|
225
|
+
x="-76.445686"
|
|
226
|
+
y="7.0699267" />
|
|
227
|
+
<rect
|
|
228
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
229
|
+
id="rect2730-5-8"
|
|
230
|
+
width="0.15502979"
|
|
231
|
+
height="0.15502979"
|
|
232
|
+
x="-76.290665"
|
|
233
|
+
y="7.224957" />
|
|
234
|
+
<rect
|
|
235
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
236
|
+
id="rect2730-5-5-1"
|
|
237
|
+
width="0.15502979"
|
|
238
|
+
height="0.15502979"
|
|
239
|
+
x="-76.290665"
|
|
240
|
+
y="7.0699267" />
|
|
241
|
+
<rect
|
|
242
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
243
|
+
id="rect2730-5-5-0-1"
|
|
244
|
+
width="0.15502979"
|
|
245
|
+
height="0.15502979"
|
|
246
|
+
x="-76.445686"
|
|
247
|
+
y="7.224957" />
|
|
248
|
+
</g>
|
|
249
|
+
</pattern>
|
|
250
|
+
<clipPath
|
|
251
|
+
clipPathUnits="userSpaceOnUse"
|
|
252
|
+
id="clipPath948">
|
|
253
|
+
<rect
|
|
254
|
+
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.783566;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
255
|
+
id="rect950"
|
|
256
|
+
width="161.20644"
|
|
257
|
+
height="317.73975"
|
|
258
|
+
x="-280.93082"
|
|
259
|
+
y="-83.752052" />
|
|
260
|
+
</clipPath>
|
|
261
|
+
<clipPath
|
|
262
|
+
clipPathUnits="userSpaceOnUse"
|
|
263
|
+
id="clipPath967">
|
|
264
|
+
<rect
|
|
265
|
+
style="fill:#6ecb55;fill-opacity:0.540323;stroke:none;stroke-width:0.405315;stroke-linecap:round;stroke-linejoin:round"
|
|
266
|
+
id="rect969"
|
|
267
|
+
width="84.888893"
|
|
268
|
+
height="172.10544"
|
|
269
|
+
x="81.619461"
|
|
270
|
+
y="-32.789757" />
|
|
271
|
+
</clipPath>
|
|
272
|
+
<mask
|
|
273
|
+
maskUnits="userSpaceOnUse"
|
|
274
|
+
id="mask2042">
|
|
275
|
+
<path
|
|
276
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.0626366;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
277
|
+
d="m 43.127825,7.2620903 c -0.559276,0 -1.00932,0.321203 -1.00932,0.7203695 0,0.3991665 0.450044,0.7203695 1.00932,0.7203695 h 9.481534 c 0.559276,0 1.009317,-0.321203 1.009317,-0.7203695 0,-0.3991665 -0.450041,-0.7203695 -1.009317,-0.7203695 z"
|
|
278
|
+
id="path2044" />
|
|
279
|
+
</mask>
|
|
280
|
+
<clipPath
|
|
281
|
+
clipPathUnits="userSpaceOnUse"
|
|
282
|
+
id="clipPath2353">
|
|
283
|
+
<rect
|
|
284
|
+
style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:0.999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
285
|
+
id="rect2355"
|
|
286
|
+
width="355.61673"
|
|
287
|
+
height="728.3255"
|
|
288
|
+
x="2.1916344"
|
|
289
|
+
y="-3.1627369"
|
|
290
|
+
ry="55.641438" />
|
|
291
|
+
</clipPath>
|
|
292
|
+
<clipPath
|
|
293
|
+
clipPathUnits="userSpaceOnUse"
|
|
294
|
+
id="clipPath944">
|
|
295
|
+
<rect
|
|
296
|
+
style="fill:#52d670;fill-opacity:0.435484;stroke:none;stroke-width:0.591656;stroke-linecap:round;stroke-linejoin:round"
|
|
297
|
+
id="rect946"
|
|
298
|
+
width="78.845848"
|
|
299
|
+
height="107.09153"
|
|
300
|
+
x="-173.95055"
|
|
301
|
+
y="-35.402409" />
|
|
302
|
+
</clipPath>
|
|
303
|
+
<clipPath
|
|
304
|
+
clipPathUnits="userSpaceOnUse"
|
|
305
|
+
id="clipPath3611">
|
|
306
|
+
<rect
|
|
307
|
+
style="opacity:1;fill:#404040;fill-opacity:1;stroke:none;stroke-width:11.5159;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
308
|
+
id="rect3613"
|
|
309
|
+
width="315.79929"
|
|
310
|
+
height="350.47412"
|
|
311
|
+
x="-227.84766"
|
|
312
|
+
y="-35.209526" />
|
|
313
|
+
</clipPath>
|
|
314
|
+
<clipPath
|
|
315
|
+
clipPathUnits="userSpaceOnUse"
|
|
316
|
+
id="clipPath2353-1">
|
|
317
|
+
<rect
|
|
318
|
+
style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:0.999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
319
|
+
id="rect2355-3"
|
|
320
|
+
width="355.61673"
|
|
321
|
+
height="728.3255"
|
|
322
|
+
x="2.1916344"
|
|
323
|
+
y="-3.1627369"
|
|
324
|
+
ry="55.641438" />
|
|
325
|
+
</clipPath>
|
|
326
|
+
<pattern
|
|
327
|
+
patternUnits="userSpaceOnUse"
|
|
328
|
+
width="1.171848"
|
|
329
|
+
height="1.1718804"
|
|
330
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
331
|
+
id="pattern2874-7-9">
|
|
332
|
+
<g
|
|
333
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
334
|
+
id="g2781-1-1">
|
|
335
|
+
<rect
|
|
336
|
+
style="opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
337
|
+
id="rect2730-3-0"
|
|
338
|
+
width="0.15502979"
|
|
339
|
+
height="0.15502979"
|
|
340
|
+
x="-76.445686"
|
|
341
|
+
y="7.0699267" />
|
|
342
|
+
<rect
|
|
343
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
344
|
+
id="rect2730-5-8-6"
|
|
345
|
+
width="0.15502979"
|
|
346
|
+
height="0.15502979"
|
|
347
|
+
x="-76.290665"
|
|
348
|
+
y="7.224957" />
|
|
349
|
+
<rect
|
|
350
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
351
|
+
id="rect2730-5-5-1-5"
|
|
352
|
+
width="0.15502979"
|
|
353
|
+
height="0.15502979"
|
|
354
|
+
x="-76.290665"
|
|
355
|
+
y="7.0699267" />
|
|
356
|
+
<rect
|
|
357
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
358
|
+
id="rect2730-5-5-0-1-4"
|
|
359
|
+
width="0.15502979"
|
|
360
|
+
height="0.15502979"
|
|
361
|
+
x="-76.445686"
|
|
362
|
+
y="7.224957" />
|
|
363
|
+
</g>
|
|
364
|
+
</pattern>
|
|
365
|
+
<mask
|
|
366
|
+
maskUnits="userSpaceOnUse"
|
|
367
|
+
id="mask2042-5">
|
|
368
|
+
<path
|
|
369
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.0626366;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
370
|
+
d="m 43.127825,7.2620903 c -0.559276,0 -1.00932,0.321203 -1.00932,0.7203695 0,0.3991665 0.450044,0.7203695 1.00932,0.7203695 h 9.481534 c 0.559276,0 1.009317,-0.321203 1.009317,-0.7203695 0,-0.3991665 -0.450041,-0.7203695 -1.009317,-0.7203695 z"
|
|
371
|
+
id="path2044-4" />
|
|
372
|
+
</mask>
|
|
373
|
+
<linearGradient
|
|
374
|
+
xlink:href="#linearGradient1516"
|
|
375
|
+
id="linearGradient2462-4-1"
|
|
376
|
+
x1="-0.69643712"
|
|
377
|
+
y1="29.932404"
|
|
378
|
+
x2="-0.69643712"
|
|
379
|
+
y2="52.201885"
|
|
380
|
+
gradientUnits="userSpaceOnUse"
|
|
381
|
+
gradientTransform="translate(96.171243,27.892042)" />
|
|
382
|
+
<linearGradient
|
|
383
|
+
xlink:href="#linearGradient1516"
|
|
384
|
+
id="linearGradient2462-4"
|
|
385
|
+
x1="-0.69643712"
|
|
386
|
+
y1="29.932404"
|
|
387
|
+
x2="-0.69643712"
|
|
388
|
+
y2="43.662617"
|
|
389
|
+
gradientUnits="userSpaceOnUse"
|
|
390
|
+
gradientTransform="translate(3.430882,23.266846)" />
|
|
391
|
+
<linearGradient
|
|
392
|
+
xlink:href="#linearGradient1516"
|
|
393
|
+
id="linearGradient2462-4-3"
|
|
394
|
+
x1="-0.69643712"
|
|
395
|
+
y1="29.932404"
|
|
396
|
+
x2="-0.69643712"
|
|
397
|
+
y2="43.662617"
|
|
398
|
+
gradientUnits="userSpaceOnUse"
|
|
399
|
+
gradientTransform="translate(3.407073,41.797441)" />
|
|
400
|
+
<linearGradient
|
|
401
|
+
xlink:href="#linearGradient1516"
|
|
402
|
+
id="linearGradient2462"
|
|
403
|
+
x1="-0.69643712"
|
|
404
|
+
y1="29.932404"
|
|
405
|
+
x2="-0.69643712"
|
|
406
|
+
y2="36.839325"
|
|
407
|
+
gradientUnits="userSpaceOnUse"
|
|
408
|
+
gradientTransform="translate(3.407073,9.1989102)" />
|
|
409
|
+
<clipPath
|
|
410
|
+
clipPathUnits="userSpaceOnUse"
|
|
411
|
+
id="clipPath2353-1-7">
|
|
412
|
+
<rect
|
|
413
|
+
style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:0.999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
414
|
+
id="rect2355-3-0"
|
|
415
|
+
width="355.61673"
|
|
416
|
+
height="728.3255"
|
|
417
|
+
x="2.1916344"
|
|
418
|
+
y="-3.1627369"
|
|
419
|
+
ry="55.641438" />
|
|
420
|
+
</clipPath>
|
|
421
|
+
<pattern
|
|
422
|
+
patternUnits="userSpaceOnUse"
|
|
423
|
+
width="1.171848"
|
|
424
|
+
height="1.1718804"
|
|
425
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
426
|
+
id="pattern2874-7-9-1">
|
|
427
|
+
<g
|
|
428
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
429
|
+
id="g2781-1-1-7">
|
|
430
|
+
<rect
|
|
431
|
+
style="opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
432
|
+
id="rect2730-3-0-3"
|
|
433
|
+
width="0.15502979"
|
|
434
|
+
height="0.15502979"
|
|
435
|
+
x="-76.445686"
|
|
436
|
+
y="7.0699267" />
|
|
437
|
+
<rect
|
|
438
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
439
|
+
id="rect2730-5-8-6-9"
|
|
440
|
+
width="0.15502979"
|
|
441
|
+
height="0.15502979"
|
|
442
|
+
x="-76.290665"
|
|
443
|
+
y="7.224957" />
|
|
444
|
+
<rect
|
|
445
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
446
|
+
id="rect2730-5-5-1-5-8"
|
|
447
|
+
width="0.15502979"
|
|
448
|
+
height="0.15502979"
|
|
449
|
+
x="-76.290665"
|
|
450
|
+
y="7.0699267" />
|
|
451
|
+
<rect
|
|
452
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
453
|
+
id="rect2730-5-5-0-1-4-7"
|
|
454
|
+
width="0.15502979"
|
|
455
|
+
height="0.15502979"
|
|
456
|
+
x="-76.445686"
|
|
457
|
+
y="7.224957" />
|
|
458
|
+
</g>
|
|
459
|
+
</pattern>
|
|
460
|
+
<mask
|
|
461
|
+
maskUnits="userSpaceOnUse"
|
|
462
|
+
id="mask2042-5-2">
|
|
463
|
+
<path
|
|
464
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.0626366;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
465
|
+
d="m 43.127825,7.2620903 c -0.559276,0 -1.00932,0.321203 -1.00932,0.7203695 0,0.3991665 0.450044,0.7203695 1.00932,0.7203695 h 9.481534 c 0.559276,0 1.009317,-0.321203 1.009317,-0.7203695 0,-0.3991665 -0.450041,-0.7203695 -1.009317,-0.7203695 z"
|
|
466
|
+
id="path2044-4-7" />
|
|
467
|
+
</mask>
|
|
468
|
+
<linearGradient
|
|
469
|
+
xlink:href="#linearGradient2650"
|
|
470
|
+
id="linearGradient2652"
|
|
471
|
+
x1="64.657043"
|
|
472
|
+
y1="0.37720415"
|
|
473
|
+
x2="64.657043"
|
|
474
|
+
y2="192.34035"
|
|
475
|
+
gradientUnits="userSpaceOnUse"
|
|
476
|
+
gradientTransform="matrix(3.7795274,0,0,3.7795274,0.54498892,4.0000061)" />
|
|
477
|
+
<linearGradient
|
|
478
|
+
id="linearGradient2650">
|
|
479
|
+
<stop
|
|
480
|
+
style="stop-color:#404040;stop-opacity:1"
|
|
481
|
+
offset="0"
|
|
482
|
+
id="stop2646" />
|
|
483
|
+
<stop
|
|
484
|
+
style="stop-color:#262626;stop-opacity:1"
|
|
485
|
+
offset="1"
|
|
486
|
+
id="stop2648" />
|
|
487
|
+
</linearGradient>
|
|
488
|
+
<clipPath
|
|
489
|
+
clipPathUnits="userSpaceOnUse"
|
|
490
|
+
id="clipPath1217">
|
|
491
|
+
<rect
|
|
492
|
+
style="fill:#648bab;stroke-width:0.652928;stroke-linecap:round;stroke-linejoin:round;stop-color:#000000"
|
|
493
|
+
id="rect1219"
|
|
494
|
+
width="83.925377"
|
|
495
|
+
height="106.55812"
|
|
496
|
+
x="108.03319"
|
|
497
|
+
y="-2.6168919" />
|
|
498
|
+
</clipPath>
|
|
499
|
+
<clipPath
|
|
500
|
+
clipPathUnits="userSpaceOnUse"
|
|
501
|
+
id="clipPath1244">
|
|
502
|
+
<rect
|
|
503
|
+
style="fill:#648bab;stroke-width:0.185804;stroke-linecap:round;stroke-linejoin:round;stop-color:#000000"
|
|
504
|
+
id="rect1246"
|
|
505
|
+
width="32.192707"
|
|
506
|
+
height="106.74944"
|
|
507
|
+
x="-76.037987"
|
|
508
|
+
y="32.587708" />
|
|
509
|
+
</clipPath>
|
|
510
|
+
<pattern
|
|
511
|
+
patternUnits="userSpaceOnUse"
|
|
512
|
+
width="1.171848"
|
|
513
|
+
height="1.1718804"
|
|
514
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
515
|
+
id="pattern2874-7-2-1-0-3">
|
|
516
|
+
<g
|
|
517
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
518
|
+
id="g2781-1-7-7-0-3">
|
|
519
|
+
<rect
|
|
520
|
+
style="opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
521
|
+
id="rect2730-3-5-3-3-7"
|
|
522
|
+
width="0.15502979"
|
|
523
|
+
height="0.15502979"
|
|
524
|
+
x="-76.445686"
|
|
525
|
+
y="7.0699267" />
|
|
526
|
+
<rect
|
|
527
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
528
|
+
id="rect2730-5-8-3-9-8-8"
|
|
529
|
+
width="0.15502979"
|
|
530
|
+
height="0.15502979"
|
|
531
|
+
x="-76.290665"
|
|
532
|
+
y="7.224957" />
|
|
533
|
+
<rect
|
|
534
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
535
|
+
id="rect2730-5-5-1-3-1-1-2"
|
|
536
|
+
width="0.15502979"
|
|
537
|
+
height="0.15502979"
|
|
538
|
+
x="-76.290665"
|
|
539
|
+
y="7.0699267" />
|
|
540
|
+
<rect
|
|
541
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
542
|
+
id="rect2730-5-5-0-1-8-3-5-8"
|
|
543
|
+
width="0.15502979"
|
|
544
|
+
height="0.15502979"
|
|
545
|
+
x="-76.445686"
|
|
546
|
+
y="7.224957" />
|
|
547
|
+
</g>
|
|
548
|
+
</pattern>
|
|
549
|
+
<clipPath
|
|
550
|
+
clipPathUnits="userSpaceOnUse"
|
|
551
|
+
id="clipPath2586">
|
|
552
|
+
<path
|
|
553
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;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:#292929;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
|
554
|
+
d="m 22.509766,2.1699219 c -0.317894,0 -0.574219,0.2563261 -0.574219,0.5742188 0,0.3178919 0.256325,0.5761718 0.574219,0.5761718 h 13.564453 c 0.317892,0 0.574218,-0.2582797 0.57422,-0.5761718 0,-0.3178928 -0.256328,-0.5742188 -0.57422,-0.5742188 z m 0,0.041016 h 13.564453 c 0.296061,0 0.533202,0.2371418 0.533202,0.5332032 0,0.2960606 -0.237141,0.5351561 -0.533202,0.5351561 H 22.509766 c -0.296063,0 -0.533204,-0.2390953 -0.533204,-0.5351561 0,-0.2960615 0.237141,-0.5332032 0.533204,-0.5332032 z"
|
|
555
|
+
id="path2588" />
|
|
556
|
+
</clipPath>
|
|
557
|
+
<pattern
|
|
558
|
+
patternTransform="matrix(0.20347652,0,0,0.20347652,-55.330551,-9.271854)"
|
|
559
|
+
id="pattern3129"
|
|
560
|
+
xlink:href="#pattern2874-7-2-1-0-3-9" />
|
|
561
|
+
<pattern
|
|
562
|
+
patternUnits="userSpaceOnUse"
|
|
563
|
+
width="1.171848"
|
|
564
|
+
height="1.1718804"
|
|
565
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
566
|
+
id="pattern2874-7-2-1-0-3-9">
|
|
567
|
+
<g
|
|
568
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
569
|
+
id="g2781-1-7-7-0-3-3">
|
|
570
|
+
<rect
|
|
571
|
+
style="opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
572
|
+
id="rect2730-3-5-3-3-7-9"
|
|
573
|
+
width="0.15502979"
|
|
574
|
+
height="0.15502979"
|
|
575
|
+
x="-76.445686"
|
|
576
|
+
y="7.0699267" />
|
|
577
|
+
<rect
|
|
578
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
579
|
+
id="rect2730-5-8-3-9-8-8-1"
|
|
580
|
+
width="0.15502979"
|
|
581
|
+
height="0.15502979"
|
|
582
|
+
x="-76.290665"
|
|
583
|
+
y="7.224957" />
|
|
584
|
+
<rect
|
|
585
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
586
|
+
id="rect2730-5-5-1-3-1-1-2-2"
|
|
587
|
+
width="0.15502979"
|
|
588
|
+
height="0.15502979"
|
|
589
|
+
x="-76.290665"
|
|
590
|
+
y="7.0699267" />
|
|
591
|
+
<rect
|
|
592
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
593
|
+
id="rect2730-5-5-0-1-8-3-5-8-3"
|
|
594
|
+
width="0.15502979"
|
|
595
|
+
height="0.15502979"
|
|
596
|
+
x="-76.445686"
|
|
597
|
+
y="7.224957" />
|
|
598
|
+
</g>
|
|
599
|
+
</pattern>
|
|
600
|
+
<clipPath
|
|
601
|
+
clipPathUnits="userSpaceOnUse"
|
|
602
|
+
id="clipPath2586-8">
|
|
603
|
+
<path
|
|
604
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;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:#292929;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
|
605
|
+
d="m 22.509766,2.1699219 c -0.317894,0 -0.574219,0.2563261 -0.574219,0.5742188 0,0.3178919 0.256325,0.5761718 0.574219,0.5761718 h 13.564453 c 0.317892,0 0.574218,-0.2582797 0.57422,-0.5761718 0,-0.3178928 -0.256328,-0.5742188 -0.57422,-0.5742188 z m 0,0.041016 h 13.564453 c 0.296061,0 0.533202,0.2371418 0.533202,0.5332032 0,0.2960606 -0.237141,0.5351561 -0.533202,0.5351561 H 22.509766 c -0.296063,0 -0.533204,-0.2390953 -0.533204,-0.5351561 0,-0.2960615 0.237141,-0.5332032 0.533204,-0.5332032 z"
|
|
606
|
+
id="path2588-9" />
|
|
607
|
+
</clipPath>
|
|
608
|
+
<filter
|
|
609
|
+
style="color-interpolation-filters:sRGB"
|
|
610
|
+
id="filter2810"
|
|
611
|
+
x="-0.075964987"
|
|
612
|
+
width="1.15193"
|
|
613
|
+
y="-3.1550879"
|
|
614
|
+
height="7.3101759">
|
|
615
|
+
<feGaussianBlur
|
|
616
|
+
stdDeviation="0.46442349"
|
|
617
|
+
id="feGaussianBlur2812" />
|
|
618
|
+
</filter>
|
|
619
|
+
<filter
|
|
620
|
+
style="color-interpolation-filters:sRGB"
|
|
621
|
+
id="filter1498"
|
|
622
|
+
x="-0.0066088707"
|
|
623
|
+
width="1.0132177"
|
|
624
|
+
y="-0.0032087156"
|
|
625
|
+
height="1.0064174">
|
|
626
|
+
<feGaussianBlur
|
|
627
|
+
stdDeviation="0.96852657"
|
|
628
|
+
id="feGaussianBlur1500" />
|
|
629
|
+
</filter>
|
|
630
|
+
<filter
|
|
631
|
+
style="color-interpolation-filters:sRGB"
|
|
632
|
+
id="filter5343"
|
|
633
|
+
x="-0.19227619"
|
|
634
|
+
width="1.3845524"
|
|
635
|
+
y="-0.082464501"
|
|
636
|
+
height="1.164929">
|
|
637
|
+
<feGaussianBlur
|
|
638
|
+
stdDeviation="0.030983682"
|
|
639
|
+
id="feGaussianBlur5345" />
|
|
640
|
+
</filter>
|
|
641
|
+
<filter
|
|
642
|
+
style="color-interpolation-filters:sRGB"
|
|
643
|
+
id="filter5347"
|
|
644
|
+
x="-0.10877967"
|
|
645
|
+
width="1.2175593"
|
|
646
|
+
y="-0.082313925"
|
|
647
|
+
height="1.1646278">
|
|
648
|
+
<feGaussianBlur
|
|
649
|
+
stdDeviation="0.030983682"
|
|
650
|
+
id="feGaussianBlur5349" />
|
|
651
|
+
</filter>
|
|
652
|
+
</defs>
|
|
653
|
+
<metadata
|
|
654
|
+
id="metadata5">
|
|
655
|
+
<rdf:RDF>
|
|
656
|
+
<cc:Work
|
|
657
|
+
rdf:about="">
|
|
658
|
+
<dc:format>image/svg+xml</dc:format>
|
|
659
|
+
<dc:type
|
|
660
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
661
|
+
<dc:title></dc:title>
|
|
662
|
+
</cc:Work>
|
|
663
|
+
</rdf:RDF>
|
|
664
|
+
</metadata>
|
|
665
|
+
<g
|
|
666
|
+
id="layer2">
|
|
667
|
+
<g
|
|
668
|
+
id="g1506"
|
|
669
|
+
style="fill:#3f4b5b;fill-opacity:1">
|
|
670
|
+
<path
|
|
671
|
+
id="rect2415-6-8"
|
|
672
|
+
style="display:inline;fill:#3f4b5b;fill-opacity:1;stroke:none;stroke-width:1.03188;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
673
|
+
d="m 93.019335,57.544437 h 2.240082 c 0.119329,0 0.2154,0.09607 0.2154,0.215392 v 22.302413 c 0,0.119327 -0.0961,0.215392 -0.2154,0.215392 h -2.240082 c -0.11933,0 -0.215389,-0.09606 -0.215389,-0.215392 V 57.759829 c 0,-0.119327 0.0961,-0.215392 0.215389,-0.215392 z" />
|
|
674
|
+
<path
|
|
675
|
+
id="rect2415-6"
|
|
676
|
+
style="display:inline;fill:#3f4b5b;fill-opacity:1;stroke:none;stroke-width:1.03188;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
677
|
+
d="M 0.25516299,52.919242 H 2.495243 c 0.11933,0 0.21539,0.09607 0.21539,0.215392 v 13.773297 c 0,0.119327 -0.0961,0.215392 -0.21539,0.215392 H 0.25516299 c -0.11933,0 -0.21539,-0.09606 -0.21539,-0.215392 V 53.134634 c 0,-0.119327 0.0961,-0.215392 0.21539,-0.215392 z" />
|
|
678
|
+
<path
|
|
679
|
+
id="rect2415-6-0"
|
|
680
|
+
style="display:inline;fill:#3f4b5b;fill-opacity:1;stroke:none;stroke-width:1.03188;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
681
|
+
d="M 0.25516299,71.449837 H 2.495243 c 0.11933,0 0.21539,0.09607 0.21539,0.215392 v 13.773296 c 0,0.119327 -0.0961,0.215392 -0.21539,0.215392 H 0.25516299 c -0.11933,0 -0.21539,-0.09606 -0.21539,-0.215392 V 71.665229 c 0,-0.119327 0.0961,-0.215392 0.21539,-0.215392 z" />
|
|
682
|
+
<rect
|
|
683
|
+
style="display:inline;fill:#3f4b5b;fill-opacity:1;stroke:none;stroke-width:1.03188;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
684
|
+
id="rect2415"
|
|
685
|
+
width="2.6708689"
|
|
686
|
+
height="7.3807893"
|
|
687
|
+
x="0.039770298"
|
|
688
|
+
y="38.851303"
|
|
689
|
+
ry="0.21539266" />
|
|
690
|
+
</g>
|
|
691
|
+
<path
|
|
692
|
+
id="rect2415-4-9-9"
|
|
693
|
+
style="display:inline;fill:url(#linearGradient2462-4-1);fill-opacity:1;stroke:none;stroke-width:1.03188;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
694
|
+
d="m 93.019335,57.824449 h 2.240082 c 0.119329,0 0.2154,0.09607 0.2154,0.215392 v 21.828543 c 0,0.11933 -0.0961,0.215395 -0.2154,0.215395 h -2.240082 c -0.11933,0 -0.215389,-0.09607 -0.215389,-0.215395 V 58.039841 c 0,-0.119328 0.0961,-0.215392 0.215389,-0.215392 z" />
|
|
695
|
+
<path
|
|
696
|
+
id="rect2415-4-9"
|
|
697
|
+
style="display:inline;fill:url(#linearGradient2462-4);fill-opacity:1.0;stroke:none;stroke-width:1.03188;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
698
|
+
d="M 0.27897199,53.199251 H 2.519052 c 0.11933,0 0.21539,0.09607 0.21539,0.215395 v 13.29943 c 0,0.119327 -0.0961,0.215392 -0.21539,0.215392 H 0.27897199 c -0.11933,0 -0.21539,-0.09607 -0.21539,-0.215392 v -13.29943 c 0,-0.119327 0.0961,-0.215395 0.21539,-0.215395 z" />
|
|
699
|
+
<path
|
|
700
|
+
id="rect2415-4-9-6"
|
|
701
|
+
style="display:inline;fill:url(#linearGradient2462-4-3);fill-opacity:1.0;stroke:none;stroke-width:1.03188;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
702
|
+
d="M 0.25516299,71.729848 H 2.495243 c 0.11933,0 0.21539,0.09607 0.21539,0.215392 v 13.29943 c 0,0.119327 -0.0961,0.215392 -0.21539,0.215392 H 0.25516299 c -0.11933,0 -0.21539,-0.09607 -0.21539,-0.215392 V 71.94524 c 0,-0.119327 0.0961,-0.215392 0.21539,-0.215392 z" />
|
|
703
|
+
<rect
|
|
704
|
+
style="display:inline;fill:url(#linearGradient2462);fill-opacity:1.0;stroke:none;stroke-width:1.03188;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
705
|
+
id="rect2415-4"
|
|
706
|
+
width="2.6708689"
|
|
707
|
+
height="6.9069233"
|
|
708
|
+
x="0.039770298"
|
|
709
|
+
y="39.131313"
|
|
710
|
+
ry="0.21539266" />
|
|
711
|
+
<rect
|
|
712
|
+
style="display:inline;fill:#c8e1f8;fill-opacity:1;stroke:#3f4b5b;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
713
|
+
id="rect2163"
|
|
714
|
+
width="94.090263"
|
|
715
|
+
height="192.70279"
|
|
716
|
+
x="0.72405833"
|
|
717
|
+
y="0.22152601"
|
|
718
|
+
ry="14.721798" />
|
|
719
|
+
<path
|
|
720
|
+
id="rect2163-1"
|
|
721
|
+
style="display:inline;fill:#a0b8ce;fill-opacity:1;stroke:none;stroke-width:0.999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter1498)"
|
|
722
|
+
d="m 57.830078,-1.2109375 c -29.778781,0 -53.689453,23.9106715 -53.689453,53.6894535 V 669.52344 c 0,29.77878 23.910672,53.6875 53.689453,53.6875 H 302.16992 c 29.77878,0 53.68946,-23.90872 53.68946,-53.6875 V 52.478516 c 0,-29.778782 -23.91068,-53.6894535 -53.68946,-53.6894535 z"
|
|
723
|
+
transform="matrix(0.26458334,0,0,0.26458334,0.14419499,1.058335)"
|
|
724
|
+
clip-path="url(#clipPath2353-1-7)" />
|
|
725
|
+
<path
|
|
726
|
+
id="rect2172"
|
|
727
|
+
style="display:inline;fill:#819abb;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
728
|
+
d="M 74.555923,0.08940199 V 3.254066 h 1.314913 V 0.08940199 Z M 0.59170499,19.314584 V 20.6295 H 94.946676 v -1.314916 z m 0,153.537146 v 1.31491 H 94.946676 v -1.31491 z M 19.667546,190.33155 v 2.72488 h 1.314914 v -2.72488 z" />
|
|
729
|
+
<rect
|
|
730
|
+
style="display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.405938;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
|
|
731
|
+
id="rect1093"
|
|
732
|
+
width="16.734886"
|
|
733
|
+
height="1.3330069"
|
|
734
|
+
x="39.654427"
|
|
735
|
+
y="1.3694253" />
|
|
736
|
+
<path
|
|
737
|
+
id="rect3540"
|
|
738
|
+
style="display:inline;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#434343;stroke-width:0.500001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
739
|
+
d="M 59.314453 5.4257812 C 30.2552 5.4257812 6.8613281 28.819653 6.8613281 57.878906 L 6.8613281 672.12109 C 6.8613281 701.18035 30.2552 724.57422 59.314453 724.57422 L 301.77539 724.57422 C 330.83464 724.57422 354.22852 701.18035 354.22852 672.12109 L 354.22852 57.878906 C 354.22852 28.819653 330.83464 5.4257812 301.77539 5.4257812 L 213.09961 5.4257812 A 2.309 2.309 0 0 0 210.81836 7.3847656 L 210.81836 7.4863281 L 210.80469 7.4863281 L 152.19531 7.4863281 A 2.309 2.309 0 0 0 149.90039 5.4257812 L 59.314453 5.4257812 z "
|
|
740
|
+
transform="scale(0.26458334)" />
|
|
741
|
+
<path
|
|
742
|
+
id="path998"
|
|
743
|
+
style="display:inline;fill:url(#linearGradient2652);fill-opacity:1;stroke:none;stroke-width:0.999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
744
|
+
d="M 57.916016,16.966797 C 36.879015,16.966128 19.824638,34.019615 19.824219,55.056641 V 674.94336 c -6.81e-4,21.03776 17.053998,38.09052 38.091797,38.08984 H 180.54492 303.17383 c 21.0378,6.8e-4 38.09248,-17.05208 38.09179,-38.08984 V 55.056641 C 341.26521,34.019613 324.21083,16.966128 303.17383,16.966797 h -48.84766 c -4.45164,0 -6.7539,0.460257 -6.7539,7.521484 0,7.061223 -4.37565,18.958985 -20.03321,18.958985 h -93.98828 c -15.65756,0 -20.0332,-11.897762 -20.0332,-18.958985 0,-7.061226 -2.30227,-7.521484 -6.75391,-7.521484 z"
|
|
745
|
+
transform="scale(0.26458334)" />
|
|
746
|
+
<rect
|
|
747
|
+
style="display:inline;fill:#000000;fill-opacity:1;stroke:#1a1a1a;stroke-width:0.132292;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
|
|
748
|
+
id="rect1030"
|
|
749
|
+
width="15.513851"
|
|
750
|
+
height="1.8761874"
|
|
751
|
+
x="40.264946"
|
|
752
|
+
y="1.4355383"
|
|
753
|
+
ry="0.61085194" />
|
|
754
|
+
<g
|
|
755
|
+
id="g2819"
|
|
756
|
+
transform="translate(4.9056839,1.0604965)"
|
|
757
|
+
style="display:inline">
|
|
758
|
+
<path
|
|
759
|
+
id="rect5261"
|
|
760
|
+
clip-path="none"
|
|
761
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;vector-effect:none;fill:url(#pattern3129);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.203476;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
762
|
+
d="m 36.333803,0.75890791 h 13.560728 c 0.306977,0 0.55411,0.24713319 0.55411,0.55411019 v 2e-7 c 0,0.306977 -0.247133,0.5541103 -0.55411,0.5541103 H 36.333803 c -0.306978,0 -0.55411,-0.2471333 -0.55411,-0.5541103 v -2e-7 c 0,-0.306977 0.247132,-0.55411019 0.55411,-0.55411019 z" />
|
|
763
|
+
<path
|
|
764
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;vector-effect:none;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#292929;stroke-width:0.0406953;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
765
|
+
d="m 36.333801,0.75906771 c -0.306976,0 -0.553997,0.24701959 -0.553997,0.55399659 0,0.3069765 0.247021,0.5539963 0.553997,0.5539963 h 13.564771 c 0.306978,0 0.553997,-0.2470198 0.553997,-0.5539963 0,-0.306977 -0.247019,-0.55399659 -0.553997,-0.55399659 z"
|
|
766
|
+
id="rect5261-0"
|
|
767
|
+
clip-path="none" />
|
|
768
|
+
<g
|
|
769
|
+
id="g2576"
|
|
770
|
+
clip-path="url(#clipPath2586-8)"
|
|
771
|
+
style="filter:url(#filter2810)"
|
|
772
|
+
transform="translate(13.82448,-1.4319817)">
|
|
773
|
+
<path
|
|
774
|
+
id="path999-2"
|
|
775
|
+
d="m 68.850589,7.9824588 c -10e-7,0.1268514 -0.102834,0.2296848 -0.229685,0.2296847 -0.126852,10e-8 -0.229685,-0.1028333 -0.229685,-0.2296847 0,-0.1268515 0.102833,-0.2296849 0.229685,-0.2296848 0.126851,-10e-8 0.229684,0.1028333 0.229685,0.2296848 z"
|
|
776
|
+
style="display:inline;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0319826;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
777
|
+
transform="matrix(0.54888221,0,0,0.7690451,-1.1627745,-3.3938183)"
|
|
778
|
+
clip-path="none"
|
|
779
|
+
mask="none" />
|
|
780
|
+
<path
|
|
781
|
+
id="path999-2-2"
|
|
782
|
+
d="m 21.955324,2.7450525 c 10e-7,0.097555 0.05644,0.176638 0.12607,0.1766379 0.06963,10e-8 0.12607,-0.079083 0.12607,-0.1766379 0,-0.097554 -0.05644,-0.176638 -0.12607,-0.1766379 -0.06963,-1e-7 -0.126069,0.079083 -0.12607,0.1766379 z"
|
|
783
|
+
style="display:inline;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0207792;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
784
|
+
clip-path="none"
|
|
785
|
+
mask="none" />
|
|
786
|
+
</g>
|
|
787
|
+
</g>
|
|
788
|
+
<g
|
|
789
|
+
id="g2170"
|
|
790
|
+
transform="matrix(0.86611782,0,0,0.86611782,75.937463,1.8588713)"
|
|
791
|
+
style="display:inline">
|
|
792
|
+
<circle
|
|
793
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#161616;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0343694;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
794
|
+
id="path5263"
|
|
795
|
+
cx="-46.563324"
|
|
796
|
+
cy="5.9794521"
|
|
797
|
+
r="1.7467661" />
|
|
798
|
+
<circle
|
|
799
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#0a0d13;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0264583;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
800
|
+
id="path5265"
|
|
801
|
+
cx="-46.563324"
|
|
802
|
+
cy="5.9794521"
|
|
803
|
+
r="1.0774301" />
|
|
804
|
+
<circle
|
|
805
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#091427;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0264583;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
806
|
+
id="path5267"
|
|
807
|
+
cx="-46.563324"
|
|
808
|
+
cy="5.9794521"
|
|
809
|
+
r="0.82091707" />
|
|
810
|
+
<path
|
|
811
|
+
style="display:inline;fill:#235a91;fill-opacity:0.556075;fill-rule:evenodd;stroke:none;stroke-width:0.0264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5343)"
|
|
812
|
+
d="m -47.128431,5.4302366 c -0.09735,0.010246 -0.235679,0.1588277 -0.245928,0.4508659 -0.01024,0.292038 0.117842,0.4508656 0.189571,0.4508656 0.07173,0 0.368889,-0.4252483 0.05635,-0.9017315 z"
|
|
813
|
+
id="path5271" />
|
|
814
|
+
<path
|
|
815
|
+
style="display:inline;fill:#235a91;fill-opacity:0.556075;fill-rule:evenodd;stroke:none;stroke-width:0.0264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5347)"
|
|
816
|
+
d="m -46.429328,5.3279691 c -0.153553,0.047247 -0.183083,0.2952938 -0.177178,0.4370348 0.0059,0.1417412 0.206706,0.5138116 0.448847,0.4311293 0.242142,-0.082682 0.283483,-0.3897882 0.183084,-0.5964939 -0.100401,-0.2067057 -0.283483,-0.3543525 -0.454753,-0.2716702 z"
|
|
817
|
+
id="path5273" />
|
|
818
|
+
</g>
|
|
819
|
+
</g>
|
|
820
|
+
</svg>
|