@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,611 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
width="390"
|
|
4
|
+
height="802"
|
|
5
|
+
viewBox="0 0 103.1875 212.19585"
|
|
6
|
+
version="1.1"
|
|
7
|
+
id="svg8"
|
|
8
|
+
xml:space="preserve"
|
|
9
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
12
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
13
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
14
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
|
|
15
|
+
id="defs2"><linearGradient
|
|
16
|
+
id="linearGradient821"><stop
|
|
17
|
+
style="stop-color:#000000;stop-opacity:1;"
|
|
18
|
+
offset="0"
|
|
19
|
+
id="stop817" /><stop
|
|
20
|
+
style="stop-color:#000000;stop-opacity:0;"
|
|
21
|
+
offset="1"
|
|
22
|
+
id="stop819" /></linearGradient><clipPath
|
|
23
|
+
clipPathUnits="userSpaceOnUse"
|
|
24
|
+
id="clipPath4960"><path
|
|
25
|
+
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"
|
|
26
|
+
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"
|
|
27
|
+
id="path4962" /></clipPath><clipPath
|
|
28
|
+
clipPathUnits="userSpaceOnUse"
|
|
29
|
+
id="clipPath5059"><path
|
|
30
|
+
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"
|
|
31
|
+
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"
|
|
32
|
+
id="path5061" /></clipPath><clipPath
|
|
33
|
+
clipPathUnits="userSpaceOnUse"
|
|
34
|
+
id="clipPath5401"><rect
|
|
35
|
+
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"
|
|
36
|
+
id="rect5403"
|
|
37
|
+
width="4.3765388"
|
|
38
|
+
height="7.4167299"
|
|
39
|
+
x="-13.8777"
|
|
40
|
+
y="25.856594"
|
|
41
|
+
ry="0.45101735" /></clipPath><clipPath
|
|
42
|
+
clipPathUnits="userSpaceOnUse"
|
|
43
|
+
id="clipPath5589"><path
|
|
44
|
+
id="path5591"
|
|
45
|
+
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"
|
|
46
|
+
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" /></clipPath><clipPath
|
|
47
|
+
clipPathUnits="userSpaceOnUse"
|
|
48
|
+
id="clipPath5589-7"><path
|
|
49
|
+
id="path5591-5"
|
|
50
|
+
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"
|
|
51
|
+
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" /></clipPath><clipPath
|
|
52
|
+
clipPathUnits="userSpaceOnUse"
|
|
53
|
+
id="clipPath5738"><path
|
|
54
|
+
id="path5740"
|
|
55
|
+
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"
|
|
56
|
+
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" /></clipPath><clipPath
|
|
57
|
+
clipPathUnits="userSpaceOnUse"
|
|
58
|
+
id="clipPath922"><rect
|
|
59
|
+
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"
|
|
60
|
+
id="rect924"
|
|
61
|
+
width="77.201637"
|
|
62
|
+
height="33.545391"
|
|
63
|
+
x="-67.752235"
|
|
64
|
+
y="-14.211905" /></clipPath><clipPath
|
|
65
|
+
clipPathUnits="userSpaceOnUse"
|
|
66
|
+
id="clipPath972"><rect
|
|
67
|
+
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"
|
|
68
|
+
id="rect974"
|
|
69
|
+
width="253.12003"
|
|
70
|
+
height="506.59415"
|
|
71
|
+
x="-527.82013"
|
|
72
|
+
y="-172.67062" /></clipPath><mask
|
|
73
|
+
maskUnits="userSpaceOnUse"
|
|
74
|
+
id="mask1062"><path
|
|
75
|
+
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"
|
|
76
|
+
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"
|
|
77
|
+
id="path1064" /></mask><pattern
|
|
78
|
+
patternUnits="userSpaceOnUse"
|
|
79
|
+
width="1.171848"
|
|
80
|
+
height="1.1718804"
|
|
81
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
82
|
+
id="pattern2874"><g
|
|
83
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
84
|
+
id="g2781"><rect
|
|
85
|
+
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"
|
|
86
|
+
id="rect2730"
|
|
87
|
+
width="0.15502979"
|
|
88
|
+
height="0.15502979"
|
|
89
|
+
x="-76.445686"
|
|
90
|
+
y="7.0699267" /><rect
|
|
91
|
+
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"
|
|
92
|
+
id="rect2730-5"
|
|
93
|
+
width="0.15502979"
|
|
94
|
+
height="0.15502979"
|
|
95
|
+
x="-76.290665"
|
|
96
|
+
y="7.224957" /><rect
|
|
97
|
+
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"
|
|
98
|
+
id="rect2730-5-5"
|
|
99
|
+
width="0.15502979"
|
|
100
|
+
height="0.15502979"
|
|
101
|
+
x="-76.290665"
|
|
102
|
+
y="7.0699267" /><rect
|
|
103
|
+
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"
|
|
104
|
+
id="rect2730-5-5-0"
|
|
105
|
+
width="0.15502979"
|
|
106
|
+
height="0.15502979"
|
|
107
|
+
x="-76.445686"
|
|
108
|
+
y="7.224957" /></g></pattern><clipPath
|
|
109
|
+
clipPathUnits="userSpaceOnUse"
|
|
110
|
+
id="clipPath5738-4"><path
|
|
111
|
+
id="path5740-9"
|
|
112
|
+
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"
|
|
113
|
+
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" /></clipPath><clipPath
|
|
114
|
+
clipPathUnits="userSpaceOnUse"
|
|
115
|
+
id="clipPath5401-9"><rect
|
|
116
|
+
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"
|
|
117
|
+
id="rect5403-9"
|
|
118
|
+
width="4.3765388"
|
|
119
|
+
height="7.4167299"
|
|
120
|
+
x="-13.8777"
|
|
121
|
+
y="25.856594"
|
|
122
|
+
ry="0.45101735" /></clipPath><clipPath
|
|
123
|
+
clipPathUnits="userSpaceOnUse"
|
|
124
|
+
id="clipPath5589-3"><path
|
|
125
|
+
id="path5591-6"
|
|
126
|
+
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"
|
|
127
|
+
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" /></clipPath><clipPath
|
|
128
|
+
clipPathUnits="userSpaceOnUse"
|
|
129
|
+
id="clipPath5589-7-8"><path
|
|
130
|
+
id="path5591-5-3"
|
|
131
|
+
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"
|
|
132
|
+
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" /></clipPath><clipPath
|
|
133
|
+
clipPathUnits="userSpaceOnUse"
|
|
134
|
+
id="clipPath4960-5"><path
|
|
135
|
+
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"
|
|
136
|
+
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"
|
|
137
|
+
id="path4962-4" /></clipPath><pattern
|
|
138
|
+
patternUnits="userSpaceOnUse"
|
|
139
|
+
width="1.171848"
|
|
140
|
+
height="1.1718804"
|
|
141
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
142
|
+
id="pattern2874-7"><g
|
|
143
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
144
|
+
id="g2781-1"><rect
|
|
145
|
+
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"
|
|
146
|
+
id="rect2730-3"
|
|
147
|
+
width="0.15502979"
|
|
148
|
+
height="0.15502979"
|
|
149
|
+
x="-76.445686"
|
|
150
|
+
y="7.0699267" /><rect
|
|
151
|
+
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"
|
|
152
|
+
id="rect2730-5-8"
|
|
153
|
+
width="0.15502979"
|
|
154
|
+
height="0.15502979"
|
|
155
|
+
x="-76.290665"
|
|
156
|
+
y="7.224957" /><rect
|
|
157
|
+
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"
|
|
158
|
+
id="rect2730-5-5-1"
|
|
159
|
+
width="0.15502979"
|
|
160
|
+
height="0.15502979"
|
|
161
|
+
x="-76.290665"
|
|
162
|
+
y="7.0699267" /><rect
|
|
163
|
+
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"
|
|
164
|
+
id="rect2730-5-5-0-1"
|
|
165
|
+
width="0.15502979"
|
|
166
|
+
height="0.15502979"
|
|
167
|
+
x="-76.445686"
|
|
168
|
+
y="7.224957" /></g></pattern><clipPath
|
|
169
|
+
clipPathUnits="userSpaceOnUse"
|
|
170
|
+
id="clipPath948"><rect
|
|
171
|
+
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"
|
|
172
|
+
id="rect950"
|
|
173
|
+
width="161.20644"
|
|
174
|
+
height="317.73975"
|
|
175
|
+
x="-280.93082"
|
|
176
|
+
y="-83.752052" /></clipPath><clipPath
|
|
177
|
+
clipPathUnits="userSpaceOnUse"
|
|
178
|
+
id="clipPath967"><rect
|
|
179
|
+
style="fill:#6ecb55;fill-opacity:0.540323;stroke:none;stroke-width:0.405315;stroke-linecap:round;stroke-linejoin:round"
|
|
180
|
+
id="rect969"
|
|
181
|
+
width="84.888893"
|
|
182
|
+
height="172.10544"
|
|
183
|
+
x="81.619461"
|
|
184
|
+
y="-32.789757" /></clipPath><mask
|
|
185
|
+
maskUnits="userSpaceOnUse"
|
|
186
|
+
id="mask2042"><path
|
|
187
|
+
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"
|
|
188
|
+
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"
|
|
189
|
+
id="path2044" /></mask><clipPath
|
|
190
|
+
clipPathUnits="userSpaceOnUse"
|
|
191
|
+
id="clipPath2353"><rect
|
|
192
|
+
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"
|
|
193
|
+
id="rect2355"
|
|
194
|
+
width="355.61673"
|
|
195
|
+
height="728.3255"
|
|
196
|
+
x="2.1916344"
|
|
197
|
+
y="-3.1627369"
|
|
198
|
+
ry="55.641438" /></clipPath><clipPath
|
|
199
|
+
clipPathUnits="userSpaceOnUse"
|
|
200
|
+
id="clipPath944"><rect
|
|
201
|
+
style="fill:#52d670;fill-opacity:0.435484;stroke:none;stroke-width:0.591656;stroke-linecap:round;stroke-linejoin:round"
|
|
202
|
+
id="rect946"
|
|
203
|
+
width="78.845848"
|
|
204
|
+
height="107.09153"
|
|
205
|
+
x="-173.95055"
|
|
206
|
+
y="-35.402409" /></clipPath><clipPath
|
|
207
|
+
clipPathUnits="userSpaceOnUse"
|
|
208
|
+
id="clipPath3611"><rect
|
|
209
|
+
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"
|
|
210
|
+
id="rect3613"
|
|
211
|
+
width="315.79929"
|
|
212
|
+
height="350.47412"
|
|
213
|
+
x="-227.84766"
|
|
214
|
+
y="-35.209526" /></clipPath><clipPath
|
|
215
|
+
clipPathUnits="userSpaceOnUse"
|
|
216
|
+
id="clipPath2353-1"><rect
|
|
217
|
+
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"
|
|
218
|
+
id="rect2355-3"
|
|
219
|
+
width="355.61673"
|
|
220
|
+
height="728.3255"
|
|
221
|
+
x="2.1916344"
|
|
222
|
+
y="-3.1627369"
|
|
223
|
+
ry="55.641438" /></clipPath><pattern
|
|
224
|
+
patternUnits="userSpaceOnUse"
|
|
225
|
+
width="1.171848"
|
|
226
|
+
height="1.1718804"
|
|
227
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
228
|
+
id="pattern2874-7-9"><g
|
|
229
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
230
|
+
id="g2781-1-1"><rect
|
|
231
|
+
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"
|
|
232
|
+
id="rect2730-3-0"
|
|
233
|
+
width="0.15502979"
|
|
234
|
+
height="0.15502979"
|
|
235
|
+
x="-76.445686"
|
|
236
|
+
y="7.0699267" /><rect
|
|
237
|
+
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"
|
|
238
|
+
id="rect2730-5-8-6"
|
|
239
|
+
width="0.15502979"
|
|
240
|
+
height="0.15502979"
|
|
241
|
+
x="-76.290665"
|
|
242
|
+
y="7.224957" /><rect
|
|
243
|
+
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"
|
|
244
|
+
id="rect2730-5-5-1-5"
|
|
245
|
+
width="0.15502979"
|
|
246
|
+
height="0.15502979"
|
|
247
|
+
x="-76.290665"
|
|
248
|
+
y="7.0699267" /><rect
|
|
249
|
+
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"
|
|
250
|
+
id="rect2730-5-5-0-1-4"
|
|
251
|
+
width="0.15502979"
|
|
252
|
+
height="0.15502979"
|
|
253
|
+
x="-76.445686"
|
|
254
|
+
y="7.224957" /></g></pattern><mask
|
|
255
|
+
maskUnits="userSpaceOnUse"
|
|
256
|
+
id="mask2042-5"><path
|
|
257
|
+
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"
|
|
258
|
+
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"
|
|
259
|
+
id="path2044-4" /></mask><clipPath
|
|
260
|
+
clipPathUnits="userSpaceOnUse"
|
|
261
|
+
id="clipPath2353-1-7"><rect
|
|
262
|
+
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"
|
|
263
|
+
id="rect2355-3-0"
|
|
264
|
+
width="355.61673"
|
|
265
|
+
height="728.3255"
|
|
266
|
+
x="2.1916344"
|
|
267
|
+
y="-3.1627369"
|
|
268
|
+
ry="55.641438" /></clipPath><pattern
|
|
269
|
+
patternUnits="userSpaceOnUse"
|
|
270
|
+
width="1.171848"
|
|
271
|
+
height="1.1718804"
|
|
272
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
273
|
+
id="pattern2874-7-9-1"><g
|
|
274
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
275
|
+
id="g2781-1-1-7"><rect
|
|
276
|
+
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"
|
|
277
|
+
id="rect2730-3-0-3"
|
|
278
|
+
width="0.15502979"
|
|
279
|
+
height="0.15502979"
|
|
280
|
+
x="-76.445686"
|
|
281
|
+
y="7.0699267" /><rect
|
|
282
|
+
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"
|
|
283
|
+
id="rect2730-5-8-6-9"
|
|
284
|
+
width="0.15502979"
|
|
285
|
+
height="0.15502979"
|
|
286
|
+
x="-76.290665"
|
|
287
|
+
y="7.224957" /><rect
|
|
288
|
+
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"
|
|
289
|
+
id="rect2730-5-5-1-5-8"
|
|
290
|
+
width="0.15502979"
|
|
291
|
+
height="0.15502979"
|
|
292
|
+
x="-76.290665"
|
|
293
|
+
y="7.0699267" /><rect
|
|
294
|
+
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"
|
|
295
|
+
id="rect2730-5-5-0-1-4-7"
|
|
296
|
+
width="0.15502979"
|
|
297
|
+
height="0.15502979"
|
|
298
|
+
x="-76.445686"
|
|
299
|
+
y="7.224957" /></g></pattern><mask
|
|
300
|
+
maskUnits="userSpaceOnUse"
|
|
301
|
+
id="mask2042-5-2"><path
|
|
302
|
+
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"
|
|
303
|
+
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"
|
|
304
|
+
id="path2044-4-7" /></mask><clipPath
|
|
305
|
+
clipPathUnits="userSpaceOnUse"
|
|
306
|
+
id="clipPath1217"><rect
|
|
307
|
+
style="fill:#648bab;stroke-width:0.652928;stroke-linecap:round;stroke-linejoin:round;stop-color:#000000"
|
|
308
|
+
id="rect1219"
|
|
309
|
+
width="83.925377"
|
|
310
|
+
height="106.55812"
|
|
311
|
+
x="108.03319"
|
|
312
|
+
y="-2.6168919" /></clipPath><clipPath
|
|
313
|
+
clipPathUnits="userSpaceOnUse"
|
|
314
|
+
id="clipPath1244"><rect
|
|
315
|
+
style="fill:#648bab;stroke-width:0.185804;stroke-linecap:round;stroke-linejoin:round;stop-color:#000000"
|
|
316
|
+
id="rect1246"
|
|
317
|
+
width="32.192707"
|
|
318
|
+
height="106.74944"
|
|
319
|
+
x="-76.037987"
|
|
320
|
+
y="32.587708" /></clipPath><pattern
|
|
321
|
+
patternUnits="userSpaceOnUse"
|
|
322
|
+
width="1.171848"
|
|
323
|
+
height="1.1718804"
|
|
324
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
325
|
+
id="pattern2874-7-2-1-0-3"><g
|
|
326
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
327
|
+
id="g2781-1-7-7-0-3"><rect
|
|
328
|
+
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"
|
|
329
|
+
id="rect2730-3-5-3-3-7"
|
|
330
|
+
width="0.15502979"
|
|
331
|
+
height="0.15502979"
|
|
332
|
+
x="-76.445686"
|
|
333
|
+
y="7.0699267" /><rect
|
|
334
|
+
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"
|
|
335
|
+
id="rect2730-5-8-3-9-8-8"
|
|
336
|
+
width="0.15502979"
|
|
337
|
+
height="0.15502979"
|
|
338
|
+
x="-76.290665"
|
|
339
|
+
y="7.224957" /><rect
|
|
340
|
+
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"
|
|
341
|
+
id="rect2730-5-5-1-3-1-1-2"
|
|
342
|
+
width="0.15502979"
|
|
343
|
+
height="0.15502979"
|
|
344
|
+
x="-76.290665"
|
|
345
|
+
y="7.0699267" /><rect
|
|
346
|
+
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"
|
|
347
|
+
id="rect2730-5-5-0-1-8-3-5-8"
|
|
348
|
+
width="0.15502979"
|
|
349
|
+
height="0.15502979"
|
|
350
|
+
x="-76.445686"
|
|
351
|
+
y="7.224957" /></g></pattern><clipPath
|
|
352
|
+
clipPathUnits="userSpaceOnUse"
|
|
353
|
+
id="clipPath2586"><path
|
|
354
|
+
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"
|
|
355
|
+
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"
|
|
356
|
+
id="path2588" /></clipPath><pattern
|
|
357
|
+
patternUnits="userSpaceOnUse"
|
|
358
|
+
width="1.171848"
|
|
359
|
+
height="1.1718804"
|
|
360
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
361
|
+
id="pattern2874-7-2-1-0-3-9"><g
|
|
362
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
363
|
+
id="g2781-1-7-7-0-3-3"><rect
|
|
364
|
+
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"
|
|
365
|
+
id="rect2730-3-5-3-3-7-9"
|
|
366
|
+
width="0.15502979"
|
|
367
|
+
height="0.15502979"
|
|
368
|
+
x="-76.445686"
|
|
369
|
+
y="7.0699267" /><rect
|
|
370
|
+
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"
|
|
371
|
+
id="rect2730-5-8-3-9-8-8-1"
|
|
372
|
+
width="0.15502979"
|
|
373
|
+
height="0.15502979"
|
|
374
|
+
x="-76.290665"
|
|
375
|
+
y="7.224957" /><rect
|
|
376
|
+
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"
|
|
377
|
+
id="rect2730-5-5-1-3-1-1-2-2"
|
|
378
|
+
width="0.15502979"
|
|
379
|
+
height="0.15502979"
|
|
380
|
+
x="-76.290665"
|
|
381
|
+
y="7.0699267" /><rect
|
|
382
|
+
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"
|
|
383
|
+
id="rect2730-5-5-0-1-8-3-5-8-3"
|
|
384
|
+
width="0.15502979"
|
|
385
|
+
height="0.15502979"
|
|
386
|
+
x="-76.445686"
|
|
387
|
+
y="7.224957" /></g></pattern><clipPath
|
|
388
|
+
clipPathUnits="userSpaceOnUse"
|
|
389
|
+
id="clipPath2586-8"><path
|
|
390
|
+
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"
|
|
391
|
+
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"
|
|
392
|
+
id="path2588-9" /></clipPath><clipPath
|
|
393
|
+
clipPathUnits="userSpaceOnUse"
|
|
394
|
+
id="clipPath1187"><rect
|
|
395
|
+
style="fill:#8194aa;stroke:none;stroke-width:3.71168;paint-order:stroke fill markers;stop-color:#000000"
|
|
396
|
+
id="rect1189"
|
|
397
|
+
width="297.31238"
|
|
398
|
+
height="155.27623"
|
|
399
|
+
x="298.43503"
|
|
400
|
+
y="-155.81021" /></clipPath><clipPath
|
|
401
|
+
clipPathUnits="userSpaceOnUse"
|
|
402
|
+
id="clipPath1187-1"><rect
|
|
403
|
+
style="fill:#8194aa;stroke:none;stroke-width:3.71168;paint-order:stroke fill markers;stop-color:#000000"
|
|
404
|
+
id="rect1189-8"
|
|
405
|
+
width="297.31238"
|
|
406
|
+
height="155.27623"
|
|
407
|
+
x="298.43503"
|
|
408
|
+
y="-155.81021" /></clipPath><clipPath
|
|
409
|
+
clipPathUnits="userSpaceOnUse"
|
|
410
|
+
id="clipPath1187-1-5"><rect
|
|
411
|
+
style="fill:#8194aa;stroke:none;stroke-width:3.71168;paint-order:stroke fill markers;stop-color:#000000"
|
|
412
|
+
id="rect1189-8-6"
|
|
413
|
+
width="297.31238"
|
|
414
|
+
height="155.27623"
|
|
415
|
+
x="298.43503"
|
|
416
|
+
y="-155.81021" /></clipPath><clipPath
|
|
417
|
+
clipPathUnits="userSpaceOnUse"
|
|
418
|
+
id="clipPath3010"><rect
|
|
419
|
+
style="fill:#005fff;fill-opacity:1;stroke:none;stroke-width:17.8871;paint-order:stroke fill markers;stop-color:#000000"
|
|
420
|
+
id="rect3012"
|
|
421
|
+
width="100.65156"
|
|
422
|
+
height="204.19612"
|
|
423
|
+
x="-246.83929"
|
|
424
|
+
y="-228.06664" /></clipPath><clipPath
|
|
425
|
+
clipPathUnits="userSpaceOnUse"
|
|
426
|
+
id="clipPath1"><rect
|
|
427
|
+
style="fill:#34ff48;fill-opacity:0.563567;stroke:none;stroke-width:3.4436"
|
|
428
|
+
id="rect2"
|
|
429
|
+
width="88.051949"
|
|
430
|
+
height="180.27147"
|
|
431
|
+
x="183.78531"
|
|
432
|
+
y="-84.176743" /></clipPath><clipPath
|
|
433
|
+
clipPathUnits="userSpaceOnUse"
|
|
434
|
+
id="clipPath16"><rect
|
|
435
|
+
style="fill:#34ff48;fill-opacity:0.563567;stroke:none;stroke-width:3.44359"
|
|
436
|
+
id="rect16"
|
|
437
|
+
width="88.051949"
|
|
438
|
+
height="180.27147"
|
|
439
|
+
x="183.80907"
|
|
440
|
+
y="-84.509171" /></clipPath><linearGradient
|
|
441
|
+
xlink:href="#linearGradient26128"
|
|
442
|
+
id="linearGradient26130"
|
|
443
|
+
x1="39.382565"
|
|
444
|
+
y1="1.3978949"
|
|
445
|
+
x2="39.382565"
|
|
446
|
+
y2="2.0960436"
|
|
447
|
+
gradientUnits="userSpaceOnUse"
|
|
448
|
+
gradientTransform="matrix(1.0357138,0,0,1.2000355,2.267892,-0.32469417)" /><linearGradient
|
|
449
|
+
id="linearGradient26128"><stop
|
|
450
|
+
style="stop-color:#000000;stop-opacity:1;"
|
|
451
|
+
offset="0"
|
|
452
|
+
id="stop26753" /><stop
|
|
453
|
+
style="stop-color:#212121;stop-opacity:1;"
|
|
454
|
+
offset="1"
|
|
455
|
+
id="stop26126" /></linearGradient><filter
|
|
456
|
+
style="color-interpolation-filters:sRGB"
|
|
457
|
+
id="filter5343"
|
|
458
|
+
x="-0.19227619"
|
|
459
|
+
width="1.3845524"
|
|
460
|
+
y="-0.082464501"
|
|
461
|
+
height="1.164929"><feGaussianBlur
|
|
462
|
+
stdDeviation="0.030983682"
|
|
463
|
+
id="feGaussianBlur5345" /></filter><filter
|
|
464
|
+
style="color-interpolation-filters:sRGB"
|
|
465
|
+
id="filter5347"
|
|
466
|
+
x="-0.10877967"
|
|
467
|
+
width="1.2175593"
|
|
468
|
+
y="-0.082313926"
|
|
469
|
+
height="1.1646279"><feGaussianBlur
|
|
470
|
+
stdDeviation="0.030983682"
|
|
471
|
+
id="feGaussianBlur5349" /></filter><filter
|
|
472
|
+
style="color-interpolation-filters:sRGB"
|
|
473
|
+
id="filter4"
|
|
474
|
+
x="-0.0042261471"
|
|
475
|
+
y="-0.0020188741"
|
|
476
|
+
width="1.0084523"
|
|
477
|
+
height="1.0040377"><feGaussianBlur
|
|
478
|
+
stdDeviation="0.17726949"
|
|
479
|
+
id="feGaussianBlur4" /></filter><linearGradient
|
|
480
|
+
xlink:href="#linearGradient20"
|
|
481
|
+
id="linearGradient14"
|
|
482
|
+
gradientUnits="userSpaceOnUse"
|
|
483
|
+
gradientTransform="translate(-294.44119,9.6077328)"
|
|
484
|
+
x1="305.22473"
|
|
485
|
+
y1="62.325741"
|
|
486
|
+
x2="305.22473"
|
|
487
|
+
y2="75.992447" /><linearGradient
|
|
488
|
+
xlink:href="#linearGradient20"
|
|
489
|
+
id="linearGradient15"
|
|
490
|
+
gradientUnits="userSpaceOnUse"
|
|
491
|
+
gradientTransform="translate(-294.44119,-24.125334)"
|
|
492
|
+
x1="305.22473"
|
|
493
|
+
y1="62.325741"
|
|
494
|
+
x2="305.22473"
|
|
495
|
+
y2="70.357491" /><linearGradient
|
|
496
|
+
xlink:href="#linearGradient20"
|
|
497
|
+
id="linearGradient12"
|
|
498
|
+
gradientUnits="userSpaceOnUse"
|
|
499
|
+
gradientTransform="translate(-294.44119,-9.1809042)"
|
|
500
|
+
x1="305.22473"
|
|
501
|
+
y1="62.325741"
|
|
502
|
+
x2="305.22473"
|
|
503
|
+
y2="75.992447" /><linearGradient
|
|
504
|
+
xlink:href="#linearGradient20"
|
|
505
|
+
id="linearGradient9"
|
|
506
|
+
x1="305.22473"
|
|
507
|
+
y1="62.325741"
|
|
508
|
+
x2="305.22473"
|
|
509
|
+
y2="85.161827"
|
|
510
|
+
gradientUnits="userSpaceOnUse"
|
|
511
|
+
gradientTransform="translate(-202.23113,0.60165483)" /><linearGradient
|
|
512
|
+
id="linearGradient20"><stop
|
|
513
|
+
style="stop-color:#7c6655;stop-opacity:1;"
|
|
514
|
+
offset="0"
|
|
515
|
+
id="stop16" /><stop
|
|
516
|
+
style="stop-color:#f8eadd;stop-opacity:1;"
|
|
517
|
+
offset="0.12410501"
|
|
518
|
+
id="stop17" /><stop
|
|
519
|
+
style="stop-color:#aa998b;stop-opacity:1;"
|
|
520
|
+
offset="0.76491648"
|
|
521
|
+
id="stop18" /><stop
|
|
522
|
+
style="stop-color:#817469;stop-opacity:1;"
|
|
523
|
+
offset="0.98531687"
|
|
524
|
+
id="stop19" /><stop
|
|
525
|
+
style="stop-color:#bcad9a;stop-opacity:1;"
|
|
526
|
+
offset="1"
|
|
527
|
+
id="stop20" /></linearGradient></defs><metadata
|
|
528
|
+
id="metadata5"><rdf:RDF><cc:Work
|
|
529
|
+
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
|
530
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><path
|
|
531
|
+
id="rect17160-9-0-0"
|
|
532
|
+
style="fill:#6a5f56;fill-opacity:1;stroke-width:0.271631;stop-color:#000000"
|
|
533
|
+
d="m 102.77247,62.806734 h -1.40795 c -0.1225,0 -0.22113,0.09862 -0.22113,0.22113 v 22.659837 c 0,0.122506 0.0986,0.22113 0.22113,0.22113 h 1.40795 c 0.1225,0 0.22113,-0.09862 0.22113,-0.22113 V 63.027864 c 0,-0.122506 -0.0986,-0.22113 -0.22113,-0.22113 z" /><path
|
|
534
|
+
id="rect17160-5-4-4-4"
|
|
535
|
+
style="fill:url(#linearGradient9);fill-opacity:1;stroke-width:0.264137;stop-color:#000000"
|
|
536
|
+
d="m 102.78499,62.89274 h -1.43298 c -0.11558,0 -0.20862,0.09325 -0.20862,0.209095 v 22.511892 c 0,0.11584 0.093,0.209097 0.20862,0.209097 h 1.43298 c 0.11557,0 0.20861,-0.09325 0.20861,-0.209097 V 63.101835 c 0,-0.115839 -0.093,-0.209095 -0.20861,-0.209095 z" /><path
|
|
537
|
+
id="rect17160-9-0-0-9"
|
|
538
|
+
style="fill:#6a5f56;fill-opacity:1;stroke-width:0.271631;stop-color:#000000"
|
|
539
|
+
d="M 1.822982,53.024174 H 0.41503203 c -0.1225,0 -0.22113,0.09862 -0.22113,0.22113 v 13.474122 c 0,0.122506 0.0986,0.22113 0.22113,0.22113 H 1.822982 c 0.1225,0 0.22113,-0.09862 0.22113,-0.22113 V 53.245304 c 0,-0.122506 -0.0986,-0.22113 -0.22113,-0.22113 z" /><path
|
|
540
|
+
id="rect17160-5-4-4-4-3"
|
|
541
|
+
style="fill:url(#linearGradient12);fill-opacity:1;stroke-width:0.264137;stop-color:#000000"
|
|
542
|
+
d="M 1.835502,53.11018 H 0.40252203 c -0.11558,0 -0.20862,0.09325 -0.20862,0.209095 v 13.326177 c 0,0.11584 0.093,0.209097 0.20862,0.209097 H 1.835502 c 0.11557,0 0.20861,-0.09325 0.20861,-0.209097 V 53.319275 c 0,-0.115839 -0.093,-0.209095 -0.20861,-0.209095 z" /><path
|
|
543
|
+
id="rect17160-9-0-0-9-1"
|
|
544
|
+
style="fill:#6a5f56;fill-opacity:1;stroke-width:0.271631;stop-color:#000000"
|
|
545
|
+
d="M 1.822982,38.079741 H 0.41503203 c -0.1225,0 -0.22113,0.09862 -0.22113,0.22113 v 7.838447 c 0,0.122506 0.0986,0.22113 0.22113,0.22113 H 1.822982 c 0.1225,0 0.22113,-0.09862 0.22113,-0.22113 v -7.838447 c 0,-0.122506 -0.0986,-0.22113 -0.22113,-0.22113 z" /><path
|
|
546
|
+
id="rect17160-5-4-4-4-3-6"
|
|
547
|
+
style="fill:url(#linearGradient15);fill-opacity:1;stroke-width:0.264137;stop-color:#000000"
|
|
548
|
+
d="M 1.835502,38.165747 H 0.40252203 c -0.11558,0 -0.20862,0.09325 -0.20862,0.209095 v 7.690502 c 0,0.11584 0.093,0.209097 0.20862,0.209097 H 1.835502 c 0.11557,0 0.20861,-0.09325 0.20861,-0.209097 v -7.690502 c 0,-0.115839 -0.093,-0.209095 -0.20861,-0.209095 z" /><path
|
|
549
|
+
id="rect17160-9-0-0-9-4"
|
|
550
|
+
style="fill:#6a5f56;fill-opacity:1;stroke-width:0.271631;stop-color:#000000"
|
|
551
|
+
d="M 1.822982,71.812811 H 0.41503203 c -0.1225,0 -0.22113,0.09862 -0.22113,0.22113 v 13.474121 c 0,0.122506 0.0986,0.22113 0.22113,0.22113 H 1.822982 c 0.1225,0 0.22113,-0.09862 0.22113,-0.22113 V 72.033941 c 0,-0.122506 -0.0986,-0.22113 -0.22113,-0.22113 z" /><path
|
|
552
|
+
id="rect17160-5-4-4-4-3-0"
|
|
553
|
+
style="fill:url(#linearGradient14);fill-opacity:1;stroke-width:0.264137;stop-color:#000000"
|
|
554
|
+
d="M 1.835502,71.898817 H 0.40252203 c -0.11558,0 -0.20862,0.09325 -0.20862,0.209095 v 13.326176 c 0,0.11584 0.093,0.209097 0.20862,0.209097 H 1.835502 c 0.11557,0 0.20861,-0.09325 0.20861,-0.209097 V 72.107912 c 0,-0.115839 -0.093,-0.209095 -0.20861,-0.209095 z" /><path
|
|
555
|
+
id="rect3"
|
|
556
|
+
style="fill:#73675d;stroke-width:2.01436;fill-opacity:1"
|
|
557
|
+
d="m 16.374462,0.12191583 h 70.43854 c 8.65752,0 15.627288,6.96977097 15.627288,15.62728817 V 196.44665 c 0,8.65751 -6.969768,15.62728 -15.627288,15.62728 h -70.43854 c -8.65751,0 -15.62727997,-6.96977 -15.62727997,-15.62728 V 15.749204 c 0,-8.6575172 6.96976997,-15.62728817 15.62727997,-15.62728817 z" /><path
|
|
558
|
+
id="rect4"
|
|
559
|
+
style="fill:#e3cebc;stroke-width:4.49668;filter:url(#filter4);fill-opacity:1"
|
|
560
|
+
d="m 16.620682,0.73058183 h 69.94614 c 8.51054,0 15.361988,6.85144897 15.361988,15.36199417 V 196.10326 c 0,8.51054 -6.851448,15.36199 -15.361988,15.36199 h -69.94614 c -8.51055,0 -15.362,-6.85145 -15.362,-15.36199 V 16.092576 c 0,-8.5105452 6.85145,-15.36199417 15.362,-15.36199417 z" /><path
|
|
561
|
+
id="rect3-6"
|
|
562
|
+
style="fill:#3d342c;fill-opacity:0.295364;stroke:none;stroke-width:2.01436"
|
|
563
|
+
d="M 81.270522,0.12208583 V 20.519294 H 0.74736203 v 1.296045 H 102.44028 V 20.519294 H 82.566562 V 0.12208583 Z M 0.74736203,190.38045 v 1.29605 H 20.620572 v 20.39719 h 1.29604 V 191.6765 h 80.523668 v -1.29605 z" /><path
|
|
564
|
+
id="rect5"
|
|
565
|
+
style="fill:#121212;stroke-width:4.9161;fill-opacity:1"
|
|
566
|
+
d="m 16.858662,1.3528278 h 69.47018 c 8.21986,0 14.837278,6.617428 14.837278,14.8372832 V 196.00574 c 0,8.21985 -6.617418,14.83728 -14.837278,14.83728 h -69.47018 c -8.21986,0 -14.83728,-6.61743 -14.83728,-14.83728 V 16.190111 c 0,-8.2198552 6.61742,-14.8372832 14.83728,-14.8372832 z" /><path
|
|
567
|
+
id="rect6"
|
|
568
|
+
style="stroke-width:1.52333"
|
|
569
|
+
d="m 17.436942,2.2986668 h 68.31363 c 7.85291,0 14.17493,6.322019 14.17493,14.1749302 V 195.72225 c 0,7.85291 -6.32202,14.17493 -14.17493,14.17493 h -68.31363 c -7.85291,0 -14.17493,-6.32202 -14.17493,-14.17493 V 16.473597 c 0,-7.8529112 6.32202,-14.1749302 14.17493,-14.1749302 z" /><path
|
|
570
|
+
id="rect7"
|
|
571
|
+
style="fill:#333333;stroke-width:0.827846"
|
|
572
|
+
d="m 16.398831,3.4495619 h 70.389841 c 6.865831,0 12.393201,5.52737 12.393201,12.3932051 V 196.35308 c 0,6.86583 -5.52737,12.3932 -12.393201,12.3932 H 16.398831 c -6.8658296,0 -12.3931996,-5.52737 -12.3931996,-12.3932 V 15.842767 c 0,-6.8658351 5.52737,-12.3932051 12.3931996,-12.3932051 z" /><g
|
|
573
|
+
id="g17"
|
|
574
|
+
transform="translate(14.095512,79.619208)"><g
|
|
575
|
+
id="g2"
|
|
576
|
+
transform="translate(-209.66638,-79.560681)"><rect
|
|
577
|
+
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-dasharray:none;stroke-opacity:1;paint-order:normal;stop-color:#000000"
|
|
578
|
+
id="rect16441"
|
|
579
|
+
width="27.51193"
|
|
580
|
+
height="8.0999603"
|
|
581
|
+
x="233.40866"
|
|
582
|
+
y="5.938086"
|
|
583
|
+
ry="4.0499802" /><g
|
|
584
|
+
id="g1832"
|
|
585
|
+
transform="matrix(1.7055481,0,0,1.7055481,159.18391,-13.506151)"><circle
|
|
586
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#0a0a0a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.025818;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
587
|
+
id="path5263"
|
|
588
|
+
cx="57.21339"
|
|
589
|
+
cy="13.775171"
|
|
590
|
+
r="1.3121531" /><circle
|
|
591
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#0c0e11;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0198752;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
592
|
+
id="path5265"
|
|
593
|
+
cx="57.21339"
|
|
594
|
+
cy="13.775171"
|
|
595
|
+
r="0.8093546" /><circle
|
|
596
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#12171e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0198752;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
597
|
+
id="path5267"
|
|
598
|
+
cx="57.21339"
|
|
599
|
+
cy="13.775171"
|
|
600
|
+
r="0.61666459" /><path
|
|
601
|
+
style="display:inline;fill:#425a72;fill-opacity:0.299338;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)"
|
|
602
|
+
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"
|
|
603
|
+
id="path5271"
|
|
604
|
+
transform="matrix(0.75118992,0,0,0.75118992,92.191291,9.2834671)" /><path
|
|
605
|
+
style="display:inline;fill:#425a72;fill-opacity:0.299338;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)"
|
|
606
|
+
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"
|
|
607
|
+
id="path5273"
|
|
608
|
+
transform="matrix(0.75118992,0,0,0.75118992,92.191291,9.2834671)" /></g></g></g><path
|
|
609
|
+
id="path14224"
|
|
610
|
+
style="fill:url(#linearGradient26130);fill-opacity:1;stroke:none;stroke-width:0.294971px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
611
|
+
d="m 40.962412,1.3528288 c 1.08886,0 1.0607,0.259711 1.28614,0.554401 0.16443,0.214936 0.37624,0.283402 0.79319,0.283402 h 17.10402 c 0.41695,0 0.62823,-0.06847 0.79266,-0.283402 0.22545,-0.29469 0.19781,-0.554401 1.28667,-0.554401 z" /></svg>
|