@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,355 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="79.199997mm"
|
|
6
|
+
height="163.5mm"
|
|
7
|
+
viewBox="0 0 79.199996 163.5"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
xml:space="preserve"
|
|
11
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
|
14
|
+
id="defs1"><linearGradient
|
|
15
|
+
id="linearGradient6"><stop
|
|
16
|
+
style="stop-color:#ca5f22;stop-opacity:1"
|
|
17
|
+
offset="0.49999952"
|
|
18
|
+
id="stop5" /><stop
|
|
19
|
+
style="stop-color:#99471f;stop-opacity:1;"
|
|
20
|
+
offset="1"
|
|
21
|
+
id="stop6" /></linearGradient><linearGradient
|
|
22
|
+
id="linearGradient4"><stop
|
|
23
|
+
style="stop-color:#dd762c;stop-opacity:1"
|
|
24
|
+
offset="0"
|
|
25
|
+
id="stop1" /><stop
|
|
26
|
+
style="stop-color:#dd762c;stop-opacity:0;"
|
|
27
|
+
offset="0.17643726"
|
|
28
|
+
id="stop2" /><stop
|
|
29
|
+
style="stop-color:#9d4219;stop-opacity:0;"
|
|
30
|
+
offset="0.75"
|
|
31
|
+
id="stop3" /><stop
|
|
32
|
+
style="stop-color:#9d4219;stop-opacity:1;"
|
|
33
|
+
offset="1"
|
|
34
|
+
id="stop4" /></linearGradient><linearGradient
|
|
35
|
+
id="linearGradient31"><stop
|
|
36
|
+
style="stop-color:#ffffff;stop-opacity:0.02;"
|
|
37
|
+
offset="0"
|
|
38
|
+
id="stop31" /><stop
|
|
39
|
+
style="stop-color:#ffffff;stop-opacity:0.1;"
|
|
40
|
+
offset="1"
|
|
41
|
+
id="stop32" /></linearGradient><linearGradient
|
|
42
|
+
id="linearGradient25"><stop
|
|
43
|
+
style="stop-color:#b697ff;stop-opacity:1;"
|
|
44
|
+
offset="0"
|
|
45
|
+
id="stop26" /><stop
|
|
46
|
+
style="stop-color:#3600ae;stop-opacity:1;"
|
|
47
|
+
offset="0.56404012"
|
|
48
|
+
id="stop28" /><stop
|
|
49
|
+
style="stop-color:#000000;stop-opacity:0;"
|
|
50
|
+
offset="1"
|
|
51
|
+
id="stop27" /></linearGradient><linearGradient
|
|
52
|
+
id="linearGradient24"><stop
|
|
53
|
+
style="stop-color:#39394e;stop-opacity:1;"
|
|
54
|
+
offset="0"
|
|
55
|
+
id="stop24" /><stop
|
|
56
|
+
style="stop-color:#1e1e21;stop-opacity:1;"
|
|
57
|
+
offset="1"
|
|
58
|
+
id="stop25" /></linearGradient><clipPath
|
|
59
|
+
clipPathUnits="userSpaceOnUse"
|
|
60
|
+
id="clipPath1"><rect
|
|
61
|
+
style="fill:#9320d4;stroke-width:2.90343;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
62
|
+
id="rect2"
|
|
63
|
+
width="207.90259"
|
|
64
|
+
height="430.15308"
|
|
65
|
+
x="66.161987"
|
|
66
|
+
y="-144.36761" /></clipPath><linearGradient
|
|
67
|
+
xlink:href="#linearGradient6"
|
|
68
|
+
id="linearGradient10"
|
|
69
|
+
x1="-10.466562"
|
|
70
|
+
y1="42.48769"
|
|
71
|
+
x2="-10.055421"
|
|
72
|
+
y2="42.48769"
|
|
73
|
+
gradientUnits="userSpaceOnUse"
|
|
74
|
+
gradientTransform="matrix(1,0,0,1.0187233,10.528318,-10.430529)" /><radialGradient
|
|
75
|
+
xlink:href="#linearGradient24"
|
|
76
|
+
id="radialGradient25"
|
|
77
|
+
cx="43.681053"
|
|
78
|
+
cy="7.4308386"
|
|
79
|
+
fx="43.681053"
|
|
80
|
+
fy="7.4308386"
|
|
81
|
+
r="0.92431802"
|
|
82
|
+
gradientUnits="userSpaceOnUse"
|
|
83
|
+
gradientTransform="translate(3.3238128)" /><radialGradient
|
|
84
|
+
xlink:href="#linearGradient25"
|
|
85
|
+
id="radialGradient27"
|
|
86
|
+
cx="48.734295"
|
|
87
|
+
cy="7.8165774"
|
|
88
|
+
fx="48.734295"
|
|
89
|
+
fy="7.8165774"
|
|
90
|
+
r="0.68189663"
|
|
91
|
+
gradientUnits="userSpaceOnUse"
|
|
92
|
+
gradientTransform="matrix(0.99999932,-3.3487284e-7,-2.1771224e-6,1.3555106,-1.9898487,-15.210958)" /><radialGradient
|
|
93
|
+
xlink:href="#linearGradient25"
|
|
94
|
+
id="radialGradient27-6"
|
|
95
|
+
cx="48.734295"
|
|
96
|
+
cy="7.8165774"
|
|
97
|
+
fx="48.734295"
|
|
98
|
+
fy="7.8165774"
|
|
99
|
+
r="0.68189663"
|
|
100
|
+
gradientUnits="userSpaceOnUse"
|
|
101
|
+
gradientTransform="matrix(0.99999932,-3.3487284e-7,-2.1771224e-6,1.3555106,-96.842433,-15.210958)" /><linearGradient
|
|
102
|
+
xlink:href="#linearGradient31"
|
|
103
|
+
id="linearGradient32"
|
|
104
|
+
x1="36.25"
|
|
105
|
+
y1="0.97257996"
|
|
106
|
+
x2="36.25"
|
|
107
|
+
y2="1.5374033"
|
|
108
|
+
gradientUnits="userSpaceOnUse"
|
|
109
|
+
gradientTransform="translate(3.3662923,0.00403118)" /><clipPath
|
|
110
|
+
clipPathUnits="userSpaceOnUse"
|
|
111
|
+
id="clipPath36"><rect
|
|
112
|
+
style="fill:#050505;fill-opacity:1;stroke:none;stroke-width:37.1245;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:0.465686;paint-order:stroke fill markers"
|
|
113
|
+
id="rect37"
|
|
114
|
+
width="208.40112"
|
|
115
|
+
height="429.8645"
|
|
116
|
+
x="-371.52576"
|
|
117
|
+
y="-240.9048" /></clipPath><filter
|
|
118
|
+
style="color-interpolation-filters:sRGB"
|
|
119
|
+
id="filter39"
|
|
120
|
+
x="-0.0027289626"
|
|
121
|
+
y="-0.0012973624"
|
|
122
|
+
width="1.0054579"
|
|
123
|
+
height="1.0025947"><feGaussianBlur
|
|
124
|
+
stdDeviation="0.087842083"
|
|
125
|
+
id="feGaussianBlur39" /></filter><linearGradient
|
|
126
|
+
xlink:href="#linearGradient4"
|
|
127
|
+
id="linearGradient50"
|
|
128
|
+
x1="2.4391277"
|
|
129
|
+
y1="30.723913"
|
|
130
|
+
x2="2.4391277"
|
|
131
|
+
y2="37.664433"
|
|
132
|
+
gradientUnits="userSpaceOnUse" /><linearGradient
|
|
133
|
+
xlink:href="#linearGradient6"
|
|
134
|
+
id="linearGradient52"
|
|
135
|
+
gradientUnits="userSpaceOnUse"
|
|
136
|
+
gradientTransform="matrix(1,0,0,1.0187233,10.528318,1.649144)"
|
|
137
|
+
x1="-10.466562"
|
|
138
|
+
y1="42.48769"
|
|
139
|
+
x2="-10.055421"
|
|
140
|
+
y2="42.48769" /><linearGradient
|
|
141
|
+
xlink:href="#linearGradient4"
|
|
142
|
+
id="linearGradient53"
|
|
143
|
+
gradientUnits="userSpaceOnUse"
|
|
144
|
+
x1="2.4391277"
|
|
145
|
+
y1="30.723913"
|
|
146
|
+
x2="2.4391277"
|
|
147
|
+
y2="41.93084"
|
|
148
|
+
gradientTransform="translate(-1.5000003e-8,12.079673)" /><linearGradient
|
|
149
|
+
xlink:href="#linearGradient6"
|
|
150
|
+
id="linearGradient55"
|
|
151
|
+
gradientUnits="userSpaceOnUse"
|
|
152
|
+
gradientTransform="matrix(1,0,0,1.0187233,10.528318,15.879149)"
|
|
153
|
+
x1="-10.466562"
|
|
154
|
+
y1="42.48769"
|
|
155
|
+
x2="-10.055421"
|
|
156
|
+
y2="42.48769" /><linearGradient
|
|
157
|
+
xlink:href="#linearGradient4"
|
|
158
|
+
id="linearGradient56"
|
|
159
|
+
gradientUnits="userSpaceOnUse"
|
|
160
|
+
gradientTransform="translate(4.85e-7,26.309678)"
|
|
161
|
+
x1="2.4391277"
|
|
162
|
+
y1="30.723913"
|
|
163
|
+
x2="2.4391277"
|
|
164
|
+
y2="41.93084" /><linearGradient
|
|
165
|
+
xlink:href="#linearGradient6"
|
|
166
|
+
id="linearGradient57"
|
|
167
|
+
gradientUnits="userSpaceOnUse"
|
|
168
|
+
gradientTransform="matrix(-1,0,0,1.0187233,68.671679,5.4573645)"
|
|
169
|
+
x1="-10.466562"
|
|
170
|
+
y1="42.48769"
|
|
171
|
+
x2="-10.055421"
|
|
172
|
+
y2="42.48769" /><linearGradient
|
|
173
|
+
xlink:href="#linearGradient4"
|
|
174
|
+
id="linearGradient58"
|
|
175
|
+
gradientUnits="userSpaceOnUse"
|
|
176
|
+
gradientTransform="matrix(-1,0,0,1,79.199997,15.887894)"
|
|
177
|
+
x1="2.4391277"
|
|
178
|
+
y1="30.723913"
|
|
179
|
+
x2="2.4391277"
|
|
180
|
+
y2="48.501129" /><filter
|
|
181
|
+
style="color-interpolation-filters:sRGB"
|
|
182
|
+
id="filter6"
|
|
183
|
+
x="-0.00068433711"
|
|
184
|
+
y="-0.00032357539"
|
|
185
|
+
width="1.0013687"
|
|
186
|
+
height="1.0006472"><feGaussianBlur
|
|
187
|
+
stdDeviation="0.021800788"
|
|
188
|
+
id="feGaussianBlur6" /></filter><clipPath
|
|
189
|
+
clipPathUnits="userSpaceOnUse"
|
|
190
|
+
id="clipPath2"><rect
|
|
191
|
+
style="fill:#13a519;fill-opacity:0.520528;stroke-width:103.261;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.465686;paint-order:stroke fill markers"
|
|
192
|
+
id="rect3"
|
|
193
|
+
width="204.53601"
|
|
194
|
+
height="421.21561"
|
|
195
|
+
x="-672.65057"
|
|
196
|
+
y="-504.49426" /></clipPath><clipPath
|
|
197
|
+
clipPathUnits="userSpaceOnUse"
|
|
198
|
+
id="clipPath3"><rect
|
|
199
|
+
style="fill:#13a519;fill-opacity:0.520528;stroke-width:103.261;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.465686;paint-order:stroke fill markers"
|
|
200
|
+
id="rect4"
|
|
201
|
+
width="204.53601"
|
|
202
|
+
height="421.21561"
|
|
203
|
+
x="-536.65472"
|
|
204
|
+
y="-504.49426" /></clipPath><clipPath
|
|
205
|
+
clipPathUnits="userSpaceOnUse"
|
|
206
|
+
id="clipPath2-5"><rect
|
|
207
|
+
style="fill:#13a519;fill-opacity:0.520528;stroke-width:103.261;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.465686;paint-order:stroke fill markers"
|
|
208
|
+
id="rect3-2"
|
|
209
|
+
width="204.53601"
|
|
210
|
+
height="421.21561"
|
|
211
|
+
x="-672.65057"
|
|
212
|
+
y="-504.49426" /></clipPath><clipPath
|
|
213
|
+
clipPathUnits="userSpaceOnUse"
|
|
214
|
+
id="clipPath3-4"><rect
|
|
215
|
+
style="fill:#13a519;fill-opacity:0.520528;stroke-width:103.261;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.465686;paint-order:stroke fill markers"
|
|
216
|
+
id="rect4-2"
|
|
217
|
+
width="204.53601"
|
|
218
|
+
height="421.21561"
|
|
219
|
+
x="-536.65472"
|
|
220
|
+
y="-504.49426" /></clipPath><clipPath
|
|
221
|
+
clipPathUnits="userSpaceOnUse"
|
|
222
|
+
id="clipPath7"><rect
|
|
223
|
+
style="fill:#1dbe30;fill-opacity:0.507331;stroke-width:27.4468;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.465686;paint-order:stroke fill markers"
|
|
224
|
+
id="rect8"
|
|
225
|
+
width="79.171898"
|
|
226
|
+
height="163.35345"
|
|
227
|
+
x="196.75298"
|
|
228
|
+
y="-13.335746" /></clipPath><clipPath
|
|
229
|
+
clipPathUnits="userSpaceOnUse"
|
|
230
|
+
id="clipPath10"><path
|
|
231
|
+
id="path10"
|
|
232
|
+
style="display:inline;fill:#5e00e5;stroke-width:21.753;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
|
|
233
|
+
d="m 13.338728,0 h 52.522575 c 7.127748,0 12.865973,5.7382201 12.865973,12.86597 v 137.76806 c 0,7.12775 -5.738225,12.86597 -12.865973,12.86597 H 13.338728 C 6.2109784,163.5 0.47275411,157.76178 0.47275411,150.63403 V 12.86597 C 0.47275411,5.7382201 6.2109784,0 13.338728,0 Z" /></clipPath></defs><g
|
|
234
|
+
id="layer2"
|
|
235
|
+
style="display:inline"><rect
|
|
236
|
+
style="fill:#e7944b;fill-opacity:1;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
237
|
+
id="rect6"
|
|
238
|
+
width="7.6419992"
|
|
239
|
+
height="6.9724154"
|
|
240
|
+
x="-6.8847655e-10"
|
|
241
|
+
y="30.692017"
|
|
242
|
+
ry="0.14023615" /><rect
|
|
243
|
+
style="fill:url(#linearGradient10);fill-opacity:1;stroke-width:0.190988;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
244
|
+
id="rect6-2"
|
|
245
|
+
width="7.230288"
|
|
246
|
+
height="6.9405189"
|
|
247
|
+
x="0.061756074"
|
|
248
|
+
y="30.723913"
|
|
249
|
+
ry="0.087142207" /><rect
|
|
250
|
+
style="display:inline;fill:url(#linearGradient50);fill-opacity:1;stroke-width:0.190988;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
251
|
+
id="rect6-2-1"
|
|
252
|
+
width="7.230288"
|
|
253
|
+
height="6.9405189"
|
|
254
|
+
x="0.061756074"
|
|
255
|
+
y="30.723913"
|
|
256
|
+
ry="0.087142207" /><path
|
|
257
|
+
id="rect6-9"
|
|
258
|
+
style="fill:#e7944b;fill-opacity:1;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
259
|
+
d="M 0.14023615,42.77169 H 7.5017631 c 0.077691,0 0.1402361,0.06255 0.1402361,0.140237 v 10.958349 c 0,0.07769 -0.062545,0.140236 -0.1402361,0.140236 H 0.14023615 C 0.06254532,54.010512 0,53.947966 0,53.870276 V 42.911927 C 0,42.834236 0.06254532,42.77169 0.14023615,42.77169 Z" /><path
|
|
260
|
+
id="rect6-2-2"
|
|
261
|
+
style="fill:url(#linearGradient52);stroke-width:0.190988;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
262
|
+
d="M 0.14889828,42.803585 H 7.2049019 c 0.048277,0 0.087142,0.03887 0.087142,0.08714 v 11.032641 c 0,0.04828 -0.038865,0.08714 -0.087142,0.08714 H 0.14889828 c -0.0482768,0 -0.08714221,-0.03887 -0.08714221,-0.08714 V 42.890725 c 0,-0.04828 0.03886543,-0.08714 0.08714221,-0.08714 z" /><path
|
|
263
|
+
id="rect6-2-1-4"
|
|
264
|
+
style="display:inline;fill:url(#linearGradient53);stroke-width:0.190988;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
265
|
+
d="M 0.14889798,42.803585 H 7.204902 c 0.04828,0 0.08714,0.03887 0.08714,0.08714 v 11.032641 c 0,0.04828 -0.03887,0.08714 -0.08714,0.08714 H 0.14889798 c -0.04828,0 -0.08714,-0.03887 -0.08714,-0.08714 V 42.890725 c 0,-0.04828 0.03887,-0.08714 0.08714,-0.08714 z" /><path
|
|
266
|
+
id="rect6-9-9"
|
|
267
|
+
style="fill:#e7944b;fill-opacity:1;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
268
|
+
d="m 79.059761,46.57991 h -7.361527 c -0.07769,0 -0.140236,0.06255 -0.140236,0.140237 V 64.24347 c 0,0.07769 0.06255,0.140236 0.140236,0.140236 h 7.361527 c 0.07769,0 0.140236,-0.06255 0.140236,-0.140236 V 46.720147 c 0,-0.07769 -0.06255,-0.140237 -0.140236,-0.140237 z" /><path
|
|
269
|
+
id="rect6-2-2-6"
|
|
270
|
+
style="fill:url(#linearGradient57);stroke-width:0.190988;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
271
|
+
d="m 79.051099,46.611805 h -7.056004 c -0.04828,0 -0.08714,0.03887 -0.08714,0.08714 V 64.29656 c 0,0.04828 0.03887,0.08714 0.08714,0.08714 h 7.056004 c 0.04828,0 0.08714,-0.03887 0.08714,-0.08714 V 46.698945 c 0,-0.04828 -0.03887,-0.08714 -0.08714,-0.08714 z" /><path
|
|
272
|
+
id="rect6-2-1-4-9"
|
|
273
|
+
style="display:inline;fill:url(#linearGradient58);stroke-width:0.190988;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
274
|
+
d="m 79.051099,46.611805 h -7.056004 c -0.04828,0 -0.08714,0.03887 -0.08714,0.08714 V 64.29656 c 0,0.04828 0.03887,0.08714 0.08714,0.08714 h 7.056004 c 0.04828,0 0.08714,-0.03887 0.08714,-0.08714 V 46.698945 c 0,-0.04828 -0.03887,-0.08714 -0.08714,-0.08714 z" /><path
|
|
275
|
+
id="rect6-9-2"
|
|
276
|
+
style="fill:#e7944b;fill-opacity:1;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
277
|
+
d="M 0.14023615,57.001695 H 7.5017631 c 0.077691,0 0.1402361,0.06255 0.1402361,0.140237 v 10.958349 c 0,0.07769 -0.062545,0.140236 -0.1402361,0.140236 H 0.14023615 C 0.06254532,68.240517 0,68.177971 0,68.100281 V 57.141932 c 0,-0.07769 0.06254532,-0.140237 0.14023615,-0.140237 z" /><path
|
|
278
|
+
id="rect6-2-2-5"
|
|
279
|
+
style="fill:url(#linearGradient55);stroke-width:0.190988;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
280
|
+
d="M 0.14889828,57.03359 H 7.2049019 c 0.048277,0 0.087142,0.03887 0.087142,0.08714 v 11.032641 c 0,0.04828 -0.038865,0.08714 -0.087142,0.08714 H 0.14889828 c -0.0482768,0 -0.08714221,-0.03887 -0.08714221,-0.08714 V 57.12073 c 0,-0.04828 0.03886543,-0.08714 0.08714221,-0.08714 z" /><path
|
|
281
|
+
id="rect6-2-1-4-2"
|
|
282
|
+
style="display:inline;fill:url(#linearGradient56);stroke-width:0.190988;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
283
|
+
d="M 0.14889849,57.03359 H 7.2049015 c 0.04828,0 0.08714,0.03887 0.08714,0.08714 v 11.032641 c 0,0.04828 -0.03887,0.08714 -0.08714,0.08714 H 0.14889849 c -0.04828,0 -0.08714,-0.03887 -0.08714,-0.08714 V 57.12073 c 0,-0.04828 0.03886,-0.08714 0.08714,-0.08714 z" /></g><g
|
|
284
|
+
id="layer9"
|
|
285
|
+
style="display:inline;fill:#6d240c;fill-opacity:1"><path
|
|
286
|
+
id="rect32"
|
|
287
|
+
style="display:inline;fill:#be511d;fill-opacity:1;stroke-width:21.753;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
|
|
288
|
+
d="m 13.338728,0 h 52.522574 c 7.127749,0 12.865973,5.7382242 12.865973,12.865973 V 150.63403 c 0,7.12775 -5.738224,12.86597 -12.865973,12.86597 H 13.338728 C 6.2109783,163.5 0.47275412,157.76178 0.47275412,150.63403 V 12.865973 C 0.47275412,5.7382242 6.2109783,0 13.338728,0 Z" /></g><g
|
|
289
|
+
id="layer7"
|
|
290
|
+
style="display:inline"><g
|
|
291
|
+
id="g10"
|
|
292
|
+
clip-path="url(#clipPath10)"><path
|
|
293
|
+
id="rect32-7"
|
|
294
|
+
style="display:inline;mix-blend-mode:normal;fill:#e8924f;fill-opacity:1;stroke:none;stroke-width:21.753;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;filter:url(#filter39)"
|
|
295
|
+
d="M 13.338568,0.50015231 C 6.47917,0.50015231 0.97343098,6.0058923 0.97343098,12.865292 V 150.63471 c 0,6.85939 5.50573902,12.36514 12.36513702,12.36514 h 52.52289 c 6.8594,0 12.36514,-5.50575 12.36514,-12.36514 V 12.865292 c 0,-6.8593997 -5.50574,-12.36513969 -12.36514,-12.36513969 z" /><path
|
|
296
|
+
id="rect32-4"
|
|
297
|
+
style="display:inline;mix-blend-mode:normal;fill:#a53f13;fill-opacity:1;stroke:none;stroke-width:21.753;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;filter:url(#filter6)"
|
|
298
|
+
d="m 13.33857,0.90038112 c -6.6447178,0 -11.9667118,5.32043998 -11.9667118,11.96515988 V 150.63495 c 0,6.64471 5.321994,11.96466 11.9667118,11.96466 h 52.52289 c 6.64472,0 11.96671,-5.31995 11.96671,-11.96466 V 12.865541 c 0,-6.6447199 -5.32199,-11.96515988 -11.96671,-11.96515988 z" /></g></g><g
|
|
299
|
+
id="layer8"
|
|
300
|
+
style="display:inline"><path
|
|
301
|
+
id="rect34"
|
|
302
|
+
style="fill:#b34c1b;fill-opacity:0.658824;stroke:none;stroke-width:13.7539;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:0.465686;paint-order:stroke fill markers"
|
|
303
|
+
d="m 0.47267095,146.69807 v 1.4149 H 78.727326 v -1.4149 z" /><path
|
|
304
|
+
id="rect34-4"
|
|
305
|
+
style="display:inline;fill:#b34c1b;fill-opacity:0.658358;stroke:none;stroke-width:13.7539;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:0.465686;paint-order:stroke fill markers"
|
|
306
|
+
d="m 0.47267095,16.80193 v -1.4149 H 78.727326 v 1.4149 z" /></g><g
|
|
307
|
+
id="layer6"
|
|
308
|
+
style="display:inline"><path
|
|
309
|
+
id="rect32-73"
|
|
310
|
+
style="display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:21.753;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
|
311
|
+
d="m 13.338565,0.97661114 c -6.6036554,0 -11.8886764,5.28502136 -11.8886764,11.88868086 V 150.63471 c 0,6.60365 5.285021,11.88868 11.8886764,11.88868 h 52.522896 c 6.60366,0 11.88868,-5.28503 11.88868,-11.88868 V 12.865292 c 0,-6.6036595 -5.28502,-11.88868086 -11.88868,-11.88868086 z" /><path
|
|
312
|
+
id="path31"
|
|
313
|
+
style="fill:url(#linearGradient32);stroke:none;stroke-width:1.784;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
|
314
|
+
d="m 25.315857,0.97668457 c 0.553012,0 1.452468,0.56482343 1.963187,0.56482343 h 24.641907 c 0.510719,0 1.410176,-0.56482343 1.963188,-0.56482343 z" /></g><g
|
|
315
|
+
id="layer4"
|
|
316
|
+
style="display:inline"><path
|
|
317
|
+
id="rect32-2"
|
|
318
|
+
style="display:inline;fill:#333333;fill-opacity:1;stroke:none;stroke-width:21.753;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
|
319
|
+
d="m 13.338721,2.4649658 c -5.8047698,0 -10.4003991,4.5956217 -10.4003991,10.4003992 V 150.63473 c 0,5.80477 4.5956293,10.4004 10.4003991,10.4004 h 52.522375 c 5.80478,0 10.400399,-4.59563 10.400399,-10.4004 V 12.865365 c 0,-5.8047775 -4.595619,-10.4003992 -10.400399,-10.4003992 z m 18.829858,2.3383586 h 14.862142 c 1.66928,0 3.013253,1.3439787 3.013253,3.0132527 0,1.6692751 -1.343973,3.0132529 -3.013253,3.0132529 H 32.168579 c -1.66927,0 -3.012736,-1.3439778 -3.012736,-3.0132529 0,-1.669274 1.343466,-3.0132527 3.012736,-3.0132527 z" /></g><g
|
|
320
|
+
id="layer5"
|
|
321
|
+
style="display:inline"><path
|
|
322
|
+
id="path21"
|
|
323
|
+
style="fill:#050505;fill-opacity:1;stroke:none;stroke-width:0.184059;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:stroke fill markers"
|
|
324
|
+
d="m 47.004866,5.0436198 a 2.7730749,2.7730756 0 0 0 -2.772958,2.7729573 2.7730749,2.7730756 0 0 0 2.772958,2.7729579 2.7730749,2.7730756 0 0 0 2.772957,-2.7729579 2.7730749,2.7730756 0 0 0 -2.772957,-2.7729573 z m 0,1.0407633 a 1.7323073,1.7323078 0 0 1 1.732194,1.732194 1.7323073,1.7323078 0 0 1 -1.732194,1.7321941 1.7323073,1.7323078 0 0 1 -1.732194,-1.7321941 1.7323073,1.7323078 0 0 1 1.732194,-1.732194 z" /><path
|
|
325
|
+
id="path21-0"
|
|
326
|
+
style="fill:#050505;fill-opacity:1;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
|
|
327
|
+
d="m 32.142724,5.0436198 a 2.7730749,2.7730756 0 0 0 -2.772958,2.7729573 2.7730749,2.7730756 0 0 0 2.772958,2.7729579 h 7.292578 A 2.7730749,2.7730756 0 0 0 42.208259,7.8165771 2.7730749,2.7730756 0 0 0 39.435302,5.0436198 Z m -5.17e-4,0.8919352 h 7.293095 c 1.049389,4.46e-5 1.880461,0.8316326 1.880505,1.8810221 -4.4e-5,1.0493897 -0.831116,1.8804608 -1.880505,1.8805054 H 32.142207 C 31.092818,9.6970383 30.26123,8.8659671 30.261185,7.8165771 30.26123,6.7671874 31.092818,5.9355992 32.142207,5.935555 Z" /><circle
|
|
328
|
+
style="fill:#050505;fill-opacity:1;stroke:none;stroke-width:0.241269;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:stroke fill markers"
|
|
329
|
+
id="path22"
|
|
330
|
+
cx="47.004864"
|
|
331
|
+
cy="7.8165774"
|
|
332
|
+
r="1.5452632" /><circle
|
|
333
|
+
style="fill:url(#radialGradient25);fill-opacity:1;stroke:none;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:stroke fill markers"
|
|
334
|
+
id="path23"
|
|
335
|
+
cx="47.004864"
|
|
336
|
+
cy="7.8165774"
|
|
337
|
+
r="0.92431802" /><circle
|
|
338
|
+
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:stroke fill markers"
|
|
339
|
+
id="path24-4"
|
|
340
|
+
cx="47.426292"
|
|
341
|
+
cy="-4.6155205"
|
|
342
|
+
r="0.68189663"
|
|
343
|
+
transform="rotate(15)" /><circle
|
|
344
|
+
style="fill:url(#radialGradient27);fill-opacity:0.522059;stroke:none;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:stroke fill markers"
|
|
345
|
+
id="path24"
|
|
346
|
+
cx="47.426292"
|
|
347
|
+
cy="-4.6155205"
|
|
348
|
+
r="0.68189663"
|
|
349
|
+
transform="rotate(15)" /><circle
|
|
350
|
+
style="fill:url(#radialGradient27-6);fill-opacity:0.522059;stroke:none;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:stroke fill markers"
|
|
351
|
+
id="path24-42"
|
|
352
|
+
cx="-47.426292"
|
|
353
|
+
cy="-4.6155205"
|
|
354
|
+
r="0.68189663"
|
|
355
|
+
transform="matrix(-0.96592583,-0.25881905,-0.25881905,0.96592583,0,0)" /></g></svg>
|