Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e55be64aeb | |||
| 42a9bece36 | |||
| 093a958dcf | |||
| 435f2aa2f1 | |||
| d8f8f728cc | |||
| 9ed21e33a7 | |||
| d200d4e930 | |||
| cc5582b7fd | |||
| 41acb7b306 |
@@ -20,6 +20,19 @@ export default defineConfig([
|
|||||||
languageOptions: {
|
languageOptions: {
|
||||||
globals: globals.browser,
|
globals: globals.browser,
|
||||||
},
|
},
|
||||||
|
rules: {
|
||||||
|
// Der Unterstrich ist im Projekt die etablierte Kennzeichnung für
|
||||||
|
// bewusst ungenutzte Parameter — etwa wenn eine Schnittstelle ein
|
||||||
|
// Argument vorschreibt, das eine bestimmte Implementierung nicht
|
||||||
|
// braucht. Ohne diese Ausnahme meldete die Regel genau die Fälle,
|
||||||
|
// die der Autor bereits als «gewollt» markiert hat.
|
||||||
|
'@typescript-eslint/no-unused-vars': ['error', {
|
||||||
|
argsIgnorePattern: '^_',
|
||||||
|
varsIgnorePattern: '^_',
|
||||||
|
caughtErrorsIgnorePattern: '^_',
|
||||||
|
destructuredArrayIgnorePattern: '^_',
|
||||||
|
}],
|
||||||
|
},
|
||||||
},
|
},
|
||||||
// ── Design Token Enforcement ────────────────────────────────────────────────
|
// ── Design Token Enforcement ────────────────────────────────────────────────
|
||||||
// New hardcoded hex colors in components/pages are blocked (error).
|
// New hardcoded hex colors in components/pages are blocked (error).
|
||||||
|
|||||||
@@ -18,7 +18,11 @@ import { join, extname } from 'node:path'
|
|||||||
// Hex literals allowed before CI blocks the build.
|
// Hex literals allowed before CI blocks the build.
|
||||||
// This is a ratchet — lower it as migration progresses. Never raise it.
|
// This is a ratchet — lower it as migration progresses. Never raise it.
|
||||||
// Baseline after initial token migration (2026-05-24): 1958
|
// Baseline after initial token migration (2026-05-24): 1958
|
||||||
const THRESHOLD = 1958
|
// Nach der Token-Migration aller Farb-Properties (bgcolor/color/borderColor/
|
||||||
|
// background/fill/stroke): 925. Die verbleibenden Treffer stehen in
|
||||||
|
// Farbverläufen, `rgba()`-Werten, Icon-Attributen und Datentabellen, die diese
|
||||||
|
// Zählung mitnimmt, die ESLint-Regel aber nicht erfasst.
|
||||||
|
const THRESHOLD = 925
|
||||||
|
|
||||||
const HEX_PATTERN = /#[0-9A-Fa-f]{3,8}\b/g
|
const HEX_PATTERN = /#[0-9A-Fa-f]{3,8}\b/g
|
||||||
|
|
||||||
|
|||||||
@@ -5,45 +5,39 @@ import { AppShell } from './components/layout'
|
|||||||
import { ProtectedRoute } from './components/auth'
|
import { ProtectedRoute } from './components/auth'
|
||||||
import { WorkspaceType } from './domain/enums'
|
import { WorkspaceType } from './domain/enums'
|
||||||
import { useSessionStore } from './stores/sessionStore'
|
import { useSessionStore } from './stores/sessionStore'
|
||||||
|
import { AGENT_SECTIONS, AGENT_SECTION_PARAM, ROUTES } from './lib/constants'
|
||||||
|
|
||||||
|
// Die Flächensuche ist entfernt — es bleibt ein einziger erreichbarer Einstieg.
|
||||||
|
// Seit Runde 5 ist das die Startseite; die frühere «Übersicht» existiert nicht mehr.
|
||||||
const WORKSPACE_HOME: Record<string, string> = {
|
const WORKSPACE_HOME: Record<string, string> = {
|
||||||
[WorkspaceType.SUPPLY]: '/supply/dashboard',
|
[WorkspaceType.SUPPLY]: ROUTES.SUPPLY.PROPERTIES,
|
||||||
[WorkspaceType.DEMAND]: '/demand/ai-search',
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function RoleRedirect() {
|
function RoleRedirect() {
|
||||||
const currentUser = useSessionStore(s => s.currentUser)
|
const currentUser = useSessionStore(s => s.currentUser)
|
||||||
const first = currentUser?.allowedWorkspaces[0] ?? WorkspaceType.SUPPLY
|
const first = currentUser?.allowedWorkspaces[0] ?? WorkspaceType.SUPPLY
|
||||||
return <Navigate to={WORKSPACE_HOME[first] ?? '/supply/dashboard'} replace />
|
return <Navigate to={WORKSPACE_HOME[first] ?? ROUTES.SUPPLY.PROPERTIES} replace />
|
||||||
}
|
}
|
||||||
|
|
||||||
const LoginScreen = lazy(() => import('./pages/auth/LoginScreen'))
|
const LoginScreen = lazy(() => import('./pages/auth/LoginScreen'))
|
||||||
|
|
||||||
const SupplyDashboard = lazy(() => import('./pages/supply/SupplyDashboard'))
|
|
||||||
const Properties = lazy(() => import('./pages/supply/Properties'))
|
const Properties = lazy(() => import('./pages/supply/Properties'))
|
||||||
const MatchCenter = lazy(() => import('./pages/supply/MatchCenter'))
|
const MatchCenter = lazy(() => import('./pages/supply/MatchCenter'))
|
||||||
const Anfragencenter = lazy(() => import('./pages/supply/Anfragencenter'))
|
|
||||||
const FutureAvailability = lazy(() => import('./pages/supply/FutureAvailability'))
|
const FutureAvailability = lazy(() => import('./pages/supply/FutureAvailability'))
|
||||||
const DataQuality = lazy(() => import('./pages/supply/DataQuality'))
|
const DataQuality = lazy(() => import('./pages/supply/DataQuality'))
|
||||||
const ReminderManager = lazy(() => import('./pages/supply/ReminderManager'))
|
const ReminderManager = lazy(() => import('./pages/supply/ReminderManager'))
|
||||||
const MarketIntelligence = lazy(() => import('./pages/supply/MarketIntelligence'))
|
const MarketIntelligence = lazy(() => import('./pages/supply/MarketIntelligence'))
|
||||||
const NewListing = lazy(() => import('./pages/supply/NewListing'))
|
const NewListing = lazy(() => import('./pages/supply/NewListing'))
|
||||||
const MyListings = lazy(() => import('./pages/supply/MyListings'))
|
const MyListings = lazy(() => import('./pages/supply/MyListings'))
|
||||||
|
const Besichtigungen = lazy(() => import('./pages/supply/Besichtigungen'))
|
||||||
|
|
||||||
// Property On — «Teamübersicht»
|
// Property On — «Meine Agenten»
|
||||||
const Teamuebersicht = lazy(() => import('./pages/supply/Teamuebersicht'))
|
const MeineAgenten = lazy(() => import('./pages/supply/MeineAgenten'))
|
||||||
const Personalverwaltung = lazy(() => import('./pages/supply/Personalverwaltung'))
|
|
||||||
const Bearbeitungsverlauf = lazy(() => import('./pages/supply/Bearbeitungsverlauf'))
|
|
||||||
const KanaeleSysteme = lazy(() => import('./pages/supply/KanaeleSysteme'))
|
|
||||||
|
|
||||||
const AISearch = lazy(() => import('./pages/demand/AISearch'))
|
|
||||||
const Results = lazy(() => import('./pages/demand/Results'))
|
|
||||||
const MatchDetail = lazy(() => import('./pages/demand/MatchDetail'))
|
|
||||||
const Compare = lazy(() => import('./pages/demand/Compare'))
|
|
||||||
const Anfragen = lazy(() => import('./pages/demand/Anfragen'))
|
|
||||||
const Pipeline = lazy(() => import('./pages/demand/Pipeline'))
|
|
||||||
const PropertyDetail = lazy(() => import('./pages/demand/PropertyDetail'))
|
|
||||||
|
|
||||||
|
/** Alter Unterseitenpfad → Reiter der Hauptseite. Hält Lesezeichen am Leben. */
|
||||||
|
function TeamSectionRedirect({ section }: { section: string }) {
|
||||||
|
return <Navigate to={`${ROUTES.SUPPLY.TEAM}?${AGENT_SECTION_PARAM}=${section}`} replace />
|
||||||
|
}
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
return (
|
return (
|
||||||
@@ -60,42 +54,44 @@ function App() {
|
|||||||
|
|
||||||
{/* Supply Workspace */}
|
{/* Supply Workspace */}
|
||||||
<Route element={<ProtectedRoute workspace={WorkspaceType.SUPPLY} />}>
|
<Route element={<ProtectedRoute workspace={WorkspaceType.SUPPLY} />}>
|
||||||
<Route path="/supply/dashboard" element={<SupplyDashboard />} />
|
{/* Runde 5, §2.1: Die Hauptseite «Übersicht» ist entfernt. Der
|
||||||
|
alte Pfad bleibt als Umleitung bestehen, damit Lesezeichen
|
||||||
|
und Deep Links auf der Startseite landen statt im Nichts. */}
|
||||||
|
<Route
|
||||||
|
path={ROUTES.SUPPLY.LEGACY_DASHBOARD}
|
||||||
|
element={<Navigate to={ROUTES.SUPPLY.PROPERTIES} replace />}
|
||||||
|
/>
|
||||||
<Route path="/supply/properties" element={<Properties />} />
|
<Route path="/supply/properties" element={<Properties />} />
|
||||||
|
{/* Objekt-Detailroute — Ziel aller Objektlinks der Agentenseiten. */}
|
||||||
|
<Route path="/supply/properties/:propertyId" element={<Properties />} />
|
||||||
<Route path="/supply/match-center" element={<MatchCenter />} />
|
<Route path="/supply/match-center" element={<MatchCenter />} />
|
||||||
<Route path="/supply/anfragen" element={<Anfragencenter />} />
|
|
||||||
<Route path="/supply/future-availability" element={<FutureAvailability />} />
|
<Route path="/supply/future-availability" element={<FutureAvailability />} />
|
||||||
<Route path="/supply/data-quality" element={<DataQuality />} />
|
|
||||||
<Route path="/supply/reminder-manager" element={<ReminderManager />} />
|
|
||||||
<Route path="/supply/market-intelligence" element={<MarketIntelligence />} />
|
|
||||||
<Route path="/supply/new-listing" element={<NewListing />} />
|
<Route path="/supply/new-listing" element={<NewListing />} />
|
||||||
|
|
||||||
|
{/* Die fünf Agentenseiten. Vier behalten den Pfad ihres Vorgängers. */}
|
||||||
|
<Route path="/supply/reminder-manager" element={<ReminderManager />} />
|
||||||
|
<Route path="/supply/besichtigungen" element={<Besichtigungen />} />
|
||||||
<Route path="/supply/my-listings" element={<MyListings />} />
|
<Route path="/supply/my-listings" element={<MyListings />} />
|
||||||
|
<Route path="/supply/market-intelligence" element={<MarketIntelligence />} />
|
||||||
|
<Route path="/supply/data-quality" element={<DataQuality />} />
|
||||||
|
|
||||||
{/* Property On — Hierarchie und Deep-Links bleiben erhalten (§3.4).
|
{/* Property On — «Meine Agenten». Die drei Verwaltungsbereiche sind
|
||||||
Bewusst flache Geschwisterrouten statt <Outlet/>: die App kennt
|
seit Runde 4 Reiter derselben Seite; die alten Unterseitenpfade
|
||||||
keine einzige Feature-Route mit eigenem Outlet, ein Novum hier
|
leiten dorthin um, damit bestehende Lesezeichen nicht brechen. */}
|
||||||
würde Sidebar, Seitentitel und Guards gleichzeitig betreffen. */}
|
<Route path="/supply/team" element={<MeineAgenten />} />
|
||||||
<Route path="/supply/team" element={<Teamuebersicht />} />
|
<Route
|
||||||
<Route path="/supply/team/personalverwaltung" element={<Personalverwaltung />} />
|
path="/supply/team/personalverwaltung/*"
|
||||||
<Route path="/supply/team/personalverwaltung/:agentId" element={<Personalverwaltung />} />
|
element={<TeamSectionRedirect section={AGENT_SECTIONS.PERSONNEL} />}
|
||||||
<Route path="/supply/team/personalverwaltung/:agentId/:tab" element={<Personalverwaltung />} />
|
/>
|
||||||
<Route path="/supply/team/bearbeitungsverlauf" element={<Bearbeitungsverlauf />} />
|
<Route
|
||||||
<Route path="/supply/team/bearbeitungsverlauf/:tab" element={<Bearbeitungsverlauf />} />
|
path="/supply/team/bearbeitungsverlauf/*"
|
||||||
<Route path="/supply/team/kanaele-systeme" element={<KanaeleSysteme />} />
|
element={<TeamSectionRedirect section={AGENT_SECTIONS.HISTORY} />}
|
||||||
|
/>
|
||||||
|
<Route
|
||||||
|
path="/supply/team/kanaele-systeme"
|
||||||
|
element={<TeamSectionRedirect section={AGENT_SECTIONS.CHANNELS} />}
|
||||||
|
/>
|
||||||
</Route>
|
</Route>
|
||||||
|
|
||||||
{/* Demand Workspace */}
|
|
||||||
<Route element={<ProtectedRoute workspace={WorkspaceType.DEMAND} />}>
|
|
||||||
<Route path="/demand/ai-search" element={<AISearch />} />
|
|
||||||
<Route path="/demand/results" element={<Results />} />
|
|
||||||
<Route path="/demand/results/:matchId" element={<MatchDetail />} />
|
|
||||||
<Route path="/demand/compare" element={<Compare />} />
|
|
||||||
<Route path="/demand/anfragen" element={<Anfragen />} />
|
|
||||||
<Route path="/demand/pipeline" element={<Pipeline />} />
|
|
||||||
<Route path="/demand/property/:propertyId" element={<PropertyDetail />} />
|
|
||||||
</Route>
|
|
||||||
|
|
||||||
|
|
||||||
</Route>
|
</Route>
|
||||||
</Route>
|
</Route>
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="30" y="44" width="61" height="30" fill="#dfe3e1"/><rect x="177" y="146" width="86" height="39" fill="#dfe3e1"/><rect x="407" y="100" width="50" height="34" fill="#dfe3e1"/><rect x="240" y="85" width="41" height="50" fill="#dfe3e1"/><rect x="18" y="189" width="57" height="54" fill="#dfe3e1"/><rect x="413" y="119" width="40" height="57" fill="#dfe3e1"/><rect x="490" y="77" width="53" height="43" fill="#dfe3e1"/><rect x="114" y="140" width="65" height="33" fill="#dfe3e1"/><rect x="276" y="106" width="70" height="47" fill="#dfe3e1"/><rect x="413" y="205" width="40" height="53" fill="#dfe3e1"/><rect x="342" y="96" width="71" height="53" fill="#dfe3e1"/><rect x="348" y="221" width="68" height="62" fill="#dfe3e1"/><rect x="57" y="158" width="53" height="45" fill="#dfe3e1"/><rect x="212" y="22" width="44" height="64" fill="#dfe3e1"/><rect x="0" y="113" width="600" height="9" fill="#ffffff"/><rect x="0" y="91" width="600" height="8" fill="#ffffff"/><rect x="0" y="155" width="600" height="12" fill="#ffffff"/><rect x="0" y="201" width="600" height="7" fill="#ffffff"/><rect x="421" y="0" width="9" height="300" fill="#ffffff"/><rect x="242" y="0" width="7" height="300" fill="#ffffff"/><rect x="52" y="0" width="11" height="300" fill="#ffffff"/><rect x="155" y="0" width="12" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="159" y="75" width="42" height="57" fill="#dfe3e1"/><rect x="196" y="88" width="78" height="46" fill="#dfe3e1"/><rect x="379" y="178" width="60" height="64" fill="#dfe3e1"/><rect x="413" y="74" width="59" height="33" fill="#dfe3e1"/><rect x="119" y="102" width="75" height="34" fill="#dfe3e1"/><rect x="168" y="162" width="71" height="47" fill="#dfe3e1"/><rect x="328" y="229" width="65" height="66" fill="#dfe3e1"/><rect x="356" y="153" width="45" height="34" fill="#dfe3e1"/><rect x="122" y="220" width="69" height="54" fill="#dfe3e1"/><rect x="205" y="202" width="74" height="39" fill="#dfe3e1"/><rect x="22" y="134" width="84" height="36" fill="#dfe3e1"/><rect x="266" y="150" width="45" height="42" fill="#dfe3e1"/><rect x="410" y="47" width="73" height="56" fill="#dfe3e1"/><rect x="215" y="64" width="73" height="33" fill="#dfe3e1"/><rect x="0" y="52" width="600" height="10" fill="#ffffff"/><rect x="0" y="73" width="600" height="10" fill="#ffffff"/><rect x="0" y="274" width="600" height="9" fill="#ffffff"/><rect x="0" y="279" width="600" height="8" fill="#ffffff"/><rect x="54" y="0" width="8" height="300" fill="#ffffff"/><rect x="383" y="0" width="10" height="300" fill="#ffffff"/><rect x="120" y="0" width="13" height="300" fill="#ffffff"/><rect x="267" y="0" width="7" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="249" width="600" height="300" fill="#c8d9e4"/><rect x="131" y="204" width="47" height="45" fill="#dfe3e1"/><rect x="379" y="186" width="55" height="53" fill="#dfe3e1"/><rect x="235" y="112" width="61" height="59" fill="#dfe3e1"/><rect x="241" y="178" width="53" height="48" fill="#dfe3e1"/><rect x="153" y="87" width="70" height="49" fill="#dfe3e1"/><rect x="405" y="140" width="42" height="44" fill="#dfe3e1"/><rect x="253" y="68" width="86" height="30" fill="#dfe3e1"/><rect x="507" y="227" width="72" height="56" fill="#dfe3e1"/><rect x="111" y="43" width="76" height="32" fill="#dfe3e1"/><rect x="215" y="41" width="46" height="36" fill="#dfe3e1"/><rect x="356" y="109" width="86" height="58" fill="#dfe3e1"/><rect x="128" y="154" width="78" height="57" fill="#dfe3e1"/><rect x="312" y="143" width="87" height="49" fill="#dfe3e1"/><rect x="465" y="185" width="49" height="47" fill="#dfe3e1"/><rect x="0" y="49" width="600" height="13" fill="#ffffff"/><rect x="0" y="164" width="600" height="9" fill="#ffffff"/><rect x="0" y="135" width="600" height="10" fill="#ffffff"/><rect x="0" y="125" width="600" height="9" fill="#ffffff"/><rect x="399" y="0" width="13" height="300" fill="#ffffff"/><rect x="450" y="0" width="12" height="300" fill="#ffffff"/><rect x="515" y="0" width="13" height="300" fill="#ffffff"/><rect x="549" y="0" width="9" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="461" y="45" width="81" height="62" fill="#dfe3e1"/><rect x="293" y="91" width="84" height="49" fill="#dfe3e1"/><rect x="378" y="85" width="80" height="62" fill="#dfe3e1"/><rect x="251" y="212" width="79" height="34" fill="#dfe3e1"/><rect x="415" y="185" width="82" height="57" fill="#dfe3e1"/><rect x="351" y="181" width="66" height="39" fill="#dfe3e1"/><rect x="404" y="79" width="55" height="55" fill="#dfe3e1"/><rect x="423" y="52" width="74" height="46" fill="#dfe3e1"/><rect x="247" y="52" width="48" height="48" fill="#dfe3e1"/><rect x="15" y="80" width="73" height="60" fill="#dfe3e1"/><rect x="251" y="14" width="43" height="47" fill="#dfe3e1"/><rect x="342" y="6" width="77" height="56" fill="#dfe3e1"/><rect x="363" y="59" width="63" height="52" fill="#dfe3e1"/><rect x="46" y="226" width="76" height="65" fill="#dfe3e1"/><rect x="0" y="170" width="600" height="10" fill="#ffffff"/><rect x="0" y="33" width="600" height="13" fill="#ffffff"/><rect x="0" y="102" width="600" height="9" fill="#ffffff"/><rect x="0" y="27" width="600" height="9" fill="#ffffff"/><rect x="335" y="0" width="13" height="300" fill="#ffffff"/><rect x="155" y="0" width="11" height="300" fill="#ffffff"/><rect x="241" y="0" width="9" height="300" fill="#ffffff"/><rect x="30" y="0" width="9" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="197" width="600" height="300" fill="#c8d9e4"/><rect x="252" y="201" width="72" height="31" fill="#dfe3e1"/><rect x="492" y="195" width="52" height="33" fill="#dfe3e1"/><rect x="3" y="49" width="82" height="43" fill="#dfe3e1"/><rect x="108" y="179" width="44" height="42" fill="#dfe3e1"/><rect x="137" y="93" width="49" height="46" fill="#dfe3e1"/><rect x="205" y="202" width="58" height="31" fill="#dfe3e1"/><rect x="13" y="167" width="40" height="44" fill="#dfe3e1"/><rect x="199" y="201" width="63" height="64" fill="#dfe3e1"/><rect x="404" y="139" width="50" height="55" fill="#dfe3e1"/><rect x="492" y="3" width="68" height="66" fill="#dfe3e1"/><rect x="508" y="44" width="80" height="66" fill="#dfe3e1"/><rect x="364" y="38" width="78" height="48" fill="#dfe3e1"/><rect x="328" y="225" width="57" height="33" fill="#dfe3e1"/><rect x="226" y="13" width="83" height="49" fill="#dfe3e1"/><rect x="0" y="37" width="600" height="11" fill="#ffffff"/><rect x="0" y="257" width="600" height="8" fill="#ffffff"/><rect x="0" y="104" width="600" height="11" fill="#ffffff"/><rect x="0" y="122" width="600" height="10" fill="#ffffff"/><rect x="147" y="0" width="11" height="300" fill="#ffffff"/><rect x="296" y="0" width="10" height="300" fill="#ffffff"/><rect x="306" y="0" width="12" height="300" fill="#ffffff"/><rect x="104" y="0" width="8" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="198" width="600" height="300" fill="#c8d9e4"/><rect x="457" y="110" width="56" height="66" fill="#dfe3e1"/><rect x="288" y="109" width="86" height="57" fill="#dfe3e1"/><rect x="408" y="82" width="70" height="43" fill="#dfe3e1"/><rect x="262" y="51" width="79" height="59" fill="#dfe3e1"/><rect x="177" y="82" width="52" height="34" fill="#dfe3e1"/><rect x="444" y="228" width="68" height="53" fill="#dfe3e1"/><rect x="193" y="185" width="58" height="32" fill="#dfe3e1"/><rect x="95" y="163" width="59" height="65" fill="#dfe3e1"/><rect x="429" y="61" width="63" height="59" fill="#dfe3e1"/><rect x="105" y="69" width="44" height="32" fill="#dfe3e1"/><rect x="506" y="56" width="82" height="64" fill="#dfe3e1"/><rect x="467" y="223" width="75" height="41" fill="#dfe3e1"/><rect x="167" y="13" width="50" height="33" fill="#dfe3e1"/><rect x="8" y="159" width="71" height="40" fill="#dfe3e1"/><rect x="0" y="92" width="600" height="9" fill="#ffffff"/><rect x="0" y="221" width="600" height="8" fill="#ffffff"/><rect x="0" y="76" width="600" height="10" fill="#ffffff"/><rect x="0" y="204" width="600" height="7" fill="#ffffff"/><rect x="193" y="0" width="13" height="300" fill="#ffffff"/><rect x="285" y="0" width="8" height="300" fill="#ffffff"/><rect x="438" y="0" width="7" height="300" fill="#ffffff"/><rect x="397" y="0" width="8" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="417" y="225" width="78" height="39" fill="#dfe3e1"/><rect x="500" y="72" width="75" height="49" fill="#dfe3e1"/><rect x="283" y="103" width="51" height="60" fill="#dfe3e1"/><rect x="56" y="132" width="73" height="32" fill="#dfe3e1"/><rect x="18" y="90" width="44" height="49" fill="#dfe3e1"/><rect x="421" y="201" width="45" height="62" fill="#dfe3e1"/><rect x="477" y="24" width="68" height="32" fill="#dfe3e1"/><rect x="81" y="138" width="85" height="55" fill="#dfe3e1"/><rect x="23" y="162" width="43" height="57" fill="#dfe3e1"/><rect x="472" y="195" width="79" height="38" fill="#dfe3e1"/><rect x="123" y="7" width="42" height="39" fill="#dfe3e1"/><rect x="504" y="9" width="86" height="41" fill="#dfe3e1"/><rect x="319" y="220" width="83" height="44" fill="#dfe3e1"/><rect x="65" y="205" width="51" height="37" fill="#dfe3e1"/><rect x="0" y="240" width="600" height="8" fill="#ffffff"/><rect x="0" y="262" width="600" height="7" fill="#ffffff"/><rect x="0" y="132" width="600" height="7" fill="#ffffff"/><rect x="0" y="239" width="600" height="10" fill="#ffffff"/><rect x="304" y="0" width="13" height="300" fill="#ffffff"/><rect x="357" y="0" width="9" height="300" fill="#ffffff"/><rect x="186" y="0" width="7" height="300" fill="#ffffff"/><rect x="444" y="0" width="8" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="233" y="0" width="88" height="55" fill="#dfe3e1"/><rect x="434" y="22" width="74" height="30" fill="#dfe3e1"/><rect x="77" y="64" width="75" height="57" fill="#dfe3e1"/><rect x="480" y="84" width="83" height="33" fill="#dfe3e1"/><rect x="51" y="112" width="78" height="60" fill="#dfe3e1"/><rect x="338" y="155" width="62" height="32" fill="#dfe3e1"/><rect x="295" y="197" width="76" height="39" fill="#dfe3e1"/><rect x="507" y="125" width="65" height="59" fill="#dfe3e1"/><rect x="236" y="39" width="46" height="46" fill="#dfe3e1"/><rect x="170" y="185" width="56" height="55" fill="#dfe3e1"/><rect x="419" y="49" width="80" height="65" fill="#dfe3e1"/><rect x="451" y="143" width="65" height="41" fill="#dfe3e1"/><rect x="221" y="77" width="44" height="43" fill="#dfe3e1"/><rect x="453" y="24" width="82" height="60" fill="#dfe3e1"/><rect x="0" y="205" width="600" height="11" fill="#ffffff"/><rect x="0" y="152" width="600" height="11" fill="#ffffff"/><rect x="0" y="167" width="600" height="10" fill="#ffffff"/><rect x="0" y="79" width="600" height="10" fill="#ffffff"/><rect x="282" y="0" width="8" height="300" fill="#ffffff"/><rect x="181" y="0" width="9" height="300" fill="#ffffff"/><rect x="263" y="0" width="9" height="300" fill="#ffffff"/><rect x="465" y="0" width="13" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="302" y="44" width="45" height="42" fill="#dfe3e1"/><rect x="172" y="89" width="55" height="60" fill="#dfe3e1"/><rect x="138" y="150" width="76" height="43" fill="#dfe3e1"/><rect x="383" y="149" width="63" height="48" fill="#dfe3e1"/><rect x="337" y="174" width="76" height="36" fill="#dfe3e1"/><rect x="423" y="129" width="59" height="43" fill="#dfe3e1"/><rect x="12" y="84" width="53" height="62" fill="#dfe3e1"/><rect x="325" y="182" width="71" height="47" fill="#dfe3e1"/><rect x="480" y="51" width="67" height="41" fill="#dfe3e1"/><rect x="245" y="216" width="65" height="55" fill="#dfe3e1"/><rect x="77" y="89" width="84" height="58" fill="#dfe3e1"/><rect x="35" y="15" width="53" height="52" fill="#dfe3e1"/><rect x="419" y="14" width="45" height="63" fill="#dfe3e1"/><rect x="437" y="103" width="49" height="38" fill="#dfe3e1"/><rect x="0" y="225" width="600" height="7" fill="#ffffff"/><rect x="0" y="159" width="600" height="8" fill="#ffffff"/><rect x="0" y="52" width="600" height="7" fill="#ffffff"/><rect x="0" y="241" width="600" height="11" fill="#ffffff"/><rect x="495" y="0" width="9" height="300" fill="#ffffff"/><rect x="506" y="0" width="9" height="300" fill="#ffffff"/><rect x="466" y="0" width="11" height="300" fill="#ffffff"/><rect x="381" y="0" width="7" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="472" y="45" width="61" height="42" fill="#dfe3e1"/><rect x="96" y="67" width="58" height="32" fill="#dfe3e1"/><rect x="366" y="48" width="66" height="43" fill="#dfe3e1"/><rect x="163" y="203" width="41" height="37" fill="#dfe3e1"/><rect x="450" y="123" width="62" height="41" fill="#dfe3e1"/><rect x="188" y="43" width="75" height="34" fill="#dfe3e1"/><rect x="283" y="79" width="79" height="61" fill="#dfe3e1"/><rect x="296" y="206" width="54" height="41" fill="#dfe3e1"/><rect x="307" y="91" width="85" height="49" fill="#dfe3e1"/><rect x="52" y="196" width="76" height="38" fill="#dfe3e1"/><rect x="509" y="230" width="55" height="30" fill="#dfe3e1"/><rect x="364" y="222" width="59" height="40" fill="#dfe3e1"/><rect x="45" y="156" width="74" height="50" fill="#dfe3e1"/><rect x="55" y="224" width="79" height="32" fill="#dfe3e1"/><rect x="0" y="67" width="600" height="11" fill="#ffffff"/><rect x="0" y="210" width="600" height="10" fill="#ffffff"/><rect x="0" y="45" width="600" height="9" fill="#ffffff"/><rect x="0" y="237" width="600" height="12" fill="#ffffff"/><rect x="23" y="0" width="9" height="300" fill="#ffffff"/><rect x="229" y="0" width="11" height="300" fill="#ffffff"/><rect x="392" y="0" width="9" height="300" fill="#ffffff"/><rect x="199" y="0" width="12" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="234" width="600" height="300" fill="#c8d9e4"/><rect x="6" y="70" width="76" height="55" fill="#dfe3e1"/><rect x="213" y="96" width="78" height="66" fill="#dfe3e1"/><rect x="169" y="31" width="78" height="60" fill="#dfe3e1"/><rect x="59" y="54" width="59" height="63" fill="#dfe3e1"/><rect x="472" y="64" width="75" height="49" fill="#dfe3e1"/><rect x="304" y="178" width="55" height="41" fill="#dfe3e1"/><rect x="267" y="199" width="80" height="57" fill="#dfe3e1"/><rect x="34" y="133" width="82" height="52" fill="#dfe3e1"/><rect x="371" y="90" width="62" height="34" fill="#dfe3e1"/><rect x="188" y="45" width="85" height="38" fill="#dfe3e1"/><rect x="508" y="87" width="81" height="34" fill="#dfe3e1"/><rect x="316" y="76" width="83" height="56" fill="#dfe3e1"/><rect x="419" y="64" width="58" height="50" fill="#dfe3e1"/><rect x="236" y="220" width="60" height="37" fill="#dfe3e1"/><rect x="0" y="163" width="600" height="13" fill="#ffffff"/><rect x="0" y="103" width="600" height="7" fill="#ffffff"/><rect x="0" y="117" width="600" height="12" fill="#ffffff"/><rect x="0" y="67" width="600" height="9" fill="#ffffff"/><rect x="438" y="0" width="11" height="300" fill="#ffffff"/><rect x="165" y="0" width="7" height="300" fill="#ffffff"/><rect x="482" y="0" width="8" height="300" fill="#ffffff"/><rect x="46" y="0" width="11" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="341" y="112" width="87" height="34" fill="#dfe3e1"/><rect x="470" y="23" width="43" height="55" fill="#dfe3e1"/><rect x="301" y="39" width="80" height="33" fill="#dfe3e1"/><rect x="228" y="82" width="45" height="33" fill="#dfe3e1"/><rect x="4" y="97" width="75" height="57" fill="#dfe3e1"/><rect x="427" y="222" width="49" height="66" fill="#dfe3e1"/><rect x="445" y="108" width="79" height="31" fill="#dfe3e1"/><rect x="285" y="160" width="48" height="56" fill="#dfe3e1"/><rect x="502" y="96" width="44" height="60" fill="#dfe3e1"/><rect x="156" y="222" width="61" height="46" fill="#dfe3e1"/><rect x="69" y="148" width="60" height="41" fill="#dfe3e1"/><rect x="55" y="87" width="56" height="40" fill="#dfe3e1"/><rect x="449" y="39" width="78" height="66" fill="#dfe3e1"/><rect x="475" y="43" width="41" height="46" fill="#dfe3e1"/><rect x="0" y="145" width="600" height="7" fill="#ffffff"/><rect x="0" y="103" width="600" height="13" fill="#ffffff"/><rect x="0" y="86" width="600" height="8" fill="#ffffff"/><rect x="0" y="132" width="600" height="12" fill="#ffffff"/><rect x="79" y="0" width="9" height="300" fill="#ffffff"/><rect x="46" y="0" width="7" height="300" fill="#ffffff"/><rect x="429" y="0" width="8" height="300" fill="#ffffff"/><rect x="151" y="0" width="13" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="220" width="600" height="300" fill="#c8d9e4"/><rect x="322" y="163" width="86" height="31" fill="#dfe3e1"/><rect x="312" y="50" width="70" height="37" fill="#dfe3e1"/><rect x="405" y="113" width="40" height="34" fill="#dfe3e1"/><rect x="240" y="15" width="63" height="42" fill="#dfe3e1"/><rect x="489" y="105" width="53" height="54" fill="#dfe3e1"/><rect x="504" y="44" width="75" height="58" fill="#dfe3e1"/><rect x="445" y="113" width="70" height="49" fill="#dfe3e1"/><rect x="33" y="101" width="84" height="49" fill="#dfe3e1"/><rect x="341" y="137" width="48" height="49" fill="#dfe3e1"/><rect x="211" y="204" width="61" height="61" fill="#dfe3e1"/><rect x="212" y="160" width="59" height="43" fill="#dfe3e1"/><rect x="369" y="150" width="52" height="61" fill="#dfe3e1"/><rect x="348" y="107" width="82" height="58" fill="#dfe3e1"/><rect x="333" y="135" width="75" height="46" fill="#dfe3e1"/><rect x="0" y="223" width="600" height="10" fill="#ffffff"/><rect x="0" y="71" width="600" height="13" fill="#ffffff"/><rect x="0" y="220" width="600" height="7" fill="#ffffff"/><rect x="0" y="174" width="600" height="12" fill="#ffffff"/><rect x="356" y="0" width="13" height="300" fill="#ffffff"/><rect x="364" y="0" width="7" height="300" fill="#ffffff"/><rect x="147" y="0" width="7" height="300" fill="#ffffff"/><rect x="518" y="0" width="8" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="201" y="96" width="85" height="35" fill="#dfe3e1"/><rect x="301" y="59" width="76" height="38" fill="#dfe3e1"/><rect x="408" y="175" width="67" height="64" fill="#dfe3e1"/><rect x="289" y="86" width="65" height="43" fill="#dfe3e1"/><rect x="501" y="88" width="73" height="46" fill="#dfe3e1"/><rect x="30" y="62" width="57" height="44" fill="#dfe3e1"/><rect x="428" y="205" width="69" height="42" fill="#dfe3e1"/><rect x="76" y="163" width="57" height="58" fill="#dfe3e1"/><rect x="94" y="151" width="61" height="49" fill="#dfe3e1"/><rect x="232" y="163" width="52" height="43" fill="#dfe3e1"/><rect x="16" y="41" width="84" height="57" fill="#dfe3e1"/><rect x="490" y="124" width="67" height="32" fill="#dfe3e1"/><rect x="22" y="74" width="76" height="46" fill="#dfe3e1"/><rect x="282" y="230" width="64" height="66" fill="#dfe3e1"/><rect x="0" y="38" width="600" height="13" fill="#ffffff"/><rect x="0" y="280" width="600" height="8" fill="#ffffff"/><rect x="0" y="233" width="600" height="8" fill="#ffffff"/><rect x="0" y="203" width="600" height="8" fill="#ffffff"/><rect x="308" y="0" width="10" height="300" fill="#ffffff"/><rect x="443" y="0" width="13" height="300" fill="#ffffff"/><rect x="183" y="0" width="10" height="300" fill="#ffffff"/><rect x="261" y="0" width="12" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="240" width="600" height="300" fill="#c8d9e4"/><rect x="372" y="115" width="75" height="45" fill="#dfe3e1"/><rect x="74" y="194" width="72" height="58" fill="#dfe3e1"/><rect x="306" y="121" width="74" height="49" fill="#dfe3e1"/><rect x="200" y="108" width="42" height="56" fill="#dfe3e1"/><rect x="110" y="75" width="57" height="51" fill="#dfe3e1"/><rect x="81" y="101" width="53" height="45" fill="#dfe3e1"/><rect x="268" y="66" width="61" height="63" fill="#dfe3e1"/><rect x="471" y="56" width="75" height="36" fill="#dfe3e1"/><rect x="7" y="24" width="43" height="58" fill="#dfe3e1"/><rect x="173" y="22" width="85" height="30" fill="#dfe3e1"/><rect x="219" y="67" width="88" height="32" fill="#dfe3e1"/><rect x="73" y="23" width="40" height="39" fill="#dfe3e1"/><rect x="364" y="184" width="72" height="42" fill="#dfe3e1"/><rect x="142" y="188" width="80" height="40" fill="#dfe3e1"/><rect x="0" y="256" width="600" height="12" fill="#ffffff"/><rect x="0" y="174" width="600" height="13" fill="#ffffff"/><rect x="0" y="57" width="600" height="13" fill="#ffffff"/><rect x="0" y="208" width="600" height="8" fill="#ffffff"/><rect x="149" y="0" width="9" height="300" fill="#ffffff"/><rect x="211" y="0" width="11" height="300" fill="#ffffff"/><rect x="231" y="0" width="8" height="300" fill="#ffffff"/><rect x="29" y="0" width="7" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="56" y="24" width="50" height="49" fill="#dfe3e1"/><rect x="390" y="186" width="44" height="43" fill="#dfe3e1"/><rect x="380" y="76" width="82" height="60" fill="#dfe3e1"/><rect x="252" y="131" width="53" height="46" fill="#dfe3e1"/><rect x="446" y="137" width="65" height="35" fill="#dfe3e1"/><rect x="241" y="85" width="45" height="47" fill="#dfe3e1"/><rect x="66" y="102" width="55" height="45" fill="#dfe3e1"/><rect x="142" y="197" width="81" height="66" fill="#dfe3e1"/><rect x="424" y="48" width="79" height="33" fill="#dfe3e1"/><rect x="272" y="91" width="80" height="59" fill="#dfe3e1"/><rect x="136" y="205" width="80" height="64" fill="#dfe3e1"/><rect x="37" y="149" width="46" height="56" fill="#dfe3e1"/><rect x="446" y="138" width="78" height="33" fill="#dfe3e1"/><rect x="140" y="99" width="57" height="54" fill="#dfe3e1"/><rect x="0" y="278" width="600" height="7" fill="#ffffff"/><rect x="0" y="94" width="600" height="7" fill="#ffffff"/><rect x="0" y="195" width="600" height="13" fill="#ffffff"/><rect x="0" y="217" width="600" height="8" fill="#ffffff"/><rect x="357" y="0" width="12" height="300" fill="#ffffff"/><rect x="428" y="0" width="10" height="300" fill="#ffffff"/><rect x="361" y="0" width="10" height="300" fill="#ffffff"/><rect x="522" y="0" width="7" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="190" width="600" height="300" fill="#c8d9e4"/><rect x="301" y="65" width="63" height="37" fill="#dfe3e1"/><rect x="204" y="214" width="56" height="32" fill="#dfe3e1"/><rect x="498" y="6" width="57" height="61" fill="#dfe3e1"/><rect x="257" y="172" width="82" height="41" fill="#dfe3e1"/><rect x="366" y="6" width="77" height="57" fill="#dfe3e1"/><rect x="62" y="160" width="47" height="47" fill="#dfe3e1"/><rect x="320" y="131" width="75" height="54" fill="#dfe3e1"/><rect x="116" y="138" width="65" height="64" fill="#dfe3e1"/><rect x="107" y="145" width="40" height="65" fill="#dfe3e1"/><rect x="116" y="180" width="85" height="33" fill="#dfe3e1"/><rect x="72" y="186" width="77" height="53" fill="#dfe3e1"/><rect x="460" y="38" width="68" height="53" fill="#dfe3e1"/><rect x="333" y="230" width="54" height="63" fill="#dfe3e1"/><rect x="432" y="10" width="86" height="55" fill="#dfe3e1"/><rect x="0" y="240" width="600" height="7" fill="#ffffff"/><rect x="0" y="217" width="600" height="11" fill="#ffffff"/><rect x="0" y="243" width="600" height="9" fill="#ffffff"/><rect x="0" y="222" width="600" height="9" fill="#ffffff"/><rect x="232" y="0" width="7" height="300" fill="#ffffff"/><rect x="428" y="0" width="10" height="300" fill="#ffffff"/><rect x="76" y="0" width="7" height="300" fill="#ffffff"/><rect x="414" y="0" width="11" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="237" width="600" height="300" fill="#c8d9e4"/><rect x="297" y="112" width="59" height="33" fill="#dfe3e1"/><rect x="128" y="203" width="68" height="32" fill="#dfe3e1"/><rect x="142" y="162" width="58" height="53" fill="#dfe3e1"/><rect x="298" y="150" width="77" height="35" fill="#dfe3e1"/><rect x="44" y="217" width="75" height="33" fill="#dfe3e1"/><rect x="405" y="19" width="64" height="53" fill="#dfe3e1"/><rect x="209" y="185" width="78" height="65" fill="#dfe3e1"/><rect x="253" y="163" width="50" height="63" fill="#dfe3e1"/><rect x="277" y="166" width="88" height="59" fill="#dfe3e1"/><rect x="502" y="59" width="79" height="35" fill="#dfe3e1"/><rect x="220" y="26" width="40" height="60" fill="#dfe3e1"/><rect x="238" y="139" width="58" height="35" fill="#dfe3e1"/><rect x="225" y="119" width="84" height="52" fill="#dfe3e1"/><rect x="208" y="155" width="59" height="30" fill="#dfe3e1"/><rect x="0" y="53" width="600" height="7" fill="#ffffff"/><rect x="0" y="213" width="600" height="10" fill="#ffffff"/><rect x="0" y="35" width="600" height="11" fill="#ffffff"/><rect x="0" y="202" width="600" height="9" fill="#ffffff"/><rect x="489" y="0" width="8" height="300" fill="#ffffff"/><rect x="392" y="0" width="13" height="300" fill="#ffffff"/><rect x="536" y="0" width="10" height="300" fill="#ffffff"/><rect x="244" y="0" width="9" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="193" width="600" height="300" fill="#c8d9e4"/><rect x="73" y="60" width="64" height="61" fill="#dfe3e1"/><rect x="510" y="27" width="45" height="44" fill="#dfe3e1"/><rect x="45" y="73" width="47" height="62" fill="#dfe3e1"/><rect x="273" y="56" width="76" height="61" fill="#dfe3e1"/><rect x="466" y="91" width="66" height="58" fill="#dfe3e1"/><rect x="388" y="109" width="72" height="33" fill="#dfe3e1"/><rect x="448" y="190" width="66" height="30" fill="#dfe3e1"/><rect x="494" y="17" width="57" height="50" fill="#dfe3e1"/><rect x="355" y="77" width="57" height="64" fill="#dfe3e1"/><rect x="55" y="149" width="48" height="46" fill="#dfe3e1"/><rect x="47" y="143" width="83" height="63" fill="#dfe3e1"/><rect x="77" y="53" width="50" height="43" fill="#dfe3e1"/><rect x="445" y="224" width="68" height="52" fill="#dfe3e1"/><rect x="434" y="166" width="52" height="33" fill="#dfe3e1"/><rect x="0" y="41" width="600" height="7" fill="#ffffff"/><rect x="0" y="30" width="600" height="13" fill="#ffffff"/><rect x="0" y="234" width="600" height="11" fill="#ffffff"/><rect x="0" y="255" width="600" height="7" fill="#ffffff"/><rect x="364" y="0" width="13" height="300" fill="#ffffff"/><rect x="528" y="0" width="9" height="300" fill="#ffffff"/><rect x="50" y="0" width="8" height="300" fill="#ffffff"/><rect x="576" y="0" width="9" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="211" width="600" height="300" fill="#c8d9e4"/><rect x="325" y="180" width="71" height="43" fill="#dfe3e1"/><rect x="1" y="90" width="75" height="54" fill="#dfe3e1"/><rect x="113" y="169" width="48" height="59" fill="#dfe3e1"/><rect x="363" y="174" width="71" height="59" fill="#dfe3e1"/><rect x="360" y="42" width="61" height="48" fill="#dfe3e1"/><rect x="147" y="105" width="66" height="42" fill="#dfe3e1"/><rect x="442" y="169" width="49" height="59" fill="#dfe3e1"/><rect x="370" y="35" width="43" height="60" fill="#dfe3e1"/><rect x="447" y="186" width="51" height="62" fill="#dfe3e1"/><rect x="382" y="99" width="88" height="36" fill="#dfe3e1"/><rect x="33" y="69" width="69" height="54" fill="#dfe3e1"/><rect x="8" y="173" width="55" height="43" fill="#dfe3e1"/><rect x="262" y="34" width="65" height="34" fill="#dfe3e1"/><rect x="72" y="199" width="72" height="50" fill="#dfe3e1"/><rect x="0" y="94" width="600" height="11" fill="#ffffff"/><rect x="0" y="161" width="600" height="8" fill="#ffffff"/><rect x="0" y="62" width="600" height="13" fill="#ffffff"/><rect x="0" y="208" width="600" height="9" fill="#ffffff"/><rect x="528" y="0" width="13" height="300" fill="#ffffff"/><rect x="459" y="0" width="10" height="300" fill="#ffffff"/><rect x="160" y="0" width="10" height="300" fill="#ffffff"/><rect x="176" y="0" width="8" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="217" y="205" width="42" height="59" fill="#dfe3e1"/><rect x="497" y="206" width="48" height="56" fill="#dfe3e1"/><rect x="126" y="52" width="52" height="65" fill="#dfe3e1"/><rect x="410" y="23" width="67" height="61" fill="#dfe3e1"/><rect x="106" y="148" width="55" height="66" fill="#dfe3e1"/><rect x="350" y="192" width="73" height="58" fill="#dfe3e1"/><rect x="129" y="103" width="40" height="34" fill="#dfe3e1"/><rect x="288" y="75" width="82" height="46" fill="#dfe3e1"/><rect x="229" y="41" width="77" height="54" fill="#dfe3e1"/><rect x="406" y="16" width="58" height="46" fill="#dfe3e1"/><rect x="330" y="43" width="57" height="30" fill="#dfe3e1"/><rect x="172" y="184" width="57" height="34" fill="#dfe3e1"/><rect x="480" y="41" width="72" height="37" fill="#dfe3e1"/><rect x="24" y="34" width="49" height="56" fill="#dfe3e1"/><rect x="0" y="25" width="600" height="8" fill="#ffffff"/><rect x="0" y="28" width="600" height="12" fill="#ffffff"/><rect x="0" y="205" width="600" height="9" fill="#ffffff"/><rect x="0" y="227" width="600" height="13" fill="#ffffff"/><rect x="313" y="0" width="11" height="300" fill="#ffffff"/><rect x="558" y="0" width="13" height="300" fill="#ffffff"/><rect x="472" y="0" width="13" height="300" fill="#ffffff"/><rect x="397" y="0" width="10" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="231" width="600" height="300" fill="#c8d9e4"/><rect x="226" y="181" width="79" height="59" fill="#dfe3e1"/><rect x="369" y="170" width="46" height="30" fill="#dfe3e1"/><rect x="118" y="95" width="58" height="65" fill="#dfe3e1"/><rect x="467" y="118" width="55" height="37" fill="#dfe3e1"/><rect x="502" y="44" width="78" height="46" fill="#dfe3e1"/><rect x="166" y="91" width="41" height="61" fill="#dfe3e1"/><rect x="257" y="120" width="53" height="30" fill="#dfe3e1"/><rect x="282" y="105" width="45" height="65" fill="#dfe3e1"/><rect x="163" y="123" width="77" height="52" fill="#dfe3e1"/><rect x="278" y="144" width="82" height="52" fill="#dfe3e1"/><rect x="277" y="189" width="83" height="32" fill="#dfe3e1"/><rect x="350" y="172" width="88" height="41" fill="#dfe3e1"/><rect x="124" y="202" width="73" height="33" fill="#dfe3e1"/><rect x="135" y="106" width="50" height="49" fill="#dfe3e1"/><rect x="0" y="75" width="600" height="9" fill="#ffffff"/><rect x="0" y="248" width="600" height="12" fill="#ffffff"/><rect x="0" y="220" width="600" height="13" fill="#ffffff"/><rect x="0" y="240" width="600" height="9" fill="#ffffff"/><rect x="151" y="0" width="7" height="300" fill="#ffffff"/><rect x="557" y="0" width="8" height="300" fill="#ffffff"/><rect x="186" y="0" width="10" height="300" fill="#ffffff"/><rect x="115" y="0" width="10" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="208" width="600" height="300" fill="#c8d9e4"/><rect x="298" y="198" width="51" height="62" fill="#dfe3e1"/><rect x="136" y="83" width="86" height="53" fill="#dfe3e1"/><rect x="375" y="121" width="45" height="53" fill="#dfe3e1"/><rect x="335" y="52" width="65" height="66" fill="#dfe3e1"/><rect x="95" y="39" width="54" height="59" fill="#dfe3e1"/><rect x="7" y="195" width="45" height="30" fill="#dfe3e1"/><rect x="402" y="150" width="40" height="33" fill="#dfe3e1"/><rect x="33" y="167" width="62" height="36" fill="#dfe3e1"/><rect x="395" y="180" width="87" height="59" fill="#dfe3e1"/><rect x="415" y="54" width="70" height="33" fill="#dfe3e1"/><rect x="499" y="22" width="56" height="66" fill="#dfe3e1"/><rect x="136" y="45" width="44" height="58" fill="#dfe3e1"/><rect x="470" y="13" width="81" height="51" fill="#dfe3e1"/><rect x="459" y="90" width="45" height="45" fill="#dfe3e1"/><rect x="0" y="277" width="600" height="9" fill="#ffffff"/><rect x="0" y="164" width="600" height="7" fill="#ffffff"/><rect x="0" y="162" width="600" height="8" fill="#ffffff"/><rect x="0" y="265" width="600" height="10" fill="#ffffff"/><rect x="370" y="0" width="7" height="300" fill="#ffffff"/><rect x="74" y="0" width="8" height="300" fill="#ffffff"/><rect x="309" y="0" width="8" height="300" fill="#ffffff"/><rect x="61" y="0" width="9" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="218" width="600" height="300" fill="#c8d9e4"/><rect x="387" y="106" width="40" height="35" fill="#dfe3e1"/><rect x="442" y="81" width="61" height="41" fill="#dfe3e1"/><rect x="153" y="229" width="78" height="33" fill="#dfe3e1"/><rect x="327" y="77" width="43" height="66" fill="#dfe3e1"/><rect x="121" y="197" width="75" height="46" fill="#dfe3e1"/><rect x="500" y="110" width="43" height="51" fill="#dfe3e1"/><rect x="338" y="41" width="75" height="61" fill="#dfe3e1"/><rect x="63" y="128" width="65" height="65" fill="#dfe3e1"/><rect x="285" y="119" width="65" height="52" fill="#dfe3e1"/><rect x="367" y="49" width="75" height="62" fill="#dfe3e1"/><rect x="42" y="223" width="48" height="60" fill="#dfe3e1"/><rect x="104" y="203" width="76" height="37" fill="#dfe3e1"/><rect x="135" y="16" width="81" height="62" fill="#dfe3e1"/><rect x="324" y="82" width="88" height="49" fill="#dfe3e1"/><rect x="0" y="48" width="600" height="13" fill="#ffffff"/><rect x="0" y="36" width="600" height="12" fill="#ffffff"/><rect x="0" y="75" width="600" height="8" fill="#ffffff"/><rect x="0" y="182" width="600" height="7" fill="#ffffff"/><rect x="201" y="0" width="11" height="300" fill="#ffffff"/><rect x="432" y="0" width="7" height="300" fill="#ffffff"/><rect x="171" y="0" width="12" height="300" fill="#ffffff"/><rect x="90" y="0" width="12" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="363" y="152" width="76" height="52" fill="#dfe3e1"/><rect x="142" y="168" width="40" height="40" fill="#dfe3e1"/><rect x="457" y="85" width="79" height="61" fill="#dfe3e1"/><rect x="109" y="131" width="76" height="34" fill="#dfe3e1"/><rect x="245" y="186" width="66" height="63" fill="#dfe3e1"/><rect x="19" y="165" width="55" height="30" fill="#dfe3e1"/><rect x="108" y="14" width="72" height="57" fill="#dfe3e1"/><rect x="101" y="62" width="73" height="39" fill="#dfe3e1"/><rect x="195" y="76" width="68" height="61" fill="#dfe3e1"/><rect x="164" y="56" width="85" height="59" fill="#dfe3e1"/><rect x="441" y="115" width="44" height="37" fill="#dfe3e1"/><rect x="50" y="73" width="68" height="44" fill="#dfe3e1"/><rect x="331" y="51" width="73" height="33" fill="#dfe3e1"/><rect x="279" y="119" width="77" height="48" fill="#dfe3e1"/><rect x="0" y="270" width="600" height="13" fill="#ffffff"/><rect x="0" y="78" width="600" height="13" fill="#ffffff"/><rect x="0" y="245" width="600" height="13" fill="#ffffff"/><rect x="0" y="110" width="600" height="9" fill="#ffffff"/><rect x="286" y="0" width="13" height="300" fill="#ffffff"/><rect x="57" y="0" width="12" height="300" fill="#ffffff"/><rect x="96" y="0" width="9" height="300" fill="#ffffff"/><rect x="35" y="0" width="13" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="340" y="86" width="85" height="62" fill="#dfe3e1"/><rect x="243" y="80" width="69" height="63" fill="#dfe3e1"/><rect x="244" y="193" width="54" height="65" fill="#dfe3e1"/><rect x="47" y="0" width="49" height="54" fill="#dfe3e1"/><rect x="145" y="197" width="44" height="55" fill="#dfe3e1"/><rect x="357" y="32" width="65" height="37" fill="#dfe3e1"/><rect x="151" y="121" width="80" height="38" fill="#dfe3e1"/><rect x="8" y="160" width="70" height="61" fill="#dfe3e1"/><rect x="0" y="189" width="82" height="63" fill="#dfe3e1"/><rect x="233" y="129" width="65" height="53" fill="#dfe3e1"/><rect x="412" y="110" width="41" height="63" fill="#dfe3e1"/><rect x="392" y="181" width="78" height="62" fill="#dfe3e1"/><rect x="425" y="115" width="45" height="45" fill="#dfe3e1"/><rect x="434" y="79" width="57" height="63" fill="#dfe3e1"/><rect x="0" y="263" width="600" height="7" fill="#ffffff"/><rect x="0" y="40" width="600" height="8" fill="#ffffff"/><rect x="0" y="75" width="600" height="11" fill="#ffffff"/><rect x="0" y="81" width="600" height="7" fill="#ffffff"/><rect x="375" y="0" width="10" height="300" fill="#ffffff"/><rect x="190" y="0" width="9" height="300" fill="#ffffff"/><rect x="575" y="0" width="8" height="300" fill="#ffffff"/><rect x="556" y="0" width="13" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="199" width="600" height="300" fill="#c8d9e4"/><rect x="84" y="35" width="70" height="50" fill="#dfe3e1"/><rect x="366" y="205" width="88" height="61" fill="#dfe3e1"/><rect x="199" y="205" width="77" height="47" fill="#dfe3e1"/><rect x="352" y="161" width="72" height="58" fill="#dfe3e1"/><rect x="417" y="210" width="55" height="41" fill="#dfe3e1"/><rect x="43" y="195" width="42" height="35" fill="#dfe3e1"/><rect x="88" y="127" width="87" height="36" fill="#dfe3e1"/><rect x="23" y="21" width="75" height="47" fill="#dfe3e1"/><rect x="331" y="19" width="69" height="44" fill="#dfe3e1"/><rect x="90" y="222" width="87" height="40" fill="#dfe3e1"/><rect x="96" y="15" width="64" height="58" fill="#dfe3e1"/><rect x="466" y="33" width="47" height="64" fill="#dfe3e1"/><rect x="474" y="124" width="66" height="55" fill="#dfe3e1"/><rect x="292" y="2" width="73" height="37" fill="#dfe3e1"/><rect x="0" y="82" width="600" height="12" fill="#ffffff"/><rect x="0" y="58" width="600" height="10" fill="#ffffff"/><rect x="0" y="70" width="600" height="13" fill="#ffffff"/><rect x="0" y="21" width="600" height="11" fill="#ffffff"/><rect x="305" y="0" width="10" height="300" fill="#ffffff"/><rect x="241" y="0" width="11" height="300" fill="#ffffff"/><rect x="556" y="0" width="8" height="300" fill="#ffffff"/><rect x="74" y="0" width="10" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="212" width="600" height="300" fill="#c8d9e4"/><rect x="283" y="121" width="59" height="47" fill="#dfe3e1"/><rect x="165" y="212" width="55" height="42" fill="#dfe3e1"/><rect x="272" y="125" width="83" height="43" fill="#dfe3e1"/><rect x="203" y="29" width="70" height="44" fill="#dfe3e1"/><rect x="88" y="99" width="69" height="62" fill="#dfe3e1"/><rect x="364" y="205" width="77" height="34" fill="#dfe3e1"/><rect x="185" y="123" width="53" height="35" fill="#dfe3e1"/><rect x="12" y="212" width="42" height="58" fill="#dfe3e1"/><rect x="489" y="181" width="48" height="47" fill="#dfe3e1"/><rect x="197" y="161" width="68" height="39" fill="#dfe3e1"/><rect x="15" y="148" width="67" height="33" fill="#dfe3e1"/><rect x="196" y="105" width="55" height="46" fill="#dfe3e1"/><rect x="6" y="25" width="61" height="62" fill="#dfe3e1"/><rect x="435" y="121" width="57" height="31" fill="#dfe3e1"/><rect x="0" y="258" width="600" height="12" fill="#ffffff"/><rect x="0" y="250" width="600" height="10" fill="#ffffff"/><rect x="0" y="153" width="600" height="11" fill="#ffffff"/><rect x="0" y="255" width="600" height="13" fill="#ffffff"/><rect x="567" y="0" width="8" height="300" fill="#ffffff"/><rect x="310" y="0" width="10" height="300" fill="#ffffff"/><rect x="183" y="0" width="13" height="300" fill="#ffffff"/><rect x="100" y="0" width="9" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="301" y="102" width="51" height="51" fill="#dfe3e1"/><rect x="379" y="16" width="51" height="33" fill="#dfe3e1"/><rect x="51" y="108" width="60" height="48" fill="#dfe3e1"/><rect x="292" y="50" width="80" height="38" fill="#dfe3e1"/><rect x="47" y="214" width="85" height="31" fill="#dfe3e1"/><rect x="412" y="119" width="82" height="30" fill="#dfe3e1"/><rect x="178" y="150" width="43" height="49" fill="#dfe3e1"/><rect x="290" y="37" width="79" height="39" fill="#dfe3e1"/><rect x="274" y="74" width="73" height="40" fill="#dfe3e1"/><rect x="28" y="168" width="67" height="57" fill="#dfe3e1"/><rect x="175" y="25" width="77" height="36" fill="#dfe3e1"/><rect x="197" y="52" width="83" height="31" fill="#dfe3e1"/><rect x="310" y="59" width="50" height="51" fill="#dfe3e1"/><rect x="215" y="215" width="43" height="61" fill="#dfe3e1"/><rect x="0" y="81" width="600" height="13" fill="#ffffff"/><rect x="0" y="83" width="600" height="13" fill="#ffffff"/><rect x="0" y="55" width="600" height="12" fill="#ffffff"/><rect x="0" y="223" width="600" height="8" fill="#ffffff"/><rect x="162" y="0" width="13" height="300" fill="#ffffff"/><rect x="86" y="0" width="11" height="300" fill="#ffffff"/><rect x="237" y="0" width="7" height="300" fill="#ffffff"/><rect x="557" y="0" width="13" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="405" y="2" width="44" height="48" fill="#dfe3e1"/><rect x="202" y="186" width="56" height="41" fill="#dfe3e1"/><rect x="279" y="184" width="68" height="43" fill="#dfe3e1"/><rect x="461" y="56" width="48" height="30" fill="#dfe3e1"/><rect x="133" y="118" width="43" height="39" fill="#dfe3e1"/><rect x="98" y="18" width="43" height="55" fill="#dfe3e1"/><rect x="79" y="48" width="81" height="36" fill="#dfe3e1"/><rect x="237" y="63" width="87" height="33" fill="#dfe3e1"/><rect x="134" y="28" width="67" height="35" fill="#dfe3e1"/><rect x="495" y="121" width="84" height="56" fill="#dfe3e1"/><rect x="472" y="168" width="81" height="37" fill="#dfe3e1"/><rect x="407" y="224" width="63" height="42" fill="#dfe3e1"/><rect x="8" y="51" width="77" height="34" fill="#dfe3e1"/><rect x="231" y="76" width="45" height="42" fill="#dfe3e1"/><rect x="0" y="211" width="600" height="9" fill="#ffffff"/><rect x="0" y="227" width="600" height="10" fill="#ffffff"/><rect x="0" y="36" width="600" height="12" fill="#ffffff"/><rect x="0" y="75" width="600" height="11" fill="#ffffff"/><rect x="455" y="0" width="10" height="300" fill="#ffffff"/><rect x="398" y="0" width="8" height="300" fill="#ffffff"/><rect x="342" y="0" width="9" height="300" fill="#ffffff"/><rect x="448" y="0" width="7" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="194" width="600" height="300" fill="#c8d9e4"/><rect x="240" y="4" width="53" height="41" fill="#dfe3e1"/><rect x="440" y="85" width="57" height="42" fill="#dfe3e1"/><rect x="93" y="46" width="44" height="30" fill="#dfe3e1"/><rect x="307" y="80" width="64" height="50" fill="#dfe3e1"/><rect x="349" y="30" width="71" height="66" fill="#dfe3e1"/><rect x="44" y="95" width="79" height="52" fill="#dfe3e1"/><rect x="476" y="1" width="64" height="54" fill="#dfe3e1"/><rect x="187" y="61" width="80" height="48" fill="#dfe3e1"/><rect x="310" y="77" width="67" height="30" fill="#dfe3e1"/><rect x="103" y="26" width="82" height="38" fill="#dfe3e1"/><rect x="67" y="164" width="41" height="36" fill="#dfe3e1"/><rect x="385" y="9" width="65" height="39" fill="#dfe3e1"/><rect x="368" y="139" width="64" height="41" fill="#dfe3e1"/><rect x="497" y="9" width="73" height="30" fill="#dfe3e1"/><rect x="0" y="72" width="600" height="8" fill="#ffffff"/><rect x="0" y="191" width="600" height="10" fill="#ffffff"/><rect x="0" y="221" width="600" height="11" fill="#ffffff"/><rect x="0" y="107" width="600" height="10" fill="#ffffff"/><rect x="58" y="0" width="9" height="300" fill="#ffffff"/><rect x="259" y="0" width="10" height="300" fill="#ffffff"/><rect x="390" y="0" width="11" height="300" fill="#ffffff"/><rect x="406" y="0" width="8" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="259" y="206" width="43" height="50" fill="#dfe3e1"/><rect x="381" y="125" width="87" height="60" fill="#dfe3e1"/><rect x="154" y="60" width="55" height="39" fill="#dfe3e1"/><rect x="238" y="129" width="55" height="56" fill="#dfe3e1"/><rect x="380" y="186" width="42" height="51" fill="#dfe3e1"/><rect x="122" y="214" width="49" height="42" fill="#dfe3e1"/><rect x="402" y="199" width="45" height="62" fill="#dfe3e1"/><rect x="14" y="55" width="74" height="65" fill="#dfe3e1"/><rect x="258" y="78" width="77" height="37" fill="#dfe3e1"/><rect x="50" y="9" width="70" height="52" fill="#dfe3e1"/><rect x="175" y="43" width="82" height="33" fill="#dfe3e1"/><rect x="479" y="62" width="74" height="42" fill="#dfe3e1"/><rect x="23" y="194" width="60" height="64" fill="#dfe3e1"/><rect x="118" y="95" width="41" height="45" fill="#dfe3e1"/><rect x="0" y="161" width="600" height="13" fill="#ffffff"/><rect x="0" y="168" width="600" height="8" fill="#ffffff"/><rect x="0" y="271" width="600" height="10" fill="#ffffff"/><rect x="0" y="76" width="600" height="13" fill="#ffffff"/><rect x="505" y="0" width="10" height="300" fill="#ffffff"/><rect x="131" y="0" width="8" height="300" fill="#ffffff"/><rect x="286" y="0" width="10" height="300" fill="#ffffff"/><rect x="477" y="0" width="12" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="227" width="600" height="300" fill="#c8d9e4"/><rect x="282" y="205" width="72" height="33" fill="#dfe3e1"/><rect x="391" y="156" width="87" height="45" fill="#dfe3e1"/><rect x="12" y="90" width="50" height="64" fill="#dfe3e1"/><rect x="102" y="97" width="69" height="41" fill="#dfe3e1"/><rect x="241" y="49" width="83" height="57" fill="#dfe3e1"/><rect x="319" y="75" width="44" height="38" fill="#dfe3e1"/><rect x="500" y="168" width="46" height="47" fill="#dfe3e1"/><rect x="508" y="77" width="71" height="34" fill="#dfe3e1"/><rect x="422" y="151" width="58" height="66" fill="#dfe3e1"/><rect x="112" y="197" width="68" height="53" fill="#dfe3e1"/><rect x="322" y="76" width="51" height="39" fill="#dfe3e1"/><rect x="386" y="156" width="70" height="52" fill="#dfe3e1"/><rect x="195" y="197" width="76" height="58" fill="#dfe3e1"/><rect x="271" y="33" width="83" height="35" fill="#dfe3e1"/><rect x="0" y="56" width="600" height="8" fill="#ffffff"/><rect x="0" y="214" width="600" height="12" fill="#ffffff"/><rect x="0" y="136" width="600" height="13" fill="#ffffff"/><rect x="0" y="28" width="600" height="11" fill="#ffffff"/><rect x="485" y="0" width="9" height="300" fill="#ffffff"/><rect x="338" y="0" width="7" height="300" fill="#ffffff"/><rect x="522" y="0" width="8" height="300" fill="#ffffff"/><rect x="572" y="0" width="13" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="194" width="600" height="300" fill="#c8d9e4"/><rect x="271" y="121" width="63" height="55" fill="#dfe3e1"/><rect x="132" y="71" width="61" height="35" fill="#dfe3e1"/><rect x="290" y="95" width="58" height="64" fill="#dfe3e1"/><rect x="256" y="210" width="70" height="55" fill="#dfe3e1"/><rect x="115" y="99" width="64" height="33" fill="#dfe3e1"/><rect x="330" y="216" width="80" height="56" fill="#dfe3e1"/><rect x="26" y="148" width="70" height="56" fill="#dfe3e1"/><rect x="229" y="66" width="54" height="56" fill="#dfe3e1"/><rect x="324" y="134" width="42" height="30" fill="#dfe3e1"/><rect x="361" y="24" width="63" height="62" fill="#dfe3e1"/><rect x="79" y="227" width="52" height="35" fill="#dfe3e1"/><rect x="166" y="64" width="65" height="63" fill="#dfe3e1"/><rect x="205" y="85" width="44" height="31" fill="#dfe3e1"/><rect x="26" y="158" width="51" height="51" fill="#dfe3e1"/><rect x="0" y="254" width="600" height="7" fill="#ffffff"/><rect x="0" y="107" width="600" height="7" fill="#ffffff"/><rect x="0" y="144" width="600" height="7" fill="#ffffff"/><rect x="0" y="197" width="600" height="11" fill="#ffffff"/><rect x="179" y="0" width="11" height="300" fill="#ffffff"/><rect x="499" y="0" width="13" height="300" fill="#ffffff"/><rect x="172" y="0" width="11" height="300" fill="#ffffff"/><rect x="365" y="0" width="8" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="220" width="600" height="300" fill="#c8d9e4"/><rect x="78" y="73" width="64" height="45" fill="#dfe3e1"/><rect x="98" y="84" width="59" height="63" fill="#dfe3e1"/><rect x="144" y="86" width="75" height="44" fill="#dfe3e1"/><rect x="227" y="96" width="56" height="39" fill="#dfe3e1"/><rect x="347" y="157" width="45" height="34" fill="#dfe3e1"/><rect x="290" y="225" width="64" height="32" fill="#dfe3e1"/><rect x="77" y="196" width="68" height="56" fill="#dfe3e1"/><rect x="308" y="60" width="43" height="40" fill="#dfe3e1"/><rect x="22" y="221" width="86" height="34" fill="#dfe3e1"/><rect x="363" y="29" width="74" height="47" fill="#dfe3e1"/><rect x="33" y="111" width="50" height="41" fill="#dfe3e1"/><rect x="392" y="175" width="60" height="43" fill="#dfe3e1"/><rect x="12" y="43" width="71" height="37" fill="#dfe3e1"/><rect x="98" y="83" width="80" height="61" fill="#dfe3e1"/><rect x="0" y="136" width="600" height="12" fill="#ffffff"/><rect x="0" y="190" width="600" height="12" fill="#ffffff"/><rect x="0" y="117" width="600" height="9" fill="#ffffff"/><rect x="0" y="265" width="600" height="11" fill="#ffffff"/><rect x="305" y="0" width="7" height="300" fill="#ffffff"/><rect x="334" y="0" width="9" height="300" fill="#ffffff"/><rect x="264" y="0" width="11" height="300" fill="#ffffff"/><rect x="524" y="0" width="10" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="236" width="600" height="300" fill="#c8d9e4"/><rect x="92" y="91" width="74" height="34" fill="#dfe3e1"/><rect x="375" y="124" width="50" height="47" fill="#dfe3e1"/><rect x="364" y="209" width="65" height="47" fill="#dfe3e1"/><rect x="70" y="227" width="72" height="60" fill="#dfe3e1"/><rect x="496" y="22" width="79" height="48" fill="#dfe3e1"/><rect x="361" y="127" width="79" height="61" fill="#dfe3e1"/><rect x="356" y="186" width="73" height="59" fill="#dfe3e1"/><rect x="345" y="71" width="59" height="40" fill="#dfe3e1"/><rect x="445" y="163" width="56" height="64" fill="#dfe3e1"/><rect x="115" y="106" width="44" height="48" fill="#dfe3e1"/><rect x="163" y="176" width="66" height="52" fill="#dfe3e1"/><rect x="497" y="186" width="46" height="52" fill="#dfe3e1"/><rect x="330" y="143" width="44" height="34" fill="#dfe3e1"/><rect x="368" y="153" width="68" height="58" fill="#dfe3e1"/><rect x="0" y="265" width="600" height="12" fill="#ffffff"/><rect x="0" y="242" width="600" height="13" fill="#ffffff"/><rect x="0" y="241" width="600" height="11" fill="#ffffff"/><rect x="0" y="162" width="600" height="9" fill="#ffffff"/><rect x="407" y="0" width="8" height="300" fill="#ffffff"/><rect x="116" y="0" width="12" height="300" fill="#ffffff"/><rect x="394" y="0" width="7" height="300" fill="#ffffff"/><rect x="428" y="0" width="12" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="244" width="600" height="300" fill="#c8d9e4"/><rect x="207" y="219" width="55" height="52" fill="#dfe3e1"/><rect x="229" y="48" width="75" height="48" fill="#dfe3e1"/><rect x="83" y="139" width="49" height="37" fill="#dfe3e1"/><rect x="427" y="25" width="82" height="66" fill="#dfe3e1"/><rect x="386" y="119" width="80" height="34" fill="#dfe3e1"/><rect x="207" y="19" width="84" height="62" fill="#dfe3e1"/><rect x="61" y="45" width="58" height="62" fill="#dfe3e1"/><rect x="415" y="190" width="46" height="54" fill="#dfe3e1"/><rect x="303" y="212" width="67" height="39" fill="#dfe3e1"/><rect x="291" y="152" width="65" height="42" fill="#dfe3e1"/><rect x="476" y="81" width="59" height="48" fill="#dfe3e1"/><rect x="452" y="210" width="59" height="34" fill="#dfe3e1"/><rect x="80" y="197" width="60" height="40" fill="#dfe3e1"/><rect x="77" y="2" width="67" height="38" fill="#dfe3e1"/><rect x="0" y="122" width="600" height="8" fill="#ffffff"/><rect x="0" y="186" width="600" height="12" fill="#ffffff"/><rect x="0" y="197" width="600" height="10" fill="#ffffff"/><rect x="0" y="83" width="600" height="7" fill="#ffffff"/><rect x="456" y="0" width="8" height="300" fill="#ffffff"/><rect x="109" y="0" width="12" height="300" fill="#ffffff"/><rect x="20" y="0" width="7" height="300" fill="#ffffff"/><rect x="474" y="0" width="10" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="391" y="171" width="84" height="66" fill="#dfe3e1"/><rect x="87" y="33" width="45" height="36" fill="#dfe3e1"/><rect x="109" y="91" width="82" height="32" fill="#dfe3e1"/><rect x="439" y="125" width="53" height="65" fill="#dfe3e1"/><rect x="479" y="127" width="77" height="30" fill="#dfe3e1"/><rect x="420" y="227" width="75" height="64" fill="#dfe3e1"/><rect x="482" y="127" width="67" height="38" fill="#dfe3e1"/><rect x="498" y="139" width="49" height="39" fill="#dfe3e1"/><rect x="229" y="90" width="59" height="51" fill="#dfe3e1"/><rect x="192" y="229" width="43" height="41" fill="#dfe3e1"/><rect x="42" y="147" width="71" height="61" fill="#dfe3e1"/><rect x="33" y="124" width="48" height="38" fill="#dfe3e1"/><rect x="143" y="182" width="60" height="43" fill="#dfe3e1"/><rect x="342" y="110" width="45" height="62" fill="#dfe3e1"/><rect x="0" y="245" width="600" height="12" fill="#ffffff"/><rect x="0" y="272" width="600" height="13" fill="#ffffff"/><rect x="0" y="110" width="600" height="10" fill="#ffffff"/><rect x="0" y="233" width="600" height="10" fill="#ffffff"/><rect x="420" y="0" width="12" height="300" fill="#ffffff"/><rect x="363" y="0" width="10" height="300" fill="#ffffff"/><rect x="86" y="0" width="9" height="300" fill="#ffffff"/><rect x="58" y="0" width="10" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="312" y="81" width="43" height="52" fill="#dfe3e1"/><rect x="284" y="181" width="46" height="40" fill="#dfe3e1"/><rect x="466" y="57" width="44" height="58" fill="#dfe3e1"/><rect x="466" y="39" width="57" height="34" fill="#dfe3e1"/><rect x="175" y="75" width="48" height="64" fill="#dfe3e1"/><rect x="7" y="192" width="58" height="56" fill="#dfe3e1"/><rect x="404" y="89" width="49" height="47" fill="#dfe3e1"/><rect x="131" y="46" width="87" height="52" fill="#dfe3e1"/><rect x="336" y="170" width="79" height="66" fill="#dfe3e1"/><rect x="353" y="177" width="77" height="62" fill="#dfe3e1"/><rect x="390" y="212" width="67" height="57" fill="#dfe3e1"/><rect x="16" y="202" width="51" height="39" fill="#dfe3e1"/><rect x="51" y="142" width="67" height="30" fill="#dfe3e1"/><rect x="195" y="229" width="84" height="47" fill="#dfe3e1"/><rect x="0" y="276" width="600" height="8" fill="#ffffff"/><rect x="0" y="149" width="600" height="9" fill="#ffffff"/><rect x="0" y="272" width="600" height="12" fill="#ffffff"/><rect x="0" y="32" width="600" height="9" fill="#ffffff"/><rect x="382" y="0" width="10" height="300" fill="#ffffff"/><rect x="132" y="0" width="10" height="300" fill="#ffffff"/><rect x="115" y="0" width="11" height="300" fill="#ffffff"/><rect x="336" y="0" width="7" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="299" y="88" width="61" height="63" fill="#dfe3e1"/><rect x="419" y="190" width="51" height="46" fill="#dfe3e1"/><rect x="388" y="196" width="82" height="60" fill="#dfe3e1"/><rect x="487" y="219" width="53" height="41" fill="#dfe3e1"/><rect x="399" y="140" width="86" height="46" fill="#dfe3e1"/><rect x="302" y="6" width="74" height="49" fill="#dfe3e1"/><rect x="131" y="35" width="74" height="35" fill="#dfe3e1"/><rect x="161" y="193" width="84" height="40" fill="#dfe3e1"/><rect x="457" y="169" width="66" height="53" fill="#dfe3e1"/><rect x="131" y="228" width="62" height="64" fill="#dfe3e1"/><rect x="100" y="130" width="55" height="66" fill="#dfe3e1"/><rect x="351" y="168" width="43" height="46" fill="#dfe3e1"/><rect x="437" y="104" width="81" height="34" fill="#dfe3e1"/><rect x="270" y="134" width="55" height="39" fill="#dfe3e1"/><rect x="0" y="207" width="600" height="12" fill="#ffffff"/><rect x="0" y="86" width="600" height="10" fill="#ffffff"/><rect x="0" y="261" width="600" height="13" fill="#ffffff"/><rect x="0" y="73" width="600" height="11" fill="#ffffff"/><rect x="44" y="0" width="7" height="300" fill="#ffffff"/><rect x="256" y="0" width="7" height="300" fill="#ffffff"/><rect x="368" y="0" width="11" height="300" fill="#ffffff"/><rect x="455" y="0" width="11" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="361" y="62" width="75" height="38" fill="#dfe3e1"/><rect x="126" y="152" width="59" height="49" fill="#dfe3e1"/><rect x="500" y="91" width="53" height="31" fill="#dfe3e1"/><rect x="311" y="135" width="67" height="49" fill="#dfe3e1"/><rect x="51" y="72" width="67" height="56" fill="#dfe3e1"/><rect x="368" y="217" width="46" height="33" fill="#dfe3e1"/><rect x="216" y="159" width="80" height="30" fill="#dfe3e1"/><rect x="297" y="5" width="69" height="46" fill="#dfe3e1"/><rect x="473" y="189" width="69" height="62" fill="#dfe3e1"/><rect x="314" y="220" width="49" height="30" fill="#dfe3e1"/><rect x="99" y="227" width="54" height="50" fill="#dfe3e1"/><rect x="212" y="73" width="76" height="57" fill="#dfe3e1"/><rect x="457" y="108" width="84" height="50" fill="#dfe3e1"/><rect x="260" y="4" width="82" height="34" fill="#dfe3e1"/><rect x="0" y="39" width="600" height="12" fill="#ffffff"/><rect x="0" y="110" width="600" height="9" fill="#ffffff"/><rect x="0" y="53" width="600" height="10" fill="#ffffff"/><rect x="0" y="45" width="600" height="12" fill="#ffffff"/><rect x="460" y="0" width="8" height="300" fill="#ffffff"/><rect x="28" y="0" width="10" height="300" fill="#ffffff"/><rect x="23" y="0" width="13" height="300" fill="#ffffff"/><rect x="503" y="0" width="11" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="193" width="600" height="300" fill="#c8d9e4"/><rect x="460" y="206" width="65" height="63" fill="#dfe3e1"/><rect x="501" y="74" width="81" height="34" fill="#dfe3e1"/><rect x="231" y="56" width="64" height="65" fill="#dfe3e1"/><rect x="48" y="214" width="43" height="59" fill="#dfe3e1"/><rect x="476" y="199" width="77" height="53" fill="#dfe3e1"/><rect x="220" y="215" width="61" height="57" fill="#dfe3e1"/><rect x="182" y="93" width="58" height="49" fill="#dfe3e1"/><rect x="82" y="21" width="66" height="49" fill="#dfe3e1"/><rect x="29" y="15" width="45" height="52" fill="#dfe3e1"/><rect x="491" y="18" width="40" height="50" fill="#dfe3e1"/><rect x="180" y="77" width="64" height="37" fill="#dfe3e1"/><rect x="21" y="164" width="58" height="63" fill="#dfe3e1"/><rect x="397" y="165" width="85" height="48" fill="#dfe3e1"/><rect x="215" y="154" width="75" height="53" fill="#dfe3e1"/><rect x="0" y="148" width="600" height="8" fill="#ffffff"/><rect x="0" y="161" width="600" height="8" fill="#ffffff"/><rect x="0" y="73" width="600" height="11" fill="#ffffff"/><rect x="0" y="198" width="600" height="12" fill="#ffffff"/><rect x="329" y="0" width="8" height="300" fill="#ffffff"/><rect x="105" y="0" width="11" height="300" fill="#ffffff"/><rect x="256" y="0" width="9" height="300" fill="#ffffff"/><rect x="326" y="0" width="11" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="115" y="12" width="71" height="65" fill="#dfe3e1"/><rect x="509" y="213" width="48" height="43" fill="#dfe3e1"/><rect x="155" y="187" width="77" height="49" fill="#dfe3e1"/><rect x="360" y="45" width="45" height="61" fill="#dfe3e1"/><rect x="383" y="188" width="75" height="61" fill="#dfe3e1"/><rect x="411" y="103" width="58" height="57" fill="#dfe3e1"/><rect x="357" y="98" width="65" height="41" fill="#dfe3e1"/><rect x="94" y="152" width="67" height="58" fill="#dfe3e1"/><rect x="229" y="114" width="48" height="50" fill="#dfe3e1"/><rect x="398" y="197" width="52" height="37" fill="#dfe3e1"/><rect x="161" y="113" width="46" height="57" fill="#dfe3e1"/><rect x="458" y="49" width="59" height="32" fill="#dfe3e1"/><rect x="1" y="87" width="82" height="57" fill="#dfe3e1"/><rect x="450" y="95" width="83" height="59" fill="#dfe3e1"/><rect x="0" y="110" width="600" height="12" fill="#ffffff"/><rect x="0" y="234" width="600" height="11" fill="#ffffff"/><rect x="0" y="233" width="600" height="12" fill="#ffffff"/><rect x="0" y="190" width="600" height="7" fill="#ffffff"/><rect x="224" y="0" width="10" height="300" fill="#ffffff"/><rect x="276" y="0" width="11" height="300" fill="#ffffff"/><rect x="553" y="0" width="13" height="300" fill="#ffffff"/><rect x="422" y="0" width="9" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="240" width="600" height="300" fill="#c8d9e4"/><rect x="196" y="41" width="60" height="46" fill="#dfe3e1"/><rect x="431" y="53" width="50" height="53" fill="#dfe3e1"/><rect x="288" y="60" width="85" height="37" fill="#dfe3e1"/><rect x="168" y="135" width="79" height="65" fill="#dfe3e1"/><rect x="75" y="109" width="61" height="55" fill="#dfe3e1"/><rect x="458" y="151" width="75" height="41" fill="#dfe3e1"/><rect x="439" y="128" width="54" height="38" fill="#dfe3e1"/><rect x="419" y="49" width="70" height="63" fill="#dfe3e1"/><rect x="281" y="70" width="72" height="52" fill="#dfe3e1"/><rect x="419" y="123" width="44" height="37" fill="#dfe3e1"/><rect x="456" y="97" width="42" height="66" fill="#dfe3e1"/><rect x="114" y="90" width="48" height="63" fill="#dfe3e1"/><rect x="62" y="5" width="76" height="45" fill="#dfe3e1"/><rect x="455" y="67" width="78" height="53" fill="#dfe3e1"/><rect x="0" y="135" width="600" height="10" fill="#ffffff"/><rect x="0" y="158" width="600" height="10" fill="#ffffff"/><rect x="0" y="190" width="600" height="9" fill="#ffffff"/><rect x="0" y="199" width="600" height="8" fill="#ffffff"/><rect x="113" y="0" width="8" height="300" fill="#ffffff"/><rect x="391" y="0" width="10" height="300" fill="#ffffff"/><rect x="243" y="0" width="7" height="300" fill="#ffffff"/><rect x="224" y="0" width="10" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="48" y="36" width="44" height="36" fill="#dfe3e1"/><rect x="54" y="191" width="77" height="32" fill="#dfe3e1"/><rect x="297" y="137" width="61" height="31" fill="#dfe3e1"/><rect x="254" y="171" width="79" height="65" fill="#dfe3e1"/><rect x="380" y="123" width="66" height="41" fill="#dfe3e1"/><rect x="393" y="217" width="48" height="41" fill="#dfe3e1"/><rect x="331" y="192" width="87" height="39" fill="#dfe3e1"/><rect x="117" y="158" width="69" height="39" fill="#dfe3e1"/><rect x="335" y="150" width="56" height="62" fill="#dfe3e1"/><rect x="229" y="56" width="73" height="38" fill="#dfe3e1"/><rect x="293" y="210" width="67" height="35" fill="#dfe3e1"/><rect x="260" y="67" width="80" height="53" fill="#dfe3e1"/><rect x="170" y="50" width="83" height="39" fill="#dfe3e1"/><rect x="51" y="137" width="49" height="44" fill="#dfe3e1"/><rect x="0" y="191" width="600" height="11" fill="#ffffff"/><rect x="0" y="191" width="600" height="13" fill="#ffffff"/><rect x="0" y="214" width="600" height="12" fill="#ffffff"/><rect x="0" y="88" width="600" height="9" fill="#ffffff"/><rect x="261" y="0" width="7" height="300" fill="#ffffff"/><rect x="327" y="0" width="12" height="300" fill="#ffffff"/><rect x="72" y="0" width="11" height="300" fill="#ffffff"/><rect x="439" y="0" width="10" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="268" y="173" width="71" height="34" fill="#dfe3e1"/><rect x="0" y="42" width="60" height="56" fill="#dfe3e1"/><rect x="406" y="106" width="45" height="32" fill="#dfe3e1"/><rect x="473" y="105" width="86" height="46" fill="#dfe3e1"/><rect x="184" y="177" width="51" height="44" fill="#dfe3e1"/><rect x="137" y="52" width="48" height="49" fill="#dfe3e1"/><rect x="426" y="202" width="87" height="45" fill="#dfe3e1"/><rect x="297" y="107" width="66" height="45" fill="#dfe3e1"/><rect x="426" y="104" width="47" height="51" fill="#dfe3e1"/><rect x="202" y="0" width="47" height="62" fill="#dfe3e1"/><rect x="158" y="44" width="86" height="44" fill="#dfe3e1"/><rect x="4" y="94" width="44" height="57" fill="#dfe3e1"/><rect x="401" y="187" width="72" height="59" fill="#dfe3e1"/><rect x="75" y="209" width="53" height="30" fill="#dfe3e1"/><rect x="0" y="239" width="600" height="11" fill="#ffffff"/><rect x="0" y="214" width="600" height="9" fill="#ffffff"/><rect x="0" y="229" width="600" height="8" fill="#ffffff"/><rect x="0" y="229" width="600" height="12" fill="#ffffff"/><rect x="355" y="0" width="10" height="300" fill="#ffffff"/><rect x="180" y="0" width="10" height="300" fill="#ffffff"/><rect x="573" y="0" width="10" height="300" fill="#ffffff"/><rect x="177" y="0" width="11" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="227" width="600" height="300" fill="#c8d9e4"/><rect x="289" y="36" width="44" height="52" fill="#dfe3e1"/><rect x="257" y="15" width="58" height="49" fill="#dfe3e1"/><rect x="58" y="14" width="42" height="50" fill="#dfe3e1"/><rect x="172" y="221" width="81" height="30" fill="#dfe3e1"/><rect x="363" y="23" width="88" height="52" fill="#dfe3e1"/><rect x="433" y="41" width="74" height="48" fill="#dfe3e1"/><rect x="425" y="105" width="70" height="46" fill="#dfe3e1"/><rect x="463" y="46" width="87" height="32" fill="#dfe3e1"/><rect x="299" y="215" width="44" height="44" fill="#dfe3e1"/><rect x="276" y="76" width="57" height="63" fill="#dfe3e1"/><rect x="205" y="142" width="80" height="45" fill="#dfe3e1"/><rect x="415" y="152" width="61" height="35" fill="#dfe3e1"/><rect x="27" y="36" width="76" height="34" fill="#dfe3e1"/><rect x="211" y="169" width="43" height="65" fill="#dfe3e1"/><rect x="0" y="154" width="600" height="9" fill="#ffffff"/><rect x="0" y="156" width="600" height="8" fill="#ffffff"/><rect x="0" y="138" width="600" height="10" fill="#ffffff"/><rect x="0" y="34" width="600" height="7" fill="#ffffff"/><rect x="354" y="0" width="8" height="300" fill="#ffffff"/><rect x="401" y="0" width="12" height="300" fill="#ffffff"/><rect x="389" y="0" width="13" height="300" fill="#ffffff"/><rect x="312" y="0" width="9" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="232" width="600" height="300" fill="#c8d9e4"/><rect x="140" y="22" width="46" height="46" fill="#dfe3e1"/><rect x="231" y="217" width="72" height="32" fill="#dfe3e1"/><rect x="60" y="182" width="43" height="37" fill="#dfe3e1"/><rect x="83" y="226" width="70" height="45" fill="#dfe3e1"/><rect x="456" y="72" width="78" height="31" fill="#dfe3e1"/><rect x="208" y="114" width="61" height="56" fill="#dfe3e1"/><rect x="163" y="216" width="52" height="37" fill="#dfe3e1"/><rect x="335" y="21" width="57" height="31" fill="#dfe3e1"/><rect x="313" y="73" width="80" height="41" fill="#dfe3e1"/><rect x="304" y="55" width="66" height="35" fill="#dfe3e1"/><rect x="436" y="165" width="82" height="48" fill="#dfe3e1"/><rect x="4" y="218" width="42" height="32" fill="#dfe3e1"/><rect x="452" y="87" width="70" height="62" fill="#dfe3e1"/><rect x="443" y="51" width="51" height="48" fill="#dfe3e1"/><rect x="0" y="189" width="600" height="11" fill="#ffffff"/><rect x="0" y="67" width="600" height="13" fill="#ffffff"/><rect x="0" y="135" width="600" height="12" fill="#ffffff"/><rect x="0" y="101" width="600" height="11" fill="#ffffff"/><rect x="135" y="0" width="11" height="300" fill="#ffffff"/><rect x="233" y="0" width="8" height="300" fill="#ffffff"/><rect x="238" y="0" width="7" height="300" fill="#ffffff"/><rect x="246" y="0" width="12" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="370" y="88" width="46" height="42" fill="#dfe3e1"/><rect x="67" y="224" width="62" height="36" fill="#dfe3e1"/><rect x="501" y="85" width="59" height="48" fill="#dfe3e1"/><rect x="370" y="130" width="51" height="31" fill="#dfe3e1"/><rect x="484" y="63" width="82" height="54" fill="#dfe3e1"/><rect x="250" y="42" width="78" height="42" fill="#dfe3e1"/><rect x="177" y="203" width="72" height="55" fill="#dfe3e1"/><rect x="114" y="132" width="67" height="43" fill="#dfe3e1"/><rect x="48" y="218" width="41" height="53" fill="#dfe3e1"/><rect x="130" y="131" width="67" height="66" fill="#dfe3e1"/><rect x="126" y="139" width="58" height="37" fill="#dfe3e1"/><rect x="220" y="190" width="86" height="64" fill="#dfe3e1"/><rect x="33" y="95" width="84" height="35" fill="#dfe3e1"/><rect x="400" y="193" width="79" height="62" fill="#dfe3e1"/><rect x="0" y="176" width="600" height="11" fill="#ffffff"/><rect x="0" y="156" width="600" height="8" fill="#ffffff"/><rect x="0" y="128" width="600" height="8" fill="#ffffff"/><rect x="0" y="135" width="600" height="8" fill="#ffffff"/><rect x="231" y="0" width="12" height="300" fill="#ffffff"/><rect x="35" y="0" width="8" height="300" fill="#ffffff"/><rect x="134" y="0" width="10" height="300" fill="#ffffff"/><rect x="378" y="0" width="9" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="201" width="600" height="300" fill="#c8d9e4"/><rect x="228" y="37" width="56" height="36" fill="#dfe3e1"/><rect x="87" y="184" width="55" height="47" fill="#dfe3e1"/><rect x="486" y="74" width="44" height="31" fill="#dfe3e1"/><rect x="498" y="47" width="67" height="48" fill="#dfe3e1"/><rect x="440" y="230" width="64" height="30" fill="#dfe3e1"/><rect x="359" y="53" width="74" height="58" fill="#dfe3e1"/><rect x="301" y="161" width="77" height="50" fill="#dfe3e1"/><rect x="65" y="24" width="51" height="33" fill="#dfe3e1"/><rect x="477" y="70" width="53" height="36" fill="#dfe3e1"/><rect x="472" y="54" width="77" height="38" fill="#dfe3e1"/><rect x="340" y="95" width="57" height="54" fill="#dfe3e1"/><rect x="338" y="113" width="71" height="48" fill="#dfe3e1"/><rect x="149" y="90" width="72" height="37" fill="#dfe3e1"/><rect x="9" y="45" width="82" height="62" fill="#dfe3e1"/><rect x="0" y="53" width="600" height="7" fill="#ffffff"/><rect x="0" y="123" width="600" height="11" fill="#ffffff"/><rect x="0" y="143" width="600" height="13" fill="#ffffff"/><rect x="0" y="156" width="600" height="8" fill="#ffffff"/><rect x="82" y="0" width="13" height="300" fill="#ffffff"/><rect x="492" y="0" width="11" height="300" fill="#ffffff"/><rect x="326" y="0" width="11" height="300" fill="#ffffff"/><rect x="379" y="0" width="9" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="247" width="600" height="300" fill="#c8d9e4"/><rect x="181" y="33" width="50" height="54" fill="#dfe3e1"/><rect x="21" y="21" width="60" height="50" fill="#dfe3e1"/><rect x="151" y="55" width="78" height="39" fill="#dfe3e1"/><rect x="342" y="135" width="76" height="36" fill="#dfe3e1"/><rect x="468" y="162" width="50" height="40" fill="#dfe3e1"/><rect x="104" y="123" width="40" height="37" fill="#dfe3e1"/><rect x="128" y="162" width="81" height="43" fill="#dfe3e1"/><rect x="25" y="189" width="49" height="52" fill="#dfe3e1"/><rect x="15" y="70" width="58" height="56" fill="#dfe3e1"/><rect x="243" y="101" width="55" height="55" fill="#dfe3e1"/><rect x="419" y="38" width="62" height="36" fill="#dfe3e1"/><rect x="35" y="79" width="49" height="30" fill="#dfe3e1"/><rect x="340" y="82" width="76" height="47" fill="#dfe3e1"/><rect x="27" y="19" width="47" height="61" fill="#dfe3e1"/><rect x="0" y="46" width="600" height="10" fill="#ffffff"/><rect x="0" y="187" width="600" height="7" fill="#ffffff"/><rect x="0" y="191" width="600" height="7" fill="#ffffff"/><rect x="0" y="268" width="600" height="8" fill="#ffffff"/><rect x="370" y="0" width="11" height="300" fill="#ffffff"/><rect x="194" y="0" width="7" height="300" fill="#ffffff"/><rect x="276" y="0" width="8" height="300" fill="#ffffff"/><rect x="552" y="0" width="9" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="237" width="600" height="300" fill="#c8d9e4"/><rect x="56" y="64" width="78" height="48" fill="#dfe3e1"/><rect x="352" y="89" width="46" height="43" fill="#dfe3e1"/><rect x="429" y="75" width="59" height="65" fill="#dfe3e1"/><rect x="143" y="86" width="59" height="59" fill="#dfe3e1"/><rect x="337" y="83" width="43" height="32" fill="#dfe3e1"/><rect x="258" y="32" width="74" height="41" fill="#dfe3e1"/><rect x="177" y="152" width="46" height="47" fill="#dfe3e1"/><rect x="216" y="76" width="73" height="34" fill="#dfe3e1"/><rect x="118" y="26" width="58" height="43" fill="#dfe3e1"/><rect x="16" y="100" width="79" height="62" fill="#dfe3e1"/><rect x="178" y="55" width="72" height="46" fill="#dfe3e1"/><rect x="338" y="228" width="70" height="31" fill="#dfe3e1"/><rect x="438" y="87" width="81" height="45" fill="#dfe3e1"/><rect x="483" y="81" width="62" height="49" fill="#dfe3e1"/><rect x="0" y="180" width="600" height="8" fill="#ffffff"/><rect x="0" y="124" width="600" height="12" fill="#ffffff"/><rect x="0" y="249" width="600" height="13" fill="#ffffff"/><rect x="0" y="173" width="600" height="9" fill="#ffffff"/><rect x="321" y="0" width="10" height="300" fill="#ffffff"/><rect x="102" y="0" width="10" height="300" fill="#ffffff"/><rect x="171" y="0" width="7" height="300" fill="#ffffff"/><rect x="323" y="0" width="11" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="206" y="51" width="55" height="53" fill="#dfe3e1"/><rect x="132" y="141" width="86" height="37" fill="#dfe3e1"/><rect x="404" y="217" width="46" height="30" fill="#dfe3e1"/><rect x="312" y="187" width="45" height="37" fill="#dfe3e1"/><rect x="378" y="67" width="47" height="31" fill="#dfe3e1"/><rect x="435" y="104" width="64" height="49" fill="#dfe3e1"/><rect x="70" y="146" width="70" height="32" fill="#dfe3e1"/><rect x="492" y="46" width="55" height="57" fill="#dfe3e1"/><rect x="120" y="207" width="54" height="39" fill="#dfe3e1"/><rect x="505" y="230" width="63" height="48" fill="#dfe3e1"/><rect x="277" y="81" width="65" height="32" fill="#dfe3e1"/><rect x="71" y="129" width="53" height="35" fill="#dfe3e1"/><rect x="38" y="200" width="51" height="64" fill="#dfe3e1"/><rect x="507" y="217" width="63" height="44" fill="#dfe3e1"/><rect x="0" y="160" width="600" height="13" fill="#ffffff"/><rect x="0" y="64" width="600" height="9" fill="#ffffff"/><rect x="0" y="200" width="600" height="10" fill="#ffffff"/><rect x="0" y="232" width="600" height="9" fill="#ffffff"/><rect x="210" y="0" width="13" height="300" fill="#ffffff"/><rect x="83" y="0" width="11" height="300" fill="#ffffff"/><rect x="62" y="0" width="12" height="300" fill="#ffffff"/><rect x="345" y="0" width="13" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="223" width="600" height="300" fill="#c8d9e4"/><rect x="138" y="16" width="66" height="43" fill="#dfe3e1"/><rect x="270" y="13" width="51" height="32" fill="#dfe3e1"/><rect x="344" y="168" width="80" height="35" fill="#dfe3e1"/><rect x="265" y="144" width="65" height="45" fill="#dfe3e1"/><rect x="485" y="158" width="84" height="62" fill="#dfe3e1"/><rect x="130" y="230" width="48" height="45" fill="#dfe3e1"/><rect x="256" y="7" width="61" height="54" fill="#dfe3e1"/><rect x="371" y="126" width="67" height="58" fill="#dfe3e1"/><rect x="36" y="170" width="64" height="48" fill="#dfe3e1"/><rect x="326" y="99" width="85" height="39" fill="#dfe3e1"/><rect x="162" y="96" width="64" height="61" fill="#dfe3e1"/><rect x="501" y="216" width="88" height="58" fill="#dfe3e1"/><rect x="451" y="67" width="49" height="38" fill="#dfe3e1"/><rect x="476" y="208" width="73" height="42" fill="#dfe3e1"/><rect x="0" y="208" width="600" height="12" fill="#ffffff"/><rect x="0" y="91" width="600" height="8" fill="#ffffff"/><rect x="0" y="96" width="600" height="10" fill="#ffffff"/><rect x="0" y="182" width="600" height="12" fill="#ffffff"/><rect x="20" y="0" width="10" height="300" fill="#ffffff"/><rect x="253" y="0" width="10" height="300" fill="#ffffff"/><rect x="90" y="0" width="11" height="300" fill="#ffffff"/><rect x="346" y="0" width="7" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="135" y="181" width="43" height="61" fill="#dfe3e1"/><rect x="223" y="182" width="53" height="58" fill="#dfe3e1"/><rect x="119" y="194" width="69" height="49" fill="#dfe3e1"/><rect x="229" y="139" width="72" height="54" fill="#dfe3e1"/><rect x="353" y="14" width="74" height="54" fill="#dfe3e1"/><rect x="13" y="78" width="75" height="48" fill="#dfe3e1"/><rect x="245" y="11" width="75" height="52" fill="#dfe3e1"/><rect x="57" y="75" width="68" height="61" fill="#dfe3e1"/><rect x="58" y="199" width="53" height="56" fill="#dfe3e1"/><rect x="252" y="17" width="81" height="31" fill="#dfe3e1"/><rect x="147" y="35" width="45" height="42" fill="#dfe3e1"/><rect x="231" y="48" width="52" height="37" fill="#dfe3e1"/><rect x="101" y="76" width="67" height="38" fill="#dfe3e1"/><rect x="166" y="228" width="61" height="45" fill="#dfe3e1"/><rect x="0" y="49" width="600" height="12" fill="#ffffff"/><rect x="0" y="55" width="600" height="9" fill="#ffffff"/><rect x="0" y="250" width="600" height="7" fill="#ffffff"/><rect x="0" y="90" width="600" height="10" fill="#ffffff"/><rect x="210" y="0" width="11" height="300" fill="#ffffff"/><rect x="64" y="0" width="11" height="300" fill="#ffffff"/><rect x="443" y="0" width="9" height="300" fill="#ffffff"/><rect x="362" y="0" width="8" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="62" y="136" width="78" height="35" fill="#dfe3e1"/><rect x="137" y="145" width="41" height="38" fill="#dfe3e1"/><rect x="14" y="119" width="51" height="39" fill="#dfe3e1"/><rect x="139" y="97" width="82" height="64" fill="#dfe3e1"/><rect x="20" y="164" width="53" height="52" fill="#dfe3e1"/><rect x="339" y="197" width="68" height="44" fill="#dfe3e1"/><rect x="252" y="195" width="49" height="38" fill="#dfe3e1"/><rect x="433" y="183" width="49" height="50" fill="#dfe3e1"/><rect x="54" y="140" width="55" height="62" fill="#dfe3e1"/><rect x="221" y="148" width="71" height="43" fill="#dfe3e1"/><rect x="227" y="70" width="53" height="61" fill="#dfe3e1"/><rect x="133" y="197" width="72" height="55" fill="#dfe3e1"/><rect x="402" y="77" width="42" height="58" fill="#dfe3e1"/><rect x="68" y="214" width="53" height="45" fill="#dfe3e1"/><rect x="0" y="274" width="600" height="12" fill="#ffffff"/><rect x="0" y="86" width="600" height="9" fill="#ffffff"/><rect x="0" y="89" width="600" height="12" fill="#ffffff"/><rect x="0" y="59" width="600" height="12" fill="#ffffff"/><rect x="375" y="0" width="13" height="300" fill="#ffffff"/><rect x="407" y="0" width="11" height="300" fill="#ffffff"/><rect x="166" y="0" width="7" height="300" fill="#ffffff"/><rect x="394" y="0" width="11" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="169" y="7" width="63" height="37" fill="#dfe3e1"/><rect x="390" y="111" width="56" height="47" fill="#dfe3e1"/><rect x="341" y="105" width="53" height="40" fill="#dfe3e1"/><rect x="419" y="51" width="71" height="45" fill="#dfe3e1"/><rect x="450" y="214" width="62" height="44" fill="#dfe3e1"/><rect x="245" y="224" width="74" height="60" fill="#dfe3e1"/><rect x="389" y="74" width="62" height="63" fill="#dfe3e1"/><rect x="48" y="12" width="83" height="35" fill="#dfe3e1"/><rect x="122" y="203" width="85" height="65" fill="#dfe3e1"/><rect x="150" y="162" width="74" height="49" fill="#dfe3e1"/><rect x="157" y="153" width="65" height="64" fill="#dfe3e1"/><rect x="233" y="107" width="79" height="40" fill="#dfe3e1"/><rect x="449" y="79" width="81" height="35" fill="#dfe3e1"/><rect x="171" y="4" width="79" height="66" fill="#dfe3e1"/><rect x="0" y="241" width="600" height="10" fill="#ffffff"/><rect x="0" y="78" width="600" height="8" fill="#ffffff"/><rect x="0" y="30" width="600" height="9" fill="#ffffff"/><rect x="0" y="156" width="600" height="13" fill="#ffffff"/><rect x="20" y="0" width="7" height="300" fill="#ffffff"/><rect x="389" y="0" width="12" height="300" fill="#ffffff"/><rect x="217" y="0" width="13" height="300" fill="#ffffff"/><rect x="28" y="0" width="7" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="360" y="227" width="71" height="64" fill="#dfe3e1"/><rect x="321" y="6" width="44" height="31" fill="#dfe3e1"/><rect x="499" y="174" width="44" height="54" fill="#dfe3e1"/><rect x="90" y="14" width="46" height="57" fill="#dfe3e1"/><rect x="392" y="176" width="71" height="30" fill="#dfe3e1"/><rect x="317" y="6" width="70" height="44" fill="#dfe3e1"/><rect x="467" y="146" width="83" height="33" fill="#dfe3e1"/><rect x="383" y="81" width="43" height="32" fill="#dfe3e1"/><rect x="283" y="88" width="52" height="54" fill="#dfe3e1"/><rect x="410" y="21" width="83" height="61" fill="#dfe3e1"/><rect x="276" y="10" width="49" height="35" fill="#dfe3e1"/><rect x="224" y="100" width="69" height="44" fill="#dfe3e1"/><rect x="84" y="128" width="65" height="33" fill="#dfe3e1"/><rect x="394" y="93" width="73" height="45" fill="#dfe3e1"/><rect x="0" y="141" width="600" height="8" fill="#ffffff"/><rect x="0" y="87" width="600" height="10" fill="#ffffff"/><rect x="0" y="155" width="600" height="10" fill="#ffffff"/><rect x="0" y="80" width="600" height="10" fill="#ffffff"/><rect x="579" y="0" width="8" height="300" fill="#ffffff"/><rect x="408" y="0" width="8" height="300" fill="#ffffff"/><rect x="45" y="0" width="7" height="300" fill="#ffffff"/><rect x="123" y="0" width="10" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="211" y="4" width="54" height="47" fill="#dfe3e1"/><rect x="66" y="26" width="53" height="52" fill="#dfe3e1"/><rect x="174" y="117" width="43" height="53" fill="#dfe3e1"/><rect x="3" y="83" width="41" height="62" fill="#dfe3e1"/><rect x="400" y="208" width="81" height="42" fill="#dfe3e1"/><rect x="451" y="67" width="43" height="47" fill="#dfe3e1"/><rect x="433" y="134" width="58" height="47" fill="#dfe3e1"/><rect x="495" y="0" width="75" height="45" fill="#dfe3e1"/><rect x="500" y="181" width="72" height="32" fill="#dfe3e1"/><rect x="319" y="66" width="54" height="31" fill="#dfe3e1"/><rect x="473" y="210" width="76" height="46" fill="#dfe3e1"/><rect x="278" y="67" width="88" height="40" fill="#dfe3e1"/><rect x="494" y="95" width="88" height="60" fill="#dfe3e1"/><rect x="366" y="186" width="53" height="62" fill="#dfe3e1"/><rect x="0" y="183" width="600" height="11" fill="#ffffff"/><rect x="0" y="154" width="600" height="10" fill="#ffffff"/><rect x="0" y="183" width="600" height="7" fill="#ffffff"/><rect x="0" y="266" width="600" height="12" fill="#ffffff"/><rect x="212" y="0" width="13" height="300" fill="#ffffff"/><rect x="289" y="0" width="12" height="300" fill="#ffffff"/><rect x="308" y="0" width="10" height="300" fill="#ffffff"/><rect x="233" y="0" width="10" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="131" y="66" width="80" height="63" fill="#dfe3e1"/><rect x="499" y="102" width="61" height="63" fill="#dfe3e1"/><rect x="304" y="3" width="63" height="37" fill="#dfe3e1"/><rect x="291" y="187" width="72" height="48" fill="#dfe3e1"/><rect x="302" y="18" width="57" height="60" fill="#dfe3e1"/><rect x="158" y="218" width="82" height="34" fill="#dfe3e1"/><rect x="443" y="97" width="40" height="55" fill="#dfe3e1"/><rect x="225" y="26" width="42" height="33" fill="#dfe3e1"/><rect x="503" y="76" width="51" height="60" fill="#dfe3e1"/><rect x="159" y="49" width="66" height="55" fill="#dfe3e1"/><rect x="369" y="24" width="47" height="50" fill="#dfe3e1"/><rect x="372" y="5" width="79" height="64" fill="#dfe3e1"/><rect x="237" y="108" width="47" height="66" fill="#dfe3e1"/><rect x="147" y="148" width="42" height="48" fill="#dfe3e1"/><rect x="0" y="75" width="600" height="12" fill="#ffffff"/><rect x="0" y="69" width="600" height="8" fill="#ffffff"/><rect x="0" y="150" width="600" height="7" fill="#ffffff"/><rect x="0" y="103" width="600" height="8" fill="#ffffff"/><rect x="502" y="0" width="11" height="300" fill="#ffffff"/><rect x="517" y="0" width="10" height="300" fill="#ffffff"/><rect x="481" y="0" width="8" height="300" fill="#ffffff"/><rect x="20" y="0" width="8" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="361" y="37" width="69" height="64" fill="#dfe3e1"/><rect x="261" y="16" width="44" height="57" fill="#dfe3e1"/><rect x="346" y="227" width="53" height="51" fill="#dfe3e1"/><rect x="215" y="109" width="43" height="49" fill="#dfe3e1"/><rect x="74" y="22" width="56" height="36" fill="#dfe3e1"/><rect x="220" y="74" width="47" height="36" fill="#dfe3e1"/><rect x="267" y="73" width="76" height="47" fill="#dfe3e1"/><rect x="150" y="57" width="76" height="36" fill="#dfe3e1"/><rect x="232" y="130" width="41" height="40" fill="#dfe3e1"/><rect x="366" y="45" width="61" height="33" fill="#dfe3e1"/><rect x="369" y="132" width="79" height="65" fill="#dfe3e1"/><rect x="234" y="134" width="82" height="57" fill="#dfe3e1"/><rect x="150" y="59" width="78" height="36" fill="#dfe3e1"/><rect x="108" y="161" width="45" height="66" fill="#dfe3e1"/><rect x="0" y="230" width="600" height="11" fill="#ffffff"/><rect x="0" y="220" width="600" height="12" fill="#ffffff"/><rect x="0" y="48" width="600" height="9" fill="#ffffff"/><rect x="0" y="51" width="600" height="7" fill="#ffffff"/><rect x="467" y="0" width="9" height="300" fill="#ffffff"/><rect x="423" y="0" width="11" height="300" fill="#ffffff"/><rect x="111" y="0" width="12" height="300" fill="#ffffff"/><rect x="274" y="0" width="8" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="478" y="147" width="43" height="48" fill="#dfe3e1"/><rect x="483" y="75" width="52" height="30" fill="#dfe3e1"/><rect x="412" y="34" width="70" height="49" fill="#dfe3e1"/><rect x="32" y="64" width="76" height="39" fill="#dfe3e1"/><rect x="502" y="122" width="88" height="54" fill="#dfe3e1"/><rect x="33" y="225" width="87" height="63" fill="#dfe3e1"/><rect x="50" y="169" width="72" height="55" fill="#dfe3e1"/><rect x="164" y="90" width="82" height="50" fill="#dfe3e1"/><rect x="510" y="127" width="46" height="60" fill="#dfe3e1"/><rect x="367" y="225" width="64" height="43" fill="#dfe3e1"/><rect x="332" y="172" width="82" height="45" fill="#dfe3e1"/><rect x="0" y="112" width="86" height="65" fill="#dfe3e1"/><rect x="231" y="7" width="48" height="38" fill="#dfe3e1"/><rect x="495" y="171" width="64" height="57" fill="#dfe3e1"/><rect x="0" y="39" width="600" height="9" fill="#ffffff"/><rect x="0" y="222" width="600" height="11" fill="#ffffff"/><rect x="0" y="96" width="600" height="7" fill="#ffffff"/><rect x="0" y="122" width="600" height="7" fill="#ffffff"/><rect x="270" y="0" width="12" height="300" fill="#ffffff"/><rect x="249" y="0" width="10" height="300" fill="#ffffff"/><rect x="227" y="0" width="8" height="300" fill="#ffffff"/><rect x="183" y="0" width="8" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="416" y="78" width="48" height="38" fill="#dfe3e1"/><rect x="164" y="221" width="52" height="50" fill="#dfe3e1"/><rect x="423" y="177" width="59" height="49" fill="#dfe3e1"/><rect x="361" y="133" width="66" height="47" fill="#dfe3e1"/><rect x="206" y="173" width="66" height="43" fill="#dfe3e1"/><rect x="193" y="174" width="51" height="33" fill="#dfe3e1"/><rect x="86" y="9" width="53" height="48" fill="#dfe3e1"/><rect x="421" y="125" width="67" height="37" fill="#dfe3e1"/><rect x="320" y="87" width="70" height="53" fill="#dfe3e1"/><rect x="229" y="87" width="48" height="41" fill="#dfe3e1"/><rect x="322" y="195" width="87" height="43" fill="#dfe3e1"/><rect x="0" y="61" width="66" height="38" fill="#dfe3e1"/><rect x="99" y="112" width="58" height="39" fill="#dfe3e1"/><rect x="359" y="30" width="86" height="30" fill="#dfe3e1"/><rect x="0" y="263" width="600" height="9" fill="#ffffff"/><rect x="0" y="212" width="600" height="8" fill="#ffffff"/><rect x="0" y="241" width="600" height="11" fill="#ffffff"/><rect x="0" y="31" width="600" height="9" fill="#ffffff"/><rect x="198" y="0" width="10" height="300" fill="#ffffff"/><rect x="47" y="0" width="12" height="300" fill="#ffffff"/><rect x="488" y="0" width="10" height="300" fill="#ffffff"/><rect x="139" y="0" width="12" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="50" y="195" width="58" height="66" fill="#dfe3e1"/><rect x="263" y="89" width="51" height="56" fill="#dfe3e1"/><rect x="419" y="56" width="83" height="56" fill="#dfe3e1"/><rect x="146" y="40" width="86" height="36" fill="#dfe3e1"/><rect x="160" y="148" width="59" height="43" fill="#dfe3e1"/><rect x="190" y="31" width="78" height="35" fill="#dfe3e1"/><rect x="510" y="221" width="68" height="64" fill="#dfe3e1"/><rect x="12" y="104" width="57" height="47" fill="#dfe3e1"/><rect x="61" y="124" width="74" height="58" fill="#dfe3e1"/><rect x="427" y="106" width="41" height="30" fill="#dfe3e1"/><rect x="107" y="125" width="79" height="48" fill="#dfe3e1"/><rect x="435" y="27" width="43" height="55" fill="#dfe3e1"/><rect x="201" y="50" width="51" height="37" fill="#dfe3e1"/><rect x="74" y="176" width="76" height="45" fill="#dfe3e1"/><rect x="0" y="148" width="600" height="11" fill="#ffffff"/><rect x="0" y="115" width="600" height="10" fill="#ffffff"/><rect x="0" y="249" width="600" height="12" fill="#ffffff"/><rect x="0" y="100" width="600" height="9" fill="#ffffff"/><rect x="339" y="0" width="13" height="300" fill="#ffffff"/><rect x="104" y="0" width="12" height="300" fill="#ffffff"/><rect x="488" y="0" width="13" height="300" fill="#ffffff"/><rect x="371" y="0" width="7" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="324" y="85" width="74" height="55" fill="#dfe3e1"/><rect x="199" y="53" width="45" height="54" fill="#dfe3e1"/><rect x="21" y="100" width="72" height="31" fill="#dfe3e1"/><rect x="455" y="99" width="84" height="35" fill="#dfe3e1"/><rect x="192" y="92" width="78" height="55" fill="#dfe3e1"/><rect x="501" y="74" width="76" height="39" fill="#dfe3e1"/><rect x="296" y="164" width="46" height="61" fill="#dfe3e1"/><rect x="472" y="46" width="72" height="36" fill="#dfe3e1"/><rect x="99" y="178" width="61" height="34" fill="#dfe3e1"/><rect x="413" y="50" width="55" height="30" fill="#dfe3e1"/><rect x="212" y="119" width="55" height="53" fill="#dfe3e1"/><rect x="197" y="70" width="50" height="42" fill="#dfe3e1"/><rect x="1" y="132" width="62" height="53" fill="#dfe3e1"/><rect x="380" y="121" width="67" height="37" fill="#dfe3e1"/><rect x="0" y="258" width="600" height="12" fill="#ffffff"/><rect x="0" y="152" width="600" height="10" fill="#ffffff"/><rect x="0" y="238" width="600" height="8" fill="#ffffff"/><rect x="0" y="175" width="600" height="8" fill="#ffffff"/><rect x="452" y="0" width="7" height="300" fill="#ffffff"/><rect x="175" y="0" width="9" height="300" fill="#ffffff"/><rect x="360" y="0" width="13" height="300" fill="#ffffff"/><rect x="544" y="0" width="7" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="243" width="600" height="300" fill="#c8d9e4"/><rect x="504" y="43" width="50" height="48" fill="#dfe3e1"/><rect x="418" y="45" width="41" height="41" fill="#dfe3e1"/><rect x="347" y="145" width="49" height="41" fill="#dfe3e1"/><rect x="501" y="47" width="84" height="35" fill="#dfe3e1"/><rect x="23" y="165" width="48" height="60" fill="#dfe3e1"/><rect x="145" y="114" width="45" height="41" fill="#dfe3e1"/><rect x="345" y="164" width="51" height="61" fill="#dfe3e1"/><rect x="305" y="67" width="74" height="37" fill="#dfe3e1"/><rect x="127" y="82" width="55" height="55" fill="#dfe3e1"/><rect x="418" y="131" width="68" height="38" fill="#dfe3e1"/><rect x="329" y="226" width="47" height="39" fill="#dfe3e1"/><rect x="422" y="10" width="75" height="39" fill="#dfe3e1"/><rect x="21" y="204" width="45" height="62" fill="#dfe3e1"/><rect x="107" y="178" width="65" height="42" fill="#dfe3e1"/><rect x="0" y="88" width="600" height="10" fill="#ffffff"/><rect x="0" y="201" width="600" height="12" fill="#ffffff"/><rect x="0" y="184" width="600" height="13" fill="#ffffff"/><rect x="0" y="220" width="600" height="8" fill="#ffffff"/><rect x="102" y="0" width="11" height="300" fill="#ffffff"/><rect x="396" y="0" width="13" height="300" fill="#ffffff"/><rect x="321" y="0" width="11" height="300" fill="#ffffff"/><rect x="404" y="0" width="7" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="238" y="175" width="87" height="45" fill="#dfe3e1"/><rect x="484" y="77" width="70" height="64" fill="#dfe3e1"/><rect x="174" y="6" width="62" height="63" fill="#dfe3e1"/><rect x="118" y="8" width="60" height="44" fill="#dfe3e1"/><rect x="274" y="40" width="69" height="37" fill="#dfe3e1"/><rect x="234" y="135" width="83" height="63" fill="#dfe3e1"/><rect x="439" y="222" width="77" height="62" fill="#dfe3e1"/><rect x="343" y="187" width="71" height="42" fill="#dfe3e1"/><rect x="368" y="171" width="56" height="62" fill="#dfe3e1"/><rect x="335" y="153" width="49" height="31" fill="#dfe3e1"/><rect x="388" y="62" width="43" height="42" fill="#dfe3e1"/><rect x="156" y="29" width="56" height="36" fill="#dfe3e1"/><rect x="181" y="61" width="60" height="48" fill="#dfe3e1"/><rect x="339" y="20" width="59" height="45" fill="#dfe3e1"/><rect x="0" y="46" width="600" height="10" fill="#ffffff"/><rect x="0" y="163" width="600" height="9" fill="#ffffff"/><rect x="0" y="245" width="600" height="11" fill="#ffffff"/><rect x="0" y="141" width="600" height="9" fill="#ffffff"/><rect x="289" y="0" width="11" height="300" fill="#ffffff"/><rect x="330" y="0" width="9" height="300" fill="#ffffff"/><rect x="544" y="0" width="11" height="300" fill="#ffffff"/><rect x="300" y="0" width="11" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="210" y="229" width="61" height="54" fill="#dfe3e1"/><rect x="118" y="172" width="85" height="44" fill="#dfe3e1"/><rect x="254" y="21" width="86" height="42" fill="#dfe3e1"/><rect x="423" y="141" width="59" height="44" fill="#dfe3e1"/><rect x="190" y="164" width="75" height="40" fill="#dfe3e1"/><rect x="295" y="82" width="85" height="49" fill="#dfe3e1"/><rect x="62" y="126" width="75" height="60" fill="#dfe3e1"/><rect x="183" y="41" width="40" height="61" fill="#dfe3e1"/><rect x="220" y="40" width="62" height="60" fill="#dfe3e1"/><rect x="156" y="120" width="77" height="31" fill="#dfe3e1"/><rect x="301" y="180" width="69" height="52" fill="#dfe3e1"/><rect x="447" y="184" width="69" height="40" fill="#dfe3e1"/><rect x="83" y="95" width="56" height="55" fill="#dfe3e1"/><rect x="374" y="124" width="59" height="47" fill="#dfe3e1"/><rect x="0" y="85" width="600" height="13" fill="#ffffff"/><rect x="0" y="199" width="600" height="8" fill="#ffffff"/><rect x="0" y="177" width="600" height="8" fill="#ffffff"/><rect x="0" y="183" width="600" height="13" fill="#ffffff"/><rect x="335" y="0" width="10" height="300" fill="#ffffff"/><rect x="536" y="0" width="12" height="300" fill="#ffffff"/><rect x="534" y="0" width="13" height="300" fill="#ffffff"/><rect x="162" y="0" width="9" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="210" width="600" height="300" fill="#c8d9e4"/><rect x="148" y="131" width="42" height="43" fill="#dfe3e1"/><rect x="326" y="119" width="61" height="54" fill="#dfe3e1"/><rect x="81" y="112" width="79" height="37" fill="#dfe3e1"/><rect x="145" y="111" width="54" height="33" fill="#dfe3e1"/><rect x="299" y="18" width="48" height="47" fill="#dfe3e1"/><rect x="127" y="173" width="44" height="58" fill="#dfe3e1"/><rect x="27" y="145" width="85" height="54" fill="#dfe3e1"/><rect x="494" y="201" width="68" height="63" fill="#dfe3e1"/><rect x="25" y="98" width="76" height="63" fill="#dfe3e1"/><rect x="456" y="108" width="55" height="53" fill="#dfe3e1"/><rect x="245" y="131" width="42" height="61" fill="#dfe3e1"/><rect x="44" y="142" width="51" height="38" fill="#dfe3e1"/><rect x="305" y="10" width="60" height="42" fill="#dfe3e1"/><rect x="31" y="228" width="44" height="43" fill="#dfe3e1"/><rect x="0" y="245" width="600" height="8" fill="#ffffff"/><rect x="0" y="47" width="600" height="11" fill="#ffffff"/><rect x="0" y="266" width="600" height="10" fill="#ffffff"/><rect x="0" y="186" width="600" height="12" fill="#ffffff"/><rect x="379" y="0" width="13" height="300" fill="#ffffff"/><rect x="391" y="0" width="9" height="300" fill="#ffffff"/><rect x="260" y="0" width="7" height="300" fill="#ffffff"/><rect x="368" y="0" width="12" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="97" y="105" width="40" height="39" fill="#dfe3e1"/><rect x="137" y="63" width="56" height="62" fill="#dfe3e1"/><rect x="394" y="73" width="41" height="64" fill="#dfe3e1"/><rect x="380" y="14" width="88" height="58" fill="#dfe3e1"/><rect x="78" y="222" width="65" height="33" fill="#dfe3e1"/><rect x="77" y="228" width="79" height="59" fill="#dfe3e1"/><rect x="400" y="205" width="47" height="58" fill="#dfe3e1"/><rect x="205" y="18" width="45" height="58" fill="#dfe3e1"/><rect x="390" y="61" width="62" height="52" fill="#dfe3e1"/><rect x="388" y="154" width="79" height="49" fill="#dfe3e1"/><rect x="432" y="171" width="55" height="43" fill="#dfe3e1"/><rect x="345" y="157" width="69" height="41" fill="#dfe3e1"/><rect x="432" y="70" width="42" height="47" fill="#dfe3e1"/><rect x="454" y="154" width="60" height="65" fill="#dfe3e1"/><rect x="0" y="38" width="600" height="13" fill="#ffffff"/><rect x="0" y="24" width="600" height="11" fill="#ffffff"/><rect x="0" y="137" width="600" height="11" fill="#ffffff"/><rect x="0" y="64" width="600" height="13" fill="#ffffff"/><rect x="369" y="0" width="8" height="300" fill="#ffffff"/><rect x="130" y="0" width="10" height="300" fill="#ffffff"/><rect x="311" y="0" width="11" height="300" fill="#ffffff"/><rect x="514" y="0" width="9" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="195" width="600" height="300" fill="#c8d9e4"/><rect x="183" y="156" width="55" height="63" fill="#dfe3e1"/><rect x="24" y="90" width="40" height="64" fill="#dfe3e1"/><rect x="409" y="97" width="43" height="42" fill="#dfe3e1"/><rect x="500" y="100" width="47" height="38" fill="#dfe3e1"/><rect x="95" y="157" width="51" height="60" fill="#dfe3e1"/><rect x="342" y="135" width="49" height="41" fill="#dfe3e1"/><rect x="388" y="165" width="75" height="43" fill="#dfe3e1"/><rect x="83" y="26" width="40" height="53" fill="#dfe3e1"/><rect x="498" y="23" width="74" height="49" fill="#dfe3e1"/><rect x="311" y="19" width="51" height="31" fill="#dfe3e1"/><rect x="109" y="154" width="79" height="59" fill="#dfe3e1"/><rect x="194" y="218" width="63" height="39" fill="#dfe3e1"/><rect x="154" y="9" width="45" height="46" fill="#dfe3e1"/><rect x="154" y="57" width="80" height="53" fill="#dfe3e1"/><rect x="0" y="94" width="600" height="9" fill="#ffffff"/><rect x="0" y="136" width="600" height="8" fill="#ffffff"/><rect x="0" y="91" width="600" height="10" fill="#ffffff"/><rect x="0" y="29" width="600" height="8" fill="#ffffff"/><rect x="161" y="0" width="12" height="300" fill="#ffffff"/><rect x="343" y="0" width="10" height="300" fill="#ffffff"/><rect x="29" y="0" width="9" height="300" fill="#ffffff"/><rect x="120" y="0" width="10" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="484" y="177" width="84" height="48" fill="#dfe3e1"/><rect x="138" y="12" width="53" height="55" fill="#dfe3e1"/><rect x="138" y="133" width="68" height="63" fill="#dfe3e1"/><rect x="91" y="93" width="54" height="40" fill="#dfe3e1"/><rect x="117" y="156" width="48" height="51" fill="#dfe3e1"/><rect x="406" y="61" width="72" height="48" fill="#dfe3e1"/><rect x="231" y="48" width="83" height="37" fill="#dfe3e1"/><rect x="428" y="147" width="51" height="59" fill="#dfe3e1"/><rect x="357" y="166" width="52" height="30" fill="#dfe3e1"/><rect x="4" y="157" width="66" height="30" fill="#dfe3e1"/><rect x="127" y="174" width="71" height="33" fill="#dfe3e1"/><rect x="249" y="24" width="71" height="61" fill="#dfe3e1"/><rect x="240" y="40" width="83" height="37" fill="#dfe3e1"/><rect x="279" y="188" width="66" height="64" fill="#dfe3e1"/><rect x="0" y="203" width="600" height="10" fill="#ffffff"/><rect x="0" y="140" width="600" height="8" fill="#ffffff"/><rect x="0" y="269" width="600" height="9" fill="#ffffff"/><rect x="0" y="25" width="600" height="9" fill="#ffffff"/><rect x="264" y="0" width="13" height="300" fill="#ffffff"/><rect x="550" y="0" width="9" height="300" fill="#ffffff"/><rect x="370" y="0" width="7" height="300" fill="#ffffff"/><rect x="102" y="0" width="10" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="234" width="600" height="300" fill="#c8d9e4"/><rect x="10" y="125" width="85" height="62" fill="#dfe3e1"/><rect x="9" y="201" width="68" height="48" fill="#dfe3e1"/><rect x="49" y="202" width="46" height="30" fill="#dfe3e1"/><rect x="510" y="166" width="50" height="32" fill="#dfe3e1"/><rect x="191" y="218" width="72" height="64" fill="#dfe3e1"/><rect x="14" y="29" width="64" height="34" fill="#dfe3e1"/><rect x="2" y="120" width="81" height="45" fill="#dfe3e1"/><rect x="110" y="77" width="58" height="48" fill="#dfe3e1"/><rect x="247" y="92" width="48" height="58" fill="#dfe3e1"/><rect x="319" y="164" width="78" height="40" fill="#dfe3e1"/><rect x="69" y="154" width="48" height="51" fill="#dfe3e1"/><rect x="243" y="176" width="45" height="41" fill="#dfe3e1"/><rect x="355" y="50" width="84" height="61" fill="#dfe3e1"/><rect x="485" y="139" width="83" height="65" fill="#dfe3e1"/><rect x="0" y="271" width="600" height="10" fill="#ffffff"/><rect x="0" y="263" width="600" height="9" fill="#ffffff"/><rect x="0" y="280" width="600" height="7" fill="#ffffff"/><rect x="0" y="218" width="600" height="9" fill="#ffffff"/><rect x="93" y="0" width="11" height="300" fill="#ffffff"/><rect x="298" y="0" width="12" height="300" fill="#ffffff"/><rect x="253" y="0" width="11" height="300" fill="#ffffff"/><rect x="72" y="0" width="9" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="284" y="188" width="54" height="54" fill="#dfe3e1"/><rect x="256" y="203" width="60" height="44" fill="#dfe3e1"/><rect x="482" y="88" width="51" height="54" fill="#dfe3e1"/><rect x="156" y="123" width="65" height="54" fill="#dfe3e1"/><rect x="133" y="219" width="52" height="51" fill="#dfe3e1"/><rect x="10" y="181" width="68" height="49" fill="#dfe3e1"/><rect x="432" y="74" width="83" height="53" fill="#dfe3e1"/><rect x="158" y="78" width="50" height="62" fill="#dfe3e1"/><rect x="78" y="140" width="78" height="59" fill="#dfe3e1"/><rect x="420" y="149" width="48" height="42" fill="#dfe3e1"/><rect x="359" y="207" width="48" height="63" fill="#dfe3e1"/><rect x="457" y="96" width="58" height="58" fill="#dfe3e1"/><rect x="101" y="46" width="45" height="42" fill="#dfe3e1"/><rect x="31" y="26" width="54" height="65" fill="#dfe3e1"/><rect x="0" y="188" width="600" height="13" fill="#ffffff"/><rect x="0" y="253" width="600" height="11" fill="#ffffff"/><rect x="0" y="27" width="600" height="11" fill="#ffffff"/><rect x="0" y="83" width="600" height="13" fill="#ffffff"/><rect x="473" y="0" width="8" height="300" fill="#ffffff"/><rect x="25" y="0" width="7" height="300" fill="#ffffff"/><rect x="195" y="0" width="13" height="300" fill="#ffffff"/><rect x="57" y="0" width="12" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="98" y="208" width="82" height="37" fill="#dfe3e1"/><rect x="207" y="22" width="78" height="31" fill="#dfe3e1"/><rect x="440" y="225" width="65" height="30" fill="#dfe3e1"/><rect x="243" y="120" width="52" height="50" fill="#dfe3e1"/><rect x="0" y="64" width="81" height="49" fill="#dfe3e1"/><rect x="470" y="201" width="70" height="58" fill="#dfe3e1"/><rect x="312" y="227" width="53" height="35" fill="#dfe3e1"/><rect x="230" y="227" width="68" height="48" fill="#dfe3e1"/><rect x="368" y="122" width="74" height="62" fill="#dfe3e1"/><rect x="358" y="107" width="82" height="54" fill="#dfe3e1"/><rect x="241" y="38" width="78" height="36" fill="#dfe3e1"/><rect x="427" y="179" width="73" height="52" fill="#dfe3e1"/><rect x="112" y="23" width="40" height="44" fill="#dfe3e1"/><rect x="468" y="165" width="79" height="49" fill="#dfe3e1"/><rect x="0" y="112" width="600" height="9" fill="#ffffff"/><rect x="0" y="32" width="600" height="9" fill="#ffffff"/><rect x="0" y="159" width="600" height="13" fill="#ffffff"/><rect x="0" y="108" width="600" height="8" fill="#ffffff"/><rect x="56" y="0" width="8" height="300" fill="#ffffff"/><rect x="159" y="0" width="11" height="300" fill="#ffffff"/><rect x="352" y="0" width="7" height="300" fill="#ffffff"/><rect x="119" y="0" width="9" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="395" y="24" width="53" height="51" fill="#dfe3e1"/><rect x="315" y="11" width="40" height="33" fill="#dfe3e1"/><rect x="487" y="228" width="65" height="30" fill="#dfe3e1"/><rect x="100" y="103" width="55" height="35" fill="#dfe3e1"/><rect x="239" y="65" width="72" height="49" fill="#dfe3e1"/><rect x="121" y="45" width="55" height="55" fill="#dfe3e1"/><rect x="104" y="197" width="50" height="44" fill="#dfe3e1"/><rect x="24" y="102" width="53" height="49" fill="#dfe3e1"/><rect x="386" y="7" width="84" height="49" fill="#dfe3e1"/><rect x="458" y="4" width="79" height="43" fill="#dfe3e1"/><rect x="398" y="182" width="80" height="42" fill="#dfe3e1"/><rect x="268" y="152" width="85" height="34" fill="#dfe3e1"/><rect x="131" y="22" width="48" height="63" fill="#dfe3e1"/><rect x="48" y="118" width="88" height="52" fill="#dfe3e1"/><rect x="0" y="105" width="600" height="12" fill="#ffffff"/><rect x="0" y="60" width="600" height="11" fill="#ffffff"/><rect x="0" y="209" width="600" height="11" fill="#ffffff"/><rect x="0" y="100" width="600" height="7" fill="#ffffff"/><rect x="525" y="0" width="11" height="300" fill="#ffffff"/><rect x="520" y="0" width="8" height="300" fill="#ffffff"/><rect x="384" y="0" width="7" height="300" fill="#ffffff"/><rect x="340" y="0" width="11" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="465" y="113" width="61" height="37" fill="#dfe3e1"/><rect x="156" y="207" width="63" height="35" fill="#dfe3e1"/><rect x="496" y="112" width="85" height="30" fill="#dfe3e1"/><rect x="93" y="147" width="59" height="31" fill="#dfe3e1"/><rect x="37" y="184" width="50" height="47" fill="#dfe3e1"/><rect x="497" y="47" width="52" height="32" fill="#dfe3e1"/><rect x="419" y="107" width="50" height="60" fill="#dfe3e1"/><rect x="414" y="24" width="54" height="51" fill="#dfe3e1"/><rect x="81" y="129" width="82" height="41" fill="#dfe3e1"/><rect x="140" y="77" width="77" height="50" fill="#dfe3e1"/><rect x="416" y="54" width="74" height="36" fill="#dfe3e1"/><rect x="376" y="125" width="73" height="55" fill="#dfe3e1"/><rect x="278" y="37" width="57" height="50" fill="#dfe3e1"/><rect x="31" y="78" width="80" height="33" fill="#dfe3e1"/><rect x="0" y="141" width="600" height="8" fill="#ffffff"/><rect x="0" y="248" width="600" height="12" fill="#ffffff"/><rect x="0" y="152" width="600" height="12" fill="#ffffff"/><rect x="0" y="162" width="600" height="8" fill="#ffffff"/><rect x="277" y="0" width="10" height="300" fill="#ffffff"/><rect x="573" y="0" width="8" height="300" fill="#ffffff"/><rect x="208" y="0" width="10" height="300" fill="#ffffff"/><rect x="247" y="0" width="9" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="202" width="600" height="300" fill="#c8d9e4"/><rect x="136" y="88" width="76" height="41" fill="#dfe3e1"/><rect x="169" y="181" width="84" height="60" fill="#dfe3e1"/><rect x="493" y="225" width="87" height="65" fill="#dfe3e1"/><rect x="298" y="8" width="79" height="34" fill="#dfe3e1"/><rect x="174" y="89" width="60" height="32" fill="#dfe3e1"/><rect x="98" y="199" width="75" height="32" fill="#dfe3e1"/><rect x="267" y="204" width="58" height="65" fill="#dfe3e1"/><rect x="263" y="35" width="78" height="37" fill="#dfe3e1"/><rect x="397" y="125" width="43" height="37" fill="#dfe3e1"/><rect x="447" y="211" width="52" height="42" fill="#dfe3e1"/><rect x="32" y="14" width="78" height="30" fill="#dfe3e1"/><rect x="142" y="217" width="45" height="53" fill="#dfe3e1"/><rect x="446" y="39" width="49" height="51" fill="#dfe3e1"/><rect x="413" y="103" width="86" height="45" fill="#dfe3e1"/><rect x="0" y="218" width="600" height="7" fill="#ffffff"/><rect x="0" y="114" width="600" height="13" fill="#ffffff"/><rect x="0" y="160" width="600" height="11" fill="#ffffff"/><rect x="0" y="97" width="600" height="13" fill="#ffffff"/><rect x="428" y="0" width="7" height="300" fill="#ffffff"/><rect x="218" y="0" width="11" height="300" fill="#ffffff"/><rect x="313" y="0" width="13" height="300" fill="#ffffff"/><rect x="315" y="0" width="7" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="135" y="133" width="40" height="64" fill="#dfe3e1"/><rect x="374" y="149" width="56" height="53" fill="#dfe3e1"/><rect x="271" y="65" width="49" height="63" fill="#dfe3e1"/><rect x="96" y="53" width="64" height="66" fill="#dfe3e1"/><rect x="223" y="197" width="74" height="62" fill="#dfe3e1"/><rect x="193" y="164" width="85" height="30" fill="#dfe3e1"/><rect x="473" y="199" width="84" height="54" fill="#dfe3e1"/><rect x="414" y="5" width="70" height="47" fill="#dfe3e1"/><rect x="87" y="165" width="49" height="52" fill="#dfe3e1"/><rect x="452" y="166" width="58" height="61" fill="#dfe3e1"/><rect x="245" y="146" width="75" height="64" fill="#dfe3e1"/><rect x="298" y="138" width="72" height="55" fill="#dfe3e1"/><rect x="198" y="43" width="45" height="49" fill="#dfe3e1"/><rect x="233" y="223" width="69" height="56" fill="#dfe3e1"/><rect x="0" y="200" width="600" height="10" fill="#ffffff"/><rect x="0" y="224" width="600" height="13" fill="#ffffff"/><rect x="0" y="64" width="600" height="8" fill="#ffffff"/><rect x="0" y="273" width="600" height="8" fill="#ffffff"/><rect x="278" y="0" width="11" height="300" fill="#ffffff"/><rect x="334" y="0" width="11" height="300" fill="#ffffff"/><rect x="423" y="0" width="8" height="300" fill="#ffffff"/><rect x="145" y="0" width="10" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="356" y="29" width="67" height="32" fill="#dfe3e1"/><rect x="29" y="45" width="46" height="58" fill="#dfe3e1"/><rect x="169" y="6" width="44" height="61" fill="#dfe3e1"/><rect x="451" y="132" width="86" height="62" fill="#dfe3e1"/><rect x="173" y="63" width="57" height="35" fill="#dfe3e1"/><rect x="466" y="203" width="49" height="33" fill="#dfe3e1"/><rect x="309" y="128" width="70" height="60" fill="#dfe3e1"/><rect x="251" y="44" width="49" height="37" fill="#dfe3e1"/><rect x="121" y="172" width="74" height="34" fill="#dfe3e1"/><rect x="38" y="47" width="61" height="34" fill="#dfe3e1"/><rect x="122" y="186" width="62" height="65" fill="#dfe3e1"/><rect x="323" y="29" width="65" height="61" fill="#dfe3e1"/><rect x="47" y="108" width="42" height="58" fill="#dfe3e1"/><rect x="196" y="5" width="43" height="51" fill="#dfe3e1"/><rect x="0" y="75" width="600" height="7" fill="#ffffff"/><rect x="0" y="56" width="600" height="10" fill="#ffffff"/><rect x="0" y="233" width="600" height="12" fill="#ffffff"/><rect x="0" y="107" width="600" height="7" fill="#ffffff"/><rect x="547" y="0" width="9" height="300" fill="#ffffff"/><rect x="426" y="0" width="9" height="300" fill="#ffffff"/><rect x="57" y="0" width="7" height="300" fill="#ffffff"/><rect x="417" y="0" width="8" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="224" width="600" height="300" fill="#c8d9e4"/><rect x="498" y="104" width="68" height="30" fill="#dfe3e1"/><rect x="359" y="65" width="55" height="55" fill="#dfe3e1"/><rect x="98" y="34" width="68" height="64" fill="#dfe3e1"/><rect x="265" y="145" width="78" height="48" fill="#dfe3e1"/><rect x="49" y="119" width="43" height="64" fill="#dfe3e1"/><rect x="343" y="79" width="69" height="65" fill="#dfe3e1"/><rect x="477" y="102" width="71" height="32" fill="#dfe3e1"/><rect x="270" y="113" width="51" height="65" fill="#dfe3e1"/><rect x="12" y="151" width="42" height="63" fill="#dfe3e1"/><rect x="133" y="9" width="80" height="33" fill="#dfe3e1"/><rect x="150" y="130" width="46" height="59" fill="#dfe3e1"/><rect x="46" y="77" width="64" height="49" fill="#dfe3e1"/><rect x="428" y="64" width="76" height="38" fill="#dfe3e1"/><rect x="81" y="171" width="50" height="54" fill="#dfe3e1"/><rect x="0" y="153" width="600" height="11" fill="#ffffff"/><rect x="0" y="228" width="600" height="9" fill="#ffffff"/><rect x="0" y="251" width="600" height="7" fill="#ffffff"/><rect x="0" y="124" width="600" height="13" fill="#ffffff"/><rect x="41" y="0" width="11" height="300" fill="#ffffff"/><rect x="208" y="0" width="10" height="300" fill="#ffffff"/><rect x="409" y="0" width="9" height="300" fill="#ffffff"/><rect x="89" y="0" width="7" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="213" width="600" height="300" fill="#c8d9e4"/><rect x="472" y="206" width="53" height="58" fill="#dfe3e1"/><rect x="25" y="12" width="70" height="54" fill="#dfe3e1"/><rect x="445" y="47" width="78" height="45" fill="#dfe3e1"/><rect x="509" y="160" width="43" height="35" fill="#dfe3e1"/><rect x="262" y="168" width="69" height="38" fill="#dfe3e1"/><rect x="130" y="92" width="83" height="66" fill="#dfe3e1"/><rect x="474" y="26" width="78" height="32" fill="#dfe3e1"/><rect x="218" y="114" width="49" height="60" fill="#dfe3e1"/><rect x="117" y="173" width="49" height="37" fill="#dfe3e1"/><rect x="303" y="194" width="75" height="35" fill="#dfe3e1"/><rect x="503" y="138" width="87" height="38" fill="#dfe3e1"/><rect x="325" y="91" width="63" height="55" fill="#dfe3e1"/><rect x="92" y="60" width="52" height="52" fill="#dfe3e1"/><rect x="374" y="81" width="51" height="38" fill="#dfe3e1"/><rect x="0" y="150" width="600" height="9" fill="#ffffff"/><rect x="0" y="253" width="600" height="7" fill="#ffffff"/><rect x="0" y="92" width="600" height="8" fill="#ffffff"/><rect x="0" y="138" width="600" height="10" fill="#ffffff"/><rect x="461" y="0" width="12" height="300" fill="#ffffff"/><rect x="110" y="0" width="7" height="300" fill="#ffffff"/><rect x="288" y="0" width="10" height="300" fill="#ffffff"/><rect x="436" y="0" width="13" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="288" y="27" width="62" height="55" fill="#dfe3e1"/><rect x="85" y="17" width="52" height="53" fill="#dfe3e1"/><rect x="390" y="162" width="79" height="32" fill="#dfe3e1"/><rect x="206" y="153" width="87" height="45" fill="#dfe3e1"/><rect x="106" y="85" width="77" height="49" fill="#dfe3e1"/><rect x="16" y="224" width="55" height="41" fill="#dfe3e1"/><rect x="351" y="204" width="84" height="58" fill="#dfe3e1"/><rect x="353" y="98" width="50" height="41" fill="#dfe3e1"/><rect x="443" y="114" width="85" height="40" fill="#dfe3e1"/><rect x="2" y="164" width="85" height="51" fill="#dfe3e1"/><rect x="123" y="100" width="83" height="51" fill="#dfe3e1"/><rect x="355" y="75" width="74" height="58" fill="#dfe3e1"/><rect x="238" y="14" width="65" height="50" fill="#dfe3e1"/><rect x="119" y="127" width="58" height="54" fill="#dfe3e1"/><rect x="0" y="234" width="600" height="10" fill="#ffffff"/><rect x="0" y="121" width="600" height="12" fill="#ffffff"/><rect x="0" y="147" width="600" height="13" fill="#ffffff"/><rect x="0" y="151" width="600" height="9" fill="#ffffff"/><rect x="275" y="0" width="10" height="300" fill="#ffffff"/><rect x="279" y="0" width="9" height="300" fill="#ffffff"/><rect x="99" y="0" width="12" height="300" fill="#ffffff"/><rect x="159" y="0" width="8" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="43" y="172" width="59" height="52" fill="#dfe3e1"/><rect x="172" y="228" width="48" height="33" fill="#dfe3e1"/><rect x="275" y="224" width="55" height="58" fill="#dfe3e1"/><rect x="226" y="78" width="40" height="31" fill="#dfe3e1"/><rect x="399" y="55" width="75" height="39" fill="#dfe3e1"/><rect x="387" y="57" width="53" height="38" fill="#dfe3e1"/><rect x="314" y="29" width="40" height="38" fill="#dfe3e1"/><rect x="328" y="206" width="73" height="56" fill="#dfe3e1"/><rect x="323" y="140" width="86" height="35" fill="#dfe3e1"/><rect x="172" y="129" width="47" height="64" fill="#dfe3e1"/><rect x="193" y="71" width="72" height="58" fill="#dfe3e1"/><rect x="472" y="105" width="43" height="46" fill="#dfe3e1"/><rect x="451" y="77" width="80" height="54" fill="#dfe3e1"/><rect x="225" y="51" width="75" height="32" fill="#dfe3e1"/><rect x="0" y="128" width="600" height="12" fill="#ffffff"/><rect x="0" y="252" width="600" height="9" fill="#ffffff"/><rect x="0" y="109" width="600" height="10" fill="#ffffff"/><rect x="0" y="253" width="600" height="9" fill="#ffffff"/><rect x="329" y="0" width="13" height="300" fill="#ffffff"/><rect x="224" y="0" width="11" height="300" fill="#ffffff"/><rect x="425" y="0" width="12" height="300" fill="#ffffff"/><rect x="277" y="0" width="9" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="255" y="162" width="47" height="52" fill="#dfe3e1"/><rect x="376" y="89" width="54" height="56" fill="#dfe3e1"/><rect x="416" y="23" width="74" height="58" fill="#dfe3e1"/><rect x="171" y="181" width="42" height="59" fill="#dfe3e1"/><rect x="287" y="209" width="70" height="40" fill="#dfe3e1"/><rect x="356" y="185" width="70" height="32" fill="#dfe3e1"/><rect x="356" y="35" width="61" height="34" fill="#dfe3e1"/><rect x="174" y="101" width="49" height="54" fill="#dfe3e1"/><rect x="488" y="145" width="66" height="61" fill="#dfe3e1"/><rect x="186" y="106" width="43" height="66" fill="#dfe3e1"/><rect x="405" y="154" width="53" height="65" fill="#dfe3e1"/><rect x="293" y="115" width="72" height="58" fill="#dfe3e1"/><rect x="168" y="163" width="72" height="64" fill="#dfe3e1"/><rect x="437" y="23" width="50" height="40" fill="#dfe3e1"/><rect x="0" y="171" width="600" height="9" fill="#ffffff"/><rect x="0" y="186" width="600" height="7" fill="#ffffff"/><rect x="0" y="120" width="600" height="12" fill="#ffffff"/><rect x="0" y="28" width="600" height="7" fill="#ffffff"/><rect x="33" y="0" width="10" height="300" fill="#ffffff"/><rect x="175" y="0" width="13" height="300" fill="#ffffff"/><rect x="169" y="0" width="12" height="300" fill="#ffffff"/><rect x="386" y="0" width="9" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="195" width="600" height="300" fill="#c8d9e4"/><rect x="174" y="37" width="74" height="62" fill="#dfe3e1"/><rect x="149" y="127" width="81" height="52" fill="#dfe3e1"/><rect x="409" y="89" width="82" height="51" fill="#dfe3e1"/><rect x="83" y="122" width="60" height="46" fill="#dfe3e1"/><rect x="291" y="174" width="64" height="58" fill="#dfe3e1"/><rect x="260" y="195" width="44" height="47" fill="#dfe3e1"/><rect x="177" y="179" width="61" height="53" fill="#dfe3e1"/><rect x="435" y="12" width="49" height="34" fill="#dfe3e1"/><rect x="85" y="8" width="86" height="56" fill="#dfe3e1"/><rect x="250" y="78" width="88" height="36" fill="#dfe3e1"/><rect x="2" y="209" width="53" height="61" fill="#dfe3e1"/><rect x="183" y="56" width="87" height="54" fill="#dfe3e1"/><rect x="349" y="174" width="46" height="38" fill="#dfe3e1"/><rect x="5" y="217" width="48" height="40" fill="#dfe3e1"/><rect x="0" y="121" width="600" height="12" fill="#ffffff"/><rect x="0" y="273" width="600" height="11" fill="#ffffff"/><rect x="0" y="155" width="600" height="13" fill="#ffffff"/><rect x="0" y="212" width="600" height="9" fill="#ffffff"/><rect x="575" y="0" width="12" height="300" fill="#ffffff"/><rect x="97" y="0" width="11" height="300" fill="#ffffff"/><rect x="165" y="0" width="7" height="300" fill="#ffffff"/><rect x="60" y="0" width="11" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="410" y="36" width="60" height="35" fill="#dfe3e1"/><rect x="3" y="176" width="83" height="30" fill="#dfe3e1"/><rect x="178" y="119" width="57" height="43" fill="#dfe3e1"/><rect x="379" y="145" width="52" height="36" fill="#dfe3e1"/><rect x="178" y="182" width="52" height="45" fill="#dfe3e1"/><rect x="20" y="84" width="82" height="62" fill="#dfe3e1"/><rect x="153" y="65" width="63" height="39" fill="#dfe3e1"/><rect x="370" y="186" width="61" height="31" fill="#dfe3e1"/><rect x="266" y="217" width="72" height="48" fill="#dfe3e1"/><rect x="179" y="164" width="78" height="66" fill="#dfe3e1"/><rect x="57" y="55" width="49" height="60" fill="#dfe3e1"/><rect x="399" y="47" width="48" height="63" fill="#dfe3e1"/><rect x="373" y="66" width="66" height="43" fill="#dfe3e1"/><rect x="317" y="93" width="87" height="37" fill="#dfe3e1"/><rect x="0" y="235" width="600" height="13" fill="#ffffff"/><rect x="0" y="153" width="600" height="11" fill="#ffffff"/><rect x="0" y="64" width="600" height="13" fill="#ffffff"/><rect x="0" y="267" width="600" height="10" fill="#ffffff"/><rect x="240" y="0" width="10" height="300" fill="#ffffff"/><rect x="122" y="0" width="8" height="300" fill="#ffffff"/><rect x="351" y="0" width="11" height="300" fill="#ffffff"/><rect x="303" y="0" width="13" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="2" y="51" width="44" height="55" fill="#dfe3e1"/><rect x="345" y="78" width="77" height="48" fill="#dfe3e1"/><rect x="474" y="119" width="44" height="64" fill="#dfe3e1"/><rect x="186" y="155" width="81" height="53" fill="#dfe3e1"/><rect x="438" y="71" width="86" height="37" fill="#dfe3e1"/><rect x="329" y="72" width="59" height="32" fill="#dfe3e1"/><rect x="147" y="26" width="75" height="60" fill="#dfe3e1"/><rect x="21" y="56" width="62" height="48" fill="#dfe3e1"/><rect x="407" y="39" width="84" height="50" fill="#dfe3e1"/><rect x="318" y="141" width="70" height="31" fill="#dfe3e1"/><rect x="375" y="1" width="78" height="53" fill="#dfe3e1"/><rect x="369" y="184" width="58" height="31" fill="#dfe3e1"/><rect x="5" y="24" width="42" height="37" fill="#dfe3e1"/><rect x="241" y="91" width="74" height="37" fill="#dfe3e1"/><rect x="0" y="264" width="600" height="7" fill="#ffffff"/><rect x="0" y="140" width="600" height="11" fill="#ffffff"/><rect x="0" y="204" width="600" height="11" fill="#ffffff"/><rect x="0" y="126" width="600" height="8" fill="#ffffff"/><rect x="389" y="0" width="13" height="300" fill="#ffffff"/><rect x="73" y="0" width="11" height="300" fill="#ffffff"/><rect x="555" y="0" width="11" height="300" fill="#ffffff"/><rect x="241" y="0" width="9" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="216" width="600" height="300" fill="#c8d9e4"/><rect x="298" y="180" width="42" height="32" fill="#dfe3e1"/><rect x="294" y="205" width="54" height="44" fill="#dfe3e1"/><rect x="506" y="189" width="86" height="47" fill="#dfe3e1"/><rect x="344" y="89" width="77" height="58" fill="#dfe3e1"/><rect x="219" y="38" width="83" height="42" fill="#dfe3e1"/><rect x="382" y="183" width="40" height="65" fill="#dfe3e1"/><rect x="44" y="60" width="50" height="42" fill="#dfe3e1"/><rect x="417" y="97" width="75" height="53" fill="#dfe3e1"/><rect x="301" y="141" width="43" height="53" fill="#dfe3e1"/><rect x="504" y="220" width="80" height="57" fill="#dfe3e1"/><rect x="394" y="220" width="50" height="65" fill="#dfe3e1"/><rect x="347" y="222" width="45" height="50" fill="#dfe3e1"/><rect x="475" y="34" width="60" height="38" fill="#dfe3e1"/><rect x="356" y="58" width="78" height="41" fill="#dfe3e1"/><rect x="0" y="74" width="600" height="8" fill="#ffffff"/><rect x="0" y="127" width="600" height="8" fill="#ffffff"/><rect x="0" y="175" width="600" height="13" fill="#ffffff"/><rect x="0" y="137" width="600" height="9" fill="#ffffff"/><rect x="25" y="0" width="10" height="300" fill="#ffffff"/><rect x="576" y="0" width="10" height="300" fill="#ffffff"/><rect x="294" y="0" width="12" height="300" fill="#ffffff"/><rect x="309" y="0" width="9" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="220" width="600" height="300" fill="#c8d9e4"/><rect x="24" y="210" width="83" height="54" fill="#dfe3e1"/><rect x="239" y="157" width="78" height="57" fill="#dfe3e1"/><rect x="227" y="149" width="84" height="41" fill="#dfe3e1"/><rect x="231" y="146" width="83" height="34" fill="#dfe3e1"/><rect x="323" y="160" width="85" height="51" fill="#dfe3e1"/><rect x="177" y="156" width="43" height="33" fill="#dfe3e1"/><rect x="149" y="121" width="50" height="34" fill="#dfe3e1"/><rect x="336" y="53" width="57" height="42" fill="#dfe3e1"/><rect x="187" y="102" width="61" height="53" fill="#dfe3e1"/><rect x="455" y="208" width="77" height="62" fill="#dfe3e1"/><rect x="376" y="23" width="51" height="39" fill="#dfe3e1"/><rect x="69" y="43" width="75" height="55" fill="#dfe3e1"/><rect x="137" y="71" width="62" height="54" fill="#dfe3e1"/><rect x="227" y="104" width="86" height="56" fill="#dfe3e1"/><rect x="0" y="248" width="600" height="9" fill="#ffffff"/><rect x="0" y="48" width="600" height="9" fill="#ffffff"/><rect x="0" y="80" width="600" height="13" fill="#ffffff"/><rect x="0" y="202" width="600" height="10" fill="#ffffff"/><rect x="260" y="0" width="10" height="300" fill="#ffffff"/><rect x="210" y="0" width="13" height="300" fill="#ffffff"/><rect x="118" y="0" width="10" height="300" fill="#ffffff"/><rect x="172" y="0" width="11" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="207" width="600" height="300" fill="#c8d9e4"/><rect x="374" y="163" width="66" height="56" fill="#dfe3e1"/><rect x="212" y="138" width="83" height="66" fill="#dfe3e1"/><rect x="361" y="202" width="80" height="42" fill="#dfe3e1"/><rect x="22" y="175" width="82" height="52" fill="#dfe3e1"/><rect x="348" y="86" width="84" height="63" fill="#dfe3e1"/><rect x="322" y="180" width="80" height="57" fill="#dfe3e1"/><rect x="308" y="216" width="86" height="61" fill="#dfe3e1"/><rect x="507" y="211" width="49" height="60" fill="#dfe3e1"/><rect x="113" y="60" width="83" height="61" fill="#dfe3e1"/><rect x="19" y="58" width="46" height="45" fill="#dfe3e1"/><rect x="247" y="132" width="70" height="58" fill="#dfe3e1"/><rect x="463" y="170" width="81" height="52" fill="#dfe3e1"/><rect x="48" y="82" width="64" height="42" fill="#dfe3e1"/><rect x="431" y="140" width="80" height="56" fill="#dfe3e1"/><rect x="0" y="221" width="600" height="12" fill="#ffffff"/><rect x="0" y="278" width="600" height="13" fill="#ffffff"/><rect x="0" y="70" width="600" height="10" fill="#ffffff"/><rect x="0" y="216" width="600" height="11" fill="#ffffff"/><rect x="428" y="0" width="10" height="300" fill="#ffffff"/><rect x="260" y="0" width="7" height="300" fill="#ffffff"/><rect x="29" y="0" width="11" height="300" fill="#ffffff"/><rect x="45" y="0" width="10" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="191" width="600" height="300" fill="#c8d9e4"/><rect x="424" y="135" width="83" height="54" fill="#dfe3e1"/><rect x="496" y="54" width="66" height="32" fill="#dfe3e1"/><rect x="466" y="182" width="51" height="44" fill="#dfe3e1"/><rect x="27" y="63" width="68" height="64" fill="#dfe3e1"/><rect x="466" y="59" width="74" height="57" fill="#dfe3e1"/><rect x="357" y="9" width="58" height="39" fill="#dfe3e1"/><rect x="112" y="25" width="54" height="43" fill="#dfe3e1"/><rect x="270" y="108" width="48" height="34" fill="#dfe3e1"/><rect x="466" y="49" width="63" height="64" fill="#dfe3e1"/><rect x="163" y="103" width="75" height="63" fill="#dfe3e1"/><rect x="397" y="124" width="72" height="58" fill="#dfe3e1"/><rect x="76" y="184" width="43" height="56" fill="#dfe3e1"/><rect x="224" y="134" width="73" height="35" fill="#dfe3e1"/><rect x="59" y="133" width="45" height="48" fill="#dfe3e1"/><rect x="0" y="24" width="600" height="8" fill="#ffffff"/><rect x="0" y="78" width="600" height="11" fill="#ffffff"/><rect x="0" y="196" width="600" height="7" fill="#ffffff"/><rect x="0" y="63" width="600" height="8" fill="#ffffff"/><rect x="248" y="0" width="13" height="300" fill="#ffffff"/><rect x="318" y="0" width="9" height="300" fill="#ffffff"/><rect x="269" y="0" width="7" height="300" fill="#ffffff"/><rect x="50" y="0" width="10" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="84" y="88" width="87" height="55" fill="#dfe3e1"/><rect x="164" y="45" width="83" height="45" fill="#dfe3e1"/><rect x="484" y="209" width="81" height="33" fill="#dfe3e1"/><rect x="505" y="23" width="59" height="65" fill="#dfe3e1"/><rect x="365" y="130" width="46" height="31" fill="#dfe3e1"/><rect x="121" y="4" width="73" height="46" fill="#dfe3e1"/><rect x="324" y="38" width="62" height="47" fill="#dfe3e1"/><rect x="346" y="92" width="81" height="64" fill="#dfe3e1"/><rect x="139" y="57" width="42" height="45" fill="#dfe3e1"/><rect x="305" y="90" width="42" height="47" fill="#dfe3e1"/><rect x="202" y="93" width="81" height="51" fill="#dfe3e1"/><rect x="269" y="186" width="45" height="45" fill="#dfe3e1"/><rect x="135" y="172" width="41" height="42" fill="#dfe3e1"/><rect x="354" y="76" width="42" height="65" fill="#dfe3e1"/><rect x="0" y="191" width="600" height="11" fill="#ffffff"/><rect x="0" y="68" width="600" height="7" fill="#ffffff"/><rect x="0" y="113" width="600" height="9" fill="#ffffff"/><rect x="0" y="138" width="600" height="12" fill="#ffffff"/><rect x="230" y="0" width="8" height="300" fill="#ffffff"/><rect x="131" y="0" width="11" height="300" fill="#ffffff"/><rect x="541" y="0" width="12" height="300" fill="#ffffff"/><rect x="394" y="0" width="10" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="28" y="21" width="62" height="41" fill="#dfe3e1"/><rect x="475" y="145" width="57" height="41" fill="#dfe3e1"/><rect x="142" y="6" width="40" height="44" fill="#dfe3e1"/><rect x="54" y="12" width="61" height="44" fill="#dfe3e1"/><rect x="375" y="86" width="58" height="44" fill="#dfe3e1"/><rect x="55" y="129" width="40" height="32" fill="#dfe3e1"/><rect x="436" y="173" width="40" height="35" fill="#dfe3e1"/><rect x="491" y="18" width="68" height="58" fill="#dfe3e1"/><rect x="466" y="120" width="59" height="47" fill="#dfe3e1"/><rect x="448" y="25" width="66" height="66" fill="#dfe3e1"/><rect x="161" y="158" width="76" height="62" fill="#dfe3e1"/><rect x="41" y="50" width="57" height="49" fill="#dfe3e1"/><rect x="325" y="10" width="60" height="53" fill="#dfe3e1"/><rect x="420" y="220" width="52" height="52" fill="#dfe3e1"/><rect x="0" y="53" width="600" height="8" fill="#ffffff"/><rect x="0" y="99" width="600" height="12" fill="#ffffff"/><rect x="0" y="217" width="600" height="12" fill="#ffffff"/><rect x="0" y="268" width="600" height="10" fill="#ffffff"/><rect x="233" y="0" width="8" height="300" fill="#ffffff"/><rect x="243" y="0" width="10" height="300" fill="#ffffff"/><rect x="366" y="0" width="12" height="300" fill="#ffffff"/><rect x="506" y="0" width="7" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="212" width="600" height="300" fill="#c8d9e4"/><rect x="374" y="208" width="63" height="63" fill="#dfe3e1"/><rect x="42" y="151" width="79" height="39" fill="#dfe3e1"/><rect x="173" y="158" width="71" height="45" fill="#dfe3e1"/><rect x="314" y="57" width="48" height="49" fill="#dfe3e1"/><rect x="34" y="32" width="84" height="54" fill="#dfe3e1"/><rect x="214" y="135" width="59" height="36" fill="#dfe3e1"/><rect x="482" y="162" width="80" height="34" fill="#dfe3e1"/><rect x="428" y="210" width="81" height="51" fill="#dfe3e1"/><rect x="310" y="116" width="81" height="39" fill="#dfe3e1"/><rect x="144" y="173" width="79" height="49" fill="#dfe3e1"/><rect x="141" y="190" width="87" height="58" fill="#dfe3e1"/><rect x="39" y="141" width="41" height="61" fill="#dfe3e1"/><rect x="176" y="16" width="66" height="35" fill="#dfe3e1"/><rect x="451" y="52" width="60" height="53" fill="#dfe3e1"/><rect x="0" y="128" width="600" height="10" fill="#ffffff"/><rect x="0" y="235" width="600" height="10" fill="#ffffff"/><rect x="0" y="185" width="600" height="13" fill="#ffffff"/><rect x="0" y="229" width="600" height="9" fill="#ffffff"/><rect x="449" y="0" width="10" height="300" fill="#ffffff"/><rect x="89" y="0" width="8" height="300" fill="#ffffff"/><rect x="495" y="0" width="7" height="300" fill="#ffffff"/><rect x="438" y="0" width="7" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="42" width="87" height="32" fill="#dfe3e1"/><rect x="153" y="198" width="49" height="35" fill="#dfe3e1"/><rect x="434" y="79" width="43" height="31" fill="#dfe3e1"/><rect x="74" y="170" width="43" height="49" fill="#dfe3e1"/><rect x="36" y="188" width="88" height="38" fill="#dfe3e1"/><rect x="287" y="47" width="58" height="65" fill="#dfe3e1"/><rect x="351" y="149" width="60" height="46" fill="#dfe3e1"/><rect x="50" y="163" width="58" height="57" fill="#dfe3e1"/><rect x="100" y="170" width="77" height="55" fill="#dfe3e1"/><rect x="20" y="177" width="51" height="39" fill="#dfe3e1"/><rect x="294" y="88" width="48" height="66" fill="#dfe3e1"/><rect x="14" y="184" width="56" height="42" fill="#dfe3e1"/><rect x="206" y="26" width="57" height="35" fill="#dfe3e1"/><rect x="250" y="62" width="42" height="39" fill="#dfe3e1"/><rect x="0" y="187" width="600" height="9" fill="#ffffff"/><rect x="0" y="238" width="600" height="8" fill="#ffffff"/><rect x="0" y="107" width="600" height="9" fill="#ffffff"/><rect x="0" y="113" width="600" height="12" fill="#ffffff"/><rect x="527" y="0" width="13" height="300" fill="#ffffff"/><rect x="354" y="0" width="10" height="300" fill="#ffffff"/><rect x="85" y="0" width="9" height="300" fill="#ffffff"/><rect x="514" y="0" width="10" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="600" height="300" role="img" aria-label="Lageplan">
|
||||||
|
<rect width="600" height="300" fill="#eef1f0"/><rect x="0" y="229" width="600" height="300" fill="#c8d9e4"/><rect x="236" y="159" width="69" height="44" fill="#dfe3e1"/><rect x="437" y="222" width="52" height="51" fill="#dfe3e1"/><rect x="135" y="205" width="44" height="61" fill="#dfe3e1"/><rect x="509" y="19" width="59" height="62" fill="#dfe3e1"/><rect x="260" y="107" width="79" height="35" fill="#dfe3e1"/><rect x="429" y="31" width="65" height="51" fill="#dfe3e1"/><rect x="472" y="23" width="51" height="50" fill="#dfe3e1"/><rect x="490" y="170" width="43" height="57" fill="#dfe3e1"/><rect x="436" y="148" width="70" height="61" fill="#dfe3e1"/><rect x="285" y="124" width="66" height="39" fill="#dfe3e1"/><rect x="273" y="8" width="80" height="31" fill="#dfe3e1"/><rect x="455" y="21" width="63" height="41" fill="#dfe3e1"/><rect x="58" y="63" width="83" height="54" fill="#dfe3e1"/><rect x="443" y="146" width="65" height="52" fill="#dfe3e1"/><rect x="0" y="190" width="600" height="8" fill="#ffffff"/><rect x="0" y="88" width="600" height="7" fill="#ffffff"/><rect x="0" y="276" width="600" height="12" fill="#ffffff"/><rect x="0" y="65" width="600" height="8" fill="#ffffff"/><rect x="190" y="0" width="8" height="300" fill="#ffffff"/><rect x="84" y="0" width="7" height="300" fill="#ffffff"/><rect x="463" y="0" width="9" height="300" fill="#ffffff"/><rect x="500" y="0" width="9" height="300" fill="#ffffff"/>
|
||||||
|
<circle cx="300" cy="150" r="17" fill="#152642" opacity="0.15"/>
|
||||||
|
<circle cx="300" cy="150" r="8" fill="#152642"/>
|
||||||
|
<circle cx="300" cy="150" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |