@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,305 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="72.5mm"
|
|
6
|
+
height="150mm"
|
|
7
|
+
viewBox="0 0 72.499999 150"
|
|
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="linearGradient31"><stop
|
|
16
|
+
style="stop-color:#ffffff;stop-opacity:0.02;"
|
|
17
|
+
offset="0"
|
|
18
|
+
id="stop31" /><stop
|
|
19
|
+
style="stop-color:#ffffff;stop-opacity:0.1;"
|
|
20
|
+
offset="1"
|
|
21
|
+
id="stop32" /></linearGradient><linearGradient
|
|
22
|
+
id="linearGradient25"><stop
|
|
23
|
+
style="stop-color:#b697ff;stop-opacity:1;"
|
|
24
|
+
offset="0"
|
|
25
|
+
id="stop26" /><stop
|
|
26
|
+
style="stop-color:#3600ae;stop-opacity:1;"
|
|
27
|
+
offset="0.56404012"
|
|
28
|
+
id="stop28" /><stop
|
|
29
|
+
style="stop-color:#000000;stop-opacity:0;"
|
|
30
|
+
offset="1"
|
|
31
|
+
id="stop27" /></linearGradient><linearGradient
|
|
32
|
+
id="linearGradient24"><stop
|
|
33
|
+
style="stop-color:#39394e;stop-opacity:1;"
|
|
34
|
+
offset="0"
|
|
35
|
+
id="stop24" /><stop
|
|
36
|
+
style="stop-color:#1e1e21;stop-opacity:1;"
|
|
37
|
+
offset="1"
|
|
38
|
+
id="stop25" /></linearGradient><linearGradient
|
|
39
|
+
id="linearGradient12"><stop
|
|
40
|
+
style="stop-color:#686171;stop-opacity:1;"
|
|
41
|
+
offset="0"
|
|
42
|
+
id="stop13" /><stop
|
|
43
|
+
style="stop-color:#575360;stop-opacity:1;"
|
|
44
|
+
offset="1"
|
|
45
|
+
id="stop14" /></linearGradient><linearGradient
|
|
46
|
+
id="linearGradient9"><stop
|
|
47
|
+
style="stop-color:#867e90;stop-opacity:1;"
|
|
48
|
+
offset="0"
|
|
49
|
+
id="stop9" /><stop
|
|
50
|
+
style="stop-color:#c5c4d1;stop-opacity:1;"
|
|
51
|
+
offset="0.17473139"
|
|
52
|
+
id="stop12" /><stop
|
|
53
|
+
style="stop-color:#8d8698;stop-opacity:1"
|
|
54
|
+
offset="0.64714581"
|
|
55
|
+
id="stop11" /><stop
|
|
56
|
+
style="stop-color:#7a7184;stop-opacity:1;"
|
|
57
|
+
offset="1"
|
|
58
|
+
id="stop10" /></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="#linearGradient9"
|
|
68
|
+
id="linearGradient10"
|
|
69
|
+
x1="-6.8514175"
|
|
70
|
+
y1="40.490494"
|
|
71
|
+
x2="-6.8514175"
|
|
72
|
+
y2="47.087269"
|
|
73
|
+
gradientUnits="userSpaceOnUse"
|
|
74
|
+
gradientTransform="matrix(1,0,0,1.0187233,10.528318,-10.430529)" /><linearGradient
|
|
75
|
+
xlink:href="#linearGradient12"
|
|
76
|
+
id="linearGradient14"
|
|
77
|
+
x1="1.7565179"
|
|
78
|
+
y1="30.852865"
|
|
79
|
+
x2="1.7565179"
|
|
80
|
+
y2="37.825279"
|
|
81
|
+
gradientUnits="userSpaceOnUse"
|
|
82
|
+
gradientTransform="translate(-0.41007042,-0.16084956)" /><linearGradient
|
|
83
|
+
xlink:href="#linearGradient12"
|
|
84
|
+
id="linearGradient15"
|
|
85
|
+
gradientUnits="userSpaceOnUse"
|
|
86
|
+
gradientTransform="translate(-0.16368891,11.918822)"
|
|
87
|
+
x1="1.7565179"
|
|
88
|
+
y1="30.852865"
|
|
89
|
+
x2="1.7565179"
|
|
90
|
+
y2="37.825279" /><linearGradient
|
|
91
|
+
xlink:href="#linearGradient9"
|
|
92
|
+
id="linearGradient16"
|
|
93
|
+
gradientUnits="userSpaceOnUse"
|
|
94
|
+
gradientTransform="matrix(1,0,0,1.0187233,10.7747,1.649143)"
|
|
95
|
+
x1="-6.8514175"
|
|
96
|
+
y1="40.490494"
|
|
97
|
+
x2="-6.8514175"
|
|
98
|
+
y2="47.087269" /><linearGradient
|
|
99
|
+
xlink:href="#linearGradient12"
|
|
100
|
+
id="linearGradient17"
|
|
101
|
+
gradientUnits="userSpaceOnUse"
|
|
102
|
+
gradientTransform="translate(-0.16368891,11.918822)"
|
|
103
|
+
x1="1.7565179"
|
|
104
|
+
y1="30.852865"
|
|
105
|
+
x2="1.7565179"
|
|
106
|
+
y2="37.825279" /><linearGradient
|
|
107
|
+
xlink:href="#linearGradient9"
|
|
108
|
+
id="linearGradient18"
|
|
109
|
+
gradientUnits="userSpaceOnUse"
|
|
110
|
+
gradientTransform="matrix(1,0,0,1.0187233,10.7747,1.649143)"
|
|
111
|
+
x1="-6.8514175"
|
|
112
|
+
y1="40.490494"
|
|
113
|
+
x2="-6.8514175"
|
|
114
|
+
y2="47.087269" /><linearGradient
|
|
115
|
+
xlink:href="#linearGradient12"
|
|
116
|
+
id="linearGradient19"
|
|
117
|
+
gradientUnits="userSpaceOnUse"
|
|
118
|
+
gradientTransform="translate(-0.16368891,11.918822)"
|
|
119
|
+
x1="1.7565179"
|
|
120
|
+
y1="30.852865"
|
|
121
|
+
x2="1.7565179"
|
|
122
|
+
y2="37.825279" /><linearGradient
|
|
123
|
+
xlink:href="#linearGradient9"
|
|
124
|
+
id="linearGradient20"
|
|
125
|
+
gradientUnits="userSpaceOnUse"
|
|
126
|
+
gradientTransform="matrix(1,0,0,1.0187233,10.7747,1.649143)"
|
|
127
|
+
x1="-6.8514175"
|
|
128
|
+
y1="40.490494"
|
|
129
|
+
x2="-6.8514175"
|
|
130
|
+
y2="47.087269" /><radialGradient
|
|
131
|
+
xlink:href="#linearGradient24"
|
|
132
|
+
id="radialGradient25"
|
|
133
|
+
cx="43.681053"
|
|
134
|
+
cy="7.4308386"
|
|
135
|
+
fx="43.681053"
|
|
136
|
+
fy="7.4308386"
|
|
137
|
+
r="0.92431802"
|
|
138
|
+
gradientUnits="userSpaceOnUse"
|
|
139
|
+
gradientTransform="translate(1.3383789e-6)" /><radialGradient
|
|
140
|
+
xlink:href="#linearGradient25"
|
|
141
|
+
id="radialGradient27"
|
|
142
|
+
cx="48.734295"
|
|
143
|
+
cy="7.8165774"
|
|
144
|
+
fx="48.734295"
|
|
145
|
+
fy="7.8165774"
|
|
146
|
+
r="0.68189663"
|
|
147
|
+
gradientUnits="userSpaceOnUse"
|
|
148
|
+
gradientTransform="matrix(0.99999932,-3.3487284e-7,-2.1771224e-6,1.3555106,-5.200404,-14.350692)" /><radialGradient
|
|
149
|
+
xlink:href="#linearGradient25"
|
|
150
|
+
id="radialGradient27-6"
|
|
151
|
+
cx="48.734295"
|
|
152
|
+
cy="7.8165774"
|
|
153
|
+
fx="48.734295"
|
|
154
|
+
fy="7.8165774"
|
|
155
|
+
r="0.68189663"
|
|
156
|
+
gradientUnits="userSpaceOnUse"
|
|
157
|
+
gradientTransform="matrix(0.99999932,-3.3487284e-7,-2.1771224e-6,1.3555106,-93.631878,-14.350692)" /><linearGradient
|
|
158
|
+
xlink:href="#linearGradient31"
|
|
159
|
+
id="linearGradient32"
|
|
160
|
+
x1="36.25"
|
|
161
|
+
y1="0.97257996"
|
|
162
|
+
x2="36.25"
|
|
163
|
+
y2="1.5374033"
|
|
164
|
+
gradientUnits="userSpaceOnUse"
|
|
165
|
+
gradientTransform="translate(0,0.00403118)" /><filter
|
|
166
|
+
style="color-interpolation-filters:sRGB"
|
|
167
|
+
id="filter32"
|
|
168
|
+
x="-0.006718275"
|
|
169
|
+
y="-0.0031835449"
|
|
170
|
+
width="1.0134365"
|
|
171
|
+
height="1.0063671"><feGaussianBlur
|
|
172
|
+
stdDeviation="0.19764468"
|
|
173
|
+
id="feGaussianBlur32" /></filter><filter
|
|
174
|
+
style="color-interpolation-filters:sRGB"
|
|
175
|
+
id="filter33"
|
|
176
|
+
x="-0.0091814284"
|
|
177
|
+
y="-0.0043248752"
|
|
178
|
+
width="1.0183629"
|
|
179
|
+
height="1.0086498"><feGaussianBlur
|
|
180
|
+
stdDeviation="0.26705965"
|
|
181
|
+
id="feGaussianBlur33" /></filter><clipPath
|
|
182
|
+
clipPathUnits="userSpaceOnUse"
|
|
183
|
+
id="clipPath34"><rect
|
|
184
|
+
style="display:inline;fill:#716a7b;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"
|
|
185
|
+
id="rect35"
|
|
186
|
+
width="71.606865"
|
|
187
|
+
height="150"
|
|
188
|
+
x="0.44656754"
|
|
189
|
+
y="1.4210855e-14"
|
|
190
|
+
ry="12.865973" /></clipPath></defs><g
|
|
191
|
+
id="layer2"
|
|
192
|
+
style="display:inline"><g
|
|
193
|
+
id="g14"><rect
|
|
194
|
+
style="fill:url(#linearGradient14);fill-opacity:1;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
195
|
+
id="rect6"
|
|
196
|
+
width="7.6419992"
|
|
197
|
+
height="6.9724154"
|
|
198
|
+
x="-6.8847655e-10"
|
|
199
|
+
y="30.692017"
|
|
200
|
+
ry="0.30878335" /><rect
|
|
201
|
+
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"
|
|
202
|
+
id="rect6-2"
|
|
203
|
+
width="7.230288"
|
|
204
|
+
height="6.7202911"
|
|
205
|
+
x="0.061756074"
|
|
206
|
+
y="30.818081"
|
|
207
|
+
ry="0.29761767" /></g><g
|
|
208
|
+
id="g17"
|
|
209
|
+
transform="translate(-0.24638151)"><path
|
|
210
|
+
id="rect6-27"
|
|
211
|
+
style="fill:url(#linearGradient15);stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
212
|
+
d="M 0.55516486,42.77169 H 7.5795974 c 0.171066,0 0.3087834,0.137718 0.3087834,0.308784 v 10.627089 c 0,0.171066 -0.1377174,0.308784 -0.3087834,0.308784 H 0.55516486 c -0.17106598,0 -0.30878335,-0.137718 -0.30878335,-0.308784 V 43.080474 c 0,-0.171066 0.13771737,-0.308784 0.30878335,-0.308784 z" /><path
|
|
213
|
+
id="rect6-2-9"
|
|
214
|
+
style="fill:url(#linearGradient16);stroke-width:0.190988;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
215
|
+
d="M 0.60575527,42.897755 H 7.240808 c 0.1648801,0 0.2976176,0.132737 0.2976176,0.297617 v 10.397297 c 0,0.16488 -0.1327375,0.297618 -0.2976176,0.297618 H 0.60575527 c -0.16488019,0 -0.29761767,-0.132738 -0.29761767,-0.297618 V 43.195372 c 0,-0.16488 0.13273748,-0.297617 0.29761767,-0.297617 z" /></g><g
|
|
216
|
+
id="g17-8"
|
|
217
|
+
transform="matrix(-1,0,0,1,72.745556,3.8223925)"><path
|
|
218
|
+
id="rect6-27-6"
|
|
219
|
+
style="fill:url(#linearGradient19);stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
220
|
+
d="M 0.55516486,42.77169 H 7.5795974 c 0.171066,0 0.3087834,0.137718 0.3087834,0.308784 v 17.177374 c 0,0.171066 -0.1377174,0.308784 -0.3087834,0.308784 H 0.55516486 c -0.17106598,0 -0.30878335,-0.137718 -0.30878335,-0.308784 V 43.080474 c 0,-0.171066 0.13771737,-0.308784 0.30878335,-0.308784 z" /><path
|
|
221
|
+
id="rect6-2-9-5"
|
|
222
|
+
style="fill:url(#linearGradient20);stroke-width:0.190988;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
223
|
+
d="M 0.60575527,42.897755 H 7.240808 c 0.1648801,0 0.2976176,0.132737 0.2976176,0.297617 v 16.947582 c 0,0.16488 -0.1327375,0.297618 -0.2976176,0.297618 H 0.60575527 c -0.16488019,0 -0.29761767,-0.132738 -0.29761767,-0.297618 V 43.195372 c 0,-0.16488 0.13273748,-0.297617 0.29761767,-0.297617 z" /></g><g
|
|
224
|
+
id="g17-1"
|
|
225
|
+
transform="translate(-0.24638151,14.230005)"><path
|
|
226
|
+
id="rect6-27-3"
|
|
227
|
+
style="fill:url(#linearGradient17);stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
228
|
+
d="M 0.55516486,42.77169 H 7.5795974 c 0.171066,0 0.3087834,0.137718 0.3087834,0.308784 v 10.627089 c 0,0.171066 -0.1377174,0.308784 -0.3087834,0.308784 H 0.55516486 c -0.17106598,0 -0.30878335,-0.137718 -0.30878335,-0.308784 V 43.080474 c 0,-0.171066 0.13771737,-0.308784 0.30878335,-0.308784 z" /><path
|
|
229
|
+
id="rect6-2-9-8"
|
|
230
|
+
style="fill:url(#linearGradient18);stroke-width:0.190988;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.542522;paint-order:stroke fill markers"
|
|
231
|
+
d="M 0.60575527,42.897755 H 7.240808 c 0.1648801,0 0.2976176,0.132737 0.2976176,0.297617 v 10.397297 c 0,0.16488 -0.1327375,0.297618 -0.2976176,0.297618 H 0.60575527 c -0.16488019,0 -0.29761767,-0.132738 -0.29761767,-0.297618 V 43.195372 c 0,-0.16488 0.13273748,-0.297617 0.29761767,-0.297617 z" /></g></g><g
|
|
232
|
+
id="layer9"
|
|
233
|
+
style="display:inline"><rect
|
|
234
|
+
style="display:inline;fill:#716a7b;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"
|
|
235
|
+
id="rect32"
|
|
236
|
+
width="71.606865"
|
|
237
|
+
height="150"
|
|
238
|
+
x="0.44656754"
|
|
239
|
+
y="1.4210855e-14"
|
|
240
|
+
ry="12.865973" /></g><g
|
|
241
|
+
id="layer7"
|
|
242
|
+
style="display:inline"><g
|
|
243
|
+
id="g34"
|
|
244
|
+
clip-path="url(#clipPath34)"><path
|
|
245
|
+
id="rect32-7"
|
|
246
|
+
style="display:inline;mix-blend-mode:normal;fill:#9486a7;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(#filter32)"
|
|
247
|
+
d="m 13.312381,0.50015231 c -6.8593976,0 -12.3651366,5.50573999 -12.3651366,12.36513969 V 137.13471 c 0,6.85939 5.505739,12.36514 12.3651366,12.36514 h 45.875234 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
|
|
248
|
+
id="rect32-4"
|
|
249
|
+
style="display:inline;mix-blend-mode:normal;fill:#f1eef4;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(#filter33)"
|
|
250
|
+
d="m 13.312383,0.90038112 c -6.6447174,0 -11.9667114,5.32043998 -11.9667114,11.96515988 V 137.13495 c 0,6.64471 5.321994,11.96466 11.9667114,11.96466 h 45.875234 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
|
|
251
|
+
id="layer8"
|
|
252
|
+
style="display:inline"><path
|
|
253
|
+
id="rect34"
|
|
254
|
+
style="fill:#e7e3ec;fill-opacity:1;stroke:none;stroke-width:13.7539;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:0.465686;paint-order:stroke fill markers"
|
|
255
|
+
d="M 56.059111,0 V 15.527734 H 0.44648437 v 1.055233 H 72.053483 V 15.527734 H 57.114343 V 0 Z M 0.44648437,133.41718 v 1.05523 H 15.385624 v 15.52774 h 1.055233 v -15.52774 h 55.612626 v -1.05523 z" /></g><g
|
|
256
|
+
id="layer6"
|
|
257
|
+
style="display:inline"><path
|
|
258
|
+
id="rect32-73"
|
|
259
|
+
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"
|
|
260
|
+
d="m 13.312378,0.97661114 c -6.603655,0 -11.888676,5.28502136 -11.888676,11.88868086 V 137.13471 c 0,6.60365 5.285021,11.88868 11.888676,11.88868 h 45.87524 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
|
|
261
|
+
id="path31"
|
|
262
|
+
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"
|
|
263
|
+
d="m 29.068268,0.97661114 c 0.09826,0 0.286648,0.56482346 0.400492,0.56482346 h 13.56248 c 0.113844,0 0.302237,-0.56482346 0.400492,-0.56482346 z" /></g><g
|
|
264
|
+
id="layer4"
|
|
265
|
+
style="display:inline"><path
|
|
266
|
+
id="rect32-2"
|
|
267
|
+
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"
|
|
268
|
+
d="m 13.312882,2.4648914 c -5.8047685,0 -10.4003983,4.5956227 -10.4003983,10.4003996 V 137.13471 c 0,5.80477 4.5956298,10.4004 10.4003983,10.4004 h 45.87472 c 5.80478,0 10.400398,-4.59563 10.400398,-10.4004 V 12.865291 C 69.588,7.0605141 64.992382,2.4648914 59.187602,2.4648914 Z M 28.818913,4.80325 h 14.862142 c 1.66928,0 3.013252,1.343978 3.013252,3.0132527 0,1.6692748 -1.343972,3.0132533 -3.013252,3.0132533 H 28.818913 c -1.66927,0 -3.012736,-1.3439785 -3.012736,-3.0132533 0,-1.6692747 1.343466,-3.0132527 3.012736,-3.0132527 z" /></g><g
|
|
269
|
+
id="layer5"
|
|
270
|
+
style="display:inline"><path
|
|
271
|
+
id="path21"
|
|
272
|
+
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"
|
|
273
|
+
d="m 43.681055,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
|
|
274
|
+
id="path21-0"
|
|
275
|
+
style="fill:#050505;fill-opacity:1;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers"
|
|
276
|
+
d="m -28.818913,5.0436198 a 2.7730749,2.7730756 0 0 1 2.772958,2.7729573 2.7730749,2.7730756 0 0 1 -2.772958,2.7729579 h -7.292578 a 2.7730749,2.7730756 0 0 1 -2.772957,-2.7729579 2.7730749,2.7730756 0 0 1 2.772957,-2.7729573 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 7.293095 c 1.049389,-4.42e-5 1.880977,-0.8311154 1.881022,-1.8805054 -4.5e-5,-1.0493897 -0.831633,-1.8809779 -1.881022,-1.8810221 z"
|
|
277
|
+
transform="scale(-1,1)" /><circle
|
|
278
|
+
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"
|
|
279
|
+
id="path22"
|
|
280
|
+
cx="43.681053"
|
|
281
|
+
cy="7.8165774"
|
|
282
|
+
r="1.5452632" /><circle
|
|
283
|
+
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"
|
|
284
|
+
id="path23"
|
|
285
|
+
cx="43.681053"
|
|
286
|
+
cy="7.8165774"
|
|
287
|
+
r="0.92431802" /><circle
|
|
288
|
+
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"
|
|
289
|
+
id="path24-4"
|
|
290
|
+
cx="44.215736"
|
|
291
|
+
cy="-3.755255"
|
|
292
|
+
r="0.68189663"
|
|
293
|
+
transform="rotate(15)" /><circle
|
|
294
|
+
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"
|
|
295
|
+
id="path24"
|
|
296
|
+
cx="44.215736"
|
|
297
|
+
cy="-3.755255"
|
|
298
|
+
r="0.68189663"
|
|
299
|
+
transform="rotate(15)" /><circle
|
|
300
|
+
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"
|
|
301
|
+
id="path24-42"
|
|
302
|
+
cx="-44.215736"
|
|
303
|
+
cy="-3.755255"
|
|
304
|
+
r="0.68189663"
|
|
305
|
+
transform="matrix(-0.96592583,-0.25881905,-0.25881905,0.96592583,0,0)" /></g></svg>
|