From c0fe32f9f536d7f343281e7239b99343f6f48c80 Mon Sep 17 00:00:00 2001 From: Benno Tielen Date: Thu, 23 Apr 2026 17:43:38 +0200 Subject: [PATCH 1/2] feature: chemnitz map --- .../ChemnitzMap/ChemnitzMap.stories.tsx | 40 ++++++ src/components/ChemnitzMap/ChemnitzMap.tsx | 92 +++++++++++++ src/components/ChemnitzMap/chemnitzMapSvg.ts | 2 + src/components/ChemnitzMap/chemnitz_map.svg | 1 + src/components/ChemnitzMap/styles.module.scss | 45 +++++++ .../CollapsibleMapWithText.stories.tsx | 38 ++++++ .../CollapsibleMapWithText.tsx | 123 ++++++++++++++++++ .../CollapsibleMapWithText/styles.module.scss | 90 +++++++++++++ 8 files changed, 431 insertions(+) create mode 100644 src/components/ChemnitzMap/ChemnitzMap.stories.tsx create mode 100644 src/components/ChemnitzMap/ChemnitzMap.tsx create mode 100644 src/components/ChemnitzMap/chemnitzMapSvg.ts create mode 100644 src/components/ChemnitzMap/chemnitz_map.svg create mode 100644 src/components/ChemnitzMap/styles.module.scss create mode 100644 src/compositions/CollapsibleMapWithText/CollapsibleMapWithText.stories.tsx create mode 100644 src/compositions/CollapsibleMapWithText/CollapsibleMapWithText.tsx create mode 100644 src/compositions/CollapsibleMapWithText/styles.module.scss diff --git a/src/components/ChemnitzMap/ChemnitzMap.stories.tsx b/src/components/ChemnitzMap/ChemnitzMap.stories.tsx new file mode 100644 index 0000000..fa40b4f --- /dev/null +++ b/src/components/ChemnitzMap/ChemnitzMap.stories.tsx @@ -0,0 +1,40 @@ +import { Meta, StoryObj } from '@storybook/nextjs-vite' +import { ChemnitzMap } from './ChemnitzMap' + +const meta: Meta = { + component: ChemnitzMap, + decorators: [ + (Story) => ( +
+ +
+ ), + ], +} + +type Story = StoryObj +export default meta + +export const Default: Story = {} + +export const WithClickHandler: Story = { + args: { + onChurchClick: (church) => { + // eslint-disable-next-line no-alert + alert(`Clicked: ${church.replace(/_/g, ' ')}`) + }, + }, +} + +export const CustomUrls: Story = { + args: { + churchUrls: { + 'St._Marien': '/custom/marien', + 'St._Joseph': '/custom/joseph', + }, + onChurchClick: (church) => { + // eslint-disable-next-line no-console + console.log('Would navigate for', church) + }, + }, +} diff --git a/src/components/ChemnitzMap/ChemnitzMap.tsx b/src/components/ChemnitzMap/ChemnitzMap.tsx new file mode 100644 index 0000000..4f338de --- /dev/null +++ b/src/components/ChemnitzMap/ChemnitzMap.tsx @@ -0,0 +1,92 @@ +'use client' + +import { useEffect, useRef } from 'react' +import { useRouter } from 'next/navigation' +import classNames from 'classnames' +import styles from './styles.module.scss' +import { chemnitzMapSvg } from './chemnitzMapSvg' + +export type ChemnitzMapChurch = + | 'St._Antonius_Frankenberg' + | 'St._Marien' + | 'St._Joseph' + | 'St._Johannes_Nepomuk' + | 'St._Antonius' + | 'St._Franziskus' + | 'Maria_Hilfe_der_Chrsiten' + +const DEFAULT_CHURCH_URLS: Record = { + 'St._Antonius_Frankenberg': '/gemeinde/st-antonius-frankenberg', + 'St._Marien': '/gemeinde/st-marien', + 'St._Joseph': '/gemeinde/st-joseph', + 'St._Johannes_Nepomuk': '/gemeinde/st-johannes-nepomuk', + 'St._Antonius': '/gemeinde/st-antonius', + 'St._Franziskus': '/gemeinde/st-franziskus', + 'Maria_Hilfe_der_Chrsiten': '/gemeinde/maria-hilfe-der-christen', +} + +const CHURCH_IDS = Object.keys(DEFAULT_CHURCH_URLS) as ChemnitzMapChurch[] + +export type ChemnitzMapProps = { + churchUrls?: Partial> + onChurchClick?: (church: ChemnitzMapChurch) => void + fill?: boolean +} + +export const ChemnitzMap = ({ churchUrls, onChurchClick, fill = false }: ChemnitzMapProps) => { + const router = useRouter() + const rootRef = useRef(null) + + useEffect(() => { + const root = rootRef.current + if (!root) return + + const urls = { ...DEFAULT_CHURCH_URLS, ...churchUrls } + const cleanups: Array<() => void> = [] + + for (const id of CHURCH_IDS) { + const group = root.querySelector(`g[id="${id}"]`) + if (!group) continue + + group.classList.add(styles.church) + group.setAttribute('role', 'link') + group.setAttribute('tabindex', '0') + group.setAttribute('aria-label', id.replace(/_/g, ' ')) + + const activate = () => { + if (onChurchClick) { + onChurchClick(id) + return + } + const href = urls[id] + if (href) router.push(href) + } + + const onKeyDown = (e: KeyboardEvent) => { + if (e.key === 'Enter' || e.key === ' ') { + e.preventDefault() + activate() + } + } + + group.addEventListener('click', activate) + group.addEventListener('keydown', onKeyDown) + cleanups.push(() => { + group.removeEventListener('click', activate) + group.removeEventListener('keydown', onKeyDown) + }) + } + + return () => cleanups.forEach((fn) => fn()) + }, [router, churchUrls, onChurchClick]) + + return ( +
+ ) +} + +export default ChemnitzMap diff --git a/src/components/ChemnitzMap/chemnitzMapSvg.ts b/src/components/ChemnitzMap/chemnitzMapSvg.ts new file mode 100644 index 0000000..c5798dd --- /dev/null +++ b/src/components/ChemnitzMap/chemnitzMapSvg.ts @@ -0,0 +1,2 @@ +// Generated from chemnitz_map.svg — do not edit by hand. +export const chemnitzMapSvg = ``; diff --git a/src/components/ChemnitzMap/chemnitz_map.svg b/src/components/ChemnitzMap/chemnitz_map.svg new file mode 100644 index 0000000..2d9c598 --- /dev/null +++ b/src/components/ChemnitzMap/chemnitz_map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/components/ChemnitzMap/styles.module.scss b/src/components/ChemnitzMap/styles.module.scss new file mode 100644 index 0000000..8380449 --- /dev/null +++ b/src/components/ChemnitzMap/styles.module.scss @@ -0,0 +1,45 @@ +.map { + width: 100%; + + :global(svg) { + width: 100%; + height: auto; + display: block; + } +} + +.fill { + height: 100%; + + :global(svg) { + width: 100%; + height: 100%; + } +} + +.church { + cursor: pointer; + transform-box: fill-box; + transform-origin: center; + transition: transform 0.3s ease; + + :global(path.cls-1) { + transition: fill 0.3s ease; + } + + &:hover { + transform: scale(1.15); + + :global(path.cls-1) { + fill: #0f6898; + } + } + + &:focus-visible { + outline: none; + + :global(path.cls-1) { + fill: #0f6898; + } + } +} diff --git a/src/compositions/CollapsibleMapWithText/CollapsibleMapWithText.stories.tsx b/src/compositions/CollapsibleMapWithText/CollapsibleMapWithText.stories.tsx new file mode 100644 index 0000000..69f2db3 --- /dev/null +++ b/src/compositions/CollapsibleMapWithText/CollapsibleMapWithText.stories.tsx @@ -0,0 +1,38 @@ +import { Meta, StoryObj } from '@storybook/nextjs-vite' +import { CollapsibleMapWithText } from './CollapsibleMapWithText' +import { Title } from '@/components/Title/Title' +import { P } from '@/components/Text/Paragraph' + +const meta: Meta = { + component: CollapsibleMapWithText, +} + +type Story = StoryObj +export default meta + +export const OurParishes: Story = { + args: { + backgroundColor: 'soft', + schema: 'base', + title: 'Unsere Gemeinden', + text: + 'Unsere Pfarrei umfasst sieben Kirchen in und um Chemnitz. Klicken Sie auf eine Kirche, um mehr über die jeweilige Gemeinde zu erfahren – von Gottesdienstzeiten über Gruppen und Kreise bis hin zu Kontaktmöglichkeiten.\n' + + '\n' + + 'Jede Gemeinde hat ihren eigenen Charakter und ihre eigene Geschichte, gemeinsam bilden sie ein lebendiges katholisches Netzwerk in der Region.', + onChurchClick: (church) => { + // eslint-disable-next-line no-alert + alert(`Klick: ${church.replace(/_/g, ' ')}`) + }, + content: ( + <> + + <P width={'3/4'}> + Die Pfarrei wurde gegründet, um die pastorale Arbeit der umliegenden Kirchgemeinden + zu bündeln und gleichzeitig den lokalen Charakter jeder einzelnen Gemeinde zu + bewahren. Auf der Karte sehen Sie die geografische Verteilung – von St. Marien im + Stadtzentrum bis St. Antonius in Frankenberg. + </P> + </> + ), + }, +} diff --git a/src/compositions/CollapsibleMapWithText/CollapsibleMapWithText.tsx b/src/compositions/CollapsibleMapWithText/CollapsibleMapWithText.tsx new file mode 100644 index 0000000..fce3a66 --- /dev/null +++ b/src/compositions/CollapsibleMapWithText/CollapsibleMapWithText.tsx @@ -0,0 +1,123 @@ +'use client' + +import { BackgroundColor, Section } from '@/components/Section/Section' +import { Title } from '@/components/Title/Title' +import { Container } from '@/components/Container/Container' +import { TextDiv } from '@/components/Text/TextDiv' +import { Row } from '@/components/Flex/Row' +import { CollapsibleArrow } from '@/components/CollapsibleArrow/CollapsibleArrow' +import { ChemnitzMap, ChemnitzMapProps } from '@/components/ChemnitzMap/ChemnitzMap' +import React, { useEffect, useRef, useState } from 'react' +import classNames from 'classnames' +import styles from './styles.module.scss' + +type CollapsibleMapWithTextProps = { + backgroundColor?: BackgroundColor + title: string + text: string + schema?: 'base' | 'contrast' + content: React.ReactNode + churchUrls?: ChemnitzMapProps['churchUrls'] + onChurchClick?: ChemnitzMapProps['onChurchClick'] +} + +type MoreInformationProps = { + isCollapsed: boolean + onClick: () => void +} + +const MoreInformation = ({ isCollapsed, onClick }: MoreInformationProps) => { + const [direction, setDirection] = useState<'UP' | 'DOWN'>(isCollapsed ? 'DOWN' : 'UP') + + const toggleDirection = () => { + setDirection(direction === 'UP' ? 'DOWN' : 'UP') + } + + const handleClick = () => { + toggleDirection() + onClick() + } + + return ( + <button + onClick={handleClick} + className={styles.more} + onMouseEnter={toggleDirection} + onMouseLeave={toggleDirection} + > + Mehr erfahren <CollapsibleArrow direction={direction} /> + </button> + ) +} + +export const CollapsibleMapWithText = ({ + backgroundColor, + title, + text, + schema = 'base', + content, + churchUrls, + onChurchClick, +}: CollapsibleMapWithTextProps) => { + const ref = useRef<HTMLDivElement>(null) + const ref2 = useRef<HTMLDivElement>(null) + const [contentHeight, setContentHeight] = useState(0) + const [isCollapsed, setIsCollapsed] = useState(true) + + const collapse = () => { + setIsCollapsed(true) + ref.current?.scrollIntoView({ behavior: 'smooth' }) + } + + useEffect(() => { + if (ref2.current) { + setContentHeight(ref2.current.scrollHeight) + } + }, [ref2]) + + return ( + <div ref={ref} className={styles.root}> + <Section backgroundColor={backgroundColor}> + <Container> + <Row alignItems={'center'}> + <div className={classNames(styles.col, styles.imageCol)} /> + <div className={styles.col}> + <Title title={title} size={'lg'} color={schema} /> + + <TextDiv text={text} /> + + <div className={styles.right}> + <MoreInformation + isCollapsed={isCollapsed} + onClick={() => setIsCollapsed(!isCollapsed)} + /> + </div> + </div> + </Row> + </Container> + </Section> + + <div className={styles.mapCorner}> + <ChemnitzMap churchUrls={churchUrls} onChurchClick={onChurchClick} /> + </div> + + <div + ref={ref2} + className={styles.content} + style={{ maxHeight: isCollapsed ? undefined : contentHeight }} + > + <Section + backgroundColor={backgroundColor} + padding={'small'} + paddingBottom={'large'} + > + <Container>{content}</Container> + + <div className={styles.endButton}> + <CollapsibleArrow direction={'UP'} onClick={collapse} /> + </div> + </Section> + </div> + </div> + ) +} diff --git a/src/compositions/CollapsibleMapWithText/styles.module.scss b/src/compositions/CollapsibleMapWithText/styles.module.scss new file mode 100644 index 0000000..6895506 --- /dev/null +++ b/src/compositions/CollapsibleMapWithText/styles.module.scss @@ -0,0 +1,90 @@ +@import "template.scss"; + +.root { + position: relative; +} + +.mapCorner { + position: absolute; + top: 0; + left: 0; + width: 100%; + z-index: 0; + pointer-events: none; + opacity: 0.5; + + :global(svg) { + pointer-events: auto; + } +} + +.right { + margin-top: 40px; + text-align: right; + z-index: 3; +} + +.image { + border-radius: 13px; + transition: opacity 3s; + width: 100%; + height: 100%; +} + +.col { + width: calc(50% - 40px); +} + +.imageCol { + /* Empty column — space reserved for the map positioned in the upper-left corner. */ +} + +.more { + font-size: 18px; + color: $base-color; + cursor: pointer; + font-weight: bold; + display: inline-flex; + gap: 10px; + border: 0; + background-color: inherit; + align-items: center; +} + +.content { + transition: max-height 500ms ease-in; + max-height: 0; + overflow: hidden; +} + +.endButton { + position: relative; + top: 75px; + text-align: center; +} + +.endButton svg { + cursor: pointer; +} + +@media screen and (max-width: 750px) { + .imageCol { + display: none; + } + + .col { + width: 100%; + } + + .mapCorner { + position: static; + width: 70vw; + margin: 0 auto 40px; + } +} + +@media screen and (max-width: 576px) { + .endButton { + top: 20px; + } +} From 4766098296ce6d66c31cc105fd05c15c612c5182 Mon Sep 17 00:00:00 2001 From: Benno Tielen <Benno@tielen.nl> Date: Wed, 29 Apr 2026 14:21:44 +0200 Subject: [PATCH 2/2] feature: map --- src/collections/Pages.ts | 2 + .../blocks/CollapsibleMapWithText.ts | 53 + .../ChemnitzMap/ChemnitzMap.stories.tsx | 22 - src/components/ChemnitzMap/ChemnitzMap.tsx | 796 +- src/components/ChemnitzMap/chemnitzMapSvg.ts | 2 - src/components/ChemnitzMap/chemnitz_map.svg | 931 +- src/components/ChemnitzMap/styles.module.scss | 23 +- src/compositions/Blocks/Blocks.tsx | 20 + .../CollapsibleMapWithText.stories.tsx | 16 +- .../CollapsibleMapWithText.tsx | 95 +- .../CollapsibleMapWithText/styles.module.scss | 61 +- ...0429_121105_collapsible_map_with_text.json | 25177 ++++++++++++++++ ...260429_121105_collapsible_map_with_text.ts | 56 + src/migrations/index.ts | 8 +- src/payload-types.ts | 33 + 15 files changed, 27065 insertions(+), 230 deletions(-) create mode 100644 src/collections/blocks/CollapsibleMapWithText.ts delete mode 100644 src/components/ChemnitzMap/chemnitzMapSvg.ts create mode 100644 src/migrations/20260429_121105_collapsible_map_with_text.json create mode 100644 src/migrations/20260429_121105_collapsible_map_with_text.ts diff --git a/src/collections/Pages.ts b/src/collections/Pages.ts index 584e9f3..8f45891 100644 --- a/src/collections/Pages.ts +++ b/src/collections/Pages.ts @@ -17,6 +17,7 @@ import { HorizontalRuleBlock } from '@/collections/blocks/HorizontalRule' import { BlogSliderBlock } from '@/collections/blocks/BlogSlider' import { MassTimesBlock } from '@/collections/blocks/MassTimes' import { CollapsibleImageWithTextBlock } from '@/collections/blocks/CollapsibleImageWithText' +import { CollapsibleMapWithTextBlock } from '@/collections/blocks/CollapsibleMapWithText' import { CollapsiblesBlock } from '@/collections/blocks/Collapsibles' import { EventsBlock } from '@/collections/blocks/Events' import { PublicationAndNewsletterBlock } from '@/collections/blocks/PublicationAndNewsletter' @@ -101,6 +102,7 @@ export const Pages: CollectionConfig = { HorizontalRuleBlock, BlogSliderBlock, CollapsibleImageWithTextBlock, + CollapsibleMapWithTextBlock, CollapsiblesBlock, MassTimesBlock, EventsBlock, diff --git a/src/collections/blocks/CollapsibleMapWithText.ts b/src/collections/blocks/CollapsibleMapWithText.ts new file mode 100644 index 0000000..63e48b1 --- /dev/null +++ b/src/collections/blocks/CollapsibleMapWithText.ts @@ -0,0 +1,53 @@ +import { Block } from 'payload' + +export const CollapsibleMapWithTextBlock: Block = { + slug: 'collapsibleMapWithText', + labels: { + singular: { + de: 'Aufklappbarer Kartentext', + }, + plural: { + de: 'Aufklappbare Kartentexte', + }, + }, + dbName: 'collaps_map', + fields: [ + { + name: 'title', + type: 'text', + required: true, + label: { + de: 'Titel', + }, + }, + { + name: 'text', + type: 'textarea', + required: true, + label: { + de: 'Text', + }, + }, + { + name: 'content', + type: 'richText', + required: true, + label: { + de: 'Aufklappbarer Inhalt', + }, + }, + { + name: 'backgroundColor', + type: 'select', + label: { + de: 'Hintergrundfarbe', + }, + options: [ + { label: 'Standard', value: 'default' }, + { label: 'Soft', value: 'soft' }, + { label: 'Off-White', value: 'off-white' }, + ], + defaultValue: 'default', + }, + ], +} diff --git a/src/components/ChemnitzMap/ChemnitzMap.stories.tsx b/src/components/ChemnitzMap/ChemnitzMap.stories.tsx index fa40b4f..a6800e7 100644 --- a/src/components/ChemnitzMap/ChemnitzMap.stories.tsx +++ b/src/components/ChemnitzMap/ChemnitzMap.stories.tsx @@ -16,25 +16,3 @@ type Story = StoryObj<typeof ChemnitzMap> export default meta export const Default: Story = {} - -export const WithClickHandler: Story = { - args: { - onChurchClick: (church) => { - // eslint-disable-next-line no-alert - alert(`Clicked: ${church.replace(/_/g, ' ')}`) - }, - }, -} - -export const CustomUrls: Story = { - args: { - churchUrls: { - 'St._Marien': '/custom/marien', - 'St._Joseph': '/custom/joseph', - }, - onChurchClick: (church) => { - // eslint-disable-next-line no-console - console.log('Would navigate for', church) - }, - }, -} diff --git a/src/components/ChemnitzMap/ChemnitzMap.tsx b/src/components/ChemnitzMap/ChemnitzMap.tsx index 4f338de..d3a2bc4 100644 --- a/src/components/ChemnitzMap/ChemnitzMap.tsx +++ b/src/components/ChemnitzMap/ChemnitzMap.tsx @@ -1,92 +1,730 @@ 'use client' -import { useEffect, useRef } from 'react' import { useRouter } from 'next/navigation' -import classNames from 'classnames' +import { ReactNode } from 'react' import styles from './styles.module.scss' -import { chemnitzMapSvg } from './chemnitzMapSvg' -export type ChemnitzMapChurch = - | 'St._Antonius_Frankenberg' - | 'St._Marien' - | 'St._Joseph' - | 'St._Johannes_Nepomuk' - | 'St._Antonius' - | 'St._Franziskus' - | 'Maria_Hilfe_der_Chrsiten' - -const DEFAULT_CHURCH_URLS: Record<ChemnitzMapChurch, string> = { - 'St._Antonius_Frankenberg': '/gemeinde/st-antonius-frankenberg', - 'St._Marien': '/gemeinde/st-marien', - 'St._Joseph': '/gemeinde/st-joseph', - 'St._Johannes_Nepomuk': '/gemeinde/st-johannes-nepomuk', - 'St._Antonius': '/gemeinde/st-antonius', - 'St._Franziskus': '/gemeinde/st-franziskus', - 'Maria_Hilfe_der_Chrsiten': '/gemeinde/maria-hilfe-der-christen', +type ParishProps = { + href: string + ariaLabel: string + transform: string + children: ReactNode } -const CHURCH_IDS = Object.keys(DEFAULT_CHURCH_URLS) as ChemnitzMapChurch[] - -export type ChemnitzMapProps = { - churchUrls?: Partial<Record<ChemnitzMapChurch, string>> - onChurchClick?: (church: ChemnitzMapChurch) => void - fill?: boolean -} - -export const ChemnitzMap = ({ churchUrls, onChurchClick, fill = false }: ChemnitzMapProps) => { +const Parish = ({ href, ariaLabel, transform, children }: ParishProps) => { const router = useRouter() - const rootRef = useRef<HTMLDivElement>(null) - - useEffect(() => { - const root = rootRef.current - if (!root) return - - const urls = { ...DEFAULT_CHURCH_URLS, ...churchUrls } - const cleanups: Array<() => void> = [] - - for (const id of CHURCH_IDS) { - const group = root.querySelector<SVGGElement>(`g[id="${id}"]`) - if (!group) continue - - group.classList.add(styles.church) - group.setAttribute('role', 'link') - group.setAttribute('tabindex', '0') - group.setAttribute('aria-label', id.replace(/_/g, ' ')) - - const activate = () => { - if (onChurchClick) { - onChurchClick(id) - return - } - const href = urls[id] - if (href) router.push(href) - } - - const onKeyDown = (e: KeyboardEvent) => { - if (e.key === 'Enter' || e.key === ' ') { - e.preventDefault() - activate() - } - } - - group.addEventListener('click', activate) - group.addEventListener('keydown', onKeyDown) - cleanups.push(() => { - group.removeEventListener('click', activate) - group.removeEventListener('keydown', onKeyDown) - }) - } - - return () => cleanups.forEach((fn) => fn()) - }, [router, churchUrls, onChurchClick]) - + const navigate = () => router.push(href) return ( - <div - ref={rootRef} - className={classNames(styles.map, { [styles.fill]: fill })} - dangerouslySetInnerHTML={{ __html: chemnitzMapSvg }} - /> + <g className={styles.parish}> + <g + transform={transform} + role="link" + tabIndex={0} + aria-label={ariaLabel} + onClick={navigate} + onKeyDown={(e) => { + if (e.key === 'Enter' || e.key === ' ') { + e.preventDefault() + navigate() + } + }} + > + {children} + </g> + </g> + ) } +export const ChemnitzMap = () => ( + <div className={styles.map}> + <svg viewBox="0 0 2156.07 1357.94" xmlns="http://www.w3.org/2000/svg"> + <defs> + <style>{` + .cls-1, .cls-2 { fill: #ca5726; } + .cls-3 { fill: #fff; } + .cls-4 { fill: #67a3c2; } + .cls-5 { fill: #0f6898; } + .cls-2 { opacity: .3; } + .cls-6 { fill: #deecf7; } + `}</style> + </defs> + <g + id="Flächen"> + <polygon + className="cls-2" + points="1913.83 433.76 1933.32 501.96 1918.1 501.96 1935.25 571.57 1828.19 579.43 1832.88 599.35 1790.87 608.14 1777.96 554.11 1844.11 538.25 1822.71 456.37 1913.83 433.76" /> + <polygon + className="cls-2" + points="1685.18 736.76 1747.49 779.98 1746.59 822.87 1679.72 927.13 1616.25 813.9 1685.18 736.76" /> + <polygon + className="cls-2" + points="1640.8 860.34 1627.59 886.32 1580.46 903.47 1569.53 886.32 1589.72 875.65 1568.73 831.95 1616.25 813.9 1640.8 860.34" /> + <polygon + className="cls-2" + points="1592.8 948.24 1592.8 983.56 1574.57 983.56 1574.57 1009.57 1545.96 1022.27 1552.69 1064.06 1587.2 1064.06 1588.15 1075.15 1734.4 1060.53 1679.72 927.13 1592.8 948.24" /> + <polygon + className="cls-2" + points="1619.73 1318.68 1619.73 1291.38 1681.87 1286.16 1775.7 1302.88 1775.7 1312.84 1759.65 1312.84 1734.4 1335.26 1619.73 1318.68" /> + <polygon + className="cls-2" + points="2209.93 991.27 2179.63 1001.14 2092.12 944.91 2069.24 946.65 2055.09 981.52 2001.23 1043.8 1991.97 1079.98 2004.64 1128.43 2049.55 1130.29 2074.76 1114.48 2122.04 1117.01 2215.95 1130.29 2145.36 1172.55 2031.53 1196.11 2015.94 1196.11 1991.97 1218.83 2004.64 1265.12 2069.24 1318.13 2019.74 1318.13 1965.46 1268.48 1903.61 1157.48 1875 1166.17 1871.63 1209.38 1894.36 1261.27 1895.2 1286.16 1986.08 1363.58 2035.73 1367.3 2049.55 1421.64 2202.36 1421.64 2269.68 1157.48 2209.93 991.27" /> + <polygon + className="cls-2" + points="1293.57 609.02 1303.73 636.33 1340.08 625.49 1346.7 618.65 1338.85 607.58 1371.8 554.49 1356.1 546.44 1347.98 568.14 1322.11 579.43 1319.8 591.38 1293.57 609.02" /> + <polygon + className="cls-2" + points="1336.7 534.92 1330.52 556.23 1341.98 559.01 1347.98 539.16 1336.7 534.92" /> + <polygon + className="cls-2" + points="970.7 811.09 984.11 787.16 1033.84 811.09 1019.9 837.11 970.7 811.09" /> + <polygon + className="cls-2" + points="753.64 850.46 726.72 855.23 735.35 934.4 714.29 956.7 625.15 1017.38 641.15 1059.47 593.89 1072.83 597.88 1188.17 657.14 1206.65 664.71 1252.42 643.45 1275.6 604.24 1242.52 586.13 1252.72 566.21 1234.74 473 1269.13 453.36 1252.72 482.62 1212.06 475.17 1168.06 428.85 1142.46 387 1166.17 335.13 1136.41 326.78 1089.32 274.91 1038.62 266.67 1008.43 6.38 956.7 -65.09 954.62 -65.09 1363.26 246.29 1426.23 762.89 1391.34 724.14 1352.05 731.9 1318.68 752.6 1288.58 747.42 1252.72 762.89 1230.43 771.58 1202.42 707.69 1121.82 751.74 1073.45 762.89 1032.05 818.02 1042.33 837.13 1020.69 789.69 967.39 753.64 850.46" /> + <polygon + className="cls-2" + points="72 967.39 20.54 922.97 37.72 898.71 111.7 911.02 189.25 991.79 72 967.39" /> + <polygon + className="cls-2" + points="326.78 1089.32 342.79 1067.11 366.71 1052.01 346.75 1019.04 371.2 998.73 384.65 1012.01 500.54 972.37 547.5 908.66 607.46 884.98 590.16 844.49 519.73 838.09 519.73 789.05 538.35 789.05 519.73 723.7 475.17 704.66 419.27 721.37 412.71 779.98 440.02 814.24 407.14 879.99 332.7 938.44 317.06 979.76 292.39 956.7 260.01 967.39 271.24 1025.37 294.7 1060.95 326.78 1089.32" /> + <polygon + className="cls-2" + points="1392.66 1089.58 1403.13 1106.62 1328.15 1142.46 1314.81 1124.8 1392.66 1089.58" /> + <polygon + className="cls-2" + points="1207.82 761.22 1190.62 760.43 1186.16 813.9 1154.73 875.65 1144.49 998.73 1180.83 1142.46 1159.13 1138.34 1154.73 1160.84 1238 1202.42 1289.53 1193.51 1301.47 1184.71 1266.16 1129.51 1222.98 1101.81 1206.08 1061.68 1174.67 1009.57 1176.28 967.74 1207.82 761.22" /> + <polygon + className="cls-2" + points="1619.94 684.68 1669.45 728.5 1654.98 745.32 1669.45 754.36 1654.98 770.55 1626.24 740.57 1636.95 727.62 1607.38 702.04 1619.94 684.68" /> + <polygon + className="cls-2" + points="1623.95 496.12 1641.43 503.2 1651.43 476.29 1632.53 470.6 1623.95 496.12" /> + <polyline + className="cls-2" + points="1337.89 237.44 1335.32 267.42 1350.02 267.42" + id="polyline38" /> + <polygon + className="cls-2" + points="1473.97 263.86 1461.12 269.81 1463.57 304.56 1489.03 274.89 1473.97 263.86" /> + <polygon + className="cls-2" + points="1224.67 172.66 1264.31 159.36 1314.66 116.89 1327.4 73.81 1345 66.53 1368.66 41.66 1386.75 35.94 1397.07 100.86 1366.56 158.07 1304.63 164.89 1307.81 199.46 1223.05 188.93 1224.67 172.66" /> + <polygon + className="cls-2" + points="1170.96 237.78 1172.09 263.59 1140.95 267.44 1137.1 241.42 1170.96 237.78" /> + <polygon + className="cls-2" + points="1143.63 285.54 1154.6 283.84 1150.49 265.41 1140.95 267.44 1143.63 285.54" /> + <polygon + className="cls-2" + points="1132.89 392.01 1140.95 422.89 1173.67 411.84 1164.18 382.13 1132.89 392.01" /> + <polygon + className="cls-2" + points="935.06 398.83 954.81 429.45 967.97 426.41 972.06 432.5 935.06 450 915.33 413.09 935.06 398.83" /> + <polygon + className="cls-2" + points="1059.93 498.12 1010.63 500.85 1015.84 521.91 1076.63 521.91 1059.93 498.12" /> + <polygon + className="cls-2" + points="1875.22 246.08 1870.5 261.11 1892.26 266.99 1894.43 252.43 1875.22 246.08" /> + <polygon + className="cls-2" + points="1823.96 125.9 1833.39 100.86 1815.12 88.79 1807 100.86 1801.71 111.18 1804.52 122.49 1823.96 125.9" /> + <polygon + className="cls-2" + points="1807 -3.5 1815.12 75.27 1892.26 75.27 1899.28 94.82 1949.45 88.79 1961.23 100.86 1959.01 135.89 1996.24 166.13 2035.74 155.94 2049.61 125.9 2137.19 135.89 2191.94 192.46 2218.11 -41.13 2018.38 -48.14 1996.24 -48.14 1972.43 -22.28 1807 -3.5" /> + <polygon + className="cls-2" + points="312.81 336.41 292.39 371.14 189.25 430.12 130.49 424.42 127.29 445.55 194.86 492.56 185.31 541.59 200.39 562.93 249.63 527.74 334.03 500.85 374.89 462.3 429.63 576.54 414.32 596.91 384.65 605.34 384.65 636.33 410.75 659.44 475.17 704.66 490.68 636.33 557.78 633.45 572.01 607.49 620.25 562.93 682.62 564.54 680.93 501.96 714.29 454.16 689.68 432.74 647.91 433.04 617.61 378.62 578.47 393.48 582.31 432.16 552 441.28 551.42 409.57 531.46 387.77 531.46 337.74 513.47 291.47 442.57 296.54 427.27 375.97 406.09 394.5 397.37 363.56 359.61 368.61 360.2 392.44 312.81 336.41" /> + <polygon + className="cls-2" + points="596.12 -82.49 596.12 -48.14 642.16 30.66 659.54 120.78 664.75 208.69 675.63 237.78 654.33 247.52 623.05 225.3 615.23 192.91 596.12 188.93 592.65 225.3 550.08 241.2 525.76 237.17 496.22 254.67 482.32 233.36 497.96 201.23 478.85 185.51 416.3 241.42 384.16 247.52 375.47 237.17 352.02 241.42 306.01 287.69 280.79 233.36 230.54 224.18 221.72 237.17 168.72 247.52 173.07 267.44 127.29 281.6 108.78 305.98 81.86 301.51 59.49 331.45 18.44 291.47 -4.15 299.34 -14.57 267.44 -72.77 306.17 -51.06 -59.91 596.12 -82.49" /> + </g> + <g + id="Kleine_Straßen"> + <path + className="cls-6" + d="M1329.41,300.65l-24.89-54.75-27.18,3.29v-54.03h-3v28.84l-43.1,5.8-31.07,3.34-8.28-44.26-2.95.55,3.36,17.98-101.4,13.12,4.96,50.97-20.96,2.59-10.78-62.31-46.06,21.68,80.92,247.67,23.16-7.53,5.49,17.18,80.61-26.59,9.19,25.21,2.82-1.03-9.68-26.55-5.13-15.29,39.36-12.79.24-.08,39.54-30.06-53.04-11.2,26.29-27.78-2.18-2.06-26.1,27.59-17.5-93.51,28.77-3.65-.38-2.98-28.95,3.67-6.11-32.67,32.8-4.05,36.15-4.37v3.04l13.01,60.4,30.74,99.1-15.1,20.49,2.42,1.78,16-21.71-.11-.34,22.34-99.97-14.21-14.71ZM1197.18,233.45l-19.18,2.06-1.72-23.01,16.58-2.15,4.32,23.09ZM1202.98,400.36l-9.01-26.05,27.91-8.8,5.01,26.78-23.91,8.07ZM1200.14,401.32l-88.4,29.85-8.98-28.09,88.35-27.87,9.03,26.11ZM1048.86,317.31l29.83-3.78,4.08,23.59-25.98,5.19-19.77-60.51,35.42-4.38,5.73,33.15-29.69,3.77.38,2.98ZM1102.39,307.49l-3.25-33.38,21.29-2.63,4.15,33.19-22.19,2.81ZM1114.34,309l-2.21.51,4.84,20.77-31.26,6.24-4.04-23.38,32.68-4.14ZM1131.11,390.99l-29.26,9.23-11.17-34.95-4.46-25.79,31.43-6.28,13.46,57.78ZM1083.28,340.07l4.48,25.91,11.23,35.14-20.84,6.57-20.43-62.52,25.55-5.1ZM1099.9,403.98l8.99,28.14-20.5,6.92-9.31-28.5,20.82-6.57ZM1133.98,390.09l-18.91-81.18,60.2-7.64,5.45,43.79.02.16,9.39,27.16-56.15,17.71ZM1127.55,304.3l-4.15-33.18,47.38-5.85,4.11,33.03-47.35,6.01ZM1123.03,268.14l-6-47.97,56.26-7.28,1.72,22.95-38.07,4.09.32,2.98,60.47-6.5,4.12,21.99-78.81,9.74ZM1094.17,223.13l19.89-2.57,5.99,47.96-21.21,2.62-4.68-48ZM1096.16,274.48l3.25,33.39-18.26,2.32-5.73-33.14,20.74-2.56ZM1061.84,216.16l10.08,58.29-35.86,4.43-14.33-43.85,40.1-18.88ZM1100.91,477.34l-11.58-35.44,20.48-6.91,11.42,35.75-20.32,6.61ZM1207.25,461.34l-77.68,25.63-4.57-14.31,77.59-25.22,4.66,13.9ZM1243.63,430.94l-119.54,38.86-11.43-35.78,116.05-39.18,48.85,10.32-33.92,25.78ZM1221.33,362.53l-28.34,8.94-9.31-26.94-5.43-43.64,30.82-3.91,12.27,65.55ZM1208.51,294.03l-30.64,3.89-4.11-33.02,28.63-3.54,6.11,32.68ZM1237.81,253.96l-32.98,4.08-4.11-21.95,30.87-3.32,42.74-5.75v22.53l-36.52,4.41ZM1290.26,315.31l-12.92-60.02v-3.08l25.36-3.07,24.09,52.99.11.24,13.45,13.92-20.84,93.28-29.24-94.25Z" /> + <polygon + className="cls-6" + points="1499.43 1345.83 1390.52 1340.02 1340.35 1302.27 1345.54 1280.19 1336.93 1242.78 1349.03 1222.74 1396.16 1203.47 1398.23 1182.16 1361.53 1156.26 1359.8 1158.71 1395.07 1183.61 1393.35 1201.38 1346.97 1220.34 1333.74 1242.27 1342.46 1280.18 1336.98 1303.49 1389.08 1342.69 1389.45 1342.97 1499.72 1348.85 1500.17 1348.87 1535.65 1328.08 1534.14 1325.49 1499.43 1345.83" /> + <polygon + className="cls-6" + points="1603.21 1235.31 1499.1 1290.06 1500.5 1292.71 1603.31 1238.64 1650.74 1259.82 1709.08 1243.26 1666.34 1201.62 1660.48 1181.53 1621.98 1165.48 1627.18 1157.66 1620.13 1140.17 1535.36 1079.81 1505.33 1027.01 1490.26 977.41 1487.39 978.28 1495.63 1005.4 1444.73 1020.48 1433.18 998.04 1430.52 999.42 1443.2 1024.06 1496.5 1008.27 1502.51 1028.04 1533.08 1081.87 1617.67 1142.11 1623.8 1157.31 1618.69 1165.02 1453.46 1251.4 1454.84 1254.05 1619.8 1167.83 1658.01 1183.75 1663.68 1203.22 1703.27 1241.79 1650.97 1256.63 1603.21 1235.31" /> + <polygon + className="cls-6" + points="883.06 1117.28 842.66 1125.89 869.29 1166.99 871.81 1165.36 847.55 1127.91 883.69 1120.21 883.06 1117.28" /> + <polygon + className="cls-6" + points="902.62 1224.78 917.02 1157.47 907.42 1117.59 897.04 1114.06 908.27 1093.5 895.45 1088.19 894.3 1090.97 904.03 1094.99 892.7 1115.75 904.89 1119.9 913.94 1157.5 899.68 1224.15 902.62 1224.78" /> + <path + className="cls-6" + d="M1156.23,1286.41l39.02-9.48,43.44-22.88-1.4-2.65-43.12,22.71-37.95,9.22v-.86l-41.27-74.51h-18.29l-26.35-24.34-2.04,2.2,27.21,25.14h17.7l17.06,30.8-85.34,33.29-7.33,20.67-27.07,10.93-14.93-64.45-2.92.68,22.13,95.55-53.71,7.38-14.2-7.6-50.71-29-8.82-35.76-55.15-3.83-.21,2.99,52.97,3.68,8.61,34.88,51.86,29.66,15.09,8.08,62.46-8.59.3-.04,10.98-6.43,5.59,15.35,113.38-34.34v9.75l11.92,18.54-5.24,31.42,2.96.49,5.2-31.23,30.44-14.8-1.31-2.7-29.94,14.56-11.04-17.17v-37.31ZM1022.28,1337.38l-4.5.62-6.58-28.41,28.77-11.61,7.33-20.65,84.43-32.94,21.51,38.84v.82l-24.18,5.87-.5.12-16.62,20.74-62.35,10.61-27.3,15.98ZM1036.89,1332.31l13.74-8.04,22.91-3.9,5.2,13.92-37.05,11.22-4.81-13.19ZM1081.62,1333.41l-5.07-13.56,37.01-6.3,16.7-20.83,22.97-5.58v24.58l-71.61,21.69Z" /> + <polygon + className="cls-6" + points="903.97 1047.08 984.46 940.46 993.34 946.2 1034.04 970.77 1057.37 1000.23 1097.35 1000.23 1097.35 997.23 1058.82 997.23 1036.22 968.69 1036.06 968.48 1011.63 953.73 1040.26 914.76 1087.52 909.06 1105.13 888.19 1112.11 891.68 1113.46 888.99 1104.36 884.45 1085.99 906.22 1038.61 911.93 1009.05 952.17 994.93 943.65 983.75 936.43 903.16 1043.18 848.2 1012.32 819.1 982.51 816.95 984.61 846.36 1014.72 903.97 1047.08" /> + <polygon + className="cls-6" + points="512.88 1214.19 426.15 1308.1 426.15 1338.29 385.5 1341.44 385.5 1396.14 388.5 1396.14 388.5 1344.21 429.15 1341.06 429.15 1309.27 515.39 1215.89 515.69 1215.56 521.21 1181.27 518.25 1180.79 512.88 1214.19" /> + <path + className="cls-6" + d="M709.69,758.73l.75,9.58h-25.28v-28.48h-3v39.01l1.65,16.17-17.63,3.6,8.26,46.75,14.14-3.74,1.07,10.44,7.63,39.75-48.12,51.12-12.8,22.35-14.24-9.18,7.4-18.33,51.03-44.92-6.7-33.81-2.94.58,6.36,32.11-12.01,10.57-14.3-32.17-2.74,1.22,14.69,33.03-11.4,10.04-19.08-35.15-2.64,1.43,19.41,35.75-21.92,19.3-.27.24-8.59,21.29,16.46,10.61-17.32,30.23-11.98,37.57-28.03,43.31-10.02,48.78-17.45,41.04,2.76,1.17,17.57-41.31,9.97-48.52,27.84-43.01.11-.17,12.01-37.65,31.16-54.47,49.05-52.1-7.89-41.06-1.11-10.85,24.1-6.37.29,3.72,2.99-.23-6.21-79.47-2.99.23ZM712.25,791.43h-9.23l.23-20.12h7.42l1.57,20.12ZM685.16,778.77v-7.45h15.1l-.23,20.39-13.26,2.71-1.6-15.65ZM676.82,841.64l-7.18-40.66,14.47-2.96,4.15,40.6-11.44,3.02ZM691.2,837.84l-4.13-40.42,13.2-2.7,6.06,39.12-15.12,4ZM709.24,833.07l-5.98-38.63h9.23l2.89,37.01-6.14,1.62Z" /> + <path + className="cls-6" + d="M126.92,899.48l28.31-5.55,58.97,64.35,20.03-2.32-.71-26.82-55.06-61.3,18.19-15.76,27.63,5.57,6.7,18.85h14.03v-3h-11.91l-6.56-18.45-30.74-6.2-19.21,16.65-52.76-73.43-2.44,1.75,52.92,73.66-.12.1.15.17-19.38,23.19-30.28,5.94-49.62-81.81-2.57,1.56,25.66,42.31-26.79,18.9-26.23-45.87-2.6,1.49,27.87,48.73,29.32-20.68,22.94,37.82,87.44,91.17,54.41,7.34.4-2.97-53.37-7.2-84.61-88.17ZM230.55,930.32l.61,22.97-15.78,1.83-57.62-62.87,18.61-22.26,54.18,60.32Z" /> + <polygon + className="cls-6" + points="133.05 714.74 133.05 763.82 138.94 781.84 141.79 780.91 136.05 763.34 136.05 714.92 208.45 725.81 216.15 743.11 218.89 741.9 210.53 723.09 134.77 711.69 134.63 711.67 7.64 716.91 15.84 662.69 58.36 653.37 112.87 659.78 117.52 638.89 180.65 663.45 190.7 627.21 187.8 626.41 178.64 659.45 147.96 647.51 171.52 587.77 168.73 586.67 145.16 646.43 118.17 635.93 124 609.71 150.37 575.85 163.39 571.62 162.46 568.76 148.57 573.29 121.22 608.4 110.53 656.48 58.46 650.36 58.21 650.33 17.07 659.35 30.02 629.75 23.11 601.45 -26.33 572.8 -54.64 591.9 -52.96 594.38 -26.21 576.34 20.5 603.4 26.86 629.48 13.06 661.03 4.36 718.58 18.65 768.66 -37.6 779.9 -37.01 782.84 19.48 771.56 36.28 830.44 39.17 829.62 7.85 719.9 133.05 714.74" /> + <path + className="cls-6" + d="M452.65,897.26l8.9-27.69-13.97-3.15-17.5,6.59-11.75-13.39-72.35,6.74-12.96-96.74-1.83-15.98,26.52-5.16-5.45-50.36-2.98.32,5.16,47.62-26.54,5.16,1.98,17.28-91.4,11.38.37,2.98,91.4-11.38,18.96,141.49-40.42,56.16-47.03,9.15.57,2.95,47.62-9.26.58-.11,41.81-58.1-5.95-44.42,70.71-6.58,10.51,11.97-44.55,45.33,4.64,26.6-18.24,14.95,4.93,15.33,2.86-.92-4.31-13.39,79.73-65.37ZM386.26,921.06l44.21-44.99,17.32-6.52,9.9,2.23-7.62,23.72-59.72,48.97-4.08-23.41Z" /> + <path + className="cls-6" + d="M493.21,455.66v-109.7h-3v106.7h-31.46l-20.58,35.91,4.24,43.99-30.89,4.49-76.13-19.46-14.53,50.89-26.27-4.71-90.66,30.02,5.93,15.75-24.99,7.68.88,2.87,26.19-8.05,36.49,5.13,7.66,29.41-1.97.36-43.06,25.29,1.52,2.59,42.61-25.02,1.66-.31,7.17,27.53-44.13,13.06.85,2.88,44.04-13.03,10.64,40.87,2.9-.76-10.67-40.96,54.15-16.03,41.33,19.24,2.1,11.49,2.95-.54-7.42-40.54-23.96-20.28-18.24-23.86v-21.13l18.91-66.21,73.88,18.89,34.32-4.99-4.42-45.89,19.24-33.57h32.72ZM207.83,595.65l64.05-21.21,11.64,36.47-33.85,3.39-36.75-5.17-5.08-13.49ZM251.53,617.14l32.92-3.3,8.3,25.99-33.7,6.2-7.52-28.9ZM362.47,678.67l-40.43-18.82-55.15,16.32-7.09-27.22,75.48-13.89,22.72,19.23,4.46,24.38ZM333.03,632.42l-37.31,6.86-8.22-25.75,28.88-2.89,16.66,21.78ZM315.56,587.01v20.7l-28.99,2.9-11.84-37.11,20.08-6.65,25.22,4.52-4.46,15.63Z" /> + <polygon + className="cls-6" + points="586.01 685.91 591.63 656.98 588.68 656.41 583.48 683.2 559.28 686.19 559.28 654.1 556.28 654.1 556.28 686.56 513.39 691.85 506.3 661.11 503.38 661.78 511.07 695.16 586.01 685.91" /> + <path + className="cls-6" + d="M1107.37,533.46l-35.71,7.59,7.22-18.54-17.41-24.81,2.96-35.63-10.25-26.12-18.19-49.88-30.73,5.54-3.07-6.87-2.74,1.22,3.48,7.78,1.83,9.59-22.73,7.13-8.63-17.83-2.7,1.31,9.76,20.16,25.12-7.88,3.85,10.24,42.16,21.11,9.79,24.95-3,36.02,17.11,24.38-7.36,18.87-103.82,22.05-.11.02-72.25,26.65-58.18,8.13,2.11-26.2,33.41-13.93-14.09-23.06h-17.36l-15.41-5.78-8.15-16.34,31.69-17.6,62.44-58.16.31-.29,8.17-29.44-40.93-89.35-2.73,1.25,40.47,88.35-7.65,27.57-61.87,57.62-59.33,32.94h-33.11l9.9,45.47,20.55-.3,45.9,28.03-125.47,17.53-4.12-18.18-91.55,22.62v37.48h3v-35.13l86.3-21.32,4.05,17.89,131.82-18.42,1.3.79.08-.98,59-8.25.16-.02,72.35-26.69,142.93-30.36-.62-2.93ZM1007.94,403.96l-1.81-9.46,27.91-5.03,16.04,43.98-38.25-19.15-3.89-10.35ZM785.74,544.39l47.18,27.84-2.05,25.36-46.67-28.5,1.54-24.71ZM864.93,557.1l-30.33,12.65-10.13-5.98,14-25.3h15.07l11.39,18.63ZM820.3,532.08l15.14,5.68-13.55,24.48-35.94-21.21.77-12.37,24.95-13.85,8.62,17.28ZM755.51,529.24h28.17l-2.45,39.18-17.14.25-8.58-39.43Z" /> + <path + className="cls-6" + d="M1361.37,645.93l24.21,13.28-17.43,58.04,2.87.86,17.24-57.43,28.15,15.44,6.48,18.33,2.83-1-6.86-19.42-28.97-15.89,23.1-31,26.11,19.67,19.2-26.82,39.8,28.31,1.74-2.45-39.79-28.3,14.22-19.86,31.32,22.16,1.73-2.45-90.69-64.16-1.73,2.45,56.92,40.27-14.21,19.85-52.91-37.63-1.74,2.45,26.76,19.03-17.33,23.26-24.42-18.4-1.81,2.4,24.43,18.41-23.36,31.35-24.08-13.21-19.19-18.72,63.14-83.91.14-.18,11.81-32.82-2.82-1.02-11.66,32.39-63.5,84.39-89.16,26.59-8.57-5.53,75.65-51,.44-.3,3.9-12.88,26.36-12.59,14.61-39.24-44.7-9.6,18.43-42.12,29.91-55.74,13.92,39.46,16.67,11.98-15.28,18.98,2.34,1.88,15.38-19.1,26.96,19.38,1.75-2.44-45.31-32.57-15.87-44.98-32.95,61.4-238.98,137.38.75,1.3-1.46.33,15.4,69.39-23.93,6.37-5.27-26.72-50.05,10.69,6.26,27.61-11.96,2.81-7.91,51.78-.02,23.07h47.62l13.7-8.68-1.38-6.25,23.36-6.48-13.75-64.87,45.45-12.1,9.87,40.91,2.92-.7-10.22-42.38-3.12-14.13,12.7-4.32,68.98-70.59,29.02-2.83,23.56,38.28-27.28,18.39-32.32,18.99-48.07,86.05h-14.95v3h16.71l48.53-86.88,30.86-18.13,10.86,7.01,90.11-26.87,19.8,19.31ZM1432.18,601.42l23.69,16.85-17.41,24.31-23.67-17.83,17.38-23.33ZM1360.3,530.87l-12.98,34.85-24.78,11.84-24.64-30.85,14.05-10.59.31-.24,6.13-14.02,41.9,9ZM1099.05,614.64l17.5-10.06,16.18,73.31-18.54,4.94-15.14-68.19ZM1035.63,676.24l44.1-9.42,4.71,23.88-43.23,10.16-5.58-24.62ZM1021.4,756.47l7.59-49.66,9.54-2.24-2.1,71.63h-15.03v-19.73ZM1074.8,762.14l1.54,6.97-11.19,7.09h-25.72l1.36-46.38,27.44-3.73,22.56-5.38,4.71,22.24-22.22,5.59.73,2.91,22.11-5.56,2.07,9.77-23.39,6.49ZM1090.16,717.77l-22.41,5.35-26.87,3.66.67-22.92,43.48-10.21v.05s.03,0,.03,0l5.1,24.08ZM1143.91,657.58l-11.71,3.98-12.92-58.55,51.15-29.41,21.15,35.2-47.67,48.78ZM1213.15,586.72l-19.41,19.86-20.71-34.48,160.47-92.25-23.67,54.11-66.06,49.77-30.62,2.99ZM1246.33,585.56l49.17-37.04,24.95,31.23-3.56,11.74-47.29,31.88-23.27-37.81Z" /> + <polygon + className="cls-6" + points="1301.16 1029.58 1278.08 1034.55 1274.69 1015.79 1279.88 969.16 1338.24 965.62 1343.54 839.94 1312.28 837.71 1312.07 840.7 1340.42 842.72 1335.36 962.79 1280.22 966.13 1282.56 945.09 1290.63 879.19 1290.65 879.02 1284.55 815.27 1318.49 812.58 1318.25 809.59 1281.28 812.52 1287.63 878.98 1279.58 944.75 1271.69 1015.67 1271.66 1015.89 1279.59 1059.73 1282.54 1059.2 1278.62 1037.5 1301.79 1032.51 1301.16 1029.58" /> + <rect + className="cls-6" + x="1419.78" + y="394.48" + width="97.14" + height="3" + transform="translate(-6.68 766.28) rotate(-29.19)" /> + <path + className="cls-6" + d="M2141.01,336.31l33.14-47.38-89.12-53.09-26.49,6.26-21.38-15.42-3.17-2.35,11.8-9.4-1.87-2.35-14.85,11.83.29.22-20.39,24.47v9.92l47.55,22.54,6.69-9.86-38.11-18.92,6.47-8.8-9.42-6.02,9.61-11.53,3.61,2.68,22.5,16.24,26.65-6.29,85.31,50.82-30.39,43.45h-65.32l-49.13-21.89-.18-.08-38.85-6.34-17.66-10.71-1.55,2.56,17.91,10.86.25.15,39.04,6.37,49.54,22.07h67.52ZM2027.27,244.77l-6.69,9.1,38.22,18.98-3.31,4.88-43.51-20.63v-6.93l8.25-9.91,7.04,4.5Z" /> + <polygon + className="cls-6" + points="2123.83 142.24 2121.66 144.31 2135.13 158.42 2111.05 184.5 2118.46 191.63 2091.9 218.99 2066.07 195.47 2064.05 197.69 2092.03 223.16 2122.71 191.56 2115.24 184.38 2139.24 158.38 2123.83 142.24" /> + <path + className="cls-6" + d="M1810.66,55.84l34.22,27.7,231.44-59.7-.75-2.9-229.98,59.32-33.57-27.17-50.35-12.47,11.59-43.74-2.9-.77-11.86,44.78-6.95,6.17-19.87-27.49-2.43,1.76,20.04,27.73-23.68,21.03-48.96,36.75,1.43.49-8.12,38.91-26.49-7.98-.87,2.87,26.55,8-7.54,21.02-41.24-12.83-.89,2.87,41.11,12.79-7.31,20.36-39.64-11.87-.86,2.87,39.49,11.82-15.92,44.36-3.89,12.66-32.3-8.55-.77,2.9,32.18,8.52-6.77,22.02-7.81,20.69-33.49-8.33,4.62-11.63-2.79-1.11-5.89,14.82,39.41,9.81,8.32-22.03,74.94,15.49-2.62,19.4h-.07s-2.02,23.68-2.02,23.68l-28.81-.91-5.8,41.61-60.35-22.02,7.53-29.12,14.4,4.07-7.41,25.88,2.88.83,8.23-28.77-20.25-5.72-13.55,52.36-153.76,63.23,1.14,2.78,21.48-8.83,25.15,56.57,69.05-26.32-1.07-2.8-21.97,8.37-24.59-54.98,85.08-34.99,31.93,67.34-61.04,27.48,1.23,2.74,61.87-27.86,18.61,6.8,20.04-4.63,11.8,41.26,2.88-.82-11.76-41.11,42.99-9.92,20.93,90.65-43.15,10.32,3.78,14.78-35,51.63-12.85-9.3-20.44-18.68-11.45,11.89-22.49,22.03-22.19-19.6-1.99,2.25,22.03,19.45-33.06,32.38,2.1,2.14,33.22-32.53,110.56,97.63,1.99-2.25-27.81-24.56,18.5-23.74-2.37-1.84-18.38,23.6-23.14-20.43,19.7-23.14-2.29-1.95-19.66,23.1-15.4-13.6,26.18-38.61,82.16,59.46,1.76-2.43-82.24-59.51,35.81-52.82-3.36-13.13,18.69-4.47,5.6,31.85,23.47-4.07,3.3,14.28-23.29,35.69,2.51,1.64,23.64-36.23.35-.53-11.19-48.46,45.31-10.84,6.48,26.2,33.23-8.31-6.5-25.84,21.67-5.19-13.94-54.27-2.91.75,6.25,24.32-18.56,4.62-15.79-62.74,103.78-23.96,9.02,36.72,2.91-.71-4.89-19.9,28.99-2.48,1.78,14.78,2.98-.36-1.91-15.86,6.09-16.25,13.9,4.44.91-2.86-24.37-7.78,7.17-22.02-2.85-.93-7.38,22.64-30.16,6.96-9.36-38.12,1.58-29.38,25.07,2.08-4.08,31.79,2.98.38,4.1-31.93,35.65,2.95.25-2.99-124.48-10.3v-39.08l30.12-90.69.67-1.57,88.73,30.55,10.09-31.97-2.86-.9-9.16,29.03-56.96-19.61,9.24-29.06-2.86-.91-9.22,28.99-25.82-8.89,26.75-62.48,13.14-15.33,25.76,4.04-19.5,56.77,2.84.97,20.66-60.16-30.95-4.85-14.53,16.95-28.81,67.3-30.26,91.1-.08.23v42.32l22.01,1.82v22.07h3v-21.82l35.51,2.94-1.6,29.91,9.46,38.52-103.79,23.96-11.01-43.77-32.83,9.89,10.61,41.55-43.54,10.05-9.63-41.71-.18-.79-40.14-14.65,5.52-39.58,82.68,2.62-1.27,32.54,3,.12,1.27-32.56,27.63.88,2.65,13.1,2.94-.6-3.12-15.43-29.98-.95.77-19.87-55.28-5.4,2.58-19.08,27.19,5.62.61-2.94-27.39-5.66,4.61-34.1,5.95-20.19,20.62,6.03.84-2.88-20.62-6.03,5.04-17.12,55.58,20.25,23.98-70.04,27.66,8.93,10.8-32.55-2.85-.95-9.87,29.73-24.78-8,10.31-30.11-2.84-.97-10.33,30.16-34.25-11.06-.92,2.86,34.2,11.04-6.34,18.53-66.69-23.58-8.23,28.04,65.39,23.37-7.1,20.74-83.8-30.54,16.97-57.96,14.1,3.94,7.42-25.8,19.96,6.81,5.86-16.01-2.82-1.03-4.85,13.26-17.32-5.91,8.88-30.86,28.58-16.23,16.87,12.31-11.75,35.48,2.85.94,12.43-37.56h-.02s10.29-33.33,10.29-33.33l11.35,2.81ZM1632.24,649.59l-37.28-32.92,22.37-21.91,9.45-9.82,17.18,15.7-9.56,9.41,2.11,2.14,9.78-9.63,11.97,8.66-26.01,38.37ZM1930.39,391.27l8.65,2.76-5.84,15.56-29.95,2.57-3.4-13.84,30.54-7.05ZM1531.51,471.13l-41.62,15.86-23.96-53.9,41.03-16.87,24.55,54.9ZM1647.62,453.47l-17.77-6.49-32.7-68.96,4.54-17.56,60.68,22.14-4.83,34.65,9.1,31.83-19.03,4.39ZM1741.91,564.93l-20.36,3.53-5.11-29.08,18.55-4.44,6.92,29.99ZM1737.23,531.32l-5.39-23.33,44.79-11.16,5.86,23.66-45.26,10.83ZM1779.55,496.1l27.21-6.78,6.02,23.92-27.36,6.55-5.86-23.69ZM1819.29,539.11l-27.4,6.85-5.76-23.25,27.38-6.55,5.78,22.96ZM1828.25,483.97l6.19,24.09-18.74,4.48-6.03-23.94,18.58-4.63ZM1806.03,486.42l-27.2,6.77-5.34-21.59-10.64-41.65,27.38-6.32,15.8,62.79ZM1752.19,388.21l27.07-8.15,10.23,40.66-27.39,6.32-9.92-38.83ZM1759.92,430.62l10.65,41.7,5.34,21.59-44.75,11.15-14.86-64.37,43.61-10.07ZM1703.27,397.52l9.45,40.92-43.14,9.96-8.97-31.37,4.65-33.38,38.01,13.87ZM1753.99,340.65l-53.59-1.7,1.75-20.5,52.5,5.13-.66,17.07ZM1721.05,189.53l6.54-22.28,63.73,22.53-7.58,22.16-62.68-22.4ZM1680.95,108.32l23.35,7.96,1.99,28.73-3.28,11.2-30.17-9.09,8.11-38.8ZM1672.04,150l30.13,9.08-6.36,21.71-31.32-9.75,7.55-21.04ZM1663.47,173.87l31.49,9.8-5.96,20.36-32.83-9.83,7.3-20.33ZM1689.55,207.33l9.37,3.42-5.88,18.53-21.64-6.33,5.97-19.26,12.18,3.65ZM1674.49,202.82l-5.97,19.27-20.23-5.92,6.87-19.14,19.33,5.79ZM1639.21,241.47l8.06-22.47,44.86,13.13-6.64,20.9-2.97,15-48.18-10.73,4.87-15.82ZM1633.46,260.17l21.72,4.84-3.34,17.32-23.69-4.9,5.31-17.26ZM1658.11,265.66l23.83,5.31-3.35,16.89-23.82-4.92,3.33-17.28ZM1681.54,288.46l3.33-16.85,19.92,4.44-2.27,16.75-20.99-4.34ZM1707.14,258.69l-1.95,14.39-19.74-4.4,2.93-14.82,6.63-20.88,18.14,5.31-6.01,20.41ZM1714,235.4l-18.08-5.29,5.82-18.34,17.35,6.32-5.1,17.31ZM1720.86,147.27l-11.64-3.25-1.85-26.68,20.12,6.86-6.64,23.07ZM1737.51,89.41l-9.18,31.9-45.34-15.46,44.47-33.38,23.59-20.95,15.48,21.41-29.03,16.48ZM1786.46,84.48l-16.65-12.15-16.5-22.82,6.92-6.15,36.15,8.95-9.94,32.17Z" /> + <polygon + className="cls-6" + points="1487.89 273.91 1442.96 326.27 1460.28 369.43 1463.07 368.32 1446.42 326.85 1490.17 275.87 1487.89 273.91" /> + <polygon + className="cls-6" + points="1604.61 67.27 1623.17 21.02 1620.39 19.9 1602.88 63.5 1525.08 36.77 1528.3 29.01 1525.53 27.86 1521.08 38.57 1562.03 52.64 1554.15 73.39 1536.87 67.66 1495.9 175.84 1498.71 176.91 1531.36 90.7 1563.47 102.27 1564.49 99.45 1532.42 87.89 1538.66 71.42 1568.52 81.32 1569.47 78.48 1557 74.34 1564.87 53.61 1604.61 67.27" /> + <polygon + className="cls-6" + points="1403.47 153.83 1435.2 127.05 1433.26 124.76 1401.41 151.64 1401.29 151.74 1353.41 212.93 1353.14 213.28 1346.33 292.97 1365.71 292.97 1382.25 223.4 1379.33 222.71 1363.34 289.97 1349.6 289.97 1356.05 214.43 1403.47 153.83" /> + <polygon + className="cls-6" + points="1421.6 125.22 1421.6 35.94 1418.6 35.94 1418.6 99.36 1397.07 99.36 1397.07 102.36 1418.6 102.36 1418.6 125.22 1421.6 125.22" /> + <rect + className="cls-6" + x="1370.13" + y="3.98" + width="72.46" + height="3" + transform="translate(640.52 1185.04) rotate(-57.23)" /> + <path + className="cls-6" + d="M1367.92-10.68l-89.9,90.05-32.97,17.61-5.35-16.05,81.17-92.3-2.25-1.98-81.45,92.62-21.14,6.23.85,2.88,20.17-5.94,5.33,15.98-21.43,11.45,1.41,2.65,20.98-11.21,20.29,60.82,2.85-.95-9.65-28.91,27.88-16.81-24.78-23,19.91-10.64,90.21-90.37-2.12-2.12ZM1279.74,114.92l-23.89,14.41-9.83-29.47,11.1-5.93,22.62,20.99Z" /> + <polygon + className="cls-6" + points="1905.4 707.75 1892.35 731.13 1894.97 732.59 1908.65 708.09 1937.09 672.47 1950.24 667.06 1959.49 689.92 1947.6 742.34 1950.53 743 1962.52 690.12 1962.62 689.67 1953.01 665.92 2005.21 644.45 2004.07 641.68 1951.89 663.14 1942.25 639.32 1938.57 595.17 1935.58 595.42 1939.28 639.8 1939.3 640.02 1949.11 664.28 1935.59 669.84 1935.23 669.99 1907.07 705.26 1852.65 670.29 1834.33 598.98 1831.43 599.72 1842.26 641.91 1819.42 646.6 1810.8 603.98 1807.86 604.57 1816.48 647.2 1801.01 650.38 1801.61 653.32 1843.01 644.82 1850.03 672.17 1905.4 707.75" /> + <polygon + className="cls-6" + points="1995.16 595.89 1965.21 460.43 1965.21 421.39 1962.21 421.39 1962.21 460.76 1992.23 596.53 1995.16 595.89" /> + <path + className="cls-6" + d="M1770.38,785.96l-1.8,2.4,19.07,14.33-55.22,76.47-15.3-10.3-1.68,2.49,15.22,10.24-3.67,5.09,34.22,23.85,63.17-83.99-54.01-40.58ZM1760.56,906.41l-29.35-20.45,58.83-81.47,30.15,22.65-59.63,79.27Z" /> + <polygon + className="cls-6" + points="1977.83 828.53 1911.11 858.97 1912.36 861.7 1979.57 831.03 2005.7 804.89 2003.58 802.77 1977.83 828.53" /> + <polygon + className="cls-6" + points="1980.11 1125.92 1978.58 1062.95 2012.07 1011.39 2048.18 962.01 2048.55 961.51 2040.02 908.35 2040.02 889.46 2073.63 848.77 2071.32 846.86 2037.02 888.39 2037.02 908.47 2045.39 960.75 2009.61 1009.68 2004.43 1017.66 1953.49 963.18 1951.3 965.23 2002.74 1020.25 1975.56 1062.09 1977.18 1128.8 2117.94 1134.62 2120.57 1146.95 2123.5 1146.33 2120.39 1131.72 1980.11 1125.92" /> + <polygon + className="cls-6" + points="1921.92 1014.98 1918.96 1014.46 1910.69 1061.34 1886.61 1042.62 1884.77 1044.99 1910.51 1065 1936.3 1125.39 1939.06 1124.21 1913.29 1063.88 1921.92 1014.98" /> + <polygon + className="cls-6" + points="1975.31 1157.28 1972.33 1157.69 1976.87 1191.36 1950.39 1201.59 1977.15 1261.88 1979.89 1260.67 1954.41 1203.25 1980.16 1193.31 1975.31 1157.28" /> + <rect + className="cls-6" + x="1812.81" + y="1104.44" + width="3" + height="90.35" + transform="translate(-265.45 613.04) rotate(-17.89)" /> + <path + className="cls-6" + d="M2090.19,746.53l86.99-37.82,128.07-17.43-.4-2.97-128.28,17.46-.21.03-87.76,38.15-.38.17-9.61,13.58-11.17,41.35,40.77,16.08,13.36,18.9,16.79-9.04,16.85,42.81,28.23-10.5-1.04-2.81-25.47,9.47-17.01-43.22-.16.09-9.7-18.1,85.32,36.11,1.17-2.76-88.74-37.56-.24-.45,9.65-23.17,84.64-30.81-1.03-2.82-85.26,31.04-.62.22-10.27,24.67-48.11-20.36,4.82-17.84,8.82-12.46ZM2125.65,800.87l11.46,21.39-14.62,7.88-12.34-17.47-39.11-15.42,4.73-17.49,49.89,21.11Z" /> + <polygon + className="cls-6" + points="2011.39 672.72 2032.61 670.29 2018.58 595.02 2015.63 595.57 2029.07 667.68 2011.05 669.74 2011.39 672.72" /> + <rect + className="cls-6" + x="800.76" + y="317.88" + width="3" + height="40.09" + transform="translate(-67.44 299.93) rotate(-20.34)" /> + <polygon + className="cls-6" + points="936.53 596.61 933.59 597.2 938.57 622.01 1039.7 596.45 1038.96 593.54 962.56 612.85 957 589.94 954.08 590.65 959.65 613.59 940.89 618.33 936.53 596.61" /> + <rect + className="cls-6" + x="901.21" + y="301.82" + width="3" + height="57.8" + transform="translate(-53.85 426.93) rotate(-25.86)" /> + <polygon + className="cls-6" + points="1203.55 112.96 1200.55 112.96 1200.55 147.12 1176.91 143.18 1176.17 115.42 1173.17 115.5 1173.89 142.67 1124.32 134.41 1123.83 137.37 1173.97 145.73 1175.12 188.97 1178.12 188.89 1176.99 146.23 1203.55 150.66 1203.55 112.96" /> + <path + className="cls-6" + d="M745.49,131.91l-20.33-28.79-51.13,13.63,12.36,157.77h37.28l104.38-35.94.19-.07,19.44-13.33.15-.32,9.26,1.77,13.89,25.83,113.04-48.57-10.57-47.25,17.16-10.74,22.1,17.65,37.81-30.38,17.11,29.21,2.59-1.52-17.34-29.6,32.12-25.81,20.78,39.31,2.65-1.4-21.05-39.82,28.1-22.58-13.57-26.01,69.78-39.73-1.48-2.61-72.29,41.16,13.77,26.39-25.73,20.67-50.18-94.91,57.61-40.03-1.71-2.46-59.79,41.54,51.69,97.77-70.87,56.94-21.88-17.47-20.76,12.99,10.49,46.89-108.23,46.5-12.06-22.43,70.66-21.89,21.36-26.2-2.33-1.9-20.79,25.5-71.18,22.05-8.84-1.69,10.61-22.61-7.19-12.73,63.12-8.1,30.79-12.35-1.12-2.79-29.2,11.71-24.17-63.22,26.66-11.57-1.19-2.75-29.29,12.72,25.06,65.54-62.26,7.98-15.57-27.55-44.11-5.53-12.69-30.49-2.77,1.15,13.36,32.09,44.34,5.56,22.85,40.44-10.28,21.9-72.68-13.92-.56,2.95,71.08,13.61-17.06,11.7-80.43,27.69-6.57-18.56,12.03-3.32-15.17-59.62,24.4-2.19-.27-2.99-78.58,7.06-2.95-37.65,66.14-14.32ZM748.29,239.52l-22.26,6.15-15.48-61.31,23.18-2.08,14.56,57.24ZM707.53,184.63l16.35,64.74,13.11-3.62,6.63,18.74-20.44,7.04h-34l-6.63-84.65,24.98-2.25ZM677.22,119.01l46.7-12.45,16.51,23.38-61.31,13.28-1.9-24.21Z" /> + <path + className="cls-6" + d="M158.38,367.65l-.63-2.93-44.22,9.47-35.43-2.13-3.88,19.97-.59-.04-.24-.02-65.15,16.49-37.32-12.58-10.15,11.2,2.22,2.02,8.83-9.74,36.29,12.23,39.82-10.08-14.45,58.93,2.91.71,14.83-60.48,22.4-5.67-15.63,80.45,2.95.57,15.7-80.83,30.57,2.05-21.21,93.63,2.93.66,21.32-94.09,24.19,1.62.2-2.99-23.72-1.59,3.97-17.52,43.48-9.31ZM77.24,392.23l3.31-17.02,31.25,1.88-3.89,17.19-30.66-2.05Z" /> + <polygon + className="cls-6" + points="234.4 377.06 232.17 355.38 313.13 337.88 312.49 334.94 228.91 353.01 231.11 374.34 145.88 381.94 146.14 384.93 234.4 377.06" /> + <path + className="cls-6" + d="M1009.22,383.66l2.83-.99-41.27-117.75-2.83.99,11.41,32.56-19.61,7.66-12.42-31.82-2.79,1.09,12.42,31.82-17.01,6.65-12.09-32.78-2.81,1.04,28.37,76.89,2.81-1.04-8.89-24.1,17.79-5.73,10.92,27.99-19.42,9.15,1.28,2.71,19.24-9.06,11.47,29.39,2.79-1.09-11.54-29.58,17.38-8.18,11.99,34.2ZM980.35,301.3l5.91,16.88-19.38,6.24-6.05-15.5,19.51-7.62ZM946.29,331.06l-5.3-14.38,17.06-6.67,5.98,15.33-17.74,5.72ZM978.76,354.85l-10.78-27.63,19.28-6.21,8.98,25.61-17.47,8.23Z" /> + <polygon + className="cls-6" + points="1042.14 616.1 1041.22 613.25 1023.81 618.86 1009.84 633.14 947.79 650.4 947.52 650.48 934.41 660.33 895.65 669.78 895.45 669.83 871.15 683.24 872.6 685.87 896.55 672.65 935.72 663.09 948.87 653.22 974.62 646.05 977.61 660.74 980.55 660.14 977.52 645.25 1009.64 636.31 1013.93 649.74 1016.79 648.82 1012.34 634.88 1025.44 621.48 1042.14 616.1" /> + <path + className="cls-6" + d="M811.57,866.94l93.02-88.15-2.06-2.18-44.42,42.1-30.15-29.67,37.43-37.82,20.52-10.04-1.32-2.7-20.74,10.15-.23.11-68.32,69.03,25.39,94.78-42.56,20.49,1.3,2.7,44.8-21.57-12.66-47.23ZM825.85,791.17l30.08,29.61-45.24,42.87-12.05-44.99,27.21-27.49Z" /> + <polygon + className="cls-6" + points="969.41 1011.25 953.34 1038.66 953.34 1064.27 944.29 1085.83 947.05 1086.99 956.34 1064.87 956.34 1039.47 972 1012.77 969.41 1011.25" /> + <polygon + className="cls-6" + points="963.49 1085.4 1076.01 1117.36 1076.01 1052.01 1073.01 1052.01 1073.01 1113.39 962.4 1081.98 957.02 1088.64 959.35 1090.52 963.49 1085.4" /> + <polygon + className="cls-6" + points="587.28 1240.42 562.36 1217.48 573.29 1207.77 571.3 1205.53 560.14 1215.44 553.88 1209.67 566.61 1201.63 565.01 1199.1 548.96 1209.22 587.42 1244.63 598.96 1232.47 596.79 1230.4 587.28 1240.42" /> + <path + className="cls-6" + d="M1715.13,1336.41h-22.92l-22.57,15.42-34.27-5.95-.26-.05-58.65,10.49-19.82-22.55h-11.75v3h10.39l20.04,22.8,10.46-1.87-.98,10.68,102.59,32.41,1.04.33,10.56-14.65h62.17v-29.49l-45.72-20.42-.29-.13ZM1758.15,1383.46h-60.71l-10.19,14.13-99.25-31.36.84-9.09,46.27-8.27,35.21,6.12,22.81-15.58h21.36l43.65,19.5v24.55Z" /> + </g> + <g + id="größere_Straßen"> + <path + className="cls-4" + d="M1886.91,1046.69l35.82-29.97,131.24-207.46.17-.27,35.42-97.4,60.09-40.06,126.74-16.71-.78-5.95-127.43,16.8-.69.09-20.81,13.87-24.65-35.36v-25.38l-18.09-35.4-56.93,6.12-12.78-107.81-9.89-33.69-38.06-28.55-15.92-50.08,31.63-13.38,39.49,50.7,61.41,27.59,41.6,50.77h60.7v-6h-57.86l-40.69-49.66-61.34-27.56-41.41-53.16-32.94,13.94,15.65-66.32,31.52-93.12,43.82,15.07,1.67.58,85.49-77.35-13.64-90.5-39.23-36.43-19.29-63.66-5.74,1.74,19.76,65.21,38.88,36.1,12.85,85.25-80.48,72.81-284.67-97.88-50.99-79.89-5.06,3.23,51.55,80.77.56.88,17.83,6.13-42.97,135.62-127.93-32.58-1.48,5.81,128.55,32.74,6.63,114.04-65.86-10.54-98.16-29.05-77.41-67.19,31.82-59.69,35.51,8.92-12.76,39.51,5.71,1.84,14.73-45.61-40.76-10.24,114.68-308.91-5.62-2.09-94.37,254.19-74.77-26.62,35-92.13,25.38-3.75-.88-5.94-27.05,4-54.88,5.26h-58.26l-19.27,6.09-23.76,24.97-18.33,7.58-12.89,43.59-51.21,43.19,10.73,33.31-45.72-4.96-67.31-1.06-26.36,7.38-21.12-47.52,54.25-26.19,56.62-5.17-.54-5.97-57.16,5.21-.54.05-149.59,72.22-60.8-11.17-43.13-101.93-171.12,58.16,70.05,177.43-39.65,21.74-320.68,15.07-1.79.08-30.47,63.71-114.1,43.05-19.23,47.81-127.16,49.19-36.34-32.71,17.75-117.29,23.93-29.51-9.46-40.78,161.67-39.59-1.43-5.83-161.6,39.57-31.15-134.22-.06-.25L58.01,41.35l18.23-75.51-5.83-1.41-18.69,77.42,61.84,148.22,41.25,177.75-23.11,28.5-17.41,115-35.31-31.77-25.68-9.19-160.87-116.05-3.51,4.87,161.22,116.3.34.25,25.37,9.08,76.99,69.29,14.52,34.32,47.05,97.41,20.3,44.69-107.23,54.02-81.75,42.53H-3.74l-37.9-15.9-.28-.12-78.58-15.51-1.16,5.89,77.98,15.4,38.73,16.25h44.23l-76.47,77.32h-64.67v6H-34.68l82.95-83.87,81.95-42.63,105.42-53.11v99.27l28.25,174.05,8.32,30.04,42.62,48.12,64.83,23.33,50.25,35.33,33.21,20.81,56.74,16.51,30.02-11.01,13.46,28.96,195.7,189.63-71.71,109.32,5.02,3.29,74.43-113.46-.1-.1,87.05-151.25.19-.34,5.52-20.42,128.2,26.82,55.17-18.39,62.35-87.82,129.86,64.86v69.63l-40.31,53,13.16,76.95,5.91-1.01-12.72-74.38,39.96-52.53v-70.98l49.58-8.57,165.8-96.27,74.58-15.91,201.24-21.2,12.91,29.97v110.24l27.1,48.39-17.68-12.07h-67.14l-125.58,39.49-.75.24-32.75,34.91,4.38,4.11,31.68-33.76,123.96-38.98h64.37l26.12,17.83,2.02,3.6.65-.95,69.92,72.56,57.68,114.96,5.36-2.69-57.89-115.36-.21-.41-71.41-74.1,77.48-112.91,42.61-11.57,28.56,24.01h36.74l-.15.91,59.4-13.56,92.96,1.81,75.22-26.69-2.01-5.65-74.2,26.33-92.24-1.8h-.37s-51.46,11.74-51.46,11.74l4.64-29-51.57-3.22-63.92-2.39-28.29-12,6.1-55.79,42.46-4.47ZM1735.95,1056.56l-54.51-126.56,112.68-175.71,27.83,20.5,86.78,86.78v26.71l-37.39,49.54.94,44.2-32.23,63.56-104.1,10.97ZM1283.9,767.71l-3.73,43.19h-29.13l-31.21,84.53-28.89-3.75,19.45-127.34,73.52,3.37ZM1190.02,897.61l33.77,4.39,31.42-85.1h30.45l4.23-48.91,38.12,1.75.27-5.99-37.87-1.74.76-8.83,24.55-32.49h63.4l112.72-58.23-11.81,44.91v67.8l-19.3,49.38,27.6,80.47-9.92,48.05,6.69,22.77-41.23,12.56-.33.1-94.44,54.6-134.83,26.38-36.61-60.75v-30.26l12.35-80.87ZM1490.85,974.09l-6.25-21.28,9.94-48.19-27.42-79.94,18.91-48.39v-68.16l35.04-133.3.04-.17,7.97-55.86,60.21,54.54-50.43,47.75,26.95,58.7,11.72,86.53,36.17,49.16,59.83,112.13-104.98,22.79-.12.03-77.59,23.64ZM1861.02,349.54l-32.96-13.34-87.89,43.61-6.49-111.69,133.72,21.63,92.59,8.49-15.6,66.09-83.38-14.79ZM1828.31,342.78l31.04,12.56,85,15.08,15.52,48.83-199.24,49.44-19.72-82.54,87.4-43.37ZM1786.4,602.33l-139.9-75.27,31.99-30.55,77.74-20.5,30.18,126.32ZM1991.31,599.17l22.8,97.6v63.57l-71.61-22.92-25.51,8.14-34.42,42.93-22.2-6.2-10.88,11.55-23.45-23.45-.16-.16-55.24-40.7-41.44-37.54,37.47-41.93.48-.54,11.66-44.47,9.45,5.09,15.82,66.22,5.84-1.39-15.42-64.53,64.16-13.42,132.65,2.15ZM1641.93,531.41l131.44,70.72-11.66,44.47-36.96,41.36-126.63-114.72,43.81-41.84ZM1720.75,692.44l-104.27,116.7-33.2-45.12-11.57-85.46-.06-.44-25.53-55.61,47.65-45.12,126.99,115.04ZM1619.89,814.33l105.31-117.86,41.52,37.61.11.1,22.45,16.54-110.99,173.07-58.41-109.46ZM2096.03,620.34v25.82l25.65,36.8-37.09,24.72-35.87,98.64-130.57,206.39-33.69,28.2-37.3,3.93,31.15-61.44-.93-43.62,37.35-49.49v-31.21l-61.01-61.01,8.51-9.04,22.53,6.29,35.76-44.61,21.96-7,77.61,24.84v-72.48l-22.71-97.25,83.08-8.93,15.56,30.44ZM2008.3,482.76l12.74,107.49-27.48,2.95-135.14-2.19h-.33s-64.98,13.59-64.98,13.59l-31.08-130.09,201.02-49.88,36.1,27.08,9.16,31.05ZM1992.44,201.33l-30.82,91.04-93.36-8.55-133.88-21.66,42.74-134.87,215.33,74.04ZM1539.66,157.75l-19.32,52.04-32.18,60.37-45.26-39.28,10.83-14.01,4.04-67.12,7.08-18.64,74.81,26.64ZM1419.62,251.16l-37.33-30.76-37.2-13.07,40.33-80.79,73.39,3.55-6.82,17.95-.16.43-3.98,66.19-28.23,36.5ZM1444.69,38.94l50.59-4.84-34.23,90.09-72.71-3.51,11.85-23.73-9.89-58.01h54.38ZM1267.78,160.35l49.5-41.75,12.59-42.56,16.86-6.98,23.57-24.78,14.07-4.44,9.58,56.19-54.57,109.3-24.94-8.76-.32-.11-36.03-4.07-10.32-32.04ZM1159.3,191.66l66.02,1.02,50.17,5.45h0s37.28,4.21,37.28,4.21l66.52,23.37,36.65,30.2-13.74,17.76-34.92,24.83h-39.67l-78.93,28.46-92.84,20.72-22.02-148.89,25.47-7.13ZM875.6,322.32l40.4-37.61,141.22-44.53,51.73-34.41,19.06-5.34,21.98,148.57-182.65,40.76-10.83-36.04h-174.63l-7.86-19.51,39.34-21.58,62.23,9.68ZM906.79,80.05l42.21,99.77,65.91,12.11,90.73-43.8,20.69,46.54-19.91,5.58-51.81,34.46-141.05,44.48-.65.2-39.26,36.55-58.67-9.13-68.07-172.44,159.88-54.33ZM172.86,585.98l-13.54-32.01,128.42-49.68,19.22-47.79,112.76-42.55,1.13-.42,29.96-62.65,317.45-14.92,9.57,23.76h174.21l11.15,37.11,188.18-42,49.32,146.97,5.69-1.91-49.12-146.37,92.93-20.74.19-.04,78.3-28.23h36.18l-6.91,56.03,22.53,45.17,5.37-2.68-21.73-43.56,6.94-56.29,35.35-25.13,32.81-42.42,127.55,110.71.49.43,99.59,29.48.19.05,67.95,10.87,19.83,83-78.62,20.73-.75.2-81.79,78.11-64.26-58.22-.77-1.72,41.29-17.62-2.36-5.52-41.39,17.67-59.5-132.74-5.48,2.45,59.45,132.65-8.53,3.64h-80.27v6h81.5l9.76-4.17.72,1.6-8.59,60.25-21.33,81.15-116.23,60.04h-64.93l-27.39,36.25-.93,10.79-96.55-4.42-4.46,53.53-32.72-.76-4.49-84.2,12.83-11.57,76.18-111.64,14.3-19.46-54.43-82.89-5.02,3.29,52.14,79.4-11.86,16.14-75.87,111.18-45.58,41.11-12.82,24.49-15.42-8.12-43.27-195.43,71.03-18.24-1.49-5.81-320.95,82.4-1.19.3-10.9,18.07-30.14,4.83-24.46-5.18-43.97,13.43-141.09-13.32-.41-.04-71.95,13.07-.16.03-221.42,66.31-20.44-44.99-46.99-97.27ZM1144.81,812.43l-60.29,132.97-.39.87,17.06,88.01v14.72h-72.82l-72.27-50.97,107.74-147.62,49.89-95.25,26.75-24.13,4.34,81.4ZM907.43,1071.4l19.26-33.09,25.86-35.44,73.91,52.12h74.72v76.51l-193.75-60.11ZM893.83,1082.85l-39.38-24.21,2.24-16.8,42.33,32.1-5.19,8.91ZM683.71,736.71l-4.92-69.31,40.77-12.45,24.03,5.09,33.99-5.44,11.07-18.35,54.13-13.9,11.86,58.84,14.49,5.54,3.6,26.12,32.46,76.4,73.99,43.91-90.45,87.36-45.64,23.8-30.89,42.11-21.7-25.78-43.89-134.29-6.53-51.69-25.89-15.91v-30.4l-30.48,8.35ZM1031.58,573.87l43.83,197.95,17.89,9.42-34.45,65.82-13.44,18.41-135.46-80.38-31.38-73.86-3.98-28.85-14.72-5.63-11.27-55.91,182.97-46.98ZM847.11,948.98l44.79-23.35.38-.2,92.25-89.11,57.32,34.02-120.11,164.57-13.03,22.37-25.54-19-8.53,9.65-29.49-22.36-28.98-34.43,30.93-42.16ZM879.45,1051.57l4.58-5.18,21.66,16.11-3.63,6.23-22.62-17.15ZM848.31,1236.91l-86.1,149.6-193.91-187.91-15.32-32.96-33.35,12.23-54.04-15.73-32.3-20.23-50.84-35.75-64.14-23.08-40.68-45.93-7.83-28.23-28.15-173.41v-101.42l221.47-66.33,70.98-12.9,138.74,13.1,5.42,76.46,29.95-8.21v25.89l26.3,16.16,6.25,49.4,44.43,135.94,55.62,66.09.22.26,10.19,7.72-3.21,24.04,42.82,26.33-4.18,7.17-38.32,141.69ZM1039.03,1222.16l-51.77,17.26-126.27-26.42,31.22-115.45,12.12-20.82,195,60.5-60.3,84.94ZM1530.16,1078.25l-75.98,16.19-165.69,96.21-50.03,8.65-131.28-65.56v-100.02l-16.8-86.7,59.38-130.96,39.16.91,4.45-53.4,10.98.5-32.64,213.73-.03,32.6,39.64,65.77,139.45-27.28.49-.1,94.71-54.75,124-37.77,106.32-23.09,53.43,124.04-199.54,21.02ZM1971.26,1154.48h-33.31l2.45-26.51,34.76,2.17-3.89,24.34ZM1930.25,1127.34l4.15.26-2.21,23.9-25.73-21.64-47.77,12.97-77.38,112.77-30.22-53.96v-95.18l83.32,5.35,30.89,13.1,64.94,2.43ZM1832.45,1105.67l-81.36-5.23v-8.72l-12.66-29.39,99.91-10.53-5.89,53.86Z" /> + </g> + <g + id="Autobahn_große_Straße"> + <path + className="cls-5" + d="M2103.99,861.1l-482.61-312.94-47.17-61.71-67.13-145.49,28.43-25.99,18.01-43.36,37.23,14.67,34.49-124.18,61.86-54.13,21.97-68.1,105.47-66.33-6.39-10.16-105.22,66.17-116.44-26.36-47.2,14.85,32.2-113.21-11.54-3.28-38.29,134.62,65.34-20.56,109.3,24.75-19.6,60.77-62.06,54.3-31.89,114.8-35.8-14.1-21.5,51.79-65.1,59.54-52.27,30.93h-26.88l-63.96,47.18-55.64-85.52-14.15-71.82-15.41-88.08-4.43-89.73-13.72-64.03-25.93-28.29-106.58-71.21-6.67,9.98,105.38,70.41,22.75,24.82,12.83,59.89,4.42,89.5,15.55,88.88,14.63,74.29,56.35,86.61-204.94,79.58v72.85l-45.19,30.81-103.77,26.5-106.92,61.26-.62.36-105.01,99.48-33.28,17.17-170.6,67.39c1.52-6.43,2-13.85-1.47-19.27-2.05-3.19-6.25-6.97-14.61-6.76-4.69.11-8.21,1.43-10.84,3.17l-7.79-116.32-52.87-164.95-126.77-264.54L302.07,8.79l-.04-.74-23.33-74.23-11.45,3.6,22.89,72.83,19.98,330.77,127.43,265.92,52.17,162.77,7.99,119.34c-3.4-1.86-7.32-2.8-11.62-2.76-7.72.1-11.78,3.9-13.82,7.08-6.46,10.04-1.32,27.98,2.26,37.66l-167.18,66.04-49.15,6.41L2.26,949.7l-79.69-49.24-6.31,10.21L-2.26,961.01l258.99,54.43,1,.21,52.64-6.87,162.71-64.28c-1.12,6.74-.36,12.23,2.29,16.34,2.13,3.32,6.52,7.27,15.3,7.27h0c1.52,0,2.99-.24,4.4-.69l-6.32,53.65-48.7,101.54-69.65,95.63-59.87,51.61-100.22,52.2-.61.32-124.47,106.54,7.8,9.12,123.42-105.64,100.23-52.2.62-.32,61.45-52.97.52-.45,71.11-97.64,50.04-104.33,7.78-66.03c3.31,2.38,8.09,4.26,14.99,4.26.58,0,1.18-.01,1.79-.04,6.99-.31,10.59-3.93,12.38-6.91,3.46-5.76,3.42-14.39-.14-26.37-1-3.37-2.13-6.48-3.12-8.99l177.44-70.09,35.6-18.34,105.2-99.67,104.88-60.09,104.23-26.61,52.17-35.57v-70.98l199.63-77.52.81,1.25.86-.63,18.31,19.27,90.81,34.84-19.75,51.23-52.17,81.92-22.37,82-.04.14-31.01,140.66-.17.77,4.44,99.91-13.38,125.97,12.1,32.67,217.52,184.23,17.22,23.3v25.3l-19.84,37.47-4.5,83.33,11.98.65,4.35-80.69,20-37.77v-32.23l-20.4-27.6-216.18-183.09-10.03-27.08,13.18-124.07-4.41-99.24,30.78-139.6,21.85-80.1,51.83-81.4,22.63-58.69,8.1-75.2-27.04-33.05,48.74-28.85,30.26-27.67,65.81,142.62.28.6,49.24,64.42,483.11,313.27,91.33,97.93,8.78-8.18-91.83-98.47-.5-.54ZM514.45,895.26c.88-1.19,2.36-2.57,6.04-2.65,2.25-.03,3.67.37,4.23,1.24,1.35,2.1.97,9.52-2.96,18.53l-8.93,3.53c-1.25-7.2-1.58-16.32,1.62-20.65ZM482.36,899.86c.32-.5.98-1.53,3.87-1.56,3.42-.04,6.04.96,8.13,3.17,2.61,2.75,4.09,7,4.92,11.19l.56,8.38-14.13,5.58c-3.49-9.68-6.27-22.21-3.35-26.76ZM490.68,956.12h0c-2.7,0-4.46-.59-5.21-1.76-1.93-2.99-.45-10.2,1.46-15.32l11.6-4.58c-.69,8.29-2.54,17.33-5.84,20.69-.84.86-1.46.98-2,.98ZM527.11,949.56c-.21.35-.61,1.01-2.64,1.1-7.97.35-10.1-2.54-10.8-3.49-3.28-4.45-2.18-12.93-.87-18.36l10.23-4.04c4.97,12.38,5.7,22.1,4.08,24.79ZM1426.72,504.4l-86.6-33.23-15.41-16.22,60.43-44.58h21.74l26.48,32.37-6.64,61.67Z" /> + </g> + <g + id="Standorte"> + <Parish href="/gemeinde/hl-antonius-frankenberg" ariaLabel="St. Antonius Frankenberg" transform="matrix(1.6711957,0,0,1.6711957,-1341.8788,-19.079785)"> + <path + className="cls-1" + d="m 2077.41,-72.94 -2.93,-0.62 -26.15,122.88 -84.67,1.52 v -4.07 c 0,-6.6 -5.4,-12 -12,-12 h -186.29 c -6.6,0 -12,5.4 -12,12 v 10.79 c 0,6.6 5.4,12 12,12 h 186.29 c 6.6,0 12,-5.4 12,-12 v -3.72 l 87.11,-1.58 26.64,-125.18 z" /> + <path + className="cls-3" + d="m 1776.02,48.28 c -0.05,0.08 -0.1,0.14 -0.15,0.18 -0.05,0.04 -0.12,0.06 -0.21,0.06 -0.09,0 -0.2,-0.04 -0.32,-0.14 -0.12,-0.09 -0.27,-0.19 -0.46,-0.3 -0.18,-0.11 -0.41,-0.21 -0.66,-0.3 -0.26,-0.09 -0.57,-0.14 -0.94,-0.14 -0.35,0 -0.65,0.05 -0.92,0.14 -0.27,0.09 -0.49,0.22 -0.67,0.38 -0.18,0.16 -0.31,0.35 -0.4,0.56 -0.09,0.22 -0.14,0.45 -0.14,0.7 0,0.32 0.08,0.58 0.24,0.79 0.16,0.21 0.37,0.39 0.62,0.54 0.26,0.15 0.55,0.28 0.88,0.39 0.33,0.11 0.66,0.22 1.01,0.34 0.35,0.12 0.68,0.25 1.01,0.4 0.33,0.15 0.62,0.33 0.88,0.56 0.26,0.23 0.47,0.5 0.62,0.82 0.16,0.33 0.24,0.72 0.24,1.2 0,0.5 -0.09,0.97 -0.26,1.41 -0.17,0.44 -0.42,0.82 -0.75,1.15 -0.33,0.33 -0.73,0.58 -1.21,0.77 -0.48,0.19 -1.02,0.28 -1.63,0.28 -0.74,0 -1.42,-0.13 -2.03,-0.4 -0.61,-0.27 -1.13,-0.63 -1.56,-1.09 l 0.45,-0.74 c 0.04,-0.06 0.09,-0.11 0.16,-0.15 0.07,-0.04 0.13,-0.06 0.2,-0.06 0.11,0 0.24,0.06 0.38,0.18 0.14,0.12 0.32,0.25 0.54,0.4 0.22,0.14 0.48,0.28 0.78,0.4 0.31,0.12 0.68,0.18 1.12,0.18 0.37,0 0.7,-0.05 0.98,-0.15 0.29,-0.1 0.53,-0.24 0.73,-0.43 0.2,-0.19 0.35,-0.4 0.46,-0.66 0.11,-0.26 0.16,-0.54 0.16,-0.86 0,-0.35 -0.08,-0.63 -0.24,-0.85 -0.16,-0.22 -0.36,-0.41 -0.62,-0.56 -0.26,-0.15 -0.55,-0.28 -0.88,-0.38 -0.33,-0.1 -0.66,-0.21 -1.01,-0.32 -0.35,-0.11 -0.68,-0.24 -1.01,-0.38 -0.33,-0.14 -0.62,-0.33 -0.88,-0.56 -0.26,-0.23 -0.46,-0.52 -0.62,-0.86 -0.16,-0.34 -0.24,-0.77 -0.24,-1.28 0,-0.41 0.08,-0.8 0.24,-1.18 0.16,-0.38 0.38,-0.71 0.68,-1.01 0.3,-0.3 0.67,-0.53 1.11,-0.7 0.44,-0.17 0.95,-0.26 1.52,-0.26 0.64,0 1.22,0.1 1.75,0.3 0.53,0.2 0.99,0.5 1.38,0.88 l -0.38,0.74 z" /> + <path + className="cls-3" + d="m 1780.86,58.08 c -0.64,0 -1.13,-0.18 -1.48,-0.54 -0.34,-0.36 -0.52,-0.87 -0.52,-1.54 v -4.96 h -0.98 c -0.08,0 -0.16,-0.03 -0.22,-0.08 -0.06,-0.05 -0.09,-0.13 -0.09,-0.24 v -0.57 l 1.33,-0.17 0.33,-2.5 c 0.01,-0.08 0.04,-0.15 0.1,-0.2 0.06,-0.05 0.13,-0.08 0.22,-0.08 h 0.72 v 2.79 h 2.32 v 1.03 h -2.32 v 4.86 c 0,0.34 0.08,0.59 0.25,0.76 0.17,0.17 0.38,0.25 0.64,0.25 0.15,0 0.28,-0.02 0.39,-0.06 0.11,-0.04 0.2,-0.08 0.28,-0.13 0.08,-0.05 0.15,-0.09 0.2,-0.13 0.06,-0.04 0.11,-0.06 0.15,-0.06 0.07,0 0.14,0.04 0.2,0.14 l 0.42,0.68 c -0.25,0.23 -0.54,0.41 -0.89,0.54 -0.35,0.13 -0.7,0.2 -1.07,0.2 z" /> + <path + className="cls-3" + d="m 1783.9,57.08 c 0,-0.14 0.03,-0.27 0.08,-0.39 0.05,-0.12 0.12,-0.23 0.21,-0.32 0.09,-0.09 0.19,-0.16 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.16,0.2 0.21,0.32 0.05,0.12 0.08,0.25 0.08,0.39 0,0.14 -0.03,0.28 -0.08,0.4 -0.05,0.12 -0.12,0.23 -0.21,0.32 -0.09,0.09 -0.2,0.16 -0.32,0.21 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.12 -0.32,-0.21 -0.09,-0.09 -0.16,-0.2 -0.21,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.4 z" /> + <path + className="cls-3" + d="m 1800.5,57.96 h -1.2 c -0.14,0 -0.25,-0.04 -0.34,-0.1 -0.09,-0.07 -0.15,-0.16 -0.19,-0.26 l -1.07,-2.77 h -5.14 l -1.07,2.77 c -0.04,0.1 -0.1,0.18 -0.19,0.26 -0.09,0.07 -0.2,0.11 -0.34,0.11 h -1.2 l 4.58,-11.46 h 1.58 l 4.58,11.46 z m -7.51,-4.26 h 4.28 l -1.8,-4.66 c -0.12,-0.29 -0.23,-0.65 -0.34,-1.08 -0.06,0.22 -0.12,0.42 -0.17,0.6 -0.06,0.18 -0.11,0.35 -0.16,0.48 l -1.8,4.66 z" /> + <path + className="cls-3" + d="m 1801.73,57.96 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.29 l 0.11,0.88 c 0.35,-0.39 0.75,-0.7 1.18,-0.94 0.43,-0.24 0.94,-0.36 1.51,-0.36 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.35 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 V 52.8 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.82,0.1 -1.18,0.3 -0.36,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" /> + <path + className="cls-3" + d="m 1813.08,58.08 c -0.64,0 -1.13,-0.18 -1.48,-0.54 -0.35,-0.36 -0.52,-0.87 -0.52,-1.54 v -4.96 h -0.98 c -0.08,0 -0.16,-0.03 -0.22,-0.08 -0.06,-0.05 -0.09,-0.13 -0.09,-0.24 v -0.57 l 1.33,-0.17 0.33,-2.5 c 0.01,-0.08 0.05,-0.15 0.1,-0.2 0.05,-0.05 0.13,-0.08 0.22,-0.08 h 0.72 v 2.79 h 2.32 v 1.03 h -2.32 v 4.86 c 0,0.34 0.08,0.59 0.25,0.76 0.17,0.17 0.38,0.25 0.64,0.25 0.15,0 0.28,-0.02 0.39,-0.06 0.11,-0.04 0.2,-0.08 0.28,-0.13 0.08,-0.05 0.15,-0.09 0.2,-0.13 0.06,-0.04 0.11,-0.06 0.15,-0.06 0.08,0 0.14,0.04 0.2,0.14 l 0.42,0.68 c -0.25,0.23 -0.54,0.41 -0.89,0.54 -0.35,0.13 -0.7,0.2 -1.07,0.2 z" /> + <path + className="cls-3" + d="m 1819.87,49.72 c 0.59,0 1.13,0.1 1.6,0.3 0.48,0.2 0.88,0.48 1.22,0.84 0.33,0.36 0.59,0.8 0.77,1.32 0.18,0.51 0.27,1.09 0.27,1.72 0,0.63 -0.09,1.22 -0.27,1.73 -0.18,0.51 -0.43,0.95 -0.77,1.31 -0.33,0.36 -0.74,0.64 -1.22,0.84 -0.48,0.19 -1.01,0.29 -1.6,0.29 -0.59,0 -1.13,-0.1 -1.6,-0.29 -0.48,-0.2 -0.88,-0.47 -1.22,-0.84 -0.34,-0.36 -0.59,-0.8 -0.78,-1.31 -0.18,-0.51 -0.27,-1.09 -0.27,-1.73 0,-0.64 0.09,-1.21 0.27,-1.72 0.18,-0.52 0.44,-0.95 0.78,-1.32 0.34,-0.36 0.74,-0.64 1.22,-0.84 0.48,-0.2 1.01,-0.3 1.6,-0.3 z m 0,7.24 c 0.8,0 1.4,-0.27 1.79,-0.8 0.39,-0.54 0.59,-1.28 0.59,-2.24 0,-0.96 -0.2,-1.72 -0.59,-2.26 -0.39,-0.54 -0.99,-0.81 -1.79,-0.81 -0.41,0 -0.76,0.07 -1.06,0.21 -0.3,0.14 -0.55,0.34 -0.75,0.6 -0.2,0.26 -0.35,0.58 -0.45,0.96 -0.1,0.38 -0.15,0.81 -0.15,1.29 0,0.48 0.05,0.91 0.15,1.29 0.1,0.38 0.25,0.7 0.45,0.96 0.2,0.26 0.45,0.46 0.75,0.6 0.3,0.14 0.65,0.21 1.06,0.21 z" /> + <path + className="cls-3" + d="m 1825.49,57.96 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.29 l 0.11,0.88 c 0.35,-0.39 0.75,-0.7 1.18,-0.94 0.43,-0.24 0.94,-0.36 1.51,-0.36 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.35 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 V 52.8 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.82,0.1 -1.18,0.3 -0.36,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" /> + <path + className="cls-3" + d="m 1836.29,47.31 c 0,0.14 -0.03,0.27 -0.08,0.39 -0.06,0.12 -0.13,0.23 -0.22,0.32 -0.09,0.09 -0.2,0.17 -0.32,0.22 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.13 -0.32,-0.22 -0.09,-0.09 -0.17,-0.2 -0.22,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.39 0,-0.14 0.03,-0.27 0.08,-0.4 0.05,-0.13 0.13,-0.24 0.22,-0.33 0.09,-0.09 0.2,-0.17 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.17,0.2 0.22,0.33 0.05,0.13 0.08,0.26 0.08,0.4 z m -0.32,2.54 v 8.1 h -1.42 v -8.1 z" /> + <path + className="cls-3" + d="m 1839.71,49.85 v 5.17 c 0,0.61 0.14,1.09 0.42,1.42 0.28,0.34 0.71,0.5 1.28,0.5 0.42,0 0.81,-0.1 1.18,-0.3 0.37,-0.2 0.71,-0.47 1.02,-0.82 v -5.98 h 1.42 v 8.1 h -0.85 c -0.2,0 -0.33,-0.1 -0.38,-0.3 l -0.11,-0.87 c -0.35,0.39 -0.75,0.7 -1.18,0.94 -0.44,0.24 -0.94,0.36 -1.5,0.36 -0.44,0 -0.83,-0.07 -1.17,-0.22 -0.34,-0.15 -0.62,-0.35 -0.85,-0.62 -0.23,-0.27 -0.4,-0.59 -0.52,-0.97 -0.11,-0.38 -0.17,-0.8 -0.17,-1.26 v -5.17 h 1.42 z" /> + <path + className="cls-3" + d="m 1852.02,51.19 c -0.06,0.12 -0.16,0.18 -0.3,0.18 -0.08,0 -0.17,-0.03 -0.27,-0.09 -0.1,-0.06 -0.23,-0.12 -0.37,-0.2 -0.15,-0.07 -0.32,-0.14 -0.52,-0.2 -0.2,-0.06 -0.44,-0.09 -0.72,-0.09 -0.24,0 -0.46,0.03 -0.65,0.09 -0.19,0.06 -0.36,0.15 -0.49,0.25 -0.14,0.11 -0.24,0.23 -0.31,0.37 -0.07,0.14 -0.11,0.29 -0.11,0.46 0,0.21 0.06,0.38 0.18,0.52 0.12,0.14 0.28,0.26 0.48,0.36 0.2,0.1 0.42,0.19 0.67,0.27 0.25,0.08 0.51,0.16 0.77,0.25 0.26,0.09 0.52,0.19 0.77,0.29 0.25,0.11 0.47,0.24 0.67,0.4 0.2,0.16 0.36,0.36 0.48,0.59 0.12,0.23 0.18,0.51 0.18,0.84 0,0.37 -0.07,0.72 -0.2,1.04 -0.13,0.32 -0.33,0.59 -0.59,0.82 -0.26,0.23 -0.58,0.42 -0.96,0.55 -0.38,0.13 -0.82,0.2 -1.31,0.2 -0.57,0 -1.08,-0.09 -1.54,-0.28 -0.46,-0.18 -0.85,-0.42 -1.17,-0.71 l 0.34,-0.54 c 0.04,-0.07 0.09,-0.12 0.15,-0.16 0.06,-0.04 0.14,-0.06 0.23,-0.06 0.09,0 0.2,0.04 0.3,0.11 0.11,0.07 0.24,0.16 0.39,0.25 0.15,0.09 0.34,0.17 0.55,0.25 0.21,0.08 0.49,0.11 0.81,0.11 0.28,0 0.52,-0.04 0.73,-0.11 0.21,-0.07 0.38,-0.17 0.52,-0.29 0.14,-0.12 0.24,-0.26 0.31,-0.42 0.07,-0.16 0.1,-0.33 0.1,-0.51 0,-0.22 -0.06,-0.41 -0.18,-0.56 -0.12,-0.15 -0.28,-0.27 -0.48,-0.38 -0.2,-0.11 -0.42,-0.19 -0.68,-0.27 -0.25,-0.08 -0.51,-0.16 -0.78,-0.24 -0.26,-0.09 -0.52,-0.18 -0.78,-0.29 -0.25,-0.11 -0.48,-0.25 -0.68,-0.41 -0.2,-0.16 -0.36,-0.37 -0.48,-0.61 -0.12,-0.24 -0.18,-0.54 -0.18,-0.88 0,-0.31 0.06,-0.61 0.19,-0.89 0.13,-0.28 0.31,-0.54 0.56,-0.75 0.25,-0.22 0.55,-0.39 0.9,-0.52 0.35,-0.13 0.77,-0.19 1.22,-0.19 0.53,0 1.01,0.08 1.44,0.25 0.43,0.17 0.79,0.4 1.1,0.69 l -0.32,0.52 z" /> + <path + className="cls-3" + d="m 1853.9,56.97 c 0,-0.12 0.02,-0.24 0.07,-0.35 0.05,-0.11 0.11,-0.21 0.19,-0.29 0.08,-0.08 0.18,-0.15 0.3,-0.2 0.12,-0.05 0.25,-0.07 0.38,-0.07 0.16,0 0.3,0.03 0.43,0.09 0.12,0.06 0.23,0.14 0.31,0.24 0.08,0.1 0.15,0.22 0.19,0.36 0.04,0.13 0.06,0.28 0.06,0.44 0,0.24 -0.03,0.49 -0.1,0.75 -0.07,0.26 -0.17,0.51 -0.3,0.77 -0.13,0.25 -0.29,0.5 -0.48,0.74 -0.19,0.24 -0.4,0.46 -0.64,0.66 l -0.24,-0.23 c -0.07,-0.06 -0.1,-0.14 -0.1,-0.22 0,-0.07 0.04,-0.14 0.11,-0.22 0.05,-0.06 0.12,-0.14 0.2,-0.24 0.08,-0.1 0.17,-0.21 0.25,-0.34 0.08,-0.13 0.16,-0.27 0.24,-0.42 0.08,-0.15 0.12,-0.32 0.16,-0.5 h -0.1 c -0.14,0 -0.26,-0.02 -0.38,-0.07 -0.11,-0.05 -0.21,-0.12 -0.29,-0.2 -0.08,-0.08 -0.15,-0.19 -0.19,-0.31 -0.04,-0.12 -0.07,-0.25 -0.07,-0.4 z" /> + <path + className="cls-3" + d="m 1868.09,46.49 v 1.26 h -5.5 v 4.01 h 4.7 v 1.26 h -4.7 v 4.93 h -1.56 V 46.49 Z" /> + <path + className="cls-3" + d="m 1869.37,57.96 v -8.1 h 0.82 c 0.15,0 0.26,0.03 0.32,0.09 0.06,0.06 0.1,0.16 0.12,0.3 l 0.1,1.26 c 0.28,-0.57 0.62,-1.01 1.03,-1.32 0.41,-0.32 0.89,-0.48 1.44,-0.48 0.22,0 0.43,0.03 0.61,0.08 0.18,0.05 0.35,0.12 0.5,0.21 l -0.18,1.06 c -0.04,0.13 -0.12,0.2 -0.25,0.2 -0.07,0 -0.19,-0.03 -0.34,-0.08 -0.16,-0.05 -0.37,-0.08 -0.65,-0.08 -0.5,0 -0.91,0.14 -1.24,0.43 -0.33,0.29 -0.61,0.71 -0.84,1.26 v 5.16 h -1.42 z" /> + <path + className="cls-3" + d="m 1881.47,57.96 h -0.63 c -0.14,0 -0.25,-0.02 -0.34,-0.06 -0.08,-0.04 -0.14,-0.13 -0.17,-0.27 l -0.16,-0.75 c -0.21,0.19 -0.42,0.36 -0.62,0.52 -0.2,0.15 -0.42,0.28 -0.64,0.38 -0.22,0.1 -0.46,0.18 -0.72,0.24 -0.26,0.06 -0.54,0.08 -0.84,0.08 -0.3,0 -0.61,-0.04 -0.88,-0.13 -0.28,-0.09 -0.51,-0.22 -0.72,-0.4 -0.2,-0.18 -0.36,-0.4 -0.48,-0.67 -0.12,-0.27 -0.18,-0.59 -0.18,-0.96 0,-0.32 0.09,-0.63 0.26,-0.93 0.17,-0.3 0.46,-0.56 0.85,-0.79 0.39,-0.23 0.91,-0.42 1.54,-0.57 0.63,-0.15 1.41,-0.22 2.33,-0.22 v -0.64 c 0,-0.63 -0.13,-1.11 -0.4,-1.44 -0.27,-0.32 -0.67,-0.49 -1.2,-0.49 -0.35,0 -0.64,0.04 -0.88,0.13 -0.24,0.09 -0.44,0.19 -0.62,0.3 -0.17,0.11 -0.32,0.21 -0.45,0.3 -0.13,0.09 -0.25,0.13 -0.37,0.13 -0.1,0 -0.18,-0.03 -0.25,-0.08 -0.07,-0.05 -0.13,-0.11 -0.17,-0.19 l -0.26,-0.46 c 0.45,-0.43 0.93,-0.75 1.45,-0.97 0.52,-0.21 1.09,-0.32 1.72,-0.32 0.45,0 0.86,0.07 1.21,0.22 0.35,0.15 0.65,0.36 0.89,0.62 0.24,0.27 0.42,0.59 0.54,0.97 0.12,0.38 0.18,0.79 0.18,1.25 v 5.18 z m -3.7,-0.88 c 0.25,0 0.48,-0.03 0.69,-0.08 0.21,-0.05 0.4,-0.12 0.59,-0.22 0.18,-0.09 0.36,-0.21 0.53,-0.34 0.17,-0.13 0.33,-0.29 0.49,-0.46 v -1.67 c -0.66,0 -1.21,0.04 -1.67,0.12 -0.46,0.08 -0.83,0.19 -1.12,0.33 -0.29,0.13 -0.5,0.29 -0.63,0.47 -0.13,0.18 -0.2,0.39 -0.2,0.61 0,0.22 0.04,0.4 0.1,0.56 0.06,0.16 0.16,0.28 0.28,0.38 0.12,0.1 0.26,0.17 0.42,0.22 0.16,0.05 0.33,0.07 0.52,0.07 z" /> + <path + className="cls-3" + d="m 1883.63,57.96 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.29 l 0.11,0.88 c 0.35,-0.39 0.75,-0.7 1.18,-0.94 0.43,-0.24 0.94,-0.36 1.51,-0.36 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.35 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 V 52.8 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.82,0.1 -1.18,0.3 -0.36,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" /> + <path + className="cls-3" + d="m 1894.01,46.17 v 6.94 h 0.37 c 0.11,0 0.19,-0.02 0.26,-0.04 0.07,-0.02 0.15,-0.09 0.23,-0.18 l 2.56,-2.74 c 0.08,-0.08 0.16,-0.15 0.24,-0.21 0.08,-0.05 0.19,-0.08 0.32,-0.08 h 1.3 l -2.98,3.18 c -0.07,0.09 -0.15,0.17 -0.22,0.24 -0.07,0.07 -0.15,0.13 -0.24,0.18 0.1,0.06 0.18,0.14 0.26,0.22 0.08,0.08 0.15,0.18 0.22,0.28 l 3.17,4 h -1.28 c -0.12,0 -0.22,-0.02 -0.3,-0.07 -0.08,-0.04 -0.16,-0.12 -0.24,-0.21 l -2.66,-3.32 c -0.08,-0.11 -0.16,-0.19 -0.24,-0.22 -0.08,-0.03 -0.2,-0.05 -0.36,-0.05 h -0.4 v 3.87 h -1.43 V 46.18 h 1.43 z" /> + <path + className="cls-3" + d="m 1903.64,49.72 c 0.49,0 0.93,0.08 1.34,0.24 0.41,0.16 0.77,0.4 1.06,0.7 0.3,0.31 0.53,0.69 0.7,1.14 0.17,0.45 0.25,0.96 0.25,1.54 0,0.22 -0.02,0.37 -0.07,0.45 -0.05,0.08 -0.14,0.11 -0.27,0.11 h -5.39 c 0.01,0.51 0.08,0.96 0.21,1.34 0.13,0.38 0.3,0.69 0.53,0.95 0.22,0.25 0.49,0.44 0.8,0.57 0.31,0.12 0.66,0.19 1.04,0.19 0.36,0 0.67,-0.04 0.92,-0.12 0.25,-0.08 0.48,-0.17 0.67,-0.27 0.19,-0.1 0.34,-0.19 0.47,-0.27 0.13,-0.08 0.23,-0.12 0.32,-0.12 0.12,0 0.21,0.05 0.27,0.14 l 0.4,0.52 c -0.18,0.21 -0.39,0.4 -0.63,0.56 -0.25,0.16 -0.51,0.29 -0.79,0.39 -0.28,0.1 -0.57,0.18 -0.87,0.23 -0.3,0.05 -0.59,0.08 -0.89,0.08 -0.56,0 -1.08,-0.09 -1.55,-0.28 -0.47,-0.19 -0.88,-0.47 -1.22,-0.83 -0.34,-0.36 -0.61,-0.82 -0.8,-1.36 -0.19,-0.54 -0.29,-1.16 -0.29,-1.86 0,-0.57 0.09,-1.09 0.26,-1.58 0.17,-0.49 0.42,-0.92 0.75,-1.28 0.33,-0.36 0.72,-0.64 1.19,-0.85 0.47,-0.21 1,-0.31 1.58,-0.31 z m 0.03,1.05 c -0.69,0 -1.23,0.2 -1.62,0.6 -0.4,0.4 -0.64,0.95 -0.74,1.65 h 4.41 c 0,-0.33 -0.05,-0.63 -0.14,-0.91 -0.09,-0.28 -0.22,-0.51 -0.4,-0.71 -0.18,-0.2 -0.39,-0.35 -0.64,-0.46 -0.25,-0.11 -0.54,-0.16 -0.87,-0.16 z" /> + <path + className="cls-3" + d="m 1908.81,57.96 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.29 l 0.11,0.88 c 0.35,-0.39 0.75,-0.7 1.18,-0.94 0.43,-0.24 0.94,-0.36 1.51,-0.36 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.35 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 V 52.8 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.82,0.1 -1.18,0.3 -0.36,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" /> + <path + className="cls-3" + d="M 1917.76,57.96 V 46.18 h 1.43 v 4.85 c 0.34,-0.39 0.72,-0.7 1.16,-0.94 0.44,-0.24 0.93,-0.36 1.49,-0.36 0.47,0 0.89,0.09 1.27,0.26 0.38,0.18 0.7,0.44 0.97,0.79 0.27,0.35 0.47,0.78 0.62,1.3 0.14,0.51 0.22,1.11 0.22,1.78 0,0.6 -0.08,1.15 -0.24,1.67 -0.16,0.51 -0.39,0.96 -0.69,1.34 -0.3,0.38 -0.67,0.67 -1.1,0.89 -0.43,0.22 -0.92,0.32 -1.47,0.32 -0.55,0 -0.97,-0.1 -1.33,-0.3 -0.37,-0.2 -0.68,-0.49 -0.96,-0.85 l -0.07,0.74 c -0.04,0.2 -0.17,0.3 -0.37,0.3 h -0.92 z m 3.61,-7.1 c -0.46,0 -0.87,0.11 -1.22,0.32 -0.35,0.21 -0.67,0.51 -0.96,0.9 V 56 c 0.26,0.35 0.54,0.6 0.85,0.74 0.31,0.14 0.66,0.22 1.04,0.22 0.76,0 1.34,-0.27 1.74,-0.81 0.41,-0.54 0.61,-1.31 0.61,-2.3 0,-0.53 -0.05,-0.98 -0.14,-1.36 -0.09,-0.38 -0.23,-0.69 -0.4,-0.93 -0.18,-0.24 -0.39,-0.42 -0.65,-0.53 -0.26,-0.11 -0.55,-0.17 -0.87,-0.17 z" /> + <path + className="cls-3" + d="m 1929.86,49.72 c 0.49,0 0.93,0.08 1.34,0.24 0.41,0.16 0.77,0.4 1.06,0.7 0.3,0.31 0.53,0.69 0.7,1.14 0.17,0.45 0.25,0.96 0.25,1.54 0,0.22 -0.02,0.37 -0.07,0.45 -0.05,0.08 -0.14,0.11 -0.27,0.11 h -5.39 c 0.01,0.51 0.08,0.96 0.21,1.34 0.13,0.38 0.3,0.69 0.53,0.95 0.22,0.25 0.49,0.44 0.8,0.57 0.31,0.12 0.66,0.19 1.04,0.19 0.36,0 0.67,-0.04 0.92,-0.12 0.25,-0.08 0.48,-0.17 0.67,-0.27 0.19,-0.1 0.34,-0.19 0.47,-0.27 0.13,-0.08 0.23,-0.12 0.32,-0.12 0.12,0 0.21,0.05 0.27,0.14 l 0.4,0.52 c -0.18,0.21 -0.39,0.4 -0.63,0.56 -0.25,0.16 -0.51,0.29 -0.79,0.39 -0.28,0.1 -0.57,0.18 -0.87,0.23 -0.3,0.05 -0.59,0.08 -0.89,0.08 -0.56,0 -1.08,-0.09 -1.55,-0.28 -0.47,-0.19 -0.88,-0.47 -1.22,-0.83 -0.34,-0.36 -0.61,-0.82 -0.8,-1.36 -0.19,-0.54 -0.29,-1.16 -0.29,-1.86 0,-0.57 0.09,-1.09 0.26,-1.58 0.17,-0.49 0.42,-0.92 0.75,-1.28 0.33,-0.36 0.72,-0.64 1.19,-0.85 0.47,-0.21 1,-0.31 1.58,-0.31 z m 0.03,1.05 c -0.69,0 -1.23,0.2 -1.62,0.6 -0.4,0.4 -0.64,0.95 -0.74,1.65 h 4.41 c 0,-0.33 -0.05,-0.63 -0.14,-0.91 -0.09,-0.28 -0.22,-0.51 -0.4,-0.71 -0.18,-0.2 -0.39,-0.35 -0.64,-0.46 -0.25,-0.11 -0.54,-0.16 -0.87,-0.16 z" /> + <path + className="cls-3" + d="m 1935.04,57.96 v -8.1 h 0.82 c 0.16,0 0.26,0.03 0.32,0.09 0.06,0.06 0.1,0.16 0.12,0.3 l 0.1,1.26 c 0.28,-0.57 0.62,-1.01 1.03,-1.32 0.41,-0.32 0.89,-0.48 1.44,-0.48 0.22,0 0.43,0.03 0.61,0.08 0.18,0.05 0.35,0.12 0.5,0.21 l -0.18,1.06 c -0.04,0.13 -0.12,0.2 -0.25,0.2 -0.08,0 -0.19,-0.03 -0.34,-0.08 -0.15,-0.05 -0.37,-0.08 -0.65,-0.08 -0.5,0 -0.91,0.14 -1.24,0.43 -0.33,0.29 -0.61,0.71 -0.84,1.26 v 5.16 h -1.42 z" /> + <path + className="cls-3" + d="m 1944.21,49.72 c 0.35,0 0.68,0.04 0.99,0.12 0.31,0.08 0.58,0.19 0.84,0.34 h 2.2 v 0.53 c 0,0.18 -0.11,0.29 -0.34,0.34 l -0.92,0.13 c 0.18,0.35 0.27,0.73 0.27,1.16 0,0.39 -0.08,0.75 -0.23,1.08 -0.15,0.32 -0.36,0.6 -0.63,0.83 -0.27,0.23 -0.59,0.41 -0.96,0.53 -0.37,0.12 -0.78,0.18 -1.22,0.18 -0.38,0 -0.74,-0.04 -1.07,-0.14 -0.17,0.11 -0.3,0.23 -0.39,0.36 -0.09,0.13 -0.13,0.25 -0.13,0.37 0,0.2 0.08,0.35 0.23,0.45 0.15,0.1 0.36,0.17 0.62,0.22 0.26,0.04 0.55,0.07 0.87,0.07 h 1 c 0.34,0 0.67,0.03 1,0.09 0.33,0.06 0.62,0.16 0.87,0.29 0.26,0.14 0.46,0.32 0.62,0.56 0.15,0.24 0.23,0.54 0.23,0.92 0,0.35 -0.09,0.69 -0.26,1.02 -0.17,0.33 -0.42,0.62 -0.75,0.88 -0.33,0.26 -0.72,0.46 -1.19,0.62 -0.47,0.15 -1,0.23 -1.59,0.23 -0.59,0 -1.11,-0.06 -1.56,-0.18 -0.45,-0.12 -0.81,-0.28 -1.11,-0.47 -0.29,-0.2 -0.51,-0.43 -0.66,-0.69 -0.15,-0.26 -0.22,-0.53 -0.22,-0.81 0,-0.4 0.13,-0.74 0.38,-1.02 0.25,-0.28 0.6,-0.5 1.04,-0.67 -0.23,-0.11 -0.41,-0.25 -0.55,-0.43 -0.14,-0.18 -0.2,-0.42 -0.2,-0.71 0,-0.12 0.02,-0.24 0.06,-0.36 0.04,-0.12 0.11,-0.25 0.2,-0.37 0.09,-0.12 0.2,-0.24 0.32,-0.35 0.13,-0.11 0.28,-0.21 0.45,-0.29 -0.4,-0.22 -0.71,-0.52 -0.94,-0.89 -0.23,-0.37 -0.34,-0.8 -0.34,-1.3 0,-0.4 0.08,-0.75 0.23,-1.08 0.15,-0.33 0.36,-0.6 0.64,-0.82 0.27,-0.23 0.6,-0.4 0.97,-0.52 0.38,-0.12 0.79,-0.18 1.24,-0.18 z m 2.53,8.65 c 0,-0.21 -0.06,-0.37 -0.17,-0.5 -0.11,-0.13 -0.26,-0.22 -0.46,-0.29 -0.19,-0.07 -0.41,-0.12 -0.66,-0.15 -0.25,-0.03 -0.51,-0.05 -0.79,-0.05 h -0.85 c -0.29,0 -0.56,-0.04 -0.82,-0.11 -0.3,0.14 -0.55,0.32 -0.74,0.53 -0.19,0.21 -0.28,0.46 -0.28,0.75 0,0.18 0.05,0.35 0.14,0.51 0.09,0.16 0.24,0.29 0.43,0.41 0.19,0.11 0.43,0.21 0.72,0.27 0.29,0.07 0.63,0.1 1.03,0.1 0.4,0 0.73,-0.04 1.03,-0.11 0.3,-0.07 0.56,-0.17 0.77,-0.3 0.21,-0.13 0.37,-0.29 0.48,-0.47 0.11,-0.18 0.17,-0.38 0.17,-0.6 z M 1944.21,54 c 0.29,0 0.54,-0.04 0.76,-0.12 0.22,-0.08 0.41,-0.19 0.56,-0.34 0.15,-0.15 0.26,-0.32 0.34,-0.52 0.07,-0.2 0.11,-0.42 0.11,-0.66 0,-0.5 -0.15,-0.89 -0.45,-1.18 -0.3,-0.29 -0.74,-0.44 -1.32,-0.44 -0.58,0 -1.01,0.15 -1.31,0.44 -0.3,0.29 -0.45,0.69 -0.45,1.18 0,0.24 0.04,0.46 0.12,0.66 0.08,0.2 0.19,0.37 0.34,0.52 0.15,0.15 0.33,0.26 0.55,0.34 0.22,0.08 0.47,0.12 0.75,0.12 z" /> + </Parish> + <Parish href="/gemeinde/st-marien-zschopau" ariaLabel="St. Marien" transform="matrix(1.6477365,0,0,1.6477365,-1377.435,-822.17746)"> + <path + className="cls-1" + d="m 2401.99,1566.74 -327.22,-295.99 v -7.37 c 0,-6.6 -5.4,-12 -12,-12 h -163.05 c -6.6,0 -12,5.4 -12,12 v 10.78 c 0,6.6 5.4,12 12,12 h 163.05 c 6.4,0 11.65,-5.07 11.97,-11.39 l 325.24,294.2 2.01,-2.22 z" /> + <path + className="cls-3" + d="m 1913.85,1264.97 c -0.05,0.08 -0.1,0.14 -0.15,0.18 -0.05,0.04 -0.12,0.06 -0.21,0.06 -0.09,0 -0.2,-0.04 -0.32,-0.14 -0.12,-0.09 -0.27,-0.19 -0.46,-0.3 -0.18,-0.11 -0.41,-0.21 -0.66,-0.3 -0.26,-0.09 -0.57,-0.14 -0.94,-0.14 -0.35,0 -0.65,0.05 -0.92,0.14 -0.27,0.09 -0.49,0.22 -0.67,0.38 -0.18,0.16 -0.31,0.35 -0.4,0.56 -0.09,0.22 -0.14,0.45 -0.14,0.7 0,0.32 0.08,0.58 0.24,0.79 0.16,0.21 0.37,0.39 0.62,0.54 0.26,0.15 0.55,0.28 0.88,0.39 0.33,0.11 0.66,0.22 1.01,0.34 0.35,0.12 0.68,0.25 1.01,0.4 0.33,0.15 0.62,0.33 0.88,0.56 0.26,0.23 0.47,0.5 0.62,0.82 0.16,0.33 0.24,0.72 0.24,1.2 0,0.5 -0.09,0.97 -0.26,1.41 -0.17,0.44 -0.42,0.82 -0.75,1.15 -0.33,0.33 -0.73,0.58 -1.21,0.77 -0.48,0.19 -1.02,0.28 -1.63,0.28 -0.74,0 -1.42,-0.13 -2.03,-0.4 -0.61,-0.27 -1.13,-0.63 -1.56,-1.09 l 0.45,-0.74 c 0.04,-0.06 0.09,-0.11 0.16,-0.15 0.07,-0.04 0.13,-0.06 0.2,-0.06 0.11,0 0.24,0.06 0.38,0.18 0.14,0.12 0.32,0.25 0.54,0.4 0.22,0.14 0.48,0.28 0.78,0.4 0.31,0.12 0.68,0.18 1.12,0.18 0.37,0 0.7,-0.05 0.98,-0.15 0.29,-0.1 0.53,-0.24 0.73,-0.43 0.2,-0.19 0.35,-0.4 0.46,-0.66 0.11,-0.26 0.16,-0.54 0.16,-0.86 0,-0.35 -0.08,-0.63 -0.24,-0.85 -0.16,-0.22 -0.36,-0.41 -0.62,-0.56 -0.26,-0.15 -0.55,-0.28 -0.88,-0.38 -0.33,-0.1 -0.66,-0.21 -1.01,-0.32 -0.35,-0.11 -0.68,-0.24 -1.01,-0.38 -0.33,-0.14 -0.62,-0.33 -0.88,-0.56 -0.26,-0.23 -0.46,-0.52 -0.62,-0.86 -0.16,-0.34 -0.24,-0.77 -0.24,-1.28 0,-0.41 0.08,-0.8 0.24,-1.18 0.16,-0.38 0.38,-0.71 0.68,-1.01 0.3,-0.3 0.67,-0.53 1.11,-0.7 0.44,-0.17 0.95,-0.26 1.52,-0.26 0.64,0 1.22,0.1 1.75,0.3 0.53,0.2 0.99,0.5 1.38,0.88 l -0.38,0.74 z" /> + <path + className="cls-3" + d="m 1918.69,1274.77 c -0.64,0 -1.13,-0.18 -1.48,-0.54 -0.34,-0.36 -0.52,-0.87 -0.52,-1.54 v -4.96 h -0.98 c -0.08,0 -0.16,-0.03 -0.22,-0.08 -0.06,-0.05 -0.09,-0.13 -0.09,-0.24 v -0.57 l 1.33,-0.17 0.33,-2.5 c 0.01,-0.08 0.04,-0.15 0.1,-0.2 0.06,-0.05 0.13,-0.08 0.22,-0.08 h 0.72 v 2.79 h 2.32 v 1.03 h -2.32 v 4.86 c 0,0.34 0.08,0.59 0.25,0.76 0.17,0.17 0.38,0.25 0.64,0.25 0.15,0 0.28,-0.02 0.39,-0.06 0.11,-0.04 0.2,-0.08 0.28,-0.13 0.08,-0.05 0.15,-0.09 0.2,-0.13 0.06,-0.04 0.11,-0.06 0.15,-0.06 0.07,0 0.14,0.04 0.2,0.14 l 0.42,0.68 c -0.25,0.23 -0.54,0.41 -0.89,0.54 -0.35,0.13 -0.7,0.2 -1.07,0.2 z" /> + <path + className="cls-3" + d="m 1921.74,1273.77 c 0,-0.14 0.03,-0.27 0.08,-0.39 0.05,-0.12 0.12,-0.23 0.21,-0.32 0.09,-0.09 0.19,-0.16 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.16,0.2 0.21,0.32 0.05,0.12 0.08,0.25 0.08,0.39 0,0.14 -0.03,0.28 -0.08,0.4 -0.05,0.12 -0.12,0.23 -0.21,0.32 -0.09,0.09 -0.2,0.16 -0.32,0.21 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.12 -0.32,-0.21 -0.09,-0.09 -0.16,-0.2 -0.21,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.4 z" /> + <path + className="cls-3" + d="m 1934.74,1270.9 c 0.06,0.14 0.11,0.28 0.16,0.43 0.05,-0.15 0.11,-0.29 0.17,-0.43 0.06,-0.14 0.12,-0.27 0.2,-0.41 l 3.88,-7.05 c 0.07,-0.12 0.14,-0.2 0.22,-0.22 0.08,-0.03 0.18,-0.04 0.32,-0.04 h 1.14 v 11.46 h -1.36 v -8.42 c 0,-0.11 0,-0.23 0,-0.36 0,-0.13 0.01,-0.26 0.02,-0.39 l -3.93,7.17 c -0.13,0.24 -0.32,0.36 -0.56,0.36 h -0.22 c -0.24,0 -0.43,-0.12 -0.56,-0.36 l -4.02,-7.19 c 0.02,0.14 0.03,0.27 0.04,0.41 0,0.13 0.01,0.26 0.01,0.37 v 8.42 h -1.36 v -11.46 h 1.14 c 0.14,0 0.25,0.01 0.32,0.04 0.08,0.03 0.15,0.1 0.22,0.22 l 3.96,7.06 c 0.07,0.13 0.14,0.26 0.2,0.4 z" /> + <path + className="cls-3" + d="m 1949.35,1274.65 h -0.63 c -0.14,0 -0.25,-0.02 -0.34,-0.06 -0.08,-0.04 -0.14,-0.13 -0.17,-0.27 l -0.16,-0.75 c -0.21,0.19 -0.42,0.36 -0.62,0.52 -0.2,0.15 -0.42,0.28 -0.64,0.38 -0.22,0.1 -0.46,0.18 -0.72,0.24 -0.26,0.06 -0.54,0.08 -0.84,0.08 -0.3,0 -0.61,-0.04 -0.88,-0.13 -0.28,-0.09 -0.51,-0.22 -0.72,-0.4 -0.2,-0.18 -0.36,-0.4 -0.48,-0.67 -0.12,-0.27 -0.18,-0.59 -0.18,-0.96 0,-0.32 0.09,-0.63 0.26,-0.93 0.17,-0.3 0.46,-0.56 0.85,-0.79 0.39,-0.23 0.91,-0.42 1.54,-0.57 0.63,-0.15 1.41,-0.22 2.33,-0.22 v -0.64 c 0,-0.63 -0.13,-1.11 -0.4,-1.44 -0.27,-0.32 -0.67,-0.49 -1.2,-0.49 -0.35,0 -0.64,0.04 -0.88,0.13 -0.24,0.09 -0.44,0.19 -0.62,0.3 -0.17,0.11 -0.32,0.21 -0.45,0.3 -0.13,0.09 -0.25,0.13 -0.37,0.13 -0.1,0 -0.18,-0.03 -0.25,-0.08 -0.07,-0.05 -0.13,-0.11 -0.17,-0.19 l -0.26,-0.46 c 0.45,-0.43 0.93,-0.75 1.45,-0.97 0.52,-0.21 1.09,-0.32 1.72,-0.32 0.45,0 0.86,0.07 1.21,0.22 0.35,0.15 0.65,0.36 0.89,0.62 0.24,0.27 0.42,0.59 0.54,0.97 0.12,0.38 0.18,0.79 0.18,1.25 v 5.18 z m -3.7,-0.88 c 0.25,0 0.48,-0.03 0.69,-0.08 0.21,-0.05 0.4,-0.12 0.59,-0.22 0.18,-0.09 0.36,-0.21 0.53,-0.34 0.17,-0.13 0.33,-0.29 0.49,-0.46 V 1271 c -0.66,0 -1.21,0.04 -1.67,0.12 -0.46,0.08 -0.83,0.19 -1.12,0.33 -0.29,0.13 -0.5,0.29 -0.63,0.47 -0.13,0.18 -0.2,0.39 -0.2,0.61 0,0.22 0.04,0.4 0.1,0.56 0.06,0.16 0.16,0.28 0.28,0.38 0.12,0.1 0.26,0.17 0.42,0.22 0.16,0.05 0.33,0.07 0.52,0.07 z" /> + <path + className="cls-3" + d="m 1951.51,1274.65 v -8.1 h 0.82 c 0.15,0 0.26,0.03 0.32,0.09 0.06,0.06 0.1,0.16 0.12,0.3 l 0.1,1.26 c 0.28,-0.57 0.62,-1.01 1.03,-1.32 0.41,-0.32 0.89,-0.48 1.44,-0.48 0.22,0 0.43,0.03 0.61,0.08 0.18,0.05 0.35,0.12 0.5,0.21 l -0.18,1.06 c -0.04,0.13 -0.12,0.2 -0.25,0.2 -0.07,0 -0.19,-0.03 -0.34,-0.08 -0.16,-0.05 -0.37,-0.08 -0.65,-0.08 -0.5,0 -0.91,0.14 -1.24,0.43 -0.33,0.29 -0.61,0.71 -0.84,1.26 v 5.16 h -1.42 z" /> + <path + className="cls-3" + d="m 1959.86,1264 c 0,0.14 -0.03,0.27 -0.08,0.39 -0.06,0.12 -0.13,0.23 -0.22,0.32 -0.09,0.09 -0.2,0.17 -0.32,0.22 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.13 -0.32,-0.22 -0.09,-0.09 -0.17,-0.2 -0.22,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.39 0,-0.14 0.03,-0.27 0.08,-0.4 0.05,-0.13 0.13,-0.24 0.22,-0.33 0.09,-0.09 0.2,-0.17 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.17,0.2 0.22,0.33 0.06,0.13 0.08,0.26 0.08,0.4 z m -0.32,2.54 v 8.1 h -1.42 v -8.1 z" /> + <path + className="cls-3" + d="m 1965.26,1266.41 c 0.49,0 0.93,0.08 1.34,0.24 0.41,0.16 0.77,0.4 1.06,0.7 0.3,0.31 0.53,0.69 0.7,1.14 0.17,0.45 0.25,0.96 0.25,1.54 0,0.22 -0.02,0.37 -0.07,0.45 -0.05,0.08 -0.14,0.11 -0.27,0.11 h -5.39 c 0.01,0.51 0.08,0.96 0.21,1.34 0.13,0.38 0.3,0.69 0.53,0.95 0.22,0.25 0.49,0.44 0.8,0.57 0.31,0.12 0.66,0.19 1.04,0.19 0.36,0 0.67,-0.04 0.92,-0.12 0.25,-0.08 0.48,-0.17 0.67,-0.27 0.19,-0.1 0.34,-0.19 0.47,-0.27 0.13,-0.08 0.23,-0.12 0.32,-0.12 0.12,0 0.21,0.05 0.27,0.14 l 0.4,0.52 c -0.18,0.21 -0.39,0.4 -0.63,0.56 -0.25,0.16 -0.51,0.29 -0.79,0.39 -0.28,0.1 -0.57,0.18 -0.87,0.23 -0.3,0.05 -0.59,0.08 -0.89,0.08 -0.56,0 -1.08,-0.09 -1.55,-0.28 -0.47,-0.19 -0.88,-0.47 -1.22,-0.83 -0.34,-0.36 -0.61,-0.82 -0.8,-1.36 -0.19,-0.54 -0.29,-1.16 -0.29,-1.86 0,-0.57 0.09,-1.09 0.26,-1.58 0.17,-0.49 0.42,-0.92 0.75,-1.28 0.33,-0.36 0.72,-0.64 1.19,-0.85 0.47,-0.21 1,-0.31 1.58,-0.31 z m 0.03,1.05 c -0.69,0 -1.23,0.2 -1.62,0.6 -0.4,0.4 -0.64,0.95 -0.74,1.65 h 4.41 c 0,-0.33 -0.05,-0.63 -0.14,-0.91 -0.09,-0.28 -0.22,-0.51 -0.4,-0.71 -0.18,-0.2 -0.39,-0.35 -0.64,-0.46 -0.25,-0.11 -0.54,-0.16 -0.87,-0.16 z" /> + <path + className="cls-3" + d="m 1970.44,1274.65 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.29 l 0.11,0.88 c 0.35,-0.39 0.75,-0.7 1.18,-0.94 0.43,-0.24 0.94,-0.36 1.51,-0.36 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.35 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 v -5.16 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.82,0.1 -1.18,0.3 -0.36,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" /> + <path + className="cls-3" + d="m 1978.92,1273.66 c 0,-0.12 0.02,-0.24 0.07,-0.35 0.04,-0.11 0.11,-0.21 0.19,-0.29 0.08,-0.08 0.18,-0.15 0.3,-0.2 0.12,-0.05 0.25,-0.07 0.38,-0.07 0.16,0 0.3,0.03 0.43,0.09 0.13,0.06 0.23,0.14 0.31,0.24 0.08,0.1 0.14,0.22 0.19,0.36 0.04,0.13 0.06,0.28 0.06,0.44 0,0.24 -0.04,0.49 -0.1,0.75 -0.07,0.26 -0.17,0.51 -0.3,0.77 -0.13,0.25 -0.29,0.5 -0.48,0.74 -0.19,0.24 -0.4,0.46 -0.64,0.66 l -0.24,-0.23 c -0.07,-0.06 -0.1,-0.14 -0.1,-0.22 0,-0.07 0.04,-0.14 0.11,-0.22 0.05,-0.06 0.12,-0.14 0.2,-0.24 0.08,-0.1 0.17,-0.21 0.25,-0.34 0.08,-0.13 0.16,-0.27 0.24,-0.42 0.07,-0.15 0.12,-0.32 0.16,-0.5 h -0.1 c -0.14,0 -0.26,-0.02 -0.38,-0.07 -0.11,-0.05 -0.21,-0.12 -0.29,-0.2 -0.08,-0.09 -0.15,-0.19 -0.19,-0.31 -0.05,-0.12 -0.07,-0.25 -0.07,-0.4 z" /> + <path + className="cls-3" + d="m 1994.02,1263.18 v 0.58 c 0,0.18 -0.06,0.35 -0.17,0.51 l -6.49,9.11 h 6.54 v 1.26 h -8.58 v -0.61 c 0,-0.16 0.05,-0.31 0.15,-0.46 l 6.5,-9.14 h -6.34 v -1.26 h 8.38 z" /> + <path + className="cls-3" + d="m 2000.21,1267.88 c -0.06,0.12 -0.16,0.18 -0.3,0.18 -0.08,0 -0.17,-0.03 -0.27,-0.09 -0.1,-0.06 -0.23,-0.12 -0.37,-0.2 -0.15,-0.07 -0.32,-0.14 -0.52,-0.2 -0.2,-0.06 -0.44,-0.09 -0.72,-0.09 -0.24,0 -0.46,0.03 -0.65,0.09 -0.19,0.06 -0.36,0.15 -0.49,0.25 -0.14,0.11 -0.24,0.23 -0.31,0.37 -0.07,0.14 -0.11,0.29 -0.11,0.46 0,0.21 0.06,0.38 0.18,0.52 0.12,0.14 0.28,0.26 0.48,0.36 0.2,0.1 0.42,0.19 0.67,0.27 0.25,0.08 0.51,0.16 0.77,0.25 0.26,0.09 0.52,0.19 0.77,0.29 0.25,0.11 0.47,0.24 0.67,0.4 0.2,0.16 0.36,0.36 0.48,0.59 0.12,0.23 0.18,0.51 0.18,0.84 0,0.37 -0.07,0.72 -0.2,1.04 -0.13,0.32 -0.33,0.59 -0.59,0.82 -0.26,0.23 -0.58,0.42 -0.96,0.55 -0.38,0.13 -0.82,0.2 -1.31,0.2 -0.57,0 -1.08,-0.09 -1.54,-0.28 -0.46,-0.18 -0.85,-0.42 -1.17,-0.71 l 0.34,-0.54 c 0.04,-0.07 0.09,-0.12 0.15,-0.16 0.06,-0.04 0.14,-0.06 0.23,-0.06 0.09,0 0.2,0.04 0.3,0.11 0.1,0.07 0.24,0.16 0.39,0.25 0.15,0.09 0.34,0.17 0.55,0.25 0.21,0.08 0.49,0.11 0.81,0.11 0.28,0 0.52,-0.04 0.73,-0.11 0.21,-0.07 0.38,-0.17 0.52,-0.29 0.14,-0.12 0.24,-0.26 0.31,-0.42 0.07,-0.16 0.1,-0.33 0.1,-0.51 0,-0.22 -0.06,-0.41 -0.18,-0.56 -0.12,-0.15 -0.28,-0.27 -0.48,-0.38 -0.2,-0.11 -0.42,-0.19 -0.68,-0.27 -0.25,-0.08 -0.51,-0.16 -0.78,-0.24 -0.26,-0.09 -0.52,-0.18 -0.78,-0.29 -0.25,-0.11 -0.48,-0.25 -0.68,-0.41 -0.2,-0.17 -0.36,-0.37 -0.48,-0.61 -0.12,-0.24 -0.18,-0.54 -0.18,-0.88 0,-0.31 0.06,-0.61 0.19,-0.89 0.13,-0.29 0.32,-0.54 0.56,-0.75 0.25,-0.22 0.55,-0.39 0.9,-0.52 0.36,-0.13 0.76,-0.19 1.22,-0.19 0.53,0 1.01,0.08 1.44,0.25 0.42,0.17 0.79,0.4 1.1,0.69 l -0.32,0.52 z" /> + <path + className="cls-3" + d="m 2008.05,1267.98 c -0.04,0.06 -0.08,0.1 -0.13,0.14 -0.04,0.03 -0.1,0.05 -0.18,0.05 -0.08,0 -0.17,-0.03 -0.26,-0.1 -0.09,-0.07 -0.21,-0.14 -0.36,-0.22 -0.14,-0.08 -0.32,-0.15 -0.52,-0.22 -0.21,-0.07 -0.46,-0.1 -0.76,-0.1 -0.39,0 -0.74,0.07 -1.05,0.21 -0.3,0.14 -0.56,0.35 -0.76,0.61 -0.2,0.26 -0.36,0.59 -0.46,0.97 -0.1,0.38 -0.16,0.8 -0.16,1.27 0,0.47 0.06,0.93 0.17,1.31 0.11,0.38 0.27,0.7 0.47,0.96 0.2,0.26 0.45,0.46 0.74,0.59 0.29,0.13 0.62,0.2 0.98,0.2 0.36,0 0.63,-0.04 0.86,-0.12 0.22,-0.08 0.41,-0.17 0.56,-0.28 0.15,-0.1 0.27,-0.19 0.37,-0.28 0.1,-0.08 0.19,-0.12 0.29,-0.12 0.12,0 0.21,0.05 0.27,0.14 l 0.4,0.52 c -0.35,0.43 -0.79,0.75 -1.32,0.95 -0.53,0.2 -1.09,0.3 -1.67,0.3 -0.51,0 -0.98,-0.09 -1.41,-0.28 -0.43,-0.19 -0.81,-0.46 -1.13,-0.81 -0.32,-0.35 -0.57,-0.79 -0.76,-1.31 -0.18,-0.52 -0.28,-1.11 -0.28,-1.77 0,-0.6 0.08,-1.16 0.25,-1.67 0.17,-0.51 0.41,-0.95 0.74,-1.32 0.32,-0.37 0.72,-0.66 1.2,-0.87 0.48,-0.21 1.02,-0.31 1.63,-0.31 0.56,0 1.07,0.09 1.5,0.28 0.44,0.18 0.82,0.44 1.16,0.78 l -0.38,0.51 z" /> + <path + className="cls-3" + d="m 2009.99,1274.65 v -11.78 h 1.42 v 4.77 c 0.35,-0.37 0.73,-0.66 1.15,-0.88 0.42,-0.22 0.91,-0.33 1.46,-0.33 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.35 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 v -5.16 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.82,0.1 -1.18,0.3 -0.36,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" /> + <path + className="cls-3" + d="m 2022.17,1266.41 c 0.59,0 1.13,0.1 1.6,0.3 0.47,0.2 0.88,0.48 1.22,0.84 0.33,0.36 0.59,0.8 0.77,1.32 0.18,0.51 0.27,1.09 0.27,1.72 0,0.63 -0.09,1.22 -0.27,1.73 -0.18,0.51 -0.44,0.95 -0.77,1.31 -0.33,0.36 -0.74,0.64 -1.22,0.84 -0.48,0.19 -1.01,0.29 -1.6,0.29 -0.59,0 -1.13,-0.1 -1.6,-0.29 -0.48,-0.2 -0.88,-0.47 -1.22,-0.84 -0.34,-0.36 -0.59,-0.8 -0.78,-1.31 -0.19,-0.51 -0.27,-1.09 -0.27,-1.73 0,-0.64 0.09,-1.21 0.27,-1.72 0.18,-0.52 0.44,-0.95 0.78,-1.32 0.34,-0.36 0.74,-0.64 1.22,-0.84 0.48,-0.2 1.01,-0.3 1.6,-0.3 z m 0,7.24 c 0.8,0 1.4,-0.27 1.79,-0.8 0.39,-0.54 0.59,-1.28 0.59,-2.24 0,-0.96 -0.2,-1.72 -0.59,-2.26 -0.4,-0.54 -0.99,-0.81 -1.79,-0.81 -0.41,0 -0.76,0.07 -1.06,0.21 -0.3,0.14 -0.55,0.34 -0.75,0.6 -0.2,0.26 -0.35,0.58 -0.45,0.96 -0.1,0.38 -0.15,0.81 -0.15,1.29 0,0.48 0.05,0.91 0.15,1.29 0.1,0.38 0.25,0.7 0.45,0.96 0.2,0.26 0.45,0.46 0.75,0.6 0.3,0.14 0.65,0.21 1.06,0.21 z" /> + <path + className="cls-3" + d="m 2027.78,1277.39 v -10.85 h 0.85 c 0.2,0 0.33,0.1 0.38,0.29 l 0.12,0.96 c 0.35,-0.42 0.74,-0.76 1.19,-1.02 0.45,-0.26 0.96,-0.38 1.54,-0.38 0.46,0 0.88,0.09 1.26,0.27 0.38,0.18 0.7,0.44 0.97,0.79 0.27,0.35 0.47,0.78 0.62,1.3 0.14,0.52 0.22,1.11 0.22,1.79 0,0.6 -0.08,1.15 -0.24,1.67 -0.16,0.51 -0.39,0.96 -0.69,1.34 -0.3,0.38 -0.67,0.67 -1.1,0.89 -0.44,0.22 -0.92,0.32 -1.47,0.32 -0.5,0 -0.93,-0.08 -1.28,-0.25 -0.36,-0.16 -0.67,-0.4 -0.94,-0.7 v 3.58 h -1.42 z m 3.61,-9.84 c -0.46,0 -0.87,0.11 -1.22,0.32 -0.35,0.21 -0.67,0.51 -0.96,0.9 v 3.92 c 0.26,0.35 0.55,0.6 0.86,0.74 0.31,0.14 0.66,0.22 1.04,0.22 0.75,0 1.33,-0.27 1.74,-0.81 0.41,-0.54 0.61,-1.31 0.61,-2.3 0,-0.53 -0.05,-0.98 -0.14,-1.36 -0.09,-0.38 -0.23,-0.69 -0.4,-0.93 -0.18,-0.24 -0.39,-0.42 -0.65,-0.53 -0.26,-0.11 -0.55,-0.17 -0.87,-0.17 z" /> + <path + className="cls-3" + d="m 2042.57,1274.65 h -0.63 c -0.14,0 -0.25,-0.02 -0.34,-0.06 -0.08,-0.04 -0.14,-0.13 -0.17,-0.27 l -0.16,-0.75 c -0.21,0.19 -0.42,0.36 -0.62,0.52 -0.2,0.15 -0.42,0.28 -0.64,0.38 -0.22,0.1 -0.46,0.18 -0.72,0.24 -0.26,0.06 -0.54,0.08 -0.84,0.08 -0.3,0 -0.61,-0.04 -0.88,-0.13 -0.28,-0.09 -0.51,-0.22 -0.72,-0.4 -0.2,-0.18 -0.36,-0.4 -0.48,-0.67 -0.12,-0.27 -0.18,-0.59 -0.18,-0.96 0,-0.32 0.09,-0.63 0.26,-0.93 0.17,-0.3 0.46,-0.56 0.85,-0.79 0.39,-0.23 0.91,-0.42 1.54,-0.57 0.63,-0.15 1.41,-0.22 2.33,-0.22 v -0.64 c 0,-0.63 -0.13,-1.11 -0.4,-1.44 -0.27,-0.32 -0.67,-0.49 -1.2,-0.49 -0.35,0 -0.64,0.04 -0.88,0.13 -0.24,0.09 -0.44,0.19 -0.62,0.3 -0.17,0.11 -0.32,0.21 -0.45,0.3 -0.13,0.09 -0.25,0.13 -0.37,0.13 -0.1,0 -0.18,-0.03 -0.25,-0.08 -0.07,-0.05 -0.13,-0.11 -0.17,-0.19 l -0.26,-0.46 c 0.45,-0.43 0.93,-0.75 1.45,-0.97 0.52,-0.21 1.09,-0.32 1.72,-0.32 0.45,0 0.86,0.07 1.21,0.22 0.35,0.15 0.65,0.36 0.89,0.62 0.24,0.27 0.42,0.59 0.54,0.97 0.12,0.38 0.18,0.79 0.18,1.25 v 5.18 z m -3.7,-0.88 c 0.25,0 0.48,-0.03 0.69,-0.08 0.21,-0.05 0.4,-0.12 0.59,-0.22 0.18,-0.09 0.36,-0.21 0.53,-0.34 0.17,-0.13 0.33,-0.29 0.49,-0.46 V 1271 c -0.66,0 -1.21,0.04 -1.67,0.12 -0.46,0.08 -0.83,0.19 -1.12,0.33 -0.29,0.13 -0.5,0.29 -0.63,0.47 -0.13,0.18 -0.2,0.39 -0.2,0.61 0,0.22 0.04,0.4 0.1,0.56 0.06,0.16 0.16,0.28 0.28,0.38 0.12,0.1 0.26,0.17 0.42,0.22 0.16,0.05 0.33,0.07 0.52,0.07 z" /> + <path + className="cls-3" + d="m 2045.96,1266.54 v 5.17 c 0,0.61 0.14,1.09 0.42,1.42 0.28,0.34 0.71,0.5 1.28,0.5 0.42,0 0.81,-0.1 1.18,-0.3 0.37,-0.2 0.71,-0.47 1.02,-0.82 v -5.98 h 1.42 v 8.1 h -0.85 c -0.2,0 -0.33,-0.1 -0.38,-0.3 l -0.11,-0.87 c -0.35,0.39 -0.75,0.7 -1.18,0.94 -0.44,0.24 -0.94,0.36 -1.5,0.36 -0.44,0 -0.83,-0.07 -1.17,-0.22 -0.34,-0.15 -0.62,-0.35 -0.85,-0.62 -0.23,-0.27 -0.4,-0.59 -0.52,-0.97 -0.11,-0.38 -0.17,-0.8 -0.17,-1.26 v -5.17 h 1.42 z" /> + </Parish> + <Parish href="/gemeinde/st-joseph" ariaLabel="St. Joseph" transform="matrix(1.620492,0,0,1.620492,-1062.6403,-128.45221)"> + <path + className="cls-1" + d="m 1887.28,155.98 h -74.37 c -6.6,0 -12,5.4 -12,12 v 3.76 l -57.53,-0.89 -20.01,10.73 c -0.59,-0.74 -1.21,-1.45 -1.88,-2.12 -4.38,-4.38 -10.44,-7.09 -17.12,-7.09 -13.38,0 -24.22,10.84 -24.22,24.22 0,13.38 10.84,24.22 24.22,24.22 13.38,0 24.22,-10.84 24.22,-24.22 0,-4.58 -1.27,-8.87 -3.49,-12.53 l 18.98,-10.18 56.83,0.86 v 4.03 c 0,6.6 5.4,12 12,12 h 74.37 c 6.6,0 12,-5.4 12,-12 v -10.78 c 0,-6.6 -5.4,-12 -12,-12 z" /> + <path + className="cls-3" + d="m 1821.18,169.51 c -0.05,0.08 -0.1,0.14 -0.15,0.18 -0.05,0.04 -0.12,0.06 -0.21,0.06 -0.09,0 -0.2,-0.04 -0.32,-0.14 -0.12,-0.1 -0.27,-0.19 -0.46,-0.3 -0.18,-0.11 -0.41,-0.21 -0.66,-0.3 -0.26,-0.09 -0.57,-0.14 -0.94,-0.14 -0.35,0 -0.65,0.05 -0.92,0.14 -0.27,0.09 -0.49,0.22 -0.67,0.38 -0.18,0.16 -0.31,0.35 -0.4,0.56 -0.09,0.21 -0.14,0.45 -0.14,0.7 0,0.32 0.08,0.58 0.24,0.8 0.16,0.21 0.37,0.39 0.62,0.54 0.26,0.15 0.55,0.28 0.88,0.39 0.33,0.11 0.66,0.22 1.01,0.34 0.35,0.12 0.68,0.25 1.01,0.4 0.33,0.15 0.62,0.33 0.88,0.56 0.26,0.22 0.47,0.5 0.62,0.82 0.15,0.32 0.24,0.73 0.24,1.2 0,0.5 -0.09,0.97 -0.26,1.41 -0.17,0.44 -0.42,0.82 -0.75,1.15 -0.33,0.33 -0.73,0.58 -1.21,0.77 -0.48,0.19 -1.02,0.28 -1.63,0.28 -0.74,0 -1.42,-0.13 -2.03,-0.4 -0.61,-0.27 -1.13,-0.63 -1.56,-1.09 l 0.45,-0.74 c 0.04,-0.06 0.09,-0.11 0.16,-0.15 0.07,-0.04 0.13,-0.06 0.2,-0.06 0.11,0 0.24,0.06 0.38,0.18 0.14,0.12 0.32,0.25 0.54,0.4 0.22,0.14 0.48,0.28 0.78,0.4 0.3,0.12 0.68,0.18 1.12,0.18 0.37,0 0.7,-0.05 0.98,-0.15 0.28,-0.1 0.53,-0.24 0.73,-0.43 0.2,-0.18 0.35,-0.4 0.46,-0.66 0.11,-0.26 0.16,-0.54 0.16,-0.86 0,-0.35 -0.08,-0.63 -0.24,-0.85 -0.16,-0.22 -0.36,-0.41 -0.62,-0.56 -0.26,-0.15 -0.55,-0.28 -0.88,-0.38 -0.33,-0.1 -0.66,-0.21 -1.01,-0.32 -0.35,-0.11 -0.68,-0.24 -1.01,-0.38 -0.33,-0.14 -0.62,-0.33 -0.88,-0.56 -0.26,-0.23 -0.46,-0.52 -0.62,-0.86 -0.16,-0.34 -0.24,-0.77 -0.24,-1.28 0,-0.41 0.08,-0.8 0.24,-1.18 0.16,-0.38 0.38,-0.71 0.68,-1.01 0.3,-0.29 0.67,-0.53 1.11,-0.7 0.44,-0.18 0.95,-0.26 1.52,-0.26 0.64,0 1.22,0.1 1.75,0.3 0.53,0.2 0.99,0.5 1.38,0.88 l -0.38,0.74 z" /> + <path + className="cls-3" + d="m 1826.02,179.31 c -0.64,0 -1.13,-0.18 -1.48,-0.54 -0.34,-0.36 -0.52,-0.87 -0.52,-1.54 v -4.96 h -0.98 c -0.08,0 -0.16,-0.02 -0.22,-0.08 -0.06,-0.06 -0.09,-0.13 -0.09,-0.24 v -0.57 l 1.33,-0.17 0.33,-2.5 c 0.01,-0.08 0.04,-0.15 0.1,-0.2 0.06,-0.05 0.13,-0.08 0.22,-0.08 h 0.72 v 2.79 h 2.32 v 1.03 h -2.32 v 4.86 c 0,0.34 0.08,0.59 0.25,0.76 0.17,0.17 0.38,0.25 0.64,0.25 0.15,0 0.28,-0.02 0.39,-0.06 0.11,-0.04 0.2,-0.08 0.28,-0.13 0.08,-0.05 0.15,-0.09 0.2,-0.13 0.06,-0.04 0.11,-0.06 0.15,-0.06 0.07,0 0.14,0.05 0.2,0.14 l 0.42,0.68 c -0.25,0.23 -0.54,0.41 -0.89,0.54 -0.35,0.13 -0.7,0.2 -1.07,0.2 z" /> + <path + className="cls-3" + d="m 1829.07,178.3 c 0,-0.14 0.03,-0.27 0.08,-0.39 0.05,-0.12 0.12,-0.23 0.21,-0.32 0.09,-0.09 0.19,-0.16 0.32,-0.22 0.13,-0.06 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.12 0.32,0.22 0.09,0.09 0.16,0.2 0.21,0.32 0.05,0.12 0.08,0.25 0.08,0.39 0,0.14 -0.03,0.28 -0.08,0.4 -0.05,0.12 -0.12,0.22 -0.21,0.32 -0.09,0.09 -0.2,0.16 -0.32,0.21 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.12 -0.32,-0.21 -0.09,-0.09 -0.16,-0.2 -0.21,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.4 z" /> + <path + className="cls-3" + d="m 1840.55,175.22 c 0,0.64 -0.08,1.21 -0.24,1.72 -0.16,0.51 -0.39,0.94 -0.7,1.28 -0.31,0.35 -0.68,0.62 -1.13,0.8 -0.45,0.19 -0.96,0.28 -1.54,0.28 -0.52,0 -1.06,-0.07 -1.62,-0.22 0.01,-0.15 0.02,-0.31 0.04,-0.46 0.02,-0.15 0.03,-0.3 0.05,-0.45 0.01,-0.09 0.04,-0.16 0.1,-0.22 0.06,-0.06 0.14,-0.08 0.25,-0.08 0.1,0 0.22,0.02 0.38,0.07 0.16,0.05 0.37,0.07 0.64,0.07 0.35,0 0.67,-0.05 0.94,-0.16 0.28,-0.11 0.51,-0.27 0.7,-0.5 0.19,-0.22 0.33,-0.51 0.43,-0.86 0.1,-0.35 0.15,-0.76 0.15,-1.24 v -7.54 h 1.54 v 7.5 z" /> + <path + className="cls-3" + d="m 1846.39,170.95 c 0.59,0 1.13,0.1 1.6,0.3 0.48,0.2 0.88,0.48 1.22,0.84 0.33,0.36 0.59,0.8 0.77,1.32 0.18,0.52 0.27,1.09 0.27,1.72 0,0.63 -0.09,1.22 -0.27,1.73 -0.18,0.51 -0.43,0.95 -0.77,1.31 -0.33,0.36 -0.74,0.64 -1.22,0.84 -0.48,0.19 -1.01,0.29 -1.6,0.29 -0.59,0 -1.13,-0.1 -1.6,-0.29 -0.48,-0.19 -0.88,-0.47 -1.22,-0.84 -0.34,-0.37 -0.59,-0.8 -0.78,-1.31 -0.18,-0.51 -0.27,-1.09 -0.27,-1.73 0,-0.64 0.09,-1.21 0.27,-1.72 0.18,-0.51 0.44,-0.95 0.78,-1.32 0.34,-0.37 0.74,-0.64 1.22,-0.84 0.48,-0.2 1.01,-0.3 1.6,-0.3 z m 0,7.23 c 0.8,0 1.4,-0.27 1.79,-0.8 0.39,-0.53 0.59,-1.28 0.59,-2.24 0,-0.96 -0.2,-1.72 -0.59,-2.26 -0.39,-0.54 -0.99,-0.81 -1.79,-0.81 -0.41,0 -0.76,0.07 -1.06,0.21 -0.3,0.14 -0.55,0.34 -0.75,0.6 -0.2,0.26 -0.35,0.58 -0.45,0.96 -0.1,0.38 -0.15,0.81 -0.15,1.29 0,0.48 0.05,0.91 0.15,1.29 0.1,0.38 0.25,0.7 0.45,0.96 0.2,0.26 0.45,0.46 0.75,0.6 0.3,0.14 0.65,0.21 1.06,0.21 z" /> + <path + className="cls-3" + d="m 1856.65,172.41 c -0.06,0.12 -0.16,0.18 -0.3,0.18 -0.08,0 -0.17,-0.03 -0.27,-0.09 -0.1,-0.06 -0.23,-0.12 -0.37,-0.2 -0.15,-0.07 -0.32,-0.14 -0.52,-0.2 -0.2,-0.06 -0.44,-0.09 -0.72,-0.09 -0.24,0 -0.46,0.03 -0.65,0.09 -0.19,0.06 -0.36,0.15 -0.49,0.25 -0.14,0.11 -0.24,0.23 -0.31,0.37 -0.07,0.14 -0.11,0.29 -0.11,0.46 0,0.21 0.06,0.38 0.18,0.52 0.12,0.14 0.28,0.26 0.48,0.36 0.2,0.1 0.42,0.19 0.67,0.27 0.25,0.08 0.51,0.16 0.77,0.25 0.26,0.09 0.52,0.19 0.77,0.29 0.25,0.1 0.47,0.24 0.67,0.4 0.2,0.16 0.36,0.36 0.48,0.59 0.12,0.23 0.18,0.51 0.18,0.84 0,0.37 -0.07,0.72 -0.2,1.04 -0.13,0.32 -0.33,0.59 -0.59,0.82 -0.26,0.23 -0.58,0.42 -0.96,0.55 -0.38,0.13 -0.82,0.2 -1.31,0.2 -0.57,0 -1.08,-0.09 -1.54,-0.28 -0.46,-0.18 -0.85,-0.42 -1.17,-0.71 l 0.34,-0.54 c 0.04,-0.07 0.09,-0.12 0.15,-0.16 0.06,-0.04 0.14,-0.06 0.23,-0.06 0.09,0 0.2,0.04 0.3,0.11 0.11,0.08 0.24,0.16 0.39,0.25 0.15,0.09 0.34,0.17 0.55,0.25 0.22,0.08 0.49,0.11 0.81,0.11 0.28,0 0.52,-0.04 0.73,-0.11 0.21,-0.07 0.38,-0.17 0.52,-0.29 0.14,-0.12 0.24,-0.26 0.31,-0.42 0.07,-0.16 0.1,-0.33 0.1,-0.51 0,-0.22 -0.06,-0.41 -0.18,-0.56 -0.12,-0.15 -0.28,-0.27 -0.48,-0.38 -0.2,-0.1 -0.42,-0.19 -0.68,-0.27 -0.26,-0.08 -0.51,-0.16 -0.78,-0.24 -0.26,-0.08 -0.52,-0.18 -0.78,-0.29 -0.25,-0.11 -0.48,-0.25 -0.68,-0.41 -0.2,-0.17 -0.36,-0.37 -0.48,-0.61 -0.12,-0.24 -0.18,-0.54 -0.18,-0.88 0,-0.31 0.06,-0.61 0.19,-0.89 0.13,-0.29 0.32,-0.54 0.56,-0.75 0.25,-0.22 0.55,-0.39 0.9,-0.52 0.36,-0.13 0.76,-0.19 1.22,-0.19 0.53,0 1.01,0.08 1.44,0.25 0.42,0.17 0.79,0.4 1.1,0.69 l -0.32,0.52 z" /> + <path + className="cls-3" + d="m 1862.16,170.95 c 0.49,0 0.93,0.08 1.34,0.24 0.41,0.16 0.76,0.4 1.06,0.7 0.3,0.31 0.53,0.69 0.7,1.14 0.17,0.45 0.25,0.96 0.25,1.54 0,0.22 -0.02,0.37 -0.07,0.45 -0.05,0.08 -0.14,0.11 -0.27,0.11 h -5.39 c 0.01,0.51 0.08,0.96 0.21,1.34 0.13,0.38 0.3,0.7 0.53,0.95 0.23,0.25 0.49,0.44 0.8,0.57 0.31,0.12 0.66,0.19 1.04,0.19 0.36,0 0.67,-0.04 0.92,-0.12 0.25,-0.08 0.48,-0.17 0.67,-0.27 0.19,-0.1 0.34,-0.19 0.47,-0.27 0.12,-0.08 0.23,-0.12 0.32,-0.12 0.12,0 0.21,0.05 0.27,0.14 l 0.4,0.52 c -0.18,0.21 -0.39,0.4 -0.63,0.56 -0.24,0.16 -0.51,0.29 -0.79,0.39 -0.28,0.1 -0.57,0.18 -0.87,0.23 -0.3,0.05 -0.6,0.08 -0.89,0.08 -0.56,0 -1.08,-0.09 -1.55,-0.28 -0.47,-0.19 -0.88,-0.47 -1.22,-0.83 -0.34,-0.37 -0.61,-0.82 -0.8,-1.36 -0.19,-0.54 -0.29,-1.16 -0.29,-1.86 0,-0.57 0.09,-1.09 0.26,-1.58 0.17,-0.49 0.42,-0.92 0.75,-1.28 0.33,-0.36 0.72,-0.64 1.19,-0.85 0.47,-0.21 1,-0.31 1.58,-0.31 z m 0.03,1.04 c -0.69,0 -1.23,0.2 -1.62,0.6 -0.39,0.4 -0.64,0.95 -0.74,1.65 h 4.41 c 0,-0.33 -0.04,-0.63 -0.14,-0.91 -0.1,-0.28 -0.22,-0.51 -0.4,-0.71 -0.18,-0.2 -0.39,-0.35 -0.64,-0.46 -0.25,-0.11 -0.54,-0.16 -0.87,-0.16 z" /> + <path + className="cls-3" + d="m 1867.34,181.92 v -10.85 h 0.85 c 0.2,0 0.33,0.1 0.38,0.3 l 0.12,0.96 c 0.35,-0.42 0.74,-0.76 1.19,-1.02 0.45,-0.26 0.96,-0.38 1.54,-0.38 0.46,0 0.89,0.09 1.26,0.27 0.38,0.18 0.7,0.44 0.97,0.79 0.27,0.35 0.47,0.78 0.62,1.3 0.14,0.52 0.22,1.11 0.22,1.78 0,0.6 -0.08,1.15 -0.24,1.67 -0.16,0.52 -0.39,0.96 -0.69,1.34 -0.3,0.38 -0.67,0.67 -1.1,0.89 -0.43,0.22 -0.92,0.32 -1.47,0.32 -0.5,0 -0.93,-0.08 -1.28,-0.25 -0.35,-0.17 -0.67,-0.4 -0.94,-0.7 v 3.58 h -1.42 z m 3.6,-9.84 c -0.46,0 -0.87,0.11 -1.22,0.32 -0.35,0.21 -0.67,0.51 -0.96,0.9 v 3.92 c 0.26,0.35 0.55,0.6 0.86,0.74 0.31,0.14 0.66,0.22 1.04,0.22 0.75,0 1.33,-0.27 1.74,-0.81 0.41,-0.54 0.61,-1.31 0.61,-2.3 0,-0.53 -0.05,-0.98 -0.14,-1.36 -0.09,-0.38 -0.23,-0.69 -0.4,-0.93 -0.18,-0.24 -0.39,-0.42 -0.65,-0.53 -0.26,-0.11 -0.55,-0.17 -0.87,-0.17 z" /> + <path + className="cls-3" + d="M 1876.17,179.18 V 167.4 h 1.42 v 4.77 c 0.35,-0.37 0.73,-0.66 1.15,-0.88 0.42,-0.22 0.91,-0.33 1.46,-0.33 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.35 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 v -5.16 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.81,0.1 -1.18,0.3 -0.37,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" /> + <polygon + className="cls-3" + points="1705.02,189.56 1705.02,181.35 1703.02,181.35 1703.02,189.56 1696.06,189.56 1696.06,191.56 1703.02,191.56 1703.02,213.85 1705.02,213.85 1705.02,191.56 1711.99,191.56 1711.99,189.56 " /> + </Parish> + <Parish href="/gemeinde/st-johannes-nepomuk" ariaLabel="St. Johannes Nepomuk" transform="matrix(1.7370821,0,0,1.7370821,-972.06473,-299.91291)"> + <path + className="cls-1" + d="m 1584.44,318.06 h -163.05 c -6.6,0 -12,5.4 -12,12 v 5.83 l -23.05,-0.15 -46.25,39.59 c 0,0 -5.34,-5.73 -15.59,-5.77 -13.37,-0.05 -24.22,10.84 -24.22,24.22 0,13.38 10.84,24.22 24.22,24.22 13.38,0 24.22,-10.84 24.22,-24.22 0,-5.97 -2.16,-11.43 -5.74,-15.65 l 44.84,-38.39 21.58,0.15 v 0.96 c 0,6.6 5.4,12 12,12 h 163.05 c 6.6,0 12,-5.4 12,-12 v -10.78 c 0,-6.6 -5.4,-12 -12,-12 z" /> + <path + className="cls-3" + d="m 1429.17,331.59 c -0.05,0.08 -0.1,0.14 -0.15,0.18 -0.05,0.04 -0.12,0.06 -0.21,0.06 -0.09,0 -0.2,-0.04 -0.32,-0.14 -0.12,-0.1 -0.27,-0.19 -0.46,-0.3 -0.18,-0.11 -0.41,-0.21 -0.66,-0.3 -0.26,-0.09 -0.57,-0.14 -0.94,-0.14 -0.35,0 -0.65,0.05 -0.92,0.14 -0.27,0.09 -0.49,0.22 -0.67,0.38 -0.18,0.16 -0.31,0.35 -0.4,0.56 -0.09,0.22 -0.14,0.45 -0.14,0.7 0,0.32 0.08,0.59 0.24,0.8 0.16,0.21 0.37,0.39 0.62,0.54 0.26,0.15 0.55,0.28 0.88,0.39 0.33,0.11 0.66,0.22 1.01,0.34 0.34,0.12 0.68,0.25 1.01,0.4 0.33,0.15 0.62,0.33 0.88,0.56 0.26,0.22 0.47,0.5 0.62,0.82 0.16,0.33 0.24,0.73 0.24,1.2 0,0.5 -0.09,0.97 -0.26,1.41 -0.17,0.44 -0.42,0.82 -0.75,1.15 -0.33,0.33 -0.73,0.58 -1.21,0.77 -0.48,0.19 -1.02,0.28 -1.63,0.28 -0.74,0 -1.42,-0.13 -2.03,-0.4 -0.61,-0.27 -1.13,-0.63 -1.56,-1.09 l 0.45,-0.74 c 0.04,-0.06 0.09,-0.11 0.16,-0.15 0.06,-0.04 0.13,-0.06 0.2,-0.06 0.11,0 0.24,0.06 0.38,0.18 0.14,0.12 0.32,0.25 0.54,0.4 0.22,0.14 0.48,0.28 0.78,0.4 0.31,0.12 0.68,0.18 1.12,0.18 0.37,0 0.7,-0.05 0.98,-0.15 0.29,-0.1 0.53,-0.24 0.73,-0.43 0.2,-0.18 0.35,-0.4 0.46,-0.66 0.11,-0.26 0.16,-0.54 0.16,-0.86 0,-0.35 -0.08,-0.63 -0.24,-0.85 -0.16,-0.22 -0.36,-0.41 -0.62,-0.56 -0.26,-0.15 -0.55,-0.28 -0.88,-0.38 -0.33,-0.1 -0.66,-0.21 -1.01,-0.32 -0.34,-0.11 -0.68,-0.24 -1.01,-0.38 -0.33,-0.14 -0.62,-0.33 -0.88,-0.56 -0.26,-0.23 -0.46,-0.52 -0.62,-0.86 -0.16,-0.34 -0.24,-0.77 -0.24,-1.28 0,-0.41 0.08,-0.8 0.24,-1.18 0.16,-0.38 0.39,-0.71 0.68,-1.01 0.3,-0.29 0.67,-0.53 1.11,-0.7 0.44,-0.18 0.95,-0.26 1.52,-0.26 0.64,0 1.22,0.1 1.75,0.3 0.53,0.2 0.99,0.5 1.38,0.88 l -0.38,0.74 z" /> + <path + className="cls-3" + d="m 1434.01,341.39 c -0.64,0 -1.13,-0.18 -1.48,-0.54 -0.34,-0.36 -0.52,-0.87 -0.52,-1.54 v -4.96 h -0.98 c -0.08,0 -0.16,-0.03 -0.22,-0.08 -0.06,-0.05 -0.09,-0.13 -0.09,-0.24 v -0.57 l 1.33,-0.17 0.33,-2.5 c 0.01,-0.08 0.05,-0.15 0.1,-0.2 0.05,-0.05 0.13,-0.08 0.22,-0.08 h 0.72 v 2.79 h 2.32 v 1.03 h -2.32 v 4.86 c 0,0.34 0.08,0.59 0.25,0.76 0.17,0.17 0.38,0.25 0.64,0.25 0.15,0 0.28,-0.02 0.39,-0.06 0.11,-0.04 0.2,-0.08 0.28,-0.13 0.08,-0.05 0.15,-0.09 0.2,-0.13 0.06,-0.04 0.11,-0.06 0.15,-0.06 0.07,0 0.14,0.04 0.2,0.14 l 0.42,0.68 c -0.25,0.23 -0.54,0.41 -0.89,0.54 -0.35,0.13 -0.7,0.2 -1.07,0.2 z" /> + <path + className="cls-3" + d="m 1437.06,340.38 c 0,-0.14 0.03,-0.27 0.08,-0.39 0.05,-0.12 0.12,-0.23 0.21,-0.32 0.09,-0.09 0.19,-0.16 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.16,0.2 0.21,0.32 0.05,0.12 0.08,0.25 0.08,0.39 0,0.14 -0.03,0.28 -0.08,0.4 -0.05,0.12 -0.12,0.23 -0.21,0.32 -0.09,0.09 -0.2,0.16 -0.32,0.21 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.12 -0.32,-0.21 -0.09,-0.09 -0.16,-0.2 -0.21,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.4 z" /> + <path + className="cls-3" + d="m 1448.54,337.3 c 0,0.64 -0.08,1.21 -0.24,1.72 -0.16,0.51 -0.39,0.93 -0.7,1.28 -0.31,0.35 -0.68,0.62 -1.13,0.8 -0.45,0.19 -0.96,0.28 -1.54,0.28 -0.52,0 -1.06,-0.08 -1.62,-0.22 0.01,-0.15 0.02,-0.31 0.04,-0.46 0.02,-0.15 0.03,-0.3 0.05,-0.45 0.01,-0.09 0.04,-0.16 0.1,-0.22 0.06,-0.06 0.14,-0.08 0.25,-0.08 0.1,0 0.22,0.02 0.38,0.07 0.16,0.05 0.37,0.07 0.64,0.07 0.35,0 0.67,-0.05 0.94,-0.16 0.27,-0.11 0.51,-0.27 0.7,-0.5 0.19,-0.22 0.33,-0.51 0.43,-0.86 0.1,-0.35 0.15,-0.76 0.15,-1.24 v -7.54 h 1.54 v 7.5 z" /> + <path + className="cls-3" + d="m 1454.38,333.03 c 0.59,0 1.13,0.1 1.6,0.3 0.48,0.2 0.88,0.48 1.22,0.84 0.33,0.36 0.59,0.8 0.77,1.32 0.18,0.52 0.27,1.09 0.27,1.72 0,0.63 -0.09,1.22 -0.27,1.73 -0.18,0.51 -0.44,0.95 -0.77,1.31 -0.33,0.36 -0.74,0.64 -1.22,0.84 -0.48,0.2 -1.01,0.29 -1.6,0.29 -0.59,0 -1.13,-0.1 -1.6,-0.29 -0.48,-0.19 -0.88,-0.47 -1.22,-0.84 -0.34,-0.36 -0.59,-0.8 -0.78,-1.31 -0.18,-0.51 -0.27,-1.09 -0.27,-1.73 0,-0.64 0.09,-1.21 0.27,-1.72 0.18,-0.51 0.44,-0.95 0.78,-1.32 0.34,-0.36 0.74,-0.64 1.22,-0.84 0.48,-0.2 1.01,-0.3 1.6,-0.3 z m 0,7.23 c 0.8,0 1.4,-0.27 1.79,-0.8 0.39,-0.54 0.59,-1.28 0.59,-2.24 0,-0.96 -0.2,-1.72 -0.59,-2.26 -0.4,-0.54 -0.99,-0.81 -1.79,-0.81 -0.41,0 -0.76,0.07 -1.06,0.21 -0.3,0.14 -0.55,0.34 -0.75,0.6 -0.2,0.26 -0.35,0.58 -0.45,0.96 -0.1,0.38 -0.15,0.81 -0.15,1.29 0,0.48 0.05,0.91 0.15,1.29 0.1,0.38 0.25,0.7 0.45,0.96 0.2,0.26 0.45,0.46 0.75,0.6 0.3,0.14 0.65,0.21 1.06,0.21 z" /> + <path + className="cls-3" + d="m 1460,341.26 v -11.78 h 1.42 v 4.77 c 0.35,-0.37 0.73,-0.66 1.15,-0.88 0.42,-0.22 0.91,-0.33 1.46,-0.33 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.36 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 v -5.16 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.81,0.1 -1.18,0.3 -0.37,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" /> + <path + className="cls-3" + d="m 1474.85,341.26 h -0.63 c -0.14,0 -0.25,-0.02 -0.34,-0.06 -0.09,-0.04 -0.14,-0.13 -0.17,-0.27 l -0.16,-0.75 c -0.21,0.19 -0.42,0.36 -0.62,0.52 -0.2,0.15 -0.42,0.28 -0.64,0.38 -0.22,0.1 -0.46,0.18 -0.72,0.24 -0.25,0.05 -0.54,0.08 -0.84,0.08 -0.3,0 -0.61,-0.04 -0.88,-0.13 -0.27,-0.09 -0.51,-0.22 -0.72,-0.4 -0.21,-0.18 -0.36,-0.4 -0.48,-0.67 -0.12,-0.27 -0.18,-0.59 -0.18,-0.96 0,-0.32 0.09,-0.63 0.26,-0.93 0.17,-0.3 0.46,-0.56 0.85,-0.79 0.39,-0.23 0.91,-0.42 1.54,-0.57 0.63,-0.15 1.41,-0.22 2.33,-0.22 v -0.64 c 0,-0.63 -0.13,-1.11 -0.4,-1.44 -0.27,-0.32 -0.67,-0.49 -1.2,-0.49 -0.35,0 -0.64,0.04 -0.88,0.13 -0.24,0.09 -0.44,0.19 -0.62,0.3 -0.18,0.11 -0.32,0.21 -0.45,0.3 -0.13,0.09 -0.25,0.13 -0.37,0.13 -0.1,0 -0.18,-0.03 -0.25,-0.08 -0.07,-0.05 -0.13,-0.11 -0.17,-0.19 l -0.26,-0.46 c 0.45,-0.43 0.93,-0.75 1.45,-0.97 0.52,-0.21 1.09,-0.32 1.72,-0.32 0.45,0 0.86,0.07 1.21,0.22 0.35,0.15 0.65,0.36 0.89,0.62 0.24,0.27 0.42,0.59 0.54,0.97 0.12,0.38 0.18,0.79 0.18,1.25 v 5.18 z m -3.7,-0.87 c 0.25,0 0.48,-0.03 0.69,-0.08 0.21,-0.05 0.4,-0.12 0.59,-0.22 0.18,-0.09 0.36,-0.21 0.53,-0.34 0.17,-0.13 0.33,-0.29 0.49,-0.46 v -1.67 c -0.66,0 -1.21,0.04 -1.67,0.12 -0.46,0.08 -0.83,0.19 -1.12,0.33 -0.29,0.13 -0.5,0.29 -0.63,0.47 -0.13,0.18 -0.2,0.39 -0.2,0.61 0,0.22 0.03,0.4 0.1,0.56 0.07,0.16 0.16,0.28 0.28,0.38 0.12,0.1 0.26,0.17 0.42,0.22 0.16,0.05 0.33,0.07 0.52,0.07 z" /> + <path + className="cls-3" + d="m 1477.01,341.26 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.3 l 0.11,0.88 c 0.35,-0.39 0.75,-0.7 1.18,-0.94 0.43,-0.24 0.94,-0.36 1.51,-0.36 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.36 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 v -5.16 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.81,0.1 -1.18,0.3 -0.37,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" /> + <path + className="cls-3" + d="m 1485.9,341.26 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.3 l 0.11,0.88 c 0.35,-0.39 0.75,-0.7 1.18,-0.94 0.43,-0.24 0.94,-0.36 1.51,-0.36 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.36 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 v -5.16 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.81,0.1 -1.18,0.3 -0.37,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" /> + <path + className="cls-3" + d="m 1498.01,333.03 c 0.49,0 0.93,0.08 1.34,0.24 0.41,0.16 0.77,0.4 1.06,0.7 0.3,0.31 0.53,0.69 0.7,1.14 0.17,0.45 0.25,0.96 0.25,1.54 0,0.22 -0.02,0.37 -0.07,0.45 -0.05,0.07 -0.14,0.11 -0.27,0.11 h -5.39 c 0.01,0.51 0.08,0.96 0.21,1.34 0.13,0.38 0.3,0.69 0.53,0.95 0.22,0.25 0.49,0.44 0.8,0.57 0.31,0.12 0.66,0.19 1.04,0.19 0.36,0 0.67,-0.04 0.92,-0.12 0.26,-0.08 0.48,-0.17 0.67,-0.27 0.19,-0.1 0.34,-0.19 0.47,-0.27 0.12,-0.08 0.23,-0.12 0.32,-0.12 0.12,0 0.21,0.04 0.27,0.14 l 0.4,0.52 c -0.18,0.21 -0.39,0.4 -0.63,0.56 -0.25,0.16 -0.51,0.29 -0.79,0.39 -0.28,0.1 -0.57,0.18 -0.87,0.23 -0.3,0.05 -0.6,0.08 -0.89,0.08 -0.56,0 -1.08,-0.09 -1.55,-0.28 -0.47,-0.19 -0.88,-0.47 -1.22,-0.83 -0.34,-0.37 -0.61,-0.82 -0.8,-1.36 -0.19,-0.54 -0.29,-1.16 -0.29,-1.86 0,-0.57 0.09,-1.09 0.26,-1.58 0.17,-0.49 0.42,-0.92 0.75,-1.28 0.33,-0.36 0.72,-0.64 1.19,-0.85 0.47,-0.21 1,-0.31 1.58,-0.31 z m 0.03,1.05 c -0.69,0 -1.23,0.2 -1.62,0.6 -0.4,0.4 -0.64,0.95 -0.74,1.65 h 4.41 c 0,-0.33 -0.05,-0.63 -0.14,-0.91 -0.09,-0.27 -0.22,-0.51 -0.4,-0.71 -0.18,-0.2 -0.39,-0.35 -0.64,-0.46 -0.25,-0.11 -0.54,-0.16 -0.87,-0.16 z" /> + <path + className="cls-3" + d="m 1507.82,334.49 c -0.06,0.12 -0.16,0.18 -0.3,0.18 -0.08,0 -0.17,-0.03 -0.27,-0.09 -0.1,-0.06 -0.23,-0.12 -0.37,-0.2 -0.15,-0.07 -0.32,-0.14 -0.52,-0.2 -0.2,-0.06 -0.44,-0.09 -0.72,-0.09 -0.24,0 -0.46,0.03 -0.65,0.09 -0.19,0.06 -0.36,0.15 -0.49,0.25 -0.14,0.11 -0.24,0.23 -0.31,0.37 -0.07,0.14 -0.11,0.29 -0.11,0.46 0,0.21 0.06,0.38 0.18,0.52 0.12,0.14 0.28,0.26 0.48,0.36 0.2,0.1 0.42,0.19 0.67,0.27 0.25,0.08 0.51,0.16 0.77,0.25 0.26,0.09 0.52,0.19 0.77,0.29 0.25,0.11 0.47,0.24 0.67,0.4 0.2,0.16 0.36,0.36 0.48,0.59 0.12,0.23 0.18,0.51 0.18,0.84 0,0.37 -0.07,0.72 -0.2,1.04 -0.13,0.32 -0.33,0.59 -0.59,0.82 -0.26,0.23 -0.58,0.42 -0.96,0.55 -0.38,0.13 -0.82,0.2 -1.31,0.2 -0.57,0 -1.08,-0.09 -1.54,-0.28 -0.46,-0.18 -0.85,-0.42 -1.17,-0.71 l 0.34,-0.54 c 0.04,-0.07 0.09,-0.12 0.15,-0.16 0.06,-0.04 0.14,-0.06 0.23,-0.06 0.09,0 0.2,0.04 0.3,0.11 0.11,0.07 0.24,0.16 0.39,0.25 0.15,0.09 0.34,0.17 0.55,0.25 0.22,0.07 0.49,0.11 0.81,0.11 0.28,0 0.52,-0.04 0.73,-0.11 0.21,-0.07 0.38,-0.17 0.52,-0.29 0.14,-0.12 0.24,-0.26 0.31,-0.42 0.07,-0.16 0.1,-0.33 0.1,-0.51 0,-0.22 -0.06,-0.41 -0.18,-0.56 -0.12,-0.15 -0.28,-0.27 -0.48,-0.38 -0.2,-0.1 -0.42,-0.19 -0.68,-0.27 -0.25,-0.08 -0.51,-0.16 -0.78,-0.24 -0.26,-0.08 -0.52,-0.18 -0.78,-0.29 -0.25,-0.11 -0.48,-0.25 -0.68,-0.41 -0.2,-0.17 -0.36,-0.37 -0.48,-0.61 -0.12,-0.24 -0.18,-0.54 -0.18,-0.88 0,-0.31 0.06,-0.61 0.19,-0.89 0.13,-0.29 0.31,-0.54 0.56,-0.75 0.25,-0.22 0.55,-0.39 0.9,-0.52 0.36,-0.13 0.77,-0.19 1.22,-0.19 0.53,0 1.01,0.08 1.44,0.25 0.42,0.17 0.79,0.4 1.1,0.69 l -0.32,0.52 z" /> + <path + className="cls-3" + d="m 1514.55,329.85 c 0.07,0.03 0.14,0.11 0.23,0.21 l 6.64,8.64 c -0.02,-0.14 -0.03,-0.27 -0.03,-0.4 0,-0.13 0,-0.26 0,-0.38 v -8.12 h 1.36 v 11.46 h -0.78 c -0.12,0 -0.23,-0.02 -0.31,-0.06 -0.08,-0.04 -0.16,-0.11 -0.24,-0.22 l -6.63,-8.63 c 0.01,0.13 0.02,0.26 0.02,0.39 0,0.13 0,0.25 0,0.35 v 8.17 h -1.36 V 329.8 h 0.8 c 0.14,0 0.24,0.02 0.31,0.05 z" /> + <path + className="cls-3" + d="m 1528.52,333.03 c 0.49,0 0.93,0.08 1.34,0.24 0.41,0.16 0.77,0.4 1.06,0.7 0.29,0.3 0.53,0.69 0.7,1.14 0.17,0.45 0.25,0.96 0.25,1.54 0,0.22 -0.02,0.37 -0.07,0.45 -0.05,0.07 -0.14,0.11 -0.27,0.11 h -5.39 c 0.01,0.51 0.08,0.96 0.21,1.34 0.13,0.38 0.3,0.69 0.53,0.95 0.22,0.25 0.49,0.44 0.8,0.57 0.31,0.12 0.66,0.19 1.04,0.19 0.36,0 0.67,-0.04 0.92,-0.12 0.26,-0.08 0.48,-0.17 0.67,-0.27 0.19,-0.1 0.34,-0.19 0.47,-0.27 0.12,-0.08 0.23,-0.12 0.32,-0.12 0.12,0 0.21,0.04 0.27,0.14 l 0.4,0.52 c -0.18,0.21 -0.39,0.4 -0.63,0.56 -0.25,0.16 -0.51,0.29 -0.79,0.39 -0.28,0.1 -0.57,0.18 -0.87,0.23 -0.3,0.05 -0.6,0.08 -0.89,0.08 -0.56,0 -1.08,-0.09 -1.55,-0.28 -0.47,-0.19 -0.88,-0.47 -1.22,-0.83 -0.34,-0.37 -0.61,-0.82 -0.8,-1.36 -0.19,-0.54 -0.29,-1.16 -0.29,-1.86 0,-0.57 0.09,-1.09 0.26,-1.58 0.17,-0.49 0.42,-0.92 0.75,-1.28 0.33,-0.36 0.72,-0.64 1.19,-0.85 0.47,-0.21 1,-0.31 1.58,-0.31 z m 0.03,1.05 c -0.69,0 -1.23,0.2 -1.62,0.6 -0.4,0.4 -0.64,0.95 -0.74,1.65 h 4.41 c 0,-0.33 -0.05,-0.63 -0.14,-0.91 -0.09,-0.27 -0.22,-0.51 -0.4,-0.71 -0.18,-0.2 -0.39,-0.35 -0.64,-0.46 -0.25,-0.11 -0.54,-0.16 -0.87,-0.16 z" /> + <path + className="cls-3" + d="m 1533.69,344.01 v -10.85 h 0.85 c 0.2,0 0.33,0.1 0.38,0.3 l 0.12,0.96 c 0.35,-0.42 0.74,-0.76 1.19,-1.02 0.45,-0.26 0.96,-0.38 1.54,-0.38 0.46,0 0.88,0.09 1.26,0.27 0.38,0.18 0.7,0.44 0.97,0.79 0.27,0.35 0.47,0.78 0.62,1.3 0.14,0.52 0.22,1.11 0.22,1.78 0,0.6 -0.08,1.15 -0.24,1.67 -0.16,0.52 -0.39,0.96 -0.69,1.34 -0.3,0.38 -0.67,0.67 -1.1,0.89 -0.43,0.22 -0.92,0.32 -1.47,0.32 -0.5,0 -0.93,-0.08 -1.28,-0.25 -0.35,-0.17 -0.67,-0.4 -0.94,-0.7 v 3.58 h -1.42 z m 3.61,-9.85 c -0.46,0 -0.87,0.11 -1.22,0.32 -0.35,0.21 -0.67,0.51 -0.96,0.9 v 3.92 c 0.26,0.35 0.55,0.6 0.86,0.74 0.31,0.14 0.66,0.22 1.04,0.22 0.75,0 1.33,-0.27 1.74,-0.81 0.4,-0.54 0.61,-1.31 0.61,-2.3 0,-0.53 -0.05,-0.98 -0.14,-1.36 -0.09,-0.38 -0.23,-0.69 -0.4,-0.93 -0.18,-0.24 -0.39,-0.42 -0.65,-0.53 -0.26,-0.11 -0.55,-0.17 -0.87,-0.17 z" /> + <path + className="cls-3" + d="m 1545.81,333.03 c 0.59,0 1.13,0.1 1.6,0.3 0.47,0.2 0.88,0.48 1.22,0.84 0.33,0.36 0.59,0.8 0.77,1.32 0.18,0.52 0.27,1.09 0.27,1.72 0,0.63 -0.09,1.22 -0.27,1.73 -0.18,0.51 -0.43,0.95 -0.77,1.31 -0.33,0.36 -0.74,0.64 -1.22,0.84 -0.48,0.2 -1.01,0.29 -1.6,0.29 -0.59,0 -1.13,-0.1 -1.6,-0.29 -0.48,-0.19 -0.88,-0.47 -1.22,-0.84 -0.34,-0.36 -0.59,-0.8 -0.78,-1.31 -0.19,-0.51 -0.27,-1.09 -0.27,-1.73 0,-0.64 0.09,-1.21 0.27,-1.72 0.18,-0.51 0.44,-0.95 0.78,-1.32 0.34,-0.36 0.74,-0.64 1.22,-0.84 0.48,-0.2 1.01,-0.3 1.6,-0.3 z m 0,7.23 c 0.8,0 1.4,-0.27 1.79,-0.8 0.39,-0.54 0.59,-1.28 0.59,-2.24 0,-0.96 -0.2,-1.72 -0.59,-2.26 -0.39,-0.54 -0.99,-0.81 -1.79,-0.81 -0.41,0 -0.76,0.07 -1.06,0.21 -0.3,0.14 -0.55,0.34 -0.75,0.6 -0.2,0.26 -0.35,0.58 -0.45,0.96 -0.1,0.38 -0.15,0.81 -0.15,1.29 0,0.48 0.05,0.91 0.15,1.29 0.1,0.38 0.25,0.7 0.45,0.96 0.2,0.26 0.45,0.46 0.75,0.6 0.3,0.14 0.65,0.21 1.06,0.21 z" /> + <path + className="cls-3" + d="m 1551.42,341.26 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.3 l 0.1,0.83 c 0.3,-0.37 0.63,-0.67 1,-0.9 0.37,-0.24 0.8,-0.35 1.29,-0.35 0.55,0 0.99,0.15 1.33,0.46 0.34,0.3 0.58,0.71 0.73,1.23 0.11,-0.29 0.26,-0.55 0.44,-0.76 0.18,-0.21 0.39,-0.39 0.62,-0.53 0.23,-0.14 0.47,-0.24 0.73,-0.3 0.26,-0.06 0.52,-0.1 0.79,-0.1 0.43,0 0.81,0.07 1.14,0.2 0.33,0.14 0.62,0.33 0.85,0.6 0.23,0.26 0.41,0.58 0.53,0.96 0.12,0.38 0.18,0.82 0.18,1.31 v 5.16 h -1.42 v -5.16 c 0,-0.63 -0.14,-1.12 -0.42,-1.44 -0.28,-0.32 -0.68,-0.49 -1.21,-0.49 -0.23,0 -0.46,0.04 -0.67,0.12 -0.21,0.08 -0.4,0.2 -0.56,0.36 -0.16,0.16 -0.29,0.36 -0.38,0.6 -0.09,0.24 -0.14,0.52 -0.14,0.84 v 5.16 h -1.42 v -5.16 c 0,-0.65 -0.13,-1.14 -0.39,-1.46 -0.26,-0.32 -0.64,-0.48 -1.14,-0.48 -0.35,0 -0.68,0.09 -0.98,0.28 -0.3,0.19 -0.58,0.45 -0.83,0.77 v 6.04 h -1.42 z" /> + <path + className="cls-3" + d="m 1565.79,333.16 v 5.17 c 0,0.61 0.14,1.09 0.42,1.42 0.28,0.34 0.71,0.5 1.28,0.5 0.42,0 0.81,-0.1 1.18,-0.3 0.37,-0.2 0.71,-0.47 1.02,-0.82 v -5.98 h 1.42 v 8.1 h -0.85 c -0.2,0 -0.33,-0.1 -0.38,-0.3 l -0.11,-0.87 c -0.35,0.39 -0.75,0.7 -1.18,0.94 -0.43,0.24 -0.94,0.36 -1.5,0.36 -0.44,0 -0.83,-0.07 -1.17,-0.22 -0.34,-0.15 -0.62,-0.35 -0.85,-0.62 -0.23,-0.27 -0.4,-0.59 -0.52,-0.97 -0.11,-0.38 -0.17,-0.8 -0.17,-1.26 v -5.17 h 1.42 z" /> + <path + className="cls-3" + d="m 1574.94,329.48 v 6.94 h 0.37 c 0.11,0 0.19,-0.01 0.26,-0.04 0.07,-0.03 0.15,-0.09 0.23,-0.18 l 2.56,-2.74 c 0.08,-0.08 0.16,-0.15 0.24,-0.21 0.08,-0.05 0.19,-0.08 0.32,-0.08 h 1.3 l -2.98,3.18 c -0.08,0.09 -0.15,0.17 -0.22,0.24 -0.07,0.07 -0.15,0.13 -0.24,0.18 0.1,0.06 0.18,0.14 0.26,0.22 0.08,0.08 0.15,0.18 0.22,0.28 l 3.17,4 h -1.28 c -0.12,0 -0.22,-0.02 -0.3,-0.07 -0.08,-0.04 -0.16,-0.12 -0.24,-0.21 l -2.66,-3.32 c -0.08,-0.11 -0.16,-0.18 -0.24,-0.22 -0.08,-0.03 -0.2,-0.05 -0.36,-0.05 h -0.4 v 3.87 h -1.43 v -11.78 h 1.43 z" /> + <polygon + className="cls-3" + points="1323.5,378.49 1323.5,386.7 1316.53,386.7 1316.53,388.7 1323.5,388.7 1323.5,410.99 1325.5,410.99 1325.5,388.7 1332.47,388.7 1332.47,386.7 1325.5,386.7 1325.5,378.49 " /> + </Parish> + <Parish href="/gemeinde/st-antonius" ariaLabel="St. Antonius" transform="matrix(1.7754174,0,0,1.7754174,-1207.9013,-992.65836)"> + <path + className="cls-1" + d="m 1717.11,1195.17 h -87.77 c -6.6,0 -12,5.4 -12,12 v 4.89 h -27.9 l -17.59,23.52 c -3.78,-2.44 -8.27,-3.86 -13.1,-3.86 -13.38,0 -24.22,10.84 -24.22,24.22 0,13.38 10.84,24.22 24.22,24.22 13.38,0 24.22,-10.84 24.22,-24.22 0,-6.69 -2.71,-12.74 -7.09,-17.12 -0.51,-0.51 -1.05,-1 -1.6,-1.46 l 16.67,-22.3 h 26.4 v 2.89 c 0,6.6 5.4,12 12,12 h 87.77 c 6.6,0 12,-5.4 12,-12 v -10.78 c 0,-6.6 -5.4,-12 -12,-12 z" /> + <path + className="cls-3" + d="m 1638.62,1208.82 c -0.05,0.08 -0.1,0.14 -0.15,0.18 -0.05,0.04 -0.12,0.06 -0.21,0.06 -0.09,0 -0.2,-0.04 -0.32,-0.14 -0.12,-0.1 -0.27,-0.19 -0.46,-0.3 -0.19,-0.11 -0.41,-0.21 -0.66,-0.3 -0.25,-0.09 -0.57,-0.14 -0.94,-0.14 -0.35,0 -0.65,0.05 -0.92,0.14 -0.27,0.09 -0.49,0.22 -0.67,0.38 -0.18,0.16 -0.31,0.35 -0.4,0.56 -0.09,0.22 -0.14,0.45 -0.14,0.7 0,0.32 0.08,0.59 0.24,0.8 0.16,0.21 0.37,0.39 0.62,0.54 0.26,0.15 0.55,0.28 0.88,0.39 0.33,0.11 0.66,0.22 1.01,0.34 0.34,0.12 0.68,0.25 1.01,0.4 0.33,0.15 0.62,0.33 0.88,0.56 0.26,0.22 0.47,0.5 0.62,0.82 0.16,0.33 0.24,0.73 0.24,1.2 0,0.5 -0.08,0.97 -0.26,1.41 -0.17,0.44 -0.42,0.82 -0.75,1.15 -0.33,0.33 -0.73,0.58 -1.21,0.77 -0.48,0.19 -1.02,0.28 -1.63,0.28 -0.74,0 -1.42,-0.13 -2.03,-0.4 -0.61,-0.27 -1.13,-0.63 -1.56,-1.09 l 0.45,-0.74 c 0.04,-0.06 0.09,-0.11 0.16,-0.15 0.06,-0.04 0.13,-0.06 0.2,-0.06 0.11,0 0.24,0.06 0.38,0.18 0.14,0.12 0.32,0.25 0.54,0.4 0.22,0.14 0.48,0.28 0.78,0.4 0.31,0.12 0.68,0.18 1.12,0.18 0.37,0 0.7,-0.05 0.98,-0.15 0.29,-0.1 0.53,-0.24 0.73,-0.43 0.2,-0.18 0.35,-0.4 0.46,-0.66 0.11,-0.26 0.16,-0.54 0.16,-0.86 0,-0.35 -0.08,-0.63 -0.24,-0.85 -0.16,-0.22 -0.36,-0.41 -0.62,-0.56 -0.26,-0.15 -0.55,-0.28 -0.88,-0.38 -0.33,-0.1 -0.66,-0.21 -1.01,-0.32 -0.34,-0.11 -0.68,-0.24 -1.01,-0.38 -0.33,-0.14 -0.62,-0.33 -0.88,-0.56 -0.26,-0.23 -0.46,-0.52 -0.62,-0.86 -0.16,-0.34 -0.24,-0.77 -0.24,-1.28 0,-0.41 0.08,-0.8 0.24,-1.18 0.16,-0.38 0.39,-0.71 0.68,-1.01 0.3,-0.29 0.67,-0.53 1.11,-0.7 0.44,-0.18 0.95,-0.26 1.52,-0.26 0.64,0 1.22,0.1 1.75,0.3 0.53,0.2 0.99,0.5 1.38,0.88 l -0.38,0.74 z" /> + <path + className="cls-3" + d="m 1643.46,1218.62 c -0.64,0 -1.13,-0.18 -1.48,-0.54 -0.35,-0.36 -0.52,-0.87 -0.52,-1.54 v -4.96 h -0.98 c -0.08,0 -0.16,-0.03 -0.22,-0.08 -0.06,-0.05 -0.09,-0.13 -0.09,-0.24 v -0.57 l 1.33,-0.17 0.33,-2.5 c 0.01,-0.08 0.05,-0.15 0.1,-0.2 0.05,-0.05 0.13,-0.08 0.22,-0.08 h 0.72 v 2.79 h 2.32 v 1.03 h -2.32 v 4.86 c 0,0.34 0.08,0.59 0.25,0.76 0.17,0.17 0.38,0.25 0.64,0.25 0.15,0 0.28,-0.02 0.39,-0.06 0.11,-0.04 0.2,-0.08 0.28,-0.13 0.08,-0.05 0.15,-0.09 0.2,-0.13 0.05,-0.04 0.11,-0.06 0.15,-0.06 0.08,0 0.14,0.04 0.2,0.14 l 0.42,0.68 c -0.25,0.23 -0.54,0.41 -0.89,0.54 -0.35,0.13 -0.7,0.2 -1.07,0.2 z" /> + <path + className="cls-3" + d="m 1646.51,1217.61 c 0,-0.14 0.03,-0.27 0.08,-0.39 0.05,-0.12 0.12,-0.23 0.21,-0.32 0.09,-0.09 0.19,-0.16 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.16,0.2 0.21,0.32 0.05,0.12 0.08,0.25 0.08,0.39 0,0.14 -0.03,0.28 -0.08,0.4 -0.05,0.12 -0.12,0.23 -0.21,0.32 -0.09,0.09 -0.2,0.16 -0.32,0.21 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.12 -0.32,-0.21 -0.09,-0.09 -0.16,-0.2 -0.21,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.4 z" /> + <path + className="cls-3" + d="m 1663.11,1218.49 h -1.2 c -0.14,0 -0.25,-0.04 -0.34,-0.1 -0.09,-0.06 -0.15,-0.16 -0.19,-0.26 l -1.07,-2.77 h -5.14 l -1.07,2.77 c -0.04,0.1 -0.1,0.18 -0.19,0.26 -0.09,0.08 -0.2,0.11 -0.34,0.11 h -1.2 l 4.58,-11.46 h 1.58 l 4.58,11.46 z m -7.51,-4.26 h 4.28 l -1.8,-4.66 c -0.12,-0.29 -0.23,-0.65 -0.34,-1.08 -0.06,0.22 -0.12,0.42 -0.17,0.6 -0.06,0.18 -0.11,0.35 -0.16,0.48 l -1.8,4.66 z" /> + <path + className="cls-3" + d="m 1664.33,1218.49 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.3 l 0.11,0.88 c 0.35,-0.39 0.75,-0.7 1.18,-0.94 0.43,-0.24 0.94,-0.36 1.51,-0.36 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.36 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 v -5.16 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.81,0.1 -1.18,0.3 -0.37,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" /> + <path + className="cls-3" + d="m 1675.68,1218.62 c -0.64,0 -1.13,-0.18 -1.48,-0.54 -0.34,-0.36 -0.52,-0.87 -0.52,-1.54 v -4.96 h -0.98 c -0.08,0 -0.16,-0.03 -0.22,-0.08 -0.06,-0.05 -0.09,-0.13 -0.09,-0.24 v -0.57 l 1.33,-0.17 0.33,-2.5 c 0.01,-0.08 0.04,-0.15 0.1,-0.2 0.06,-0.05 0.13,-0.08 0.22,-0.08 h 0.72 v 2.79 h 2.32 v 1.03 h -2.32 v 4.86 c 0,0.34 0.08,0.59 0.25,0.76 0.17,0.17 0.38,0.25 0.64,0.25 0.15,0 0.28,-0.02 0.39,-0.06 0.11,-0.04 0.2,-0.08 0.28,-0.13 0.08,-0.05 0.15,-0.09 0.2,-0.13 0.06,-0.04 0.11,-0.06 0.15,-0.06 0.07,0 0.14,0.04 0.2,0.14 l 0.42,0.68 c -0.25,0.23 -0.54,0.41 -0.89,0.54 -0.35,0.13 -0.7,0.2 -1.07,0.2 z" /> + <path + className="cls-3" + d="m 1682.48,1210.26 c 0.59,0 1.13,0.1 1.6,0.3 0.47,0.2 0.88,0.48 1.22,0.84 0.33,0.36 0.59,0.8 0.77,1.32 0.18,0.52 0.27,1.09 0.27,1.72 0,0.63 -0.09,1.22 -0.27,1.73 -0.18,0.51 -0.44,0.95 -0.77,1.31 -0.33,0.36 -0.74,0.64 -1.22,0.84 -0.48,0.2 -1.01,0.29 -1.6,0.29 -0.59,0 -1.13,-0.1 -1.6,-0.29 -0.48,-0.19 -0.88,-0.47 -1.22,-0.84 -0.34,-0.36 -0.59,-0.8 -0.78,-1.31 -0.19,-0.51 -0.27,-1.09 -0.27,-1.73 0,-0.64 0.09,-1.21 0.27,-1.72 0.18,-0.51 0.44,-0.95 0.78,-1.32 0.34,-0.36 0.74,-0.64 1.22,-0.84 0.48,-0.2 1.01,-0.3 1.6,-0.3 z m 0,7.23 c 0.8,0 1.4,-0.27 1.79,-0.8 0.39,-0.54 0.59,-1.28 0.59,-2.24 0,-0.96 -0.2,-1.72 -0.59,-2.26 -0.4,-0.54 -0.99,-0.81 -1.79,-0.81 -0.41,0 -0.76,0.07 -1.06,0.21 -0.3,0.14 -0.55,0.34 -0.75,0.6 -0.2,0.26 -0.35,0.58 -0.45,0.96 -0.1,0.38 -0.15,0.81 -0.15,1.29 0,0.48 0.05,0.91 0.15,1.29 0.1,0.38 0.25,0.7 0.45,0.96 0.2,0.26 0.45,0.46 0.75,0.6 0.3,0.14 0.65,0.21 1.06,0.21 z" /> + <path + className="cls-3" + d="m 1688.09,1218.49 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.3 l 0.11,0.88 c 0.35,-0.39 0.75,-0.7 1.18,-0.94 0.43,-0.24 0.94,-0.36 1.51,-0.36 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.36 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 v -5.16 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.81,0.1 -1.18,0.3 -0.37,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" /> + <path + className="cls-3" + d="m 1698.89,1207.84 c 0,0.14 -0.03,0.27 -0.08,0.39 -0.06,0.12 -0.13,0.23 -0.22,0.32 -0.09,0.09 -0.2,0.17 -0.32,0.22 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.13 -0.32,-0.22 -0.09,-0.09 -0.17,-0.2 -0.22,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.39 0,-0.14 0.03,-0.27 0.08,-0.4 0.05,-0.13 0.13,-0.24 0.22,-0.33 0.09,-0.09 0.2,-0.17 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.17,0.2 0.22,0.33 0.06,0.12 0.08,0.26 0.08,0.4 z m -0.32,2.54 v 8.1 h -1.42 v -8.1 z" /> + <path + className="cls-3" + d="m 1702.32,1210.38 v 5.17 c 0,0.61 0.14,1.09 0.42,1.42 0.28,0.34 0.71,0.5 1.28,0.5 0.42,0 0.81,-0.1 1.18,-0.3 0.37,-0.2 0.71,-0.47 1.02,-0.82 v -5.98 h 1.42 v 8.1 h -0.85 c -0.2,0 -0.33,-0.1 -0.38,-0.3 l -0.11,-0.87 c -0.35,0.39 -0.75,0.7 -1.18,0.94 -0.43,0.24 -0.94,0.36 -1.5,0.36 -0.44,0 -0.83,-0.07 -1.17,-0.22 -0.34,-0.15 -0.62,-0.35 -0.85,-0.62 -0.23,-0.27 -0.4,-0.59 -0.52,-0.97 -0.12,-0.38 -0.17,-0.8 -0.17,-1.26 v -5.17 h 1.42 z" /> + <path + className="cls-3" + d="m 1714.62,1211.72 c -0.06,0.12 -0.16,0.18 -0.3,0.18 -0.08,0 -0.17,-0.03 -0.27,-0.09 -0.1,-0.06 -0.23,-0.12 -0.37,-0.2 -0.15,-0.07 -0.32,-0.14 -0.52,-0.2 -0.2,-0.06 -0.44,-0.09 -0.72,-0.09 -0.24,0 -0.46,0.03 -0.65,0.09 -0.19,0.06 -0.36,0.15 -0.49,0.25 -0.14,0.11 -0.24,0.23 -0.31,0.37 -0.07,0.14 -0.11,0.29 -0.11,0.46 0,0.21 0.06,0.38 0.18,0.52 0.12,0.14 0.28,0.26 0.48,0.36 0.2,0.1 0.42,0.19 0.67,0.27 0.25,0.08 0.51,0.16 0.77,0.25 0.26,0.09 0.52,0.19 0.77,0.29 0.25,0.11 0.47,0.24 0.67,0.4 0.2,0.16 0.36,0.36 0.48,0.59 0.12,0.23 0.18,0.51 0.18,0.84 0,0.37 -0.07,0.72 -0.2,1.04 -0.13,0.32 -0.33,0.59 -0.59,0.82 -0.26,0.23 -0.58,0.42 -0.96,0.55 -0.38,0.13 -0.82,0.2 -1.31,0.2 -0.57,0 -1.08,-0.09 -1.54,-0.28 -0.46,-0.18 -0.85,-0.42 -1.17,-0.71 l 0.34,-0.54 c 0.04,-0.07 0.09,-0.12 0.15,-0.16 0.06,-0.04 0.14,-0.06 0.23,-0.06 0.09,0 0.2,0.04 0.3,0.11 0.11,0.07 0.24,0.16 0.39,0.25 0.15,0.09 0.34,0.17 0.55,0.25 0.22,0.07 0.49,0.11 0.81,0.11 0.28,0 0.52,-0.04 0.73,-0.11 0.21,-0.07 0.38,-0.17 0.52,-0.29 0.14,-0.12 0.24,-0.26 0.31,-0.42 0.07,-0.16 0.1,-0.33 0.1,-0.51 0,-0.22 -0.06,-0.41 -0.18,-0.56 -0.12,-0.15 -0.28,-0.27 -0.48,-0.38 -0.2,-0.1 -0.42,-0.19 -0.68,-0.27 -0.25,-0.08 -0.51,-0.16 -0.78,-0.24 -0.26,-0.08 -0.52,-0.18 -0.78,-0.29 -0.25,-0.11 -0.48,-0.25 -0.68,-0.41 -0.2,-0.17 -0.36,-0.37 -0.48,-0.61 -0.12,-0.24 -0.18,-0.54 -0.18,-0.88 0,-0.31 0.06,-0.61 0.19,-0.89 0.13,-0.29 0.32,-0.54 0.56,-0.75 0.24,-0.21 0.55,-0.39 0.9,-0.52 0.36,-0.13 0.76,-0.19 1.22,-0.19 0.53,0 1.01,0.08 1.44,0.25 0.42,0.17 0.79,0.4 1.1,0.69 l -0.32,0.52 z" /> + <polygon + className="cls-3" + points="1559.75,1252.73 1566.72,1252.73 1566.72,1250.73 1559.75,1250.73 1559.75,1242.52 1557.75,1242.52 1557.75,1250.73 1550.78,1250.73 1550.78,1252.73 1557.75,1252.73 1557.75,1275.02 1559.75,1275.02 " /> + </Parish> + <Parish href="/gemeinde/st-franziskus" ariaLabel="St. Franziskus" transform="matrix(1.8077138,0,0,1.8077138,-683.72969,-887.97626)"> + <path + className="cls-1" + d="m 839.4,1058.03 c -4.38,-4.38 -10.44,-7.09 -17.12,-7.09 -7.07,0 -13.43,3.03 -17.86,7.87 l 0.4,-0.46 -20,-17.51 h -27.06 v -3.89 c 0,-6.6 -5.4,-12 -12,-12 h -96.68 c -6.6,0 -12,5.4 -12,12 v 10.78 c 0,6.6 5.4,12 12,12 h 96.68 c 6.6,0 12,-5.4 12,-12 v -3.89 h 25.93 l 19.15,16.76 0.98,-1.12 c -3.59,4.22 -5.76,9.69 -5.76,15.67 0,13.38 10.84,24.22 24.22,24.22 13.38,0 24.22,-10.84 24.22,-24.22 0,-6.69 -2.71,-12.74 -7.09,-17.12 z" /> + <path + className="cls-3" + d="m 655.76,1039.04 c -0.05,0.08 -0.1,0.14 -0.15,0.18 -0.05,0.04 -0.12,0.06 -0.21,0.06 -0.09,0 -0.2,-0.04 -0.32,-0.14 -0.12,-0.1 -0.27,-0.19 -0.46,-0.3 -0.18,-0.11 -0.41,-0.21 -0.66,-0.3 -0.26,-0.09 -0.57,-0.14 -0.94,-0.14 -0.35,0 -0.65,0.05 -0.92,0.14 -0.27,0.09 -0.49,0.22 -0.67,0.38 -0.18,0.16 -0.31,0.35 -0.4,0.56 -0.09,0.22 -0.14,0.45 -0.14,0.7 0,0.32 0.08,0.59 0.24,0.8 0.16,0.21 0.37,0.39 0.62,0.54 0.26,0.15 0.55,0.28 0.88,0.39 0.33,0.11 0.66,0.22 1.01,0.34 0.34,0.12 0.68,0.25 1.01,0.4 0.33,0.15 0.62,0.33 0.88,0.56 0.26,0.22 0.47,0.5 0.62,0.82 0.16,0.33 0.24,0.73 0.24,1.2 0,0.5 -0.09,0.97 -0.26,1.41 -0.17,0.44 -0.42,0.82 -0.75,1.15 -0.33,0.33 -0.73,0.58 -1.21,0.77 -0.48,0.19 -1.02,0.28 -1.63,0.28 -0.74,0 -1.42,-0.13 -2.03,-0.4 -0.61,-0.27 -1.13,-0.63 -1.56,-1.09 l 0.45,-0.74 c 0.04,-0.06 0.09,-0.11 0.16,-0.15 0.06,-0.04 0.13,-0.06 0.2,-0.06 0.11,0 0.24,0.06 0.38,0.18 0.14,0.12 0.32,0.25 0.54,0.4 0.22,0.14 0.48,0.28 0.78,0.4 0.31,0.12 0.68,0.18 1.12,0.18 0.37,0 0.7,-0.05 0.98,-0.15 0.29,-0.1 0.53,-0.24 0.73,-0.43 0.2,-0.18 0.35,-0.4 0.46,-0.66 0.11,-0.26 0.16,-0.54 0.16,-0.86 0,-0.35 -0.08,-0.63 -0.24,-0.85 -0.16,-0.22 -0.36,-0.41 -0.62,-0.56 -0.26,-0.15 -0.55,-0.28 -0.88,-0.38 -0.33,-0.1 -0.66,-0.21 -1.01,-0.32 -0.34,-0.11 -0.68,-0.24 -1.01,-0.38 -0.33,-0.14 -0.62,-0.33 -0.88,-0.56 -0.26,-0.23 -0.46,-0.52 -0.62,-0.86 -0.16,-0.34 -0.24,-0.77 -0.24,-1.28 0,-0.41 0.08,-0.8 0.24,-1.18 0.16,-0.38 0.39,-0.71 0.68,-1.01 0.3,-0.29 0.67,-0.53 1.11,-0.7 0.44,-0.18 0.95,-0.26 1.52,-0.26 0.64,0 1.22,0.1 1.75,0.3 0.53,0.2 0.99,0.5 1.38,0.88 l -0.38,0.74 z" /> + <path + className="cls-3" + d="m 660.6,1048.84 c -0.64,0 -1.13,-0.18 -1.48,-0.54 -0.34,-0.36 -0.52,-0.87 -0.52,-1.54 v -4.96 h -0.98 c -0.08,0 -0.16,-0.03 -0.22,-0.08 -0.06,-0.05 -0.09,-0.13 -0.09,-0.24 v -0.57 l 1.33,-0.17 0.33,-2.5 c 0.01,-0.08 0.05,-0.15 0.1,-0.2 0.05,-0.05 0.13,-0.08 0.22,-0.08 h 0.72 v 2.79 h 2.32 v 1.03 h -2.32 v 4.86 c 0,0.34 0.08,0.59 0.25,0.76 0.17,0.17 0.38,0.25 0.64,0.25 0.15,0 0.28,-0.02 0.39,-0.06 0.11,-0.04 0.2,-0.08 0.28,-0.13 0.08,-0.05 0.15,-0.09 0.2,-0.13 0.06,-0.04 0.11,-0.06 0.15,-0.06 0.07,0 0.14,0.04 0.2,0.14 l 0.42,0.68 c -0.25,0.23 -0.54,0.41 -0.89,0.54 -0.35,0.13 -0.7,0.2 -1.07,0.2 z" /> + <path + className="cls-3" + d="m 663.64,1047.83 c 0,-0.14 0.03,-0.27 0.08,-0.39 0.05,-0.12 0.12,-0.23 0.21,-0.32 0.09,-0.09 0.19,-0.16 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.16,0.2 0.21,0.32 0.05,0.12 0.08,0.25 0.08,0.39 0,0.14 -0.03,0.28 -0.08,0.4 -0.05,0.12 -0.12,0.23 -0.21,0.32 -0.09,0.09 -0.2,0.16 -0.32,0.21 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.12 -0.32,-0.21 -0.09,-0.09 -0.16,-0.2 -0.21,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.4 z" /> + <path + className="cls-3" + d="m 677.88,1037.24 v 1.26 h -5.5 v 4.01 h 4.7 v 1.26 h -4.7 v 4.93 h -1.56 v -11.46 z" /> + <path + className="cls-3" + d="m 679.16,1048.71 v -8.1 h 0.82 c 0.15,0 0.26,0.03 0.32,0.09 0.06,0.06 0.1,0.16 0.12,0.3 l 0.1,1.26 c 0.28,-0.57 0.62,-1.01 1.03,-1.32 0.41,-0.32 0.89,-0.48 1.44,-0.48 0.22,0 0.43,0.03 0.61,0.08 0.18,0.05 0.35,0.12 0.5,0.21 l -0.18,1.06 c -0.04,0.13 -0.12,0.2 -0.25,0.2 -0.07,0 -0.19,-0.03 -0.34,-0.08 -0.15,-0.05 -0.37,-0.08 -0.65,-0.08 -0.5,0 -0.91,0.14 -1.24,0.43 -0.33,0.29 -0.61,0.71 -0.84,1.26 v 5.16 h -1.42 z" /> + <path + className="cls-3" + d="m 691.26,1048.71 h -0.63 c -0.14,0 -0.25,-0.02 -0.34,-0.06 -0.09,-0.04 -0.14,-0.13 -0.17,-0.27 l -0.16,-0.75 c -0.21,0.19 -0.42,0.36 -0.62,0.52 -0.2,0.15 -0.42,0.28 -0.64,0.38 -0.22,0.1 -0.46,0.18 -0.72,0.24 -0.25,0.05 -0.54,0.08 -0.84,0.08 -0.3,0 -0.61,-0.04 -0.88,-0.13 -0.27,-0.09 -0.51,-0.22 -0.72,-0.4 -0.21,-0.18 -0.36,-0.4 -0.48,-0.67 -0.12,-0.27 -0.18,-0.59 -0.18,-0.96 0,-0.32 0.09,-0.63 0.26,-0.93 0.17,-0.3 0.46,-0.56 0.85,-0.79 0.39,-0.23 0.91,-0.42 1.54,-0.57 0.63,-0.15 1.41,-0.22 2.33,-0.22 v -0.64 c 0,-0.63 -0.13,-1.11 -0.4,-1.44 -0.27,-0.32 -0.67,-0.49 -1.2,-0.49 -0.35,0 -0.64,0.04 -0.88,0.13 -0.24,0.09 -0.44,0.19 -0.62,0.3 -0.18,0.11 -0.32,0.21 -0.45,0.3 -0.13,0.09 -0.25,0.13 -0.37,0.13 -0.1,0 -0.18,-0.03 -0.25,-0.08 -0.07,-0.05 -0.13,-0.11 -0.17,-0.19 l -0.26,-0.46 c 0.45,-0.43 0.93,-0.75 1.45,-0.97 0.52,-0.21 1.09,-0.32 1.72,-0.32 0.45,0 0.86,0.07 1.21,0.22 0.35,0.15 0.65,0.36 0.89,0.62 0.24,0.27 0.42,0.59 0.54,0.97 0.12,0.38 0.18,0.79 0.18,1.25 v 5.18 z m -3.7,-0.87 c 0.25,0 0.48,-0.03 0.69,-0.08 0.21,-0.05 0.4,-0.12 0.59,-0.22 0.18,-0.09 0.36,-0.21 0.53,-0.34 0.17,-0.13 0.33,-0.29 0.49,-0.46 v -1.67 c -0.66,0 -1.21,0.04 -1.67,0.12 -0.46,0.08 -0.83,0.19 -1.12,0.33 -0.29,0.13 -0.5,0.29 -0.63,0.47 -0.13,0.18 -0.2,0.39 -0.2,0.61 0,0.22 0.03,0.4 0.1,0.56 0.07,0.16 0.16,0.28 0.28,0.38 0.12,0.1 0.26,0.17 0.42,0.22 0.16,0.05 0.33,0.07 0.52,0.07 z" /> + <path + className="cls-3" + d="m 693.42,1048.71 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.3 l 0.11,0.88 c 0.35,-0.39 0.75,-0.7 1.18,-0.94 0.43,-0.24 0.94,-0.36 1.51,-0.36 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.36 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 v -5.16 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.81,0.1 -1.18,0.3 -0.37,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" /> + <path + className="cls-3" + d="m 707.97,1041.21 c 0,0.1 -0.02,0.2 -0.06,0.29 -0.04,0.09 -0.09,0.18 -0.14,0.25 l -4.38,5.84 h 4.42 v 1.11 h -6.1 v -0.59 c 0,-0.07 0.02,-0.15 0.05,-0.24 0.03,-0.09 0.08,-0.18 0.15,-0.27 l 4.41,-5.88 h -4.36 v -1.12 h 6.02 v 0.61 z" /> + <path + className="cls-3" + d="m 711.61,1038.06 c 0,0.14 -0.03,0.27 -0.08,0.39 -0.06,0.12 -0.13,0.23 -0.22,0.32 -0.09,0.09 -0.2,0.17 -0.32,0.22 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.13 -0.32,-0.22 -0.09,-0.09 -0.17,-0.2 -0.22,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.39 0,-0.14 0.03,-0.27 0.08,-0.4 0.05,-0.13 0.13,-0.24 0.22,-0.33 0.09,-0.09 0.2,-0.17 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.17,0.2 0.22,0.33 0.06,0.12 0.08,0.26 0.08,0.4 z m -0.32,2.54 v 8.1 h -1.42 v -8.1 z" /> + <path + className="cls-3" + d="m 718.44,1041.94 c -0.06,0.12 -0.16,0.18 -0.3,0.18 -0.08,0 -0.17,-0.03 -0.27,-0.09 -0.1,-0.06 -0.23,-0.12 -0.37,-0.2 -0.15,-0.07 -0.32,-0.14 -0.52,-0.2 -0.2,-0.06 -0.44,-0.09 -0.72,-0.09 -0.24,0 -0.46,0.03 -0.65,0.09 -0.19,0.06 -0.36,0.15 -0.49,0.25 -0.14,0.11 -0.24,0.23 -0.31,0.37 -0.07,0.14 -0.11,0.29 -0.11,0.46 0,0.21 0.06,0.38 0.18,0.52 0.12,0.14 0.28,0.26 0.48,0.36 0.2,0.1 0.42,0.19 0.67,0.27 0.25,0.08 0.51,0.16 0.77,0.25 0.26,0.09 0.52,0.19 0.77,0.29 0.25,0.11 0.47,0.24 0.67,0.4 0.2,0.16 0.36,0.36 0.48,0.59 0.12,0.23 0.18,0.51 0.18,0.84 0,0.37 -0.07,0.72 -0.2,1.04 -0.13,0.32 -0.33,0.59 -0.59,0.82 -0.26,0.23 -0.58,0.42 -0.96,0.55 -0.38,0.13 -0.82,0.2 -1.31,0.2 -0.57,0 -1.08,-0.09 -1.54,-0.28 -0.46,-0.18 -0.85,-0.42 -1.17,-0.71 l 0.34,-0.54 c 0.04,-0.07 0.09,-0.12 0.15,-0.16 0.06,-0.04 0.14,-0.06 0.23,-0.06 0.09,0 0.2,0.04 0.3,0.11 0.11,0.07 0.24,0.16 0.39,0.25 0.15,0.09 0.34,0.17 0.55,0.25 0.22,0.07 0.49,0.11 0.81,0.11 0.28,0 0.52,-0.04 0.73,-0.11 0.21,-0.07 0.38,-0.17 0.52,-0.29 0.14,-0.12 0.24,-0.26 0.31,-0.42 0.07,-0.16 0.1,-0.33 0.1,-0.51 0,-0.22 -0.06,-0.41 -0.18,-0.56 -0.12,-0.15 -0.28,-0.27 -0.48,-0.38 -0.2,-0.1 -0.42,-0.19 -0.68,-0.27 -0.25,-0.08 -0.51,-0.16 -0.78,-0.24 -0.26,-0.08 -0.52,-0.18 -0.78,-0.29 -0.25,-0.11 -0.48,-0.25 -0.68,-0.41 -0.2,-0.17 -0.36,-0.37 -0.48,-0.61 -0.12,-0.24 -0.18,-0.54 -0.18,-0.88 0,-0.31 0.06,-0.61 0.19,-0.89 0.13,-0.29 0.31,-0.54 0.56,-0.75 0.25,-0.22 0.55,-0.39 0.9,-0.52 0.36,-0.13 0.77,-0.19 1.22,-0.19 0.53,0 1.01,0.08 1.44,0.25 0.42,0.17 0.79,0.4 1.1,0.69 l -0.32,0.52 z" /> + <path + className="cls-3" + d="m 722.23,1036.92 v 6.94 h 0.37 c 0.11,0 0.19,-0.01 0.26,-0.04 0.07,-0.03 0.15,-0.09 0.23,-0.18 l 2.56,-2.74 c 0.08,-0.08 0.16,-0.15 0.24,-0.21 0.08,-0.05 0.19,-0.08 0.32,-0.08 h 1.3 l -2.98,3.18 c -0.07,0.09 -0.15,0.17 -0.22,0.24 -0.07,0.07 -0.15,0.13 -0.24,0.18 0.1,0.06 0.18,0.14 0.26,0.22 0.08,0.08 0.15,0.18 0.22,0.28 l 3.17,4 h -1.28 c -0.12,0 -0.22,-0.02 -0.3,-0.07 -0.08,-0.04 -0.16,-0.12 -0.24,-0.21 l -2.66,-3.32 c -0.08,-0.11 -0.16,-0.18 -0.24,-0.22 -0.08,-0.03 -0.2,-0.05 -0.36,-0.05 h -0.4 v 3.87 h -1.43 v -11.78 h 1.43 z" /> + <path + className="cls-3" + d="m 730.36,1040.6 v 5.17 c 0,0.61 0.14,1.09 0.42,1.42 0.28,0.34 0.71,0.5 1.28,0.5 0.42,0 0.81,-0.1 1.18,-0.3 0.37,-0.2 0.71,-0.47 1.02,-0.82 v -5.98 h 1.42 v 8.1 h -0.85 c -0.2,0 -0.33,-0.1 -0.38,-0.3 l -0.11,-0.87 c -0.35,0.39 -0.75,0.7 -1.18,0.94 -0.43,0.24 -0.94,0.36 -1.5,0.36 -0.44,0 -0.83,-0.07 -1.17,-0.22 -0.34,-0.15 -0.62,-0.35 -0.85,-0.62 -0.23,-0.27 -0.4,-0.59 -0.52,-0.97 -0.11,-0.38 -0.17,-0.8 -0.17,-1.26 v -5.17 h 1.42 z" /> + <path + className="cls-3" + d="m 742.67,1041.94 c -0.06,0.12 -0.16,0.18 -0.3,0.18 -0.08,0 -0.17,-0.03 -0.27,-0.09 -0.1,-0.06 -0.23,-0.12 -0.37,-0.2 -0.15,-0.07 -0.32,-0.14 -0.52,-0.2 -0.2,-0.06 -0.44,-0.09 -0.72,-0.09 -0.24,0 -0.46,0.03 -0.65,0.09 -0.19,0.06 -0.36,0.15 -0.49,0.25 -0.14,0.11 -0.24,0.23 -0.31,0.37 -0.07,0.14 -0.11,0.29 -0.11,0.46 0,0.21 0.06,0.38 0.18,0.52 0.12,0.14 0.28,0.26 0.48,0.36 0.2,0.1 0.42,0.19 0.67,0.27 0.25,0.08 0.51,0.16 0.77,0.25 0.26,0.09 0.52,0.19 0.77,0.29 0.25,0.11 0.47,0.24 0.67,0.4 0.2,0.16 0.36,0.36 0.48,0.59 0.12,0.23 0.18,0.51 0.18,0.84 0,0.37 -0.07,0.72 -0.2,1.04 -0.13,0.32 -0.33,0.59 -0.59,0.82 -0.26,0.23 -0.58,0.42 -0.96,0.55 -0.38,0.13 -0.82,0.2 -1.31,0.2 -0.57,0 -1.08,-0.09 -1.54,-0.28 -0.46,-0.18 -0.85,-0.42 -1.17,-0.71 l 0.34,-0.54 c 0.04,-0.07 0.09,-0.12 0.15,-0.16 0.06,-0.04 0.14,-0.06 0.23,-0.06 0.09,0 0.2,0.04 0.3,0.11 0.11,0.07 0.24,0.16 0.39,0.25 0.15,0.09 0.34,0.17 0.55,0.25 0.22,0.07 0.49,0.11 0.81,0.11 0.28,0 0.52,-0.04 0.73,-0.11 0.21,-0.07 0.38,-0.17 0.52,-0.29 0.14,-0.12 0.24,-0.26 0.31,-0.42 0.07,-0.16 0.1,-0.33 0.1,-0.51 0,-0.22 -0.06,-0.41 -0.18,-0.56 -0.12,-0.15 -0.28,-0.27 -0.48,-0.38 -0.2,-0.1 -0.42,-0.19 -0.68,-0.27 -0.25,-0.08 -0.51,-0.16 -0.78,-0.24 -0.26,-0.08 -0.52,-0.18 -0.78,-0.29 -0.25,-0.11 -0.48,-0.25 -0.68,-0.41 -0.2,-0.17 -0.36,-0.37 -0.48,-0.61 -0.12,-0.24 -0.18,-0.54 -0.18,-0.88 0,-0.31 0.06,-0.61 0.19,-0.89 0.13,-0.29 0.31,-0.54 0.56,-0.75 0.25,-0.22 0.55,-0.39 0.9,-0.52 0.36,-0.13 0.77,-0.19 1.22,-0.19 0.53,0 1.01,0.08 1.44,0.25 0.42,0.17 0.79,0.4 1.1,0.69 l -0.32,0.52 z" /> + <polygon + className="cls-3" + points="823.28,1059.9 821.28,1059.9 821.28,1068.11 814.31,1068.11 814.31,1070.11 821.28,1070.11 821.28,1092.4 823.28,1092.4 823.28,1070.11 830.25,1070.11 830.25,1068.11 823.28,1068.11 " /> + </Parish> + <Parish href="/gemeinde/maria-hilfe-der-christen" ariaLabel="Maria Hilfe der Christen" transform="matrix(1.7080953,0,0,1.7080953,-27.764416,-581.14088)"> + <path + className="cls-1" + d="M 309.92,729.62 H 135.28 c -6.6,0 -12,5.4 -12,12 v 4.16 H 77.44 l -13.26,26.51 c -0.25,0 -0.5,-0.02 -0.75,-0.02 -13.38,0 -24.22,10.84 -24.22,24.22 0,13.38 10.84,24.22 24.22,24.22 13.38,0 24.22,-10.84 24.22,-24.22 0,-6.69 -2.71,-12.74 -7.09,-17.12 -3.5,-3.5 -8.07,-5.93 -13.18,-6.77 l 11.91,-23.81 h 43.99 v 3.63 c 0,6.6 5.4,12 12,12 h 174.64 c 6.6,0 12,-5.4 12,-12 v -10.78 c 0,-6.6 -5.4,-12 -12,-12 z" /> + <path + className="cls-3" + d="m 141.92,749.65 c 0.06,0.14 0.11,0.28 0.16,0.43 0.05,-0.15 0.11,-0.29 0.17,-0.43 0.06,-0.14 0.12,-0.27 0.2,-0.41 l 3.88,-7.05 c 0.07,-0.12 0.14,-0.2 0.22,-0.22 0.07,-0.03 0.18,-0.04 0.32,-0.04 h 1.14 v 11.46 h -1.36 v -8.42 c 0,-0.11 0,-0.23 0,-0.36 0,-0.13 0.01,-0.26 0.02,-0.39 l -3.93,7.17 c -0.13,0.24 -0.32,0.36 -0.56,0.36 h -0.22 c -0.24,0 -0.43,-0.12 -0.56,-0.36 l -4.02,-7.19 c 0.02,0.14 0.03,0.27 0.04,0.41 0,0.13 0.01,0.26 0.01,0.37 v 8.42 h -1.36 v -11.46 h 1.14 c 0.14,0 0.25,0.01 0.32,0.04 0.07,0.03 0.15,0.1 0.22,0.22 l 3.96,7.06 c 0.07,0.13 0.14,0.26 0.2,0.4 z" /> + <path + className="cls-3" + d="m 156.53,753.39 h -0.63 c -0.14,0 -0.25,-0.02 -0.34,-0.06 -0.09,-0.04 -0.14,-0.13 -0.17,-0.27 l -0.16,-0.75 c -0.21,0.19 -0.42,0.36 -0.62,0.52 -0.2,0.15 -0.42,0.28 -0.64,0.38 -0.22,0.1 -0.46,0.18 -0.72,0.24 -0.25,0.05 -0.54,0.08 -0.84,0.08 -0.3,0 -0.61,-0.04 -0.88,-0.13 -0.27,-0.09 -0.51,-0.22 -0.72,-0.4 -0.2,-0.18 -0.36,-0.4 -0.48,-0.67 -0.12,-0.27 -0.18,-0.59 -0.18,-0.96 0,-0.32 0.09,-0.63 0.26,-0.93 0.17,-0.3 0.46,-0.56 0.85,-0.79 0.39,-0.23 0.91,-0.42 1.54,-0.57 0.63,-0.15 1.41,-0.22 2.33,-0.22 v -0.64 c 0,-0.63 -0.13,-1.11 -0.4,-1.44 -0.27,-0.32 -0.67,-0.49 -1.2,-0.49 -0.35,0 -0.64,0.04 -0.88,0.13 -0.24,0.09 -0.44,0.19 -0.62,0.3 -0.18,0.11 -0.32,0.21 -0.45,0.3 -0.13,0.09 -0.25,0.13 -0.37,0.13 -0.1,0 -0.18,-0.03 -0.25,-0.08 -0.07,-0.05 -0.13,-0.11 -0.17,-0.19 l -0.26,-0.46 c 0.45,-0.43 0.93,-0.75 1.45,-0.97 0.52,-0.21 1.09,-0.32 1.72,-0.32 0.45,0 0.86,0.07 1.21,0.22 0.35,0.15 0.65,0.36 0.89,0.62 0.24,0.27 0.42,0.59 0.54,0.97 0.12,0.38 0.18,0.79 0.18,1.25 v 5.18 z m -3.69,-0.87 c 0.25,0 0.48,-0.03 0.69,-0.08 0.21,-0.05 0.4,-0.12 0.59,-0.22 0.18,-0.09 0.36,-0.21 0.53,-0.34 0.17,-0.13 0.33,-0.29 0.49,-0.46 v -1.67 c -0.66,0 -1.21,0.04 -1.67,0.12 -0.46,0.08 -0.83,0.19 -1.12,0.33 -0.29,0.13 -0.5,0.29 -0.63,0.47 -0.13,0.18 -0.2,0.39 -0.2,0.61 0,0.22 0.03,0.4 0.1,0.56 0.07,0.16 0.16,0.28 0.28,0.38 0.12,0.1 0.26,0.17 0.42,0.22 0.16,0.05 0.33,0.07 0.52,0.07 z" /> + <path + className="cls-3" + d="m 158.69,753.39 v -8.1 h 0.82 c 0.15,0 0.26,0.03 0.32,0.09 0.06,0.06 0.1,0.16 0.12,0.3 l 0.1,1.26 c 0.28,-0.57 0.62,-1.01 1.03,-1.32 0.41,-0.32 0.89,-0.48 1.44,-0.48 0.22,0 0.43,0.03 0.61,0.08 0.18,0.05 0.35,0.12 0.5,0.21 l -0.18,1.06 c -0.04,0.13 -0.12,0.2 -0.25,0.2 -0.07,0 -0.19,-0.03 -0.34,-0.08 -0.15,-0.05 -0.37,-0.08 -0.65,-0.08 -0.5,0 -0.91,0.14 -1.24,0.43 -0.33,0.29 -0.61,0.71 -0.84,1.26 v 5.16 h -1.42 z" /> + <path + className="cls-3" + d="m 167.04,742.74 c 0,0.14 -0.03,0.27 -0.08,0.39 -0.06,0.12 -0.13,0.23 -0.22,0.32 -0.09,0.09 -0.2,0.17 -0.32,0.22 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.13 -0.32,-0.22 -0.09,-0.09 -0.17,-0.2 -0.22,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.39 0,-0.14 0.03,-0.27 0.08,-0.4 0.05,-0.13 0.13,-0.24 0.22,-0.33 0.09,-0.09 0.2,-0.17 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.17,0.2 0.22,0.33 0.06,0.13 0.08,0.26 0.08,0.4 z m -0.32,2.54 v 8.1 h -1.42 v -8.1 z" /> + <path + className="cls-3" + d="m 175.19,753.39 h -0.63 c -0.14,0 -0.25,-0.02 -0.34,-0.06 -0.09,-0.04 -0.14,-0.13 -0.17,-0.27 l -0.16,-0.75 c -0.21,0.19 -0.42,0.36 -0.62,0.52 -0.2,0.15 -0.42,0.28 -0.64,0.38 -0.22,0.1 -0.46,0.18 -0.72,0.24 -0.25,0.05 -0.54,0.08 -0.84,0.08 -0.3,0 -0.61,-0.04 -0.88,-0.13 -0.27,-0.09 -0.51,-0.22 -0.72,-0.4 -0.2,-0.18 -0.36,-0.4 -0.48,-0.67 -0.12,-0.27 -0.18,-0.59 -0.18,-0.96 0,-0.32 0.09,-0.63 0.26,-0.93 0.17,-0.3 0.46,-0.56 0.85,-0.79 0.39,-0.23 0.91,-0.42 1.54,-0.57 0.63,-0.15 1.41,-0.22 2.33,-0.22 v -0.64 c 0,-0.63 -0.13,-1.11 -0.4,-1.44 -0.27,-0.32 -0.67,-0.49 -1.2,-0.49 -0.35,0 -0.64,0.04 -0.88,0.13 -0.24,0.09 -0.44,0.19 -0.62,0.3 -0.18,0.11 -0.32,0.21 -0.45,0.3 -0.13,0.09 -0.25,0.13 -0.37,0.13 -0.1,0 -0.18,-0.03 -0.25,-0.08 -0.07,-0.05 -0.13,-0.11 -0.17,-0.19 l -0.26,-0.46 c 0.45,-0.43 0.93,-0.75 1.45,-0.97 0.52,-0.21 1.09,-0.32 1.72,-0.32 0.45,0 0.86,0.07 1.21,0.22 0.35,0.15 0.65,0.36 0.89,0.62 0.24,0.27 0.42,0.59 0.54,0.97 0.12,0.38 0.18,0.79 0.18,1.25 v 5.18 z m -3.7,-0.87 c 0.25,0 0.48,-0.03 0.69,-0.08 0.21,-0.05 0.4,-0.12 0.59,-0.22 0.18,-0.09 0.36,-0.21 0.53,-0.34 0.17,-0.13 0.33,-0.29 0.49,-0.46 v -1.67 c -0.66,0 -1.21,0.04 -1.67,0.12 -0.46,0.08 -0.83,0.19 -1.12,0.33 -0.29,0.13 -0.5,0.29 -0.63,0.47 -0.13,0.18 -0.2,0.39 -0.2,0.61 0,0.22 0.03,0.4 0.1,0.56 0.07,0.16 0.16,0.28 0.28,0.38 0.12,0.1 0.26,0.17 0.42,0.22 0.16,0.05 0.33,0.07 0.52,0.07 z" /> + <path + className="cls-3" + d="m 176.93,752.4 c 0,-0.12 0.02,-0.24 0.07,-0.35 0.05,-0.11 0.11,-0.21 0.19,-0.29 0.08,-0.08 0.18,-0.15 0.3,-0.2 0.12,-0.05 0.25,-0.07 0.38,-0.07 0.16,0 0.3,0.03 0.43,0.09 0.12,0.06 0.23,0.14 0.31,0.24 0.08,0.1 0.15,0.22 0.19,0.36 0.04,0.13 0.06,0.28 0.06,0.44 0,0.24 -0.03,0.49 -0.1,0.75 -0.07,0.26 -0.17,0.51 -0.3,0.77 -0.13,0.25 -0.29,0.5 -0.48,0.74 -0.19,0.24 -0.4,0.46 -0.64,0.66 l -0.24,-0.23 c -0.07,-0.06 -0.1,-0.14 -0.1,-0.22 0,-0.07 0.04,-0.14 0.11,-0.22 0.05,-0.06 0.12,-0.14 0.2,-0.24 0.08,-0.1 0.17,-0.21 0.25,-0.34 0.08,-0.13 0.16,-0.27 0.24,-0.42 0.07,-0.15 0.12,-0.32 0.16,-0.5 h -0.1 c -0.14,0 -0.26,-0.02 -0.38,-0.07 -0.11,-0.05 -0.21,-0.12 -0.29,-0.2 -0.08,-0.09 -0.15,-0.19 -0.19,-0.31 -0.04,-0.12 -0.07,-0.25 -0.07,-0.4 z" /> + <path + className="cls-3" + d="m 193.35,753.39 h -1.56 v -5.22 h -6.18 v 5.22 h -1.56 v -11.46 h 1.56 v 5.11 h 6.18 v -5.11 h 1.56 z" /> + <path + className="cls-3" + d="m 197.83,742.74 c 0,0.14 -0.03,0.27 -0.08,0.39 -0.06,0.12 -0.13,0.23 -0.22,0.32 -0.09,0.09 -0.2,0.17 -0.32,0.22 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.13 -0.32,-0.22 -0.09,-0.09 -0.17,-0.2 -0.22,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.39 0,-0.14 0.03,-0.27 0.08,-0.4 0.05,-0.13 0.13,-0.24 0.22,-0.33 0.09,-0.09 0.2,-0.17 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.17,0.2 0.22,0.33 0.06,0.13 0.08,0.26 0.08,0.4 z m -0.32,2.54 v 8.1 h -1.42 v -8.1 z" /> + <path + className="cls-3" + d="m 201.6,741.6 v 11.78 h -1.42 V 741.6 Z" /> + <path + className="cls-3" + d="m 204.43,753.39 v -6.89 l -0.9,-0.1 c -0.11,-0.03 -0.2,-0.07 -0.28,-0.12 -0.07,-0.06 -0.11,-0.14 -0.11,-0.24 v -0.58 h 1.28 v -0.79 c 0,-0.46 0.07,-0.88 0.2,-1.24 0.13,-0.36 0.32,-0.66 0.56,-0.91 0.24,-0.25 0.53,-0.44 0.88,-0.56 0.34,-0.13 0.73,-0.19 1.15,-0.19 0.36,0 0.7,0.05 1.01,0.16 l -0.03,0.71 c 0,0.11 -0.05,0.17 -0.14,0.19 -0.08,0.02 -0.21,0.03 -0.36,0.03 h -0.25 c -0.25,0 -0.47,0.03 -0.67,0.1 -0.2,0.06 -0.37,0.17 -0.52,0.31 -0.15,0.14 -0.25,0.33 -0.33,0.57 -0.08,0.24 -0.12,0.53 -0.12,0.87 v 0.74 h 2.34 v 1.03 h -2.3 v 6.91 h -1.43 z" /> + <path + className="cls-3" + d="m 212.71,745.15 c 0.49,0 0.93,0.08 1.34,0.24 0.41,0.16 0.77,0.4 1.06,0.7 0.3,0.31 0.53,0.69 0.7,1.14 0.17,0.45 0.25,0.96 0.25,1.54 0,0.22 -0.02,0.37 -0.07,0.45 -0.05,0.08 -0.14,0.11 -0.27,0.11 h -5.39 c 0.01,0.51 0.08,0.96 0.21,1.34 0.13,0.38 0.3,0.69 0.53,0.95 0.22,0.25 0.49,0.44 0.8,0.57 0.31,0.12 0.66,0.19 1.04,0.19 0.36,0 0.67,-0.04 0.92,-0.12 0.25,-0.08 0.48,-0.17 0.67,-0.27 0.19,-0.1 0.34,-0.19 0.47,-0.27 0.12,-0.08 0.23,-0.12 0.32,-0.12 0.12,0 0.21,0.05 0.27,0.14 l 0.4,0.52 c -0.18,0.21 -0.39,0.4 -0.63,0.56 -0.25,0.16 -0.51,0.29 -0.79,0.39 -0.28,0.1 -0.57,0.18 -0.87,0.23 -0.3,0.05 -0.6,0.08 -0.89,0.08 -0.56,0 -1.08,-0.09 -1.55,-0.28 -0.47,-0.19 -0.88,-0.47 -1.22,-0.83 -0.34,-0.37 -0.61,-0.82 -0.8,-1.36 -0.19,-0.54 -0.29,-1.16 -0.29,-1.86 0,-0.57 0.09,-1.09 0.26,-1.58 0.17,-0.49 0.42,-0.92 0.75,-1.28 0.33,-0.36 0.72,-0.64 1.19,-0.85 0.47,-0.21 1,-0.31 1.58,-0.31 z m 0.04,1.05 c -0.69,0 -1.23,0.2 -1.62,0.6 -0.4,0.4 -0.64,0.95 -0.74,1.65 h 4.41 c 0,-0.33 -0.05,-0.63 -0.14,-0.91 -0.09,-0.28 -0.22,-0.51 -0.4,-0.71 -0.18,-0.2 -0.39,-0.35 -0.64,-0.46 -0.25,-0.11 -0.54,-0.16 -0.87,-0.16 z" /> + <path + className="cls-3" + d="m 226.68,753.39 c -0.2,0 -0.33,-0.1 -0.38,-0.3 l -0.13,-0.98 c -0.35,0.42 -0.74,0.76 -1.19,1.01 -0.45,0.25 -0.96,0.38 -1.53,0.38 -0.46,0 -0.89,-0.09 -1.26,-0.27 -0.38,-0.18 -0.7,-0.44 -0.97,-0.79 -0.27,-0.35 -0.47,-0.78 -0.62,-1.3 -0.15,-0.52 -0.22,-1.11 -0.22,-1.78 0,-0.6 0.08,-1.15 0.24,-1.67 0.16,-0.52 0.39,-0.96 0.69,-1.34 0.3,-0.38 0.67,-0.68 1.1,-0.89 0.43,-0.22 0.92,-0.32 1.47,-0.32 0.5,0 0.92,0.08 1.27,0.25 0.35,0.17 0.67,0.4 0.94,0.71 v -4.5 h 1.42 v 11.78 h -0.85 z m -2.76,-1.04 c 0.46,0 0.87,-0.11 1.22,-0.32 0.35,-0.21 0.67,-0.52 0.96,-0.9 v -3.92 c -0.26,-0.35 -0.55,-0.6 -0.86,-0.74 -0.31,-0.14 -0.66,-0.21 -1.04,-0.21 -0.76,0 -1.34,0.27 -1.74,0.81 -0.4,0.54 -0.61,1.31 -0.61,2.3 0,0.53 0.05,0.98 0.14,1.36 0.09,0.38 0.22,0.69 0.4,0.93 0.18,0.24 0.39,0.42 0.65,0.53 0.26,0.11 0.55,0.17 0.88,0.17 z" /> + <path + className="cls-3" + d="m 233.13,745.15 c 0.49,0 0.93,0.08 1.34,0.24 0.41,0.16 0.77,0.4 1.06,0.7 0.3,0.31 0.53,0.69 0.7,1.14 0.17,0.45 0.25,0.96 0.25,1.54 0,0.22 -0.02,0.37 -0.07,0.45 -0.05,0.08 -0.14,0.11 -0.27,0.11 h -5.39 c 0.01,0.51 0.08,0.96 0.21,1.34 0.13,0.38 0.3,0.69 0.53,0.95 0.22,0.25 0.49,0.44 0.8,0.57 0.31,0.12 0.66,0.19 1.04,0.19 0.36,0 0.67,-0.04 0.92,-0.12 0.25,-0.08 0.48,-0.17 0.67,-0.27 0.19,-0.1 0.34,-0.19 0.47,-0.27 0.12,-0.08 0.23,-0.12 0.32,-0.12 0.12,0 0.21,0.05 0.27,0.14 l 0.4,0.52 c -0.18,0.21 -0.39,0.4 -0.63,0.56 -0.25,0.16 -0.51,0.29 -0.79,0.39 -0.28,0.1 -0.57,0.18 -0.87,0.23 -0.3,0.05 -0.6,0.08 -0.89,0.08 -0.56,0 -1.08,-0.09 -1.55,-0.28 -0.47,-0.19 -0.88,-0.47 -1.22,-0.83 -0.34,-0.37 -0.61,-0.82 -0.8,-1.36 -0.19,-0.54 -0.29,-1.16 -0.29,-1.86 0,-0.57 0.09,-1.09 0.26,-1.58 0.17,-0.49 0.42,-0.92 0.75,-1.28 0.33,-0.36 0.72,-0.64 1.19,-0.85 0.47,-0.21 1,-0.31 1.58,-0.31 z m 0.03,1.05 c -0.69,0 -1.23,0.2 -1.62,0.6 -0.4,0.4 -0.64,0.95 -0.74,1.65 h 4.41 c 0,-0.33 -0.05,-0.63 -0.14,-0.91 -0.09,-0.28 -0.22,-0.51 -0.4,-0.71 -0.18,-0.2 -0.39,-0.35 -0.64,-0.46 -0.25,-0.11 -0.54,-0.16 -0.87,-0.16 z" /> + <path + className="cls-3" + d="m 238.3,753.39 v -8.1 h 0.82 c 0.15,0 0.26,0.03 0.32,0.09 0.06,0.06 0.1,0.16 0.12,0.3 l 0.1,1.26 c 0.28,-0.57 0.62,-1.01 1.03,-1.32 0.41,-0.32 0.89,-0.48 1.44,-0.48 0.22,0 0.43,0.03 0.61,0.08 0.18,0.05 0.35,0.12 0.5,0.21 l -0.18,1.06 c -0.04,0.13 -0.12,0.2 -0.25,0.2 -0.07,0 -0.19,-0.03 -0.34,-0.08 -0.15,-0.05 -0.37,-0.08 -0.65,-0.08 -0.5,0 -0.91,0.14 -1.24,0.43 -0.33,0.29 -0.61,0.71 -0.84,1.26 v 5.16 h -1.42 z" /> + <path + className="cls-3" + d="m 256.14,751.02 c 0.08,0 0.16,0.04 0.23,0.1 l 0.61,0.66 c -0.47,0.54 -1.04,0.97 -1.71,1.27 -0.67,0.3 -1.48,0.46 -2.42,0.46 -0.83,0 -1.58,-0.14 -2.25,-0.43 -0.67,-0.29 -1.25,-0.69 -1.72,-1.2 -0.47,-0.51 -0.84,-1.13 -1.1,-1.85 -0.26,-0.72 -0.39,-1.51 -0.39,-2.38 0,-0.87 0.14,-1.66 0.42,-2.38 0.28,-0.72 0.67,-1.34 1.18,-1.86 0.51,-0.52 1.11,-0.92 1.82,-1.2 0.71,-0.29 1.49,-0.43 2.34,-0.43 0.85,0 1.57,0.13 2.18,0.39 0.61,0.26 1.15,0.62 1.63,1.06 l -0.5,0.71 c -0.04,0.05 -0.08,0.1 -0.13,0.13 -0.05,0.03 -0.12,0.05 -0.21,0.05 -0.07,0 -0.14,-0.03 -0.22,-0.08 -0.08,-0.05 -0.17,-0.11 -0.28,-0.19 -0.11,-0.07 -0.23,-0.15 -0.38,-0.24 -0.14,-0.08 -0.31,-0.17 -0.51,-0.24 -0.2,-0.07 -0.43,-0.14 -0.69,-0.19 -0.26,-0.05 -0.56,-0.08 -0.9,-0.08 -0.61,0 -1.17,0.11 -1.68,0.32 -0.51,0.21 -0.95,0.51 -1.32,0.9 -0.37,0.39 -0.65,0.86 -0.86,1.42 -0.21,0.56 -0.31,1.19 -0.31,1.88 0,0.69 0.1,1.35 0.31,1.91 0.21,0.56 0.49,1.03 0.84,1.42 0.35,0.39 0.77,0.68 1.26,0.88 0.49,0.2 1.01,0.3 1.57,0.3 0.34,0 0.65,-0.02 0.92,-0.06 0.27,-0.04 0.52,-0.1 0.76,-0.19 0.24,-0.09 0.45,-0.19 0.65,-0.32 0.2,-0.13 0.4,-0.29 0.6,-0.47 0.09,-0.08 0.18,-0.12 0.26,-0.12 z" /> + <path + className="cls-3" + d="m 258.8,753.39 v -11.78 h 1.42 v 4.77 c 0.35,-0.37 0.73,-0.66 1.15,-0.88 0.42,-0.22 0.91,-0.33 1.46,-0.33 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.35 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 v -5.16 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.81,0.1 -1.18,0.3 -0.37,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" /> + <path + className="cls-3" + d="m 267.7,753.39 v -8.1 h 0.82 c 0.15,0 0.26,0.03 0.32,0.09 0.06,0.06 0.1,0.16 0.12,0.3 l 0.1,1.26 c 0.28,-0.57 0.62,-1.01 1.03,-1.32 0.41,-0.32 0.89,-0.48 1.44,-0.48 0.22,0 0.43,0.03 0.61,0.08 0.18,0.05 0.35,0.12 0.5,0.21 l -0.18,1.06 c -0.04,0.13 -0.12,0.2 -0.25,0.2 -0.07,0 -0.19,-0.03 -0.34,-0.08 -0.15,-0.05 -0.37,-0.08 -0.65,-0.08 -0.5,0 -0.91,0.14 -1.24,0.43 -0.33,0.29 -0.61,0.71 -0.84,1.26 v 5.16 h -1.42 z" /> + <path + className="cls-3" + d="m 276.05,742.74 c 0,0.14 -0.03,0.27 -0.08,0.39 -0.06,0.12 -0.13,0.23 -0.22,0.32 -0.09,0.09 -0.2,0.17 -0.32,0.22 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.13 -0.32,-0.22 -0.09,-0.09 -0.17,-0.2 -0.22,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.39 0,-0.14 0.03,-0.27 0.08,-0.4 0.05,-0.13 0.13,-0.24 0.22,-0.33 0.09,-0.09 0.2,-0.17 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.17,0.2 0.22,0.33 0.06,0.13 0.08,0.26 0.08,0.4 z m -0.32,2.54 v 8.1 h -1.42 v -8.1 z" /> + <path + className="cls-3" + d="m 282.88,746.62 c -0.06,0.12 -0.16,0.18 -0.3,0.18 -0.08,0 -0.17,-0.03 -0.27,-0.09 -0.1,-0.06 -0.23,-0.12 -0.37,-0.2 -0.15,-0.07 -0.32,-0.14 -0.52,-0.2 -0.2,-0.06 -0.44,-0.09 -0.72,-0.09 -0.24,0 -0.46,0.03 -0.65,0.09 -0.19,0.06 -0.36,0.15 -0.49,0.25 -0.14,0.11 -0.24,0.23 -0.31,0.37 -0.07,0.14 -0.11,0.29 -0.11,0.46 0,0.21 0.06,0.38 0.18,0.52 0.12,0.14 0.28,0.26 0.48,0.36 0.2,0.1 0.42,0.19 0.67,0.27 0.25,0.08 0.51,0.16 0.77,0.25 0.26,0.09 0.52,0.19 0.77,0.29 0.25,0.11 0.47,0.24 0.67,0.4 0.2,0.16 0.36,0.36 0.48,0.59 0.12,0.23 0.18,0.51 0.18,0.84 0,0.37 -0.07,0.72 -0.2,1.04 -0.13,0.32 -0.33,0.59 -0.59,0.82 -0.26,0.23 -0.58,0.42 -0.96,0.55 -0.38,0.13 -0.82,0.2 -1.31,0.2 -0.57,0 -1.08,-0.09 -1.54,-0.28 -0.46,-0.18 -0.85,-0.42 -1.17,-0.71 l 0.34,-0.54 c 0.04,-0.07 0.09,-0.12 0.15,-0.16 0.06,-0.04 0.14,-0.06 0.23,-0.06 0.09,0 0.2,0.04 0.3,0.11 0.11,0.07 0.24,0.16 0.39,0.25 0.15,0.09 0.34,0.17 0.55,0.25 0.21,0.08 0.49,0.11 0.81,0.11 0.28,0 0.52,-0.04 0.73,-0.11 0.21,-0.07 0.38,-0.17 0.52,-0.29 0.14,-0.12 0.24,-0.26 0.31,-0.42 0.07,-0.16 0.1,-0.33 0.1,-0.51 0,-0.22 -0.06,-0.41 -0.18,-0.56 -0.12,-0.15 -0.28,-0.27 -0.48,-0.38 -0.2,-0.11 -0.42,-0.19 -0.68,-0.27 -0.25,-0.08 -0.51,-0.16 -0.78,-0.24 -0.26,-0.09 -0.52,-0.18 -0.78,-0.29 -0.25,-0.11 -0.48,-0.25 -0.68,-0.41 -0.2,-0.17 -0.36,-0.37 -0.48,-0.61 -0.12,-0.24 -0.18,-0.54 -0.18,-0.88 0,-0.31 0.06,-0.61 0.19,-0.89 0.13,-0.29 0.31,-0.54 0.56,-0.75 0.25,-0.22 0.55,-0.39 0.9,-0.52 0.36,-0.13 0.77,-0.19 1.22,-0.19 0.53,0 1.01,0.08 1.44,0.25 0.42,0.17 0.79,0.4 1.1,0.69 l -0.32,0.52 z" /> + <path + className="cls-3" + d="m 287.64,753.52 c -0.64,0 -1.13,-0.18 -1.48,-0.54 -0.34,-0.36 -0.52,-0.87 -0.52,-1.54 v -4.96 h -0.98 c -0.08,0 -0.16,-0.03 -0.22,-0.08 -0.06,-0.05 -0.09,-0.13 -0.09,-0.24 v -0.57 l 1.33,-0.17 0.33,-2.5 c 0.01,-0.08 0.05,-0.15 0.1,-0.2 0.05,-0.05 0.13,-0.08 0.22,-0.08 h 0.72 v 2.79 h 2.32 v 1.03 h -2.32 v 4.86 c 0,0.34 0.08,0.59 0.25,0.76 0.17,0.17 0.38,0.25 0.64,0.25 0.15,0 0.28,-0.02 0.39,-0.06 0.11,-0.04 0.2,-0.08 0.28,-0.13 0.08,-0.05 0.15,-0.09 0.2,-0.13 0.06,-0.04 0.11,-0.06 0.15,-0.06 0.07,0 0.14,0.04 0.2,0.14 l 0.42,0.68 c -0.25,0.23 -0.54,0.41 -0.89,0.54 -0.35,0.13 -0.7,0.2 -1.07,0.2 z" /> + <path + className="cls-3" + d="m 294.36,745.15 c 0.49,0 0.93,0.08 1.34,0.24 0.41,0.16 0.77,0.4 1.06,0.7 0.3,0.31 0.53,0.69 0.7,1.14 0.17,0.45 0.25,0.96 0.25,1.54 0,0.22 -0.02,0.37 -0.07,0.45 -0.05,0.08 -0.14,0.11 -0.27,0.11 h -5.39 c 0.01,0.51 0.08,0.96 0.21,1.34 0.13,0.38 0.3,0.69 0.53,0.95 0.22,0.25 0.49,0.44 0.8,0.57 0.31,0.12 0.66,0.19 1.04,0.19 0.36,0 0.67,-0.04 0.92,-0.12 0.25,-0.08 0.48,-0.17 0.67,-0.27 0.19,-0.1 0.34,-0.19 0.47,-0.27 0.12,-0.08 0.23,-0.12 0.32,-0.12 0.12,0 0.21,0.05 0.27,0.14 l 0.4,0.52 c -0.18,0.21 -0.39,0.4 -0.63,0.56 -0.25,0.16 -0.51,0.29 -0.79,0.39 -0.28,0.1 -0.57,0.18 -0.87,0.23 -0.3,0.05 -0.6,0.08 -0.89,0.08 -0.56,0 -1.08,-0.09 -1.55,-0.28 -0.47,-0.19 -0.88,-0.47 -1.22,-0.83 -0.34,-0.37 -0.61,-0.82 -0.8,-1.36 -0.19,-0.54 -0.29,-1.16 -0.29,-1.86 0,-0.57 0.09,-1.09 0.26,-1.58 0.17,-0.49 0.42,-0.92 0.75,-1.28 0.33,-0.36 0.72,-0.64 1.19,-0.85 0.47,-0.21 1,-0.31 1.58,-0.31 z m 0.03,1.05 c -0.69,0 -1.23,0.2 -1.62,0.6 -0.4,0.4 -0.64,0.95 -0.74,1.65 h 4.41 c 0,-0.33 -0.05,-0.63 -0.14,-0.91 -0.09,-0.28 -0.22,-0.51 -0.4,-0.71 -0.18,-0.2 -0.39,-0.35 -0.64,-0.46 -0.25,-0.11 -0.54,-0.16 -0.87,-0.16 z" /> + <path + className="cls-3" + d="m 299.54,753.39 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.29 l 0.11,0.88 c 0.35,-0.39 0.75,-0.7 1.18,-0.94 0.43,-0.24 0.94,-0.36 1.51,-0.36 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.35 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 v -5.16 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.81,0.1 -1.18,0.3 -0.37,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" /> + <polygon + className="cls-3" + points="64.44,789.44 64.44,781.23 62.44,781.23 62.44,789.44 55.47,789.44 55.47,791.44 62.44,791.44 62.44,813.73 64.44,813.73 64.44,791.44 71.41,791.44 71.41,789.44 " /> + </Parish> + </g> + </svg> + </div> +) + export default ChemnitzMap diff --git a/src/components/ChemnitzMap/chemnitzMapSvg.ts b/src/components/ChemnitzMap/chemnitzMapSvg.ts deleted file mode 100644 index c5798dd..0000000 --- a/src/components/ChemnitzMap/chemnitzMapSvg.ts +++ /dev/null @@ -1,2 +0,0 @@ -// Generated from chemnitz_map.svg — do not edit by hand. -export const chemnitzMapSvg = `<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2156.07 1357.94"><defs><style>.cls-1,.cls-2{fill:#ca5726;}.cls-3{fill:#fff;}.cls-4{fill:#67a3c2;}.cls-5{fill:#0f6898;}.cls-2{opacity:.3;}.cls-6{fill:#deecf7;}</style></defs><g id="Flächen"><polygon class="cls-2" points="1913.83 433.76 1933.32 501.96 1918.1 501.96 1935.25 571.57 1828.19 579.43 1832.88 599.35 1790.87 608.14 1777.96 554.11 1844.11 538.25 1822.71 456.37 1913.83 433.76"/><polygon class="cls-2" points="1685.18 736.76 1747.49 779.98 1746.59 822.87 1679.72 927.13 1616.25 813.9 1685.18 736.76"/><polygon class="cls-2" points="1640.8 860.34 1627.59 886.32 1580.46 903.47 1569.53 886.32 1589.72 875.65 1568.73 831.95 1616.25 813.9 1640.8 860.34"/><polygon class="cls-2" points="1592.8 948.24 1592.8 983.56 1574.57 983.56 1574.57 1009.57 1545.96 1022.27 1552.69 1064.06 1587.2 1064.06 1588.15 1075.15 1734.4 1060.53 1679.72 927.13 1592.8 948.24"/><polygon class="cls-2" points="1619.73 1318.68 1619.73 1291.38 1681.87 1286.16 1775.7 1302.88 1775.7 1312.84 1759.65 1312.84 1734.4 1335.26 1619.73 1318.68"/><polygon class="cls-2" points="2209.93 991.27 2179.63 1001.14 2092.12 944.91 2069.24 946.65 2055.09 981.52 2001.23 1043.8 1991.97 1079.98 2004.64 1128.43 2049.55 1130.29 2074.76 1114.48 2122.04 1117.01 2215.95 1130.29 2145.36 1172.55 2031.53 1196.11 2015.94 1196.11 1991.97 1218.83 2004.64 1265.12 2069.24 1318.13 2019.74 1318.13 1965.46 1268.48 1903.61 1157.48 1875 1166.17 1871.63 1209.38 1894.36 1261.27 1895.2 1286.16 1986.08 1363.58 2035.73 1367.3 2049.55 1421.64 2202.36 1421.64 2269.68 1157.48 2209.93 991.27"/><polygon class="cls-2" points="1293.57 609.02 1303.73 636.33 1340.08 625.49 1346.7 618.65 1338.85 607.58 1371.8 554.49 1356.1 546.44 1347.98 568.14 1322.11 579.43 1319.8 591.38 1293.57 609.02"/><polygon class="cls-2" points="1336.7 534.92 1330.52 556.23 1341.98 559.01 1347.98 539.16 1336.7 534.92"/><polygon class="cls-2" points="970.7 811.09 984.11 787.16 1033.84 811.09 1019.9 837.11 970.7 811.09"/><polygon class="cls-2" points="753.64 850.46 726.72 855.23 735.35 934.4 714.29 956.7 625.15 1017.38 641.15 1059.47 593.89 1072.83 597.88 1188.17 657.14 1206.65 664.71 1252.42 643.45 1275.6 604.24 1242.52 586.13 1252.72 566.21 1234.74 473 1269.13 453.36 1252.72 482.62 1212.06 475.17 1168.06 428.85 1142.46 387 1166.17 335.13 1136.41 326.78 1089.32 274.91 1038.62 266.67 1008.43 6.38 956.7 -65.09 954.62 -65.09 1363.26 246.29 1426.23 762.89 1391.34 724.14 1352.05 731.9 1318.68 752.6 1288.58 747.42 1252.72 762.89 1230.43 771.58 1202.42 707.69 1121.82 751.74 1073.45 762.89 1032.05 818.02 1042.33 837.13 1020.69 789.69 967.39 753.64 850.46"/><polygon class="cls-2" points="72 967.39 20.54 922.97 37.72 898.71 111.7 911.02 189.25 991.79 72 967.39"/><polygon class="cls-2" points="326.78 1089.32 342.79 1067.11 366.71 1052.01 346.75 1019.04 371.2 998.73 384.65 1012.01 500.54 972.37 547.5 908.66 607.46 884.98 590.16 844.49 519.73 838.09 519.73 789.05 538.35 789.05 519.73 723.7 475.17 704.66 419.27 721.37 412.71 779.98 440.02 814.24 407.14 879.99 332.7 938.44 317.06 979.76 292.39 956.7 260.01 967.39 271.24 1025.37 294.7 1060.95 326.78 1089.32"/><polygon class="cls-2" points="1392.66 1089.58 1403.13 1106.62 1328.15 1142.46 1314.81 1124.8 1392.66 1089.58"/><polygon class="cls-2" points="1207.82 761.22 1190.62 760.43 1186.16 813.9 1154.73 875.65 1144.49 998.73 1180.83 1142.46 1159.13 1138.34 1154.73 1160.84 1238 1202.42 1289.53 1193.51 1301.47 1184.71 1266.16 1129.51 1222.98 1101.81 1206.08 1061.68 1174.67 1009.57 1176.28 967.74 1207.82 761.22"/><polygon class="cls-2" points="1619.94 684.68 1669.45 728.5 1654.98 745.32 1669.45 754.36 1654.98 770.55 1626.24 740.57 1636.95 727.62 1607.38 702.04 1619.94 684.68"/><polygon class="cls-2" points="1623.95 496.12 1641.43 503.2 1651.43 476.29 1632.53 470.6 1623.95 496.12"/><polyline class="cls-2" points="1337.89 237.44 1335.32 267.42 1350.02 267.42"/><polygon class="cls-2" points="1473.97 263.86 1461.12 269.81 1463.57 304.56 1489.03 274.89 1473.97 263.86"/><polygon class="cls-2" points="1224.67 172.66 1264.31 159.36 1314.66 116.89 1327.4 73.81 1345 66.53 1368.66 41.66 1386.75 35.94 1397.07 100.86 1366.56 158.07 1304.63 164.89 1307.81 199.46 1223.05 188.93 1224.67 172.66"/><polygon class="cls-2" points="1170.96 237.78 1172.09 263.59 1140.95 267.44 1137.1 241.42 1170.96 237.78"/><polygon class="cls-2" points="1143.63 285.54 1154.6 283.84 1150.49 265.41 1140.95 267.44 1143.63 285.54"/><polygon class="cls-2" points="1132.89 392.01 1140.95 422.89 1173.67 411.84 1164.18 382.13 1132.89 392.01"/><polygon class="cls-2" points="935.06 398.83 954.81 429.45 967.97 426.41 972.06 432.5 935.06 450 915.33 413.09 935.06 398.83"/><polygon class="cls-2" points="1059.93 498.12 1010.63 500.85 1015.84 521.91 1076.63 521.91 1059.93 498.12"/><polygon class="cls-2" points="1875.22 246.08 1870.5 261.11 1892.26 266.99 1894.43 252.43 1875.22 246.08"/><polygon class="cls-2" points="1823.96 125.9 1833.39 100.86 1815.12 88.79 1807 100.86 1801.71 111.18 1804.52 122.49 1823.96 125.9"/><polygon class="cls-2" points="1807 -3.5 1815.12 75.27 1892.26 75.27 1899.28 94.82 1949.45 88.79 1961.23 100.86 1959.01 135.89 1996.24 166.13 2035.74 155.94 2049.61 125.9 2137.19 135.89 2191.94 192.46 2218.11 -41.13 2018.38 -48.14 1996.24 -48.14 1972.43 -22.28 1807 -3.5"/><polygon class="cls-2" points="312.81 336.41 292.39 371.14 189.25 430.12 130.49 424.42 127.29 445.55 194.86 492.56 185.31 541.59 200.39 562.93 249.63 527.74 334.03 500.85 374.89 462.3 429.63 576.54 414.32 596.91 384.65 605.34 384.65 636.33 410.75 659.44 475.17 704.66 490.68 636.33 557.78 633.45 572.01 607.49 620.25 562.93 682.62 564.54 680.93 501.96 714.29 454.16 689.68 432.74 647.91 433.04 617.61 378.62 578.47 393.48 582.31 432.16 552 441.28 551.42 409.57 531.46 387.77 531.46 337.74 513.47 291.47 442.57 296.54 427.27 375.97 406.09 394.5 397.37 363.56 359.61 368.61 360.2 392.44 312.81 336.41"/><polygon class="cls-2" points="596.12 -82.49 596.12 -48.14 642.16 30.66 659.54 120.78 664.75 208.69 675.63 237.78 654.33 247.52 623.05 225.3 615.23 192.91 596.12 188.93 592.65 225.3 550.08 241.2 525.76 237.17 496.22 254.67 482.32 233.36 497.96 201.23 478.85 185.51 416.3 241.42 384.16 247.52 375.47 237.17 352.02 241.42 306.01 287.69 280.79 233.36 230.54 224.18 221.72 237.17 168.72 247.52 173.07 267.44 127.29 281.6 108.78 305.98 81.86 301.51 59.49 331.45 18.44 291.47 -4.15 299.34 -14.57 267.44 -72.77 306.17 -51.06 -59.91 596.12 -82.49"/></g><g id="Kleine_Straßen"><path class="cls-6" d="M1329.41,300.65l-24.89-54.75-27.18,3.29v-54.03h-3v28.84l-43.1,5.8-31.07,3.34-8.28-44.26-2.95.55,3.36,17.98-101.4,13.12,4.96,50.97-20.96,2.59-10.78-62.31-46.06,21.68,80.92,247.67,23.16-7.53,5.49,17.18,80.61-26.59,9.19,25.21,2.82-1.03-9.68-26.55-5.13-15.29,39.36-12.79.24-.08,39.54-30.06-53.04-11.2,26.29-27.78-2.18-2.06-26.1,27.59-17.5-93.51,28.77-3.65-.38-2.98-28.95,3.67-6.11-32.67,32.8-4.05,36.15-4.37v3.04l13.01,60.4,30.74,99.1-15.1,20.49,2.42,1.78,16-21.71-.11-.34,22.34-99.97-14.21-14.71ZM1197.18,233.45l-19.18,2.06-1.72-23.01,16.58-2.15,4.32,23.09ZM1202.98,400.36l-9.01-26.05,27.91-8.8,5.01,26.78-23.91,8.07ZM1200.14,401.32l-88.4,29.85-8.98-28.09,88.35-27.87,9.03,26.11ZM1048.86,317.31l29.83-3.78,4.08,23.59-25.98,5.19-19.77-60.51,35.42-4.38,5.73,33.15-29.69,3.77.38,2.98ZM1102.39,307.49l-3.25-33.38,21.29-2.63,4.15,33.19-22.19,2.81ZM1114.34,309l-2.21.51,4.84,20.77-31.26,6.24-4.04-23.38,32.68-4.14ZM1131.11,390.99l-29.26,9.23-11.17-34.95-4.46-25.79,31.43-6.28,13.46,57.78ZM1083.28,340.07l4.48,25.91,11.23,35.14-20.84,6.57-20.43-62.52,25.55-5.1ZM1099.9,403.98l8.99,28.14-20.5,6.92-9.31-28.5,20.82-6.57ZM1133.98,390.09l-18.91-81.18,60.2-7.64,5.45,43.79.02.16,9.39,27.16-56.15,17.71ZM1127.55,304.3l-4.15-33.18,47.38-5.85,4.11,33.03-47.35,6.01ZM1123.03,268.14l-6-47.97,56.26-7.28,1.72,22.95-38.07,4.09.32,2.98,60.47-6.5,4.12,21.99-78.81,9.74ZM1094.17,223.13l19.89-2.57,5.99,47.96-21.21,2.62-4.68-48ZM1096.16,274.48l3.25,33.39-18.26,2.32-5.73-33.14,20.74-2.56ZM1061.84,216.16l10.08,58.29-35.86,4.43-14.33-43.85,40.1-18.88ZM1100.91,477.34l-11.58-35.44,20.48-6.91,11.42,35.75-20.32,6.61ZM1207.25,461.34l-77.68,25.63-4.57-14.31,77.59-25.22,4.66,13.9ZM1243.63,430.94l-119.54,38.86-11.43-35.78,116.05-39.18,48.85,10.32-33.92,25.78ZM1221.33,362.53l-28.34,8.94-9.31-26.94-5.43-43.64,30.82-3.91,12.27,65.55ZM1208.51,294.03l-30.64,3.89-4.11-33.02,28.63-3.54,6.11,32.68ZM1237.81,253.96l-32.98,4.08-4.11-21.95,30.87-3.32,42.74-5.75v22.53l-36.52,4.41ZM1290.26,315.31l-12.92-60.02v-3.08l25.36-3.07,24.09,52.99.11.24,13.45,13.92-20.84,93.28-29.24-94.25Z"/><polygon class="cls-6" points="1499.43 1345.83 1390.52 1340.02 1340.35 1302.27 1345.54 1280.19 1336.93 1242.78 1349.03 1222.74 1396.16 1203.47 1398.23 1182.16 1361.53 1156.26 1359.8 1158.71 1395.07 1183.61 1393.35 1201.38 1346.97 1220.34 1333.74 1242.27 1342.46 1280.18 1336.98 1303.49 1389.08 1342.69 1389.45 1342.97 1499.72 1348.85 1500.17 1348.87 1535.65 1328.08 1534.14 1325.49 1499.43 1345.83"/><polygon class="cls-6" points="1603.21 1235.31 1499.1 1290.06 1500.5 1292.71 1603.31 1238.64 1650.74 1259.82 1709.08 1243.26 1666.34 1201.62 1660.48 1181.53 1621.98 1165.48 1627.18 1157.66 1620.13 1140.17 1535.36 1079.81 1505.33 1027.01 1490.26 977.41 1487.39 978.28 1495.63 1005.4 1444.73 1020.48 1433.18 998.04 1430.52 999.42 1443.2 1024.06 1496.5 1008.27 1502.51 1028.04 1533.08 1081.87 1617.67 1142.11 1623.8 1157.31 1618.69 1165.02 1453.46 1251.4 1454.84 1254.05 1619.8 1167.83 1658.01 1183.75 1663.68 1203.22 1703.27 1241.79 1650.97 1256.63 1603.21 1235.31"/><polygon class="cls-6" points="883.06 1117.28 842.66 1125.89 869.29 1166.99 871.81 1165.36 847.55 1127.91 883.69 1120.21 883.06 1117.28"/><polygon class="cls-6" points="902.62 1224.78 917.02 1157.47 907.42 1117.59 897.04 1114.06 908.27 1093.5 895.45 1088.19 894.3 1090.97 904.03 1094.99 892.7 1115.75 904.89 1119.9 913.94 1157.5 899.68 1224.15 902.62 1224.78"/><path class="cls-6" d="M1156.23,1286.41l39.02-9.48,43.44-22.88-1.4-2.65-43.12,22.71-37.95,9.22v-.86l-41.27-74.51h-18.29l-26.35-24.34-2.04,2.2,27.21,25.14h17.7l17.06,30.8-85.34,33.29-7.33,20.67-27.07,10.93-14.93-64.45-2.92.68,22.13,95.55-53.71,7.38-14.2-7.6-50.71-29-8.82-35.76-55.15-3.83-.21,2.99,52.97,3.68,8.61,34.88,51.86,29.66,15.09,8.08,62.46-8.59.3-.04,10.98-6.43,5.59,15.35,113.38-34.34v9.75l11.92,18.54-5.24,31.42,2.96.49,5.2-31.23,30.44-14.8-1.31-2.7-29.94,14.56-11.04-17.17v-37.31ZM1022.28,1337.38l-4.5.62-6.58-28.41,28.77-11.61,7.33-20.65,84.43-32.94,21.51,38.84v.82l-24.18,5.87-.5.12-16.62,20.74-62.35,10.61-27.3,15.98ZM1036.89,1332.31l13.74-8.04,22.91-3.9,5.2,13.92-37.05,11.22-4.81-13.19ZM1081.62,1333.41l-5.07-13.56,37.01-6.3,16.7-20.83,22.97-5.58v24.58l-71.61,21.69Z"/><polygon class="cls-6" points="903.97 1047.08 984.46 940.46 993.34 946.2 1034.04 970.77 1057.37 1000.23 1097.35 1000.23 1097.35 997.23 1058.82 997.23 1036.22 968.69 1036.06 968.48 1011.63 953.73 1040.26 914.76 1087.52 909.06 1105.13 888.19 1112.11 891.68 1113.46 888.99 1104.36 884.45 1085.99 906.22 1038.61 911.93 1009.05 952.17 994.93 943.65 983.75 936.43 903.16 1043.18 848.2 1012.32 819.1 982.51 816.95 984.61 846.36 1014.72 903.97 1047.08"/><polygon class="cls-6" points="512.88 1214.19 426.15 1308.1 426.15 1338.29 385.5 1341.44 385.5 1396.14 388.5 1396.14 388.5 1344.21 429.15 1341.06 429.15 1309.27 515.39 1215.89 515.69 1215.56 521.21 1181.27 518.25 1180.79 512.88 1214.19"/><path class="cls-6" d="M709.69,758.73l.75,9.58h-25.28v-28.48h-3v39.01l1.65,16.17-17.63,3.6,8.26,46.75,14.14-3.74,1.07,10.44,7.63,39.75-48.12,51.12-12.8,22.35-14.24-9.18,7.4-18.33,51.03-44.92-6.7-33.81-2.94.58,6.36,32.11-12.01,10.57-14.3-32.17-2.74,1.22,14.69,33.03-11.4,10.04-19.08-35.15-2.64,1.43,19.41,35.75-21.92,19.3-.27.24-8.59,21.29,16.46,10.61-17.32,30.23-11.98,37.57-28.03,43.31-10.02,48.78-17.45,41.04,2.76,1.17,17.57-41.31,9.97-48.52,27.84-43.01.11-.17,12.01-37.65,31.16-54.47,49.05-52.1-7.89-41.06-1.11-10.85,24.1-6.37.29,3.72,2.99-.23-6.21-79.47-2.99.23ZM712.25,791.43h-9.23l.23-20.12h7.42l1.57,20.12ZM685.16,778.77v-7.45h15.1l-.23,20.39-13.26,2.71-1.6-15.65ZM676.82,841.64l-7.18-40.66,14.47-2.96,4.15,40.6-11.44,3.02ZM691.2,837.84l-4.13-40.42,13.2-2.7,6.06,39.12-15.12,4ZM709.24,833.07l-5.98-38.63h9.23l2.89,37.01-6.14,1.62Z"/><path class="cls-6" d="M126.92,899.48l28.31-5.55,58.97,64.35,20.03-2.32-.71-26.82-55.06-61.3,18.19-15.76,27.63,5.57,6.7,18.85h14.03v-3h-11.91l-6.56-18.45-30.74-6.2-19.21,16.65-52.76-73.43-2.44,1.75,52.92,73.66-.12.1.15.17-19.38,23.19-30.28,5.94-49.62-81.81-2.57,1.56,25.66,42.31-26.79,18.9-26.23-45.87-2.6,1.49,27.87,48.73,29.32-20.68,22.94,37.82,87.44,91.17,54.41,7.34.4-2.97-53.37-7.2-84.61-88.17ZM230.55,930.32l.61,22.97-15.78,1.83-57.62-62.87,18.61-22.26,54.18,60.32Z"/><polygon class="cls-6" points="133.05 714.74 133.05 763.82 138.94 781.84 141.79 780.91 136.05 763.34 136.05 714.92 208.45 725.81 216.15 743.11 218.89 741.9 210.53 723.09 134.77 711.69 134.63 711.67 7.64 716.91 15.84 662.69 58.36 653.37 112.87 659.78 117.52 638.89 180.65 663.45 190.7 627.21 187.8 626.41 178.64 659.45 147.96 647.51 171.52 587.77 168.73 586.67 145.16 646.43 118.17 635.93 124 609.71 150.37 575.85 163.39 571.62 162.46 568.76 148.57 573.29 121.22 608.4 110.53 656.48 58.46 650.36 58.21 650.33 17.07 659.35 30.02 629.75 23.11 601.45 -26.33 572.8 -54.64 591.9 -52.96 594.38 -26.21 576.34 20.5 603.4 26.86 629.48 13.06 661.03 4.36 718.58 18.65 768.66 -37.6 779.9 -37.01 782.84 19.48 771.56 36.28 830.44 39.17 829.62 7.85 719.9 133.05 714.74"/><path class="cls-6" d="M452.65,897.26l8.9-27.69-13.97-3.15-17.5,6.59-11.75-13.39-72.35,6.74-12.96-96.74-1.83-15.98,26.52-5.16-5.45-50.36-2.98.32,5.16,47.62-26.54,5.16,1.98,17.28-91.4,11.38.37,2.98,91.4-11.38,18.96,141.49-40.42,56.16-47.03,9.15.57,2.95,47.62-9.26.58-.11,41.81-58.1-5.95-44.42,70.71-6.58,10.51,11.97-44.55,45.33,4.64,26.6-18.24,14.95,4.93,15.33,2.86-.92-4.31-13.39,79.73-65.37ZM386.26,921.06l44.21-44.99,17.32-6.52,9.9,2.23-7.62,23.72-59.72,48.97-4.08-23.41Z"/><path class="cls-6" d="M493.21,455.66v-109.7h-3v106.7h-31.46l-20.58,35.91,4.24,43.99-30.89,4.49-76.13-19.46-14.53,50.89-26.27-4.71-90.66,30.02,5.93,15.75-24.99,7.68.88,2.87,26.19-8.05,36.49,5.13,7.66,29.41-1.97.36-43.06,25.29,1.52,2.59,42.61-25.02,1.66-.31,7.17,27.53-44.13,13.06.85,2.88,44.04-13.03,10.64,40.87,2.9-.76-10.67-40.96,54.15-16.03,41.33,19.24,2.1,11.49,2.95-.54-7.42-40.54-23.96-20.28-18.24-23.86v-21.13l18.91-66.21,73.88,18.89,34.32-4.99-4.42-45.89,19.24-33.57h32.72ZM207.83,595.65l64.05-21.21,11.64,36.47-33.85,3.39-36.75-5.17-5.08-13.49ZM251.53,617.14l32.92-3.3,8.3,25.99-33.7,6.2-7.52-28.9ZM362.47,678.67l-40.43-18.82-55.15,16.32-7.09-27.22,75.48-13.89,22.72,19.23,4.46,24.38ZM333.03,632.42l-37.31,6.86-8.22-25.75,28.88-2.89,16.66,21.78ZM315.56,587.01v20.7l-28.99,2.9-11.84-37.11,20.08-6.65,25.22,4.52-4.46,15.63Z"/><polygon class="cls-6" points="586.01 685.91 591.63 656.98 588.68 656.41 583.48 683.2 559.28 686.19 559.28 654.1 556.28 654.1 556.28 686.56 513.39 691.85 506.3 661.11 503.38 661.78 511.07 695.16 586.01 685.91"/><path class="cls-6" d="M1107.37,533.46l-35.71,7.59,7.22-18.54-17.41-24.81,2.96-35.63-10.25-26.12-18.19-49.88-30.73,5.54-3.07-6.87-2.74,1.22,3.48,7.78,1.83,9.59-22.73,7.13-8.63-17.83-2.7,1.31,9.76,20.16,25.12-7.88,3.85,10.24,42.16,21.11,9.79,24.95-3,36.02,17.11,24.38-7.36,18.87-103.82,22.05-.11.02-72.25,26.65-58.18,8.13,2.11-26.2,33.41-13.93-14.09-23.06h-17.36l-15.41-5.78-8.15-16.34,31.69-17.6,62.44-58.16.31-.29,8.17-29.44-40.93-89.35-2.73,1.25,40.47,88.35-7.65,27.57-61.87,57.62-59.33,32.94h-33.11l9.9,45.47,20.55-.3,45.9,28.03-125.47,17.53-4.12-18.18-91.55,22.62v37.48h3v-35.13l86.3-21.32,4.05,17.89,131.82-18.42,1.3.79.08-.98,59-8.25.16-.02,72.35-26.69,142.93-30.36-.62-2.93ZM1007.94,403.96l-1.81-9.46,27.91-5.03,16.04,43.98-38.25-19.15-3.89-10.35ZM785.74,544.39l47.18,27.84-2.05,25.36-46.67-28.5,1.54-24.71ZM864.93,557.1l-30.33,12.65-10.13-5.98,14-25.3h15.07l11.39,18.63ZM820.3,532.08l15.14,5.68-13.55,24.48-35.94-21.21.77-12.37,24.95-13.85,8.62,17.28ZM755.51,529.24h28.17l-2.45,39.18-17.14.25-8.58-39.43Z"/><path class="cls-6" d="M1361.37,645.93l24.21,13.28-17.43,58.04,2.87.86,17.24-57.43,28.15,15.44,6.48,18.33,2.83-1-6.86-19.42-28.97-15.89,23.1-31,26.11,19.67,19.2-26.82,39.8,28.31,1.74-2.45-39.79-28.3,14.22-19.86,31.32,22.16,1.73-2.45-90.69-64.16-1.73,2.45,56.92,40.27-14.21,19.85-52.91-37.63-1.74,2.45,26.76,19.03-17.33,23.26-24.42-18.4-1.81,2.4,24.43,18.41-23.36,31.35-24.08-13.21-19.19-18.72,63.14-83.91.14-.18,11.81-32.82-2.82-1.02-11.66,32.39-63.5,84.39-89.16,26.59-8.57-5.53,75.65-51,.44-.3,3.9-12.88,26.36-12.59,14.61-39.24-44.7-9.6,18.43-42.12,29.91-55.74,13.92,39.46,16.67,11.98-15.28,18.98,2.34,1.88,15.38-19.1,26.96,19.38,1.75-2.44-45.31-32.57-15.87-44.98-32.95,61.4-238.98,137.38.75,1.3-1.46.33,15.4,69.39-23.93,6.37-5.27-26.72-50.05,10.69,6.26,27.61-11.96,2.81-7.91,51.78-.02,23.07h47.62l13.7-8.68-1.38-6.25,23.36-6.48-13.75-64.87,45.45-12.1,9.87,40.91,2.92-.7-10.22-42.38-3.12-14.13,12.7-4.32,68.98-70.59,29.02-2.83,23.56,38.28-27.28,18.39-32.32,18.99-48.07,86.05h-14.95v3h16.71l48.53-86.88,30.86-18.13,10.86,7.01,90.11-26.87,19.8,19.31ZM1432.18,601.42l23.69,16.85-17.41,24.31-23.67-17.83,17.38-23.33ZM1360.3,530.87l-12.98,34.85-24.78,11.84-24.64-30.85,14.05-10.59.31-.24,6.13-14.02,41.9,9ZM1099.05,614.64l17.5-10.06,16.18,73.31-18.54,4.94-15.14-68.19ZM1035.63,676.24l44.1-9.42,4.71,23.88-43.23,10.16-5.58-24.62ZM1021.4,756.47l7.59-49.66,9.54-2.24-2.1,71.63h-15.03v-19.73ZM1074.8,762.14l1.54,6.97-11.19,7.09h-25.72l1.36-46.38,27.44-3.73,22.56-5.38,4.71,22.24-22.22,5.59.73,2.91,22.11-5.56,2.07,9.77-23.39,6.49ZM1090.16,717.77l-22.41,5.35-26.87,3.66.67-22.92,43.48-10.21v.05s.03,0,.03,0l5.1,24.08ZM1143.91,657.58l-11.71,3.98-12.92-58.55,51.15-29.41,21.15,35.2-47.67,48.78ZM1213.15,586.72l-19.41,19.86-20.71-34.48,160.47-92.25-23.67,54.11-66.06,49.77-30.62,2.99ZM1246.33,585.56l49.17-37.04,24.95,31.23-3.56,11.74-47.29,31.88-23.27-37.81Z"/><polygon class="cls-6" points="1301.16 1029.58 1278.08 1034.55 1274.69 1015.79 1279.88 969.16 1338.24 965.62 1343.54 839.94 1312.28 837.71 1312.07 840.7 1340.42 842.72 1335.36 962.79 1280.22 966.13 1282.56 945.09 1290.63 879.19 1290.65 879.02 1284.55 815.27 1318.49 812.58 1318.25 809.59 1281.28 812.52 1287.63 878.98 1279.58 944.75 1271.69 1015.67 1271.66 1015.89 1279.59 1059.73 1282.54 1059.2 1278.62 1037.5 1301.79 1032.51 1301.16 1029.58"/><rect class="cls-6" x="1419.78" y="394.48" width="97.14" height="3" transform="translate(-6.68 766.28) rotate(-29.19)"/><path class="cls-6" d="M2141.01,336.31l33.14-47.38-89.12-53.09-26.49,6.26-21.38-15.42-3.17-2.35,11.8-9.4-1.87-2.35-14.85,11.83.29.22-20.39,24.47v9.92l47.55,22.54,6.69-9.86-38.11-18.92,6.47-8.8-9.42-6.02,9.61-11.53,3.61,2.68,22.5,16.24,26.65-6.29,85.31,50.82-30.39,43.45h-65.32l-49.13-21.89-.18-.08-38.85-6.34-17.66-10.71-1.55,2.56,17.91,10.86.25.15,39.04,6.37,49.54,22.07h67.52ZM2027.27,244.77l-6.69,9.1,38.22,18.98-3.31,4.88-43.51-20.63v-6.93l8.25-9.91,7.04,4.5Z"/><polygon class="cls-6" points="2123.83 142.24 2121.66 144.31 2135.13 158.42 2111.05 184.5 2118.46 191.63 2091.9 218.99 2066.07 195.47 2064.05 197.69 2092.03 223.16 2122.71 191.56 2115.24 184.38 2139.24 158.38 2123.83 142.24"/><path class="cls-6" d="M1810.66,55.84l34.22,27.7,231.44-59.7-.75-2.9-229.98,59.32-33.57-27.17-50.35-12.47,11.59-43.74-2.9-.77-11.86,44.78-6.95,6.17-19.87-27.49-2.43,1.76,20.04,27.73-23.68,21.03-48.96,36.75,1.43.49-8.12,38.91-26.49-7.98-.87,2.87,26.55,8-7.54,21.02-41.24-12.83-.89,2.87,41.11,12.79-7.31,20.36-39.64-11.87-.86,2.87,39.49,11.82-15.92,44.36-3.89,12.66-32.3-8.55-.77,2.9,32.18,8.52-6.77,22.02-7.81,20.69-33.49-8.33,4.62-11.63-2.79-1.11-5.89,14.82,39.41,9.81,8.32-22.03,74.94,15.49-2.62,19.4h-.07s-2.02,23.68-2.02,23.68l-28.81-.91-5.8,41.61-60.35-22.02,7.53-29.12,14.4,4.07-7.41,25.88,2.88.83,8.23-28.77-20.25-5.72-13.55,52.36-153.76,63.23,1.14,2.78,21.48-8.83,25.15,56.57,69.05-26.32-1.07-2.8-21.97,8.37-24.59-54.98,85.08-34.99,31.93,67.34-61.04,27.48,1.23,2.74,61.87-27.86,18.61,6.8,20.04-4.63,11.8,41.26,2.88-.82-11.76-41.11,42.99-9.92,20.93,90.65-43.15,10.32,3.78,14.78-35,51.63-12.85-9.3-20.44-18.68-11.45,11.89-22.49,22.03-22.19-19.6-1.99,2.25,22.03,19.45-33.06,32.38,2.1,2.14,33.22-32.53,110.56,97.63,1.99-2.25-27.81-24.56,18.5-23.74-2.37-1.84-18.38,23.6-23.14-20.43,19.7-23.14-2.29-1.95-19.66,23.1-15.4-13.6,26.18-38.61,82.16,59.46,1.76-2.43-82.24-59.51,35.81-52.82-3.36-13.13,18.69-4.47,5.6,31.85,23.47-4.07,3.3,14.28-23.29,35.69,2.51,1.64,23.64-36.23.35-.53-11.19-48.46,45.31-10.84,6.48,26.2,33.23-8.31-6.5-25.84,21.67-5.19-13.94-54.27-2.91.75,6.25,24.32-18.56,4.62-15.79-62.74,103.78-23.96,9.02,36.72,2.91-.71-4.89-19.9,28.99-2.48,1.78,14.78,2.98-.36-1.91-15.86,6.09-16.25,13.9,4.44.91-2.86-24.37-7.78,7.17-22.02-2.85-.93-7.38,22.64-30.16,6.96-9.36-38.12,1.58-29.38,25.07,2.08-4.08,31.79,2.98.38,4.1-31.93,35.65,2.95.25-2.99-124.48-10.3v-39.08l30.12-90.69.67-1.57,88.73,30.55,10.09-31.97-2.86-.9-9.16,29.03-56.96-19.61,9.24-29.06-2.86-.91-9.22,28.99-25.82-8.89,26.75-62.48,13.14-15.33,25.76,4.04-19.5,56.77,2.84.97,20.66-60.16-30.95-4.85-14.53,16.95-28.81,67.3-30.26,91.1-.08.23v42.32l22.01,1.82v22.07h3v-21.82l35.51,2.94-1.6,29.91,9.46,38.52-103.79,23.96-11.01-43.77-32.83,9.89,10.61,41.55-43.54,10.05-9.63-41.71-.18-.79-40.14-14.65,5.52-39.58,82.68,2.62-1.27,32.54,3,.12,1.27-32.56,27.63.88,2.65,13.1,2.94-.6-3.12-15.43-29.98-.95.77-19.87-55.28-5.4,2.58-19.08,27.19,5.62.61-2.94-27.39-5.66,4.61-34.1,5.95-20.19,20.62,6.03.84-2.88-20.62-6.03,5.04-17.12,55.58,20.25,23.98-70.04,27.66,8.93,10.8-32.55-2.85-.95-9.87,29.73-24.78-8,10.31-30.11-2.84-.97-10.33,30.16-34.25-11.06-.92,2.86,34.2,11.04-6.34,18.53-66.69-23.58-8.23,28.04,65.39,23.37-7.1,20.74-83.8-30.54,16.97-57.96,14.1,3.94,7.42-25.8,19.96,6.81,5.86-16.01-2.82-1.03-4.85,13.26-17.32-5.91,8.88-30.86,28.58-16.23,16.87,12.31-11.75,35.48,2.85.94,12.43-37.56h-.02s10.29-33.33,10.29-33.33l11.35,2.81ZM1632.24,649.59l-37.28-32.92,22.37-21.91,9.45-9.82,17.18,15.7-9.56,9.41,2.11,2.14,9.78-9.63,11.97,8.66-26.01,38.37ZM1930.39,391.27l8.65,2.76-5.84,15.56-29.95,2.57-3.4-13.84,30.54-7.05ZM1531.51,471.13l-41.62,15.86-23.96-53.9,41.03-16.87,24.55,54.9ZM1647.62,453.47l-17.77-6.49-32.7-68.96,4.54-17.56,60.68,22.14-4.83,34.65,9.1,31.83-19.03,4.39ZM1741.91,564.93l-20.36,3.53-5.11-29.08,18.55-4.44,6.92,29.99ZM1737.23,531.32l-5.39-23.33,44.79-11.16,5.86,23.66-45.26,10.83ZM1779.55,496.1l27.21-6.78,6.02,23.92-27.36,6.55-5.86-23.69ZM1819.29,539.11l-27.4,6.85-5.76-23.25,27.38-6.55,5.78,22.96ZM1828.25,483.97l6.19,24.09-18.74,4.48-6.03-23.94,18.58-4.63ZM1806.03,486.42l-27.2,6.77-5.34-21.59-10.64-41.65,27.38-6.32,15.8,62.79ZM1752.19,388.21l27.07-8.15,10.23,40.66-27.39,6.32-9.92-38.83ZM1759.92,430.62l10.65,41.7,5.34,21.59-44.75,11.15-14.86-64.37,43.61-10.07ZM1703.27,397.52l9.45,40.92-43.14,9.96-8.97-31.37,4.65-33.38,38.01,13.87ZM1753.99,340.65l-53.59-1.7,1.75-20.5,52.5,5.13-.66,17.07ZM1721.05,189.53l6.54-22.28,63.73,22.53-7.58,22.16-62.68-22.4ZM1680.95,108.32l23.35,7.96,1.99,28.73-3.28,11.2-30.17-9.09,8.11-38.8ZM1672.04,150l30.13,9.08-6.36,21.71-31.32-9.75,7.55-21.04ZM1663.47,173.87l31.49,9.8-5.96,20.36-32.83-9.83,7.3-20.33ZM1689.55,207.33l9.37,3.42-5.88,18.53-21.64-6.33,5.97-19.26,12.18,3.65ZM1674.49,202.82l-5.97,19.27-20.23-5.92,6.87-19.14,19.33,5.79ZM1639.21,241.47l8.06-22.47,44.86,13.13-6.64,20.9-2.97,15-48.18-10.73,4.87-15.82ZM1633.46,260.17l21.72,4.84-3.34,17.32-23.69-4.9,5.31-17.26ZM1658.11,265.66l23.83,5.31-3.35,16.89-23.82-4.92,3.33-17.28ZM1681.54,288.46l3.33-16.85,19.92,4.44-2.27,16.75-20.99-4.34ZM1707.14,258.69l-1.95,14.39-19.74-4.4,2.93-14.82,6.63-20.88,18.14,5.31-6.01,20.41ZM1714,235.4l-18.08-5.29,5.82-18.34,17.35,6.32-5.1,17.31ZM1720.86,147.27l-11.64-3.25-1.85-26.68,20.12,6.86-6.64,23.07ZM1737.51,89.41l-9.18,31.9-45.34-15.46,44.47-33.38,23.59-20.95,15.48,21.41-29.03,16.48ZM1786.46,84.48l-16.65-12.15-16.5-22.82,6.92-6.15,36.15,8.95-9.94,32.17Z"/><polygon class="cls-6" points="1487.89 273.91 1442.96 326.27 1460.28 369.43 1463.07 368.32 1446.42 326.85 1490.17 275.87 1487.89 273.91"/><polygon class="cls-6" points="1604.61 67.27 1623.17 21.02 1620.39 19.9 1602.88 63.5 1525.08 36.77 1528.3 29.01 1525.53 27.86 1521.08 38.57 1562.03 52.64 1554.15 73.39 1536.87 67.66 1495.9 175.84 1498.71 176.91 1531.36 90.7 1563.47 102.27 1564.49 99.45 1532.42 87.89 1538.66 71.42 1568.52 81.32 1569.47 78.48 1557 74.34 1564.87 53.61 1604.61 67.27"/><polygon class="cls-6" points="1403.47 153.83 1435.2 127.05 1433.26 124.76 1401.41 151.64 1401.29 151.74 1353.41 212.93 1353.14 213.28 1346.33 292.97 1365.71 292.97 1382.25 223.4 1379.33 222.71 1363.34 289.97 1349.6 289.97 1356.05 214.43 1403.47 153.83"/><polygon class="cls-6" points="1421.6 125.22 1421.6 35.94 1418.6 35.94 1418.6 99.36 1397.07 99.36 1397.07 102.36 1418.6 102.36 1418.6 125.22 1421.6 125.22"/><rect class="cls-6" x="1370.13" y="3.98" width="72.46" height="3" transform="translate(640.52 1185.04) rotate(-57.23)"/><path class="cls-6" d="M1367.92-10.68l-89.9,90.05-32.97,17.61-5.35-16.05,81.17-92.3-2.25-1.98-81.45,92.62-21.14,6.23.85,2.88,20.17-5.94,5.33,15.98-21.43,11.45,1.41,2.65,20.98-11.21,20.29,60.82,2.85-.95-9.65-28.91,27.88-16.81-24.78-23,19.91-10.64,90.21-90.37-2.12-2.12ZM1279.74,114.92l-23.89,14.41-9.83-29.47,11.1-5.93,22.62,20.99Z"/><polygon class="cls-6" points="1905.4 707.75 1892.35 731.13 1894.97 732.59 1908.65 708.09 1937.09 672.47 1950.24 667.06 1959.49 689.92 1947.6 742.34 1950.53 743 1962.52 690.12 1962.62 689.67 1953.01 665.92 2005.21 644.45 2004.07 641.68 1951.89 663.14 1942.25 639.32 1938.57 595.17 1935.58 595.42 1939.28 639.8 1939.3 640.02 1949.11 664.28 1935.59 669.84 1935.23 669.99 1907.07 705.26 1852.65 670.29 1834.33 598.98 1831.43 599.72 1842.26 641.91 1819.42 646.6 1810.8 603.98 1807.86 604.57 1816.48 647.2 1801.01 650.38 1801.61 653.32 1843.01 644.82 1850.03 672.17 1905.4 707.75"/><polygon class="cls-6" points="1995.16 595.89 1965.21 460.43 1965.21 421.39 1962.21 421.39 1962.21 460.76 1992.23 596.53 1995.16 595.89"/><path class="cls-6" d="M1770.38,785.96l-1.8,2.4,19.07,14.33-55.22,76.47-15.3-10.3-1.68,2.49,15.22,10.24-3.67,5.09,34.22,23.85,63.17-83.99-54.01-40.58ZM1760.56,906.41l-29.35-20.45,58.83-81.47,30.15,22.65-59.63,79.27Z"/><polygon class="cls-6" points="1977.83 828.53 1911.11 858.97 1912.36 861.7 1979.57 831.03 2005.7 804.89 2003.58 802.77 1977.83 828.53"/><polygon class="cls-6" points="1980.11 1125.92 1978.58 1062.95 2012.07 1011.39 2048.18 962.01 2048.55 961.51 2040.02 908.35 2040.02 889.46 2073.63 848.77 2071.32 846.86 2037.02 888.39 2037.02 908.47 2045.39 960.75 2009.61 1009.68 2004.43 1017.66 1953.49 963.18 1951.3 965.23 2002.74 1020.25 1975.56 1062.09 1977.18 1128.8 2117.94 1134.62 2120.57 1146.95 2123.5 1146.33 2120.39 1131.72 1980.11 1125.92"/><polygon class="cls-6" points="1921.92 1014.98 1918.96 1014.46 1910.69 1061.34 1886.61 1042.62 1884.77 1044.99 1910.51 1065 1936.3 1125.39 1939.06 1124.21 1913.29 1063.88 1921.92 1014.98"/><polygon class="cls-6" points="1975.31 1157.28 1972.33 1157.69 1976.87 1191.36 1950.39 1201.59 1977.15 1261.88 1979.89 1260.67 1954.41 1203.25 1980.16 1193.31 1975.31 1157.28"/><rect class="cls-6" x="1812.81" y="1104.44" width="3" height="90.35" transform="translate(-265.45 613.04) rotate(-17.89)"/><path class="cls-6" d="M2090.19,746.53l86.99-37.82,128.07-17.43-.4-2.97-128.28,17.46-.21.03-87.76,38.15-.38.17-9.61,13.58-11.17,41.35,40.77,16.08,13.36,18.9,16.79-9.04,16.85,42.81,28.23-10.5-1.04-2.81-25.47,9.47-17.01-43.22-.16.09-9.7-18.1,85.32,36.11,1.17-2.76-88.74-37.56-.24-.45,9.65-23.17,84.64-30.81-1.03-2.82-85.26,31.04-.62.22-10.27,24.67-48.11-20.36,4.82-17.84,8.82-12.46ZM2125.65,800.87l11.46,21.39-14.62,7.88-12.34-17.47-39.11-15.42,4.73-17.49,49.89,21.11Z"/><polygon class="cls-6" points="2011.39 672.72 2032.61 670.29 2018.58 595.02 2015.63 595.57 2029.07 667.68 2011.05 669.74 2011.39 672.72"/><rect class="cls-6" x="800.76" y="317.88" width="3" height="40.09" transform="translate(-67.44 299.93) rotate(-20.34)"/><polygon class="cls-6" points="936.53 596.61 933.59 597.2 938.57 622.01 1039.7 596.45 1038.96 593.54 962.56 612.85 957 589.94 954.08 590.65 959.65 613.59 940.89 618.33 936.53 596.61"/><rect class="cls-6" x="901.21" y="301.82" width="3" height="57.8" transform="translate(-53.85 426.93) rotate(-25.86)"/><polygon class="cls-6" points="1203.55 112.96 1200.55 112.96 1200.55 147.12 1176.91 143.18 1176.17 115.42 1173.17 115.5 1173.89 142.67 1124.32 134.41 1123.83 137.37 1173.97 145.73 1175.12 188.97 1178.12 188.89 1176.99 146.23 1203.55 150.66 1203.55 112.96"/><path class="cls-6" d="M745.49,131.91l-20.33-28.79-51.13,13.63,12.36,157.77h37.28l104.38-35.94.19-.07,19.44-13.33.15-.32,9.26,1.77,13.89,25.83,113.04-48.57-10.57-47.25,17.16-10.74,22.1,17.65,37.81-30.38,17.11,29.21,2.59-1.52-17.34-29.6,32.12-25.81,20.78,39.31,2.65-1.4-21.05-39.82,28.1-22.58-13.57-26.01,69.78-39.73-1.48-2.61-72.29,41.16,13.77,26.39-25.73,20.67-50.18-94.91,57.61-40.03-1.71-2.46-59.79,41.54,51.69,97.77-70.87,56.94-21.88-17.47-20.76,12.99,10.49,46.89-108.23,46.5-12.06-22.43,70.66-21.89,21.36-26.2-2.33-1.9-20.79,25.5-71.18,22.05-8.84-1.69,10.61-22.61-7.19-12.73,63.12-8.1,30.79-12.35-1.12-2.79-29.2,11.71-24.17-63.22,26.66-11.57-1.19-2.75-29.29,12.72,25.06,65.54-62.26,7.98-15.57-27.55-44.11-5.53-12.69-30.49-2.77,1.15,13.36,32.09,44.34,5.56,22.85,40.44-10.28,21.9-72.68-13.92-.56,2.95,71.08,13.61-17.06,11.7-80.43,27.69-6.57-18.56,12.03-3.32-15.17-59.62,24.4-2.19-.27-2.99-78.58,7.06-2.95-37.65,66.14-14.32ZM748.29,239.52l-22.26,6.15-15.48-61.31,23.18-2.08,14.56,57.24ZM707.53,184.63l16.35,64.74,13.11-3.62,6.63,18.74-20.44,7.04h-34l-6.63-84.65,24.98-2.25ZM677.22,119.01l46.7-12.45,16.51,23.38-61.31,13.28-1.9-24.21Z"/><path class="cls-6" d="M158.38,367.65l-.63-2.93-44.22,9.47-35.43-2.13-3.88,19.97-.59-.04-.24-.02-65.15,16.49-37.32-12.58-10.15,11.2,2.22,2.02,8.83-9.74,36.29,12.23,39.82-10.08-14.45,58.93,2.91.71,14.83-60.48,22.4-5.67-15.63,80.45,2.95.57,15.7-80.83,30.57,2.05-21.21,93.63,2.93.66,21.32-94.09,24.19,1.62.2-2.99-23.72-1.59,3.97-17.52,43.48-9.31ZM77.24,392.23l3.31-17.02,31.25,1.88-3.89,17.19-30.66-2.05Z"/><polygon class="cls-6" points="234.4 377.06 232.17 355.38 313.13 337.88 312.49 334.94 228.91 353.01 231.11 374.34 145.88 381.94 146.14 384.93 234.4 377.06"/><path class="cls-6" d="M1009.22,383.66l2.83-.99-41.27-117.75-2.83.99,11.41,32.56-19.61,7.66-12.42-31.82-2.79,1.09,12.42,31.82-17.01,6.65-12.09-32.78-2.81,1.04,28.37,76.89,2.81-1.04-8.89-24.1,17.79-5.73,10.92,27.99-19.42,9.15,1.28,2.71,19.24-9.06,11.47,29.39,2.79-1.09-11.54-29.58,17.38-8.18,11.99,34.2ZM980.35,301.3l5.91,16.88-19.38,6.24-6.05-15.5,19.51-7.62ZM946.29,331.06l-5.3-14.38,17.06-6.67,5.98,15.33-17.74,5.72ZM978.76,354.85l-10.78-27.63,19.28-6.21,8.98,25.61-17.47,8.23Z"/><polygon class="cls-6" points="1042.14 616.1 1041.22 613.25 1023.81 618.86 1009.84 633.14 947.79 650.4 947.52 650.48 934.41 660.33 895.65 669.78 895.45 669.83 871.15 683.24 872.6 685.87 896.55 672.65 935.72 663.09 948.87 653.22 974.62 646.05 977.61 660.74 980.55 660.14 977.52 645.25 1009.64 636.31 1013.93 649.74 1016.79 648.82 1012.34 634.88 1025.44 621.48 1042.14 616.1"/><path class="cls-6" d="M811.57,866.94l93.02-88.15-2.06-2.18-44.42,42.1-30.15-29.67,37.43-37.82,20.52-10.04-1.32-2.7-20.74,10.15-.23.11-68.32,69.03,25.39,94.78-42.56,20.49,1.3,2.7,44.8-21.57-12.66-47.23ZM825.85,791.17l30.08,29.61-45.24,42.87-12.05-44.99,27.21-27.49Z"/><polygon class="cls-6" points="969.41 1011.25 953.34 1038.66 953.34 1064.27 944.29 1085.83 947.05 1086.99 956.34 1064.87 956.34 1039.47 972 1012.77 969.41 1011.25"/><polygon class="cls-6" points="963.49 1085.4 1076.01 1117.36 1076.01 1052.01 1073.01 1052.01 1073.01 1113.39 962.4 1081.98 957.02 1088.64 959.35 1090.52 963.49 1085.4"/><polygon class="cls-6" points="587.28 1240.42 562.36 1217.48 573.29 1207.77 571.3 1205.53 560.14 1215.44 553.88 1209.67 566.61 1201.63 565.01 1199.1 548.96 1209.22 587.42 1244.63 598.96 1232.47 596.79 1230.4 587.28 1240.42"/><path class="cls-6" d="M1715.13,1336.41h-22.92l-22.57,15.42-34.27-5.95-.26-.05-58.65,10.49-19.82-22.55h-11.75v3h10.39l20.04,22.8,10.46-1.87-.98,10.68,102.59,32.41,1.04.33,10.56-14.65h62.17v-29.49l-45.72-20.42-.29-.13ZM1758.15,1383.46h-60.71l-10.19,14.13-99.25-31.36.84-9.09,46.27-8.27,35.21,6.12,22.81-15.58h21.36l43.65,19.5v24.55Z"/></g><g id="größere_Straßen"><path class="cls-4" d="M1886.91,1046.69l35.82-29.97,131.24-207.46.17-.27,35.42-97.4,60.09-40.06,126.74-16.71-.78-5.95-127.43,16.8-.69.09-20.81,13.87-24.65-35.36v-25.38l-18.09-35.4-56.93,6.12-12.78-107.81-9.89-33.69-38.06-28.55-15.92-50.08,31.63-13.38,39.49,50.7,61.41,27.59,41.6,50.77h60.7v-6h-57.86l-40.69-49.66-61.34-27.56-41.41-53.16-32.94,13.94,15.65-66.32,31.52-93.12,43.82,15.07,1.67.58,85.49-77.35-13.64-90.5-39.23-36.43-19.29-63.66-5.74,1.74,19.76,65.21,38.88,36.1,12.85,85.25-80.48,72.81-284.67-97.88-50.99-79.89-5.06,3.23,51.55,80.77.56.88,17.83,6.13-42.97,135.62-127.93-32.58-1.48,5.81,128.55,32.74,6.63,114.04-65.86-10.54-98.16-29.05-77.41-67.19,31.82-59.69,35.51,8.92-12.76,39.51,5.71,1.84,14.73-45.61-40.76-10.24,114.68-308.91-5.62-2.09-94.37,254.19-74.77-26.62,35-92.13,25.38-3.75-.88-5.94-27.05,4-54.88,5.26h-58.26l-19.27,6.09-23.76,24.97-18.33,7.58-12.89,43.59-51.21,43.19,10.73,33.31-45.72-4.96-67.31-1.06-26.36,7.38-21.12-47.52,54.25-26.19,56.62-5.17-.54-5.97-57.16,5.21-.54.05-149.59,72.22-60.8-11.17-43.13-101.93-171.12,58.16,70.05,177.43-39.65,21.74-320.68,15.07-1.79.08-30.47,63.71-114.1,43.05-19.23,47.81-127.16,49.19-36.34-32.71,17.75-117.29,23.93-29.51-9.46-40.78,161.67-39.59-1.43-5.83-161.6,39.57-31.15-134.22-.06-.25L58.01,41.35l18.23-75.51-5.83-1.41-18.69,77.42,61.84,148.22,41.25,177.75-23.11,28.5-17.41,115-35.31-31.77-25.68-9.19-160.87-116.05-3.51,4.87,161.22,116.3.34.25,25.37,9.08,76.99,69.29,14.52,34.32,47.05,97.41,20.3,44.69-107.23,54.02-81.75,42.53H-3.74l-37.9-15.9-.28-.12-78.58-15.51-1.16,5.89,77.98,15.4,38.73,16.25h44.23l-76.47,77.32h-64.67v6H-34.68l82.95-83.87,81.95-42.63,105.42-53.11v99.27l28.25,174.05,8.32,30.04,42.62,48.12,64.83,23.33,50.25,35.33,33.21,20.81,56.74,16.51,30.02-11.01,13.46,28.96,195.7,189.63-71.71,109.32,5.02,3.29,74.43-113.46-.1-.1,87.05-151.25.19-.34,5.52-20.42,128.2,26.82,55.17-18.39,62.35-87.82,129.86,64.86v69.63l-40.31,53,13.16,76.95,5.91-1.01-12.72-74.38,39.96-52.53v-70.98l49.58-8.57,165.8-96.27,74.58-15.91,201.24-21.2,12.91,29.97v110.24l27.1,48.39-17.68-12.07h-67.14l-125.58,39.49-.75.24-32.75,34.91,4.38,4.11,31.68-33.76,123.96-38.98h64.37l26.12,17.83,2.02,3.6.65-.95,69.92,72.56,57.68,114.96,5.36-2.69-57.89-115.36-.21-.41-71.41-74.1,77.48-112.91,42.61-11.57,28.56,24.01h36.74l-.15.91,59.4-13.56,92.96,1.81,75.22-26.69-2.01-5.65-74.2,26.33-92.24-1.8h-.37s-51.46,11.74-51.46,11.74l4.64-29-51.57-3.22-63.92-2.39-28.29-12,6.1-55.79,42.46-4.47ZM1735.95,1056.56l-54.51-126.56,112.68-175.71,27.83,20.5,86.78,86.78v26.71l-37.39,49.54.94,44.2-32.23,63.56-104.1,10.97ZM1283.9,767.71l-3.73,43.19h-29.13l-31.21,84.53-28.89-3.75,19.45-127.34,73.52,3.37ZM1190.02,897.61l33.77,4.39,31.42-85.1h30.45l4.23-48.91,38.12,1.75.27-5.99-37.87-1.74.76-8.83,24.55-32.49h63.4l112.72-58.23-11.81,44.91v67.8l-19.3,49.38,27.6,80.47-9.92,48.05,6.69,22.77-41.23,12.56-.33.1-94.44,54.6-134.83,26.38-36.61-60.75v-30.26l12.35-80.87ZM1490.85,974.09l-6.25-21.28,9.94-48.19-27.42-79.94,18.91-48.39v-68.16l35.04-133.3.04-.17,7.97-55.86,60.21,54.54-50.43,47.75,26.95,58.7,11.72,86.53,36.17,49.16,59.83,112.13-104.98,22.79-.12.03-77.59,23.64ZM1861.02,349.54l-32.96-13.34-87.89,43.61-6.49-111.69,133.72,21.63,92.59,8.49-15.6,66.09-83.38-14.79ZM1828.31,342.78l31.04,12.56,85,15.08,15.52,48.83-199.24,49.44-19.72-82.54,87.4-43.37ZM1786.4,602.33l-139.9-75.27,31.99-30.55,77.74-20.5,30.18,126.32ZM1991.31,599.17l22.8,97.6v63.57l-71.61-22.92-25.51,8.14-34.42,42.93-22.2-6.2-10.88,11.55-23.45-23.45-.16-.16-55.24-40.7-41.44-37.54,37.47-41.93.48-.54,11.66-44.47,9.45,5.09,15.82,66.22,5.84-1.39-15.42-64.53,64.16-13.42,132.65,2.15ZM1641.93,531.41l131.44,70.72-11.66,44.47-36.96,41.36-126.63-114.72,43.81-41.84ZM1720.75,692.44l-104.27,116.7-33.2-45.12-11.57-85.46-.06-.44-25.53-55.61,47.65-45.12,126.99,115.04ZM1619.89,814.33l105.31-117.86,41.52,37.61.11.1,22.45,16.54-110.99,173.07-58.41-109.46ZM2096.03,620.34v25.82l25.65,36.8-37.09,24.72-35.87,98.64-130.57,206.39-33.69,28.2-37.3,3.93,31.15-61.44-.93-43.62,37.35-49.49v-31.21l-61.01-61.01,8.51-9.04,22.53,6.29,35.76-44.61,21.96-7,77.61,24.84v-72.48l-22.71-97.25,83.08-8.93,15.56,30.44ZM2008.3,482.76l12.74,107.49-27.48,2.95-135.14-2.19h-.33s-64.98,13.59-64.98,13.59l-31.08-130.09,201.02-49.88,36.1,27.08,9.16,31.05ZM1992.44,201.33l-30.82,91.04-93.36-8.55-133.88-21.66,42.74-134.87,215.33,74.04ZM1539.66,157.75l-19.32,52.04-32.18,60.37-45.26-39.28,10.83-14.01,4.04-67.12,7.08-18.64,74.81,26.64ZM1419.62,251.16l-37.33-30.76-37.2-13.07,40.33-80.79,73.39,3.55-6.82,17.95-.16.43-3.98,66.19-28.23,36.5ZM1444.69,38.94l50.59-4.84-34.23,90.09-72.71-3.51,11.85-23.73-9.89-58.01h54.38ZM1267.78,160.35l49.5-41.75,12.59-42.56,16.86-6.98,23.57-24.78,14.07-4.44,9.58,56.19-54.57,109.3-24.94-8.76-.32-.11-36.03-4.07-10.32-32.04ZM1159.3,191.66l66.02,1.02,50.17,5.45h0s37.28,4.21,37.28,4.21l66.52,23.37,36.65,30.2-13.74,17.76-34.92,24.83h-39.67l-78.93,28.46-92.84,20.72-22.02-148.89,25.47-7.13ZM875.6,322.32l40.4-37.61,141.22-44.53,51.73-34.41,19.06-5.34,21.98,148.57-182.65,40.76-10.83-36.04h-174.63l-7.86-19.51,39.34-21.58,62.23,9.68ZM906.79,80.05l42.21,99.77,65.91,12.11,90.73-43.8,20.69,46.54-19.91,5.58-51.81,34.46-141.05,44.48-.65.2-39.26,36.55-58.67-9.13-68.07-172.44,159.88-54.33ZM172.86,585.98l-13.54-32.01,128.42-49.68,19.22-47.79,112.76-42.55,1.13-.42,29.96-62.65,317.45-14.92,9.57,23.76h174.21l11.15,37.11,188.18-42,49.32,146.97,5.69-1.91-49.12-146.37,92.93-20.74.19-.04,78.3-28.23h36.18l-6.91,56.03,22.53,45.17,5.37-2.68-21.73-43.56,6.94-56.29,35.35-25.13,32.81-42.42,127.55,110.71.49.43,99.59,29.48.19.05,67.95,10.87,19.83,83-78.62,20.73-.75.2-81.79,78.11-64.26-58.22-.77-1.72,41.29-17.62-2.36-5.52-41.39,17.67-59.5-132.74-5.48,2.45,59.45,132.65-8.53,3.64h-80.27v6h81.5l9.76-4.17.72,1.6-8.59,60.25-21.33,81.15-116.23,60.04h-64.93l-27.39,36.25-.93,10.79-96.55-4.42-4.46,53.53-32.72-.76-4.49-84.2,12.83-11.57,76.18-111.64,14.3-19.46-54.43-82.89-5.02,3.29,52.14,79.4-11.86,16.14-75.87,111.18-45.58,41.11-12.82,24.49-15.42-8.12-43.27-195.43,71.03-18.24-1.49-5.81-320.95,82.4-1.19.3-10.9,18.07-30.14,4.83-24.46-5.18-43.97,13.43-141.09-13.32-.41-.04-71.95,13.07-.16.03-221.42,66.31-20.44-44.99-46.99-97.27ZM1144.81,812.43l-60.29,132.97-.39.87,17.06,88.01v14.72h-72.82l-72.27-50.97,107.74-147.62,49.89-95.25,26.75-24.13,4.34,81.4ZM907.43,1071.4l19.26-33.09,25.86-35.44,73.91,52.12h74.72v76.51l-193.75-60.11ZM893.83,1082.85l-39.38-24.21,2.24-16.8,42.33,32.1-5.19,8.91ZM683.71,736.71l-4.92-69.31,40.77-12.45,24.03,5.09,33.99-5.44,11.07-18.35,54.13-13.9,11.86,58.84,14.49,5.54,3.6,26.12,32.46,76.4,73.99,43.91-90.45,87.36-45.64,23.8-30.89,42.11-21.7-25.78-43.89-134.29-6.53-51.69-25.89-15.91v-30.4l-30.48,8.35ZM1031.58,573.87l43.83,197.95,17.89,9.42-34.45,65.82-13.44,18.41-135.46-80.38-31.38-73.86-3.98-28.85-14.72-5.63-11.27-55.91,182.97-46.98ZM847.11,948.98l44.79-23.35.38-.2,92.25-89.11,57.32,34.02-120.11,164.57-13.03,22.37-25.54-19-8.53,9.65-29.49-22.36-28.98-34.43,30.93-42.16ZM879.45,1051.57l4.58-5.18,21.66,16.11-3.63,6.23-22.62-17.15ZM848.31,1236.91l-86.1,149.6-193.91-187.91-15.32-32.96-33.35,12.23-54.04-15.73-32.3-20.23-50.84-35.75-64.14-23.08-40.68-45.93-7.83-28.23-28.15-173.41v-101.42l221.47-66.33,70.98-12.9,138.74,13.1,5.42,76.46,29.95-8.21v25.89l26.3,16.16,6.25,49.4,44.43,135.94,55.62,66.09.22.26,10.19,7.72-3.21,24.04,42.82,26.33-4.18,7.17-38.32,141.69ZM1039.03,1222.16l-51.77,17.26-126.27-26.42,31.22-115.45,12.12-20.82,195,60.5-60.3,84.94ZM1530.16,1078.25l-75.98,16.19-165.69,96.21-50.03,8.65-131.28-65.56v-100.02l-16.8-86.7,59.38-130.96,39.16.91,4.45-53.4,10.98.5-32.64,213.73-.03,32.6,39.64,65.77,139.45-27.28.49-.1,94.71-54.75,124-37.77,106.32-23.09,53.43,124.04-199.54,21.02ZM1971.26,1154.48h-33.31l2.45-26.51,34.76,2.17-3.89,24.34ZM1930.25,1127.34l4.15.26-2.21,23.9-25.73-21.64-47.77,12.97-77.38,112.77-30.22-53.96v-95.18l83.32,5.35,30.89,13.1,64.94,2.43ZM1832.45,1105.67l-81.36-5.23v-8.72l-12.66-29.39,99.91-10.53-5.89,53.86Z"/></g><g id="Autobahn_große_Straße"><path class="cls-5" d="M2103.99,861.1l-482.61-312.94-47.17-61.71-67.13-145.49,28.43-25.99,18.01-43.36,37.23,14.67,34.49-124.18,61.86-54.13,21.97-68.1,105.47-66.33-6.39-10.16-105.22,66.17-116.44-26.36-47.2,14.85,32.2-113.21-11.54-3.28-38.29,134.62,65.34-20.56,109.3,24.75-19.6,60.77-62.06,54.3-31.89,114.8-35.8-14.1-21.5,51.79-65.1,59.54-52.27,30.93h-26.88l-63.96,47.18-55.64-85.52-14.15-71.82-15.41-88.08-4.43-89.73-13.72-64.03-25.93-28.29-106.58-71.21-6.67,9.98,105.38,70.41,22.75,24.82,12.83,59.89,4.42,89.5,15.55,88.88,14.63,74.29,56.35,86.61-204.94,79.58v72.85l-45.19,30.81-103.77,26.5-106.92,61.26-.62.36-105.01,99.48-33.28,17.17-170.6,67.39c1.52-6.43,2-13.85-1.47-19.27-2.05-3.19-6.25-6.97-14.61-6.76-4.69.11-8.21,1.43-10.84,3.17l-7.79-116.32-52.87-164.95-126.77-264.54L302.07,8.79l-.04-.74-23.33-74.23-11.45,3.6,22.89,72.83,19.98,330.77,127.43,265.92,52.17,162.77,7.99,119.34c-3.4-1.86-7.32-2.8-11.62-2.76-7.72.1-11.78,3.9-13.82,7.08-6.46,10.04-1.32,27.98,2.26,37.66l-167.18,66.04-49.15,6.41L2.26,949.7l-79.69-49.24-6.31,10.21L-2.26,961.01l258.99,54.43,1,.21,52.64-6.87,162.71-64.28c-1.12,6.74-.36,12.23,2.29,16.34,2.13,3.32,6.52,7.27,15.3,7.27h0c1.52,0,2.99-.24,4.4-.69l-6.32,53.65-48.7,101.54-69.65,95.63-59.87,51.61-100.22,52.2-.61.32-124.47,106.54,7.8,9.12,123.42-105.64,100.23-52.2.62-.32,61.45-52.97.52-.45,71.11-97.64,50.04-104.33,7.78-66.03c3.31,2.38,8.09,4.26,14.99,4.26.58,0,1.18-.01,1.79-.04,6.99-.31,10.59-3.93,12.38-6.91,3.46-5.76,3.42-14.39-.14-26.37-1-3.37-2.13-6.48-3.12-8.99l177.44-70.09,35.6-18.34,105.2-99.67,104.88-60.09,104.23-26.61,52.17-35.57v-70.98l199.63-77.52.81,1.25.86-.63,18.31,19.27,90.81,34.84-19.75,51.23-52.17,81.92-22.37,82-.04.14-31.01,140.66-.17.77,4.44,99.91-13.38,125.97,12.1,32.67,217.52,184.23,17.22,23.3v25.3l-19.84,37.47-4.5,83.33,11.98.65,4.35-80.69,20-37.77v-32.23l-20.4-27.6-216.18-183.09-10.03-27.08,13.18-124.07-4.41-99.24,30.78-139.6,21.85-80.1,51.83-81.4,22.63-58.69,8.1-75.2-27.04-33.05,48.74-28.85,30.26-27.67,65.81,142.62.28.6,49.24,64.42,483.11,313.27,91.33,97.93,8.78-8.18-91.83-98.47-.5-.54ZM514.45,895.26c.88-1.19,2.36-2.57,6.04-2.65,2.25-.03,3.67.37,4.23,1.24,1.35,2.1.97,9.52-2.96,18.53l-8.93,3.53c-1.25-7.2-1.58-16.32,1.62-20.65ZM482.36,899.86c.32-.5.98-1.53,3.87-1.56,3.42-.04,6.04.96,8.13,3.17,2.61,2.75,4.09,7,4.92,11.19l.56,8.38-14.13,5.58c-3.49-9.68-6.27-22.21-3.35-26.76ZM490.68,956.12h0c-2.7,0-4.46-.59-5.21-1.76-1.93-2.99-.45-10.2,1.46-15.32l11.6-4.58c-.69,8.29-2.54,17.33-5.84,20.69-.84.86-1.46.98-2,.98ZM527.11,949.56c-.21.35-.61,1.01-2.64,1.1-7.97.35-10.1-2.54-10.8-3.49-3.28-4.45-2.18-12.93-.87-18.36l10.23-4.04c4.97,12.38,5.7,22.1,4.08,24.79ZM1426.72,504.4l-86.6-33.23-15.41-16.22,60.43-44.58h21.74l26.48,32.37-6.64,61.67Z"/></g><g id="Standorte"><g id="St._Antonius_Frankenberg"><path class="cls-1" d="M2077.41-72.94l-2.93-.62-26.15,122.88-84.67,1.52v-4.07c0-6.6-5.4-12-12-12h-186.29c-6.6,0-12,5.4-12,12v10.79c0,6.6,5.4,12,12,12h186.29c6.6,0,12-5.4,12-12v-3.72l87.11-1.58,26.64-125.18Z"/><path class="cls-3" d="M1776.02,48.28c-.05.08-.1.14-.15.18-.05.04-.12.06-.21.06-.09,0-.2-.04-.32-.14-.12-.09-.27-.19-.46-.3-.18-.11-.41-.21-.66-.3-.26-.09-.57-.14-.94-.14-.35,0-.65.05-.92.14s-.49.22-.67.38c-.18.16-.31.35-.4.56-.09.22-.14.45-.14.7,0,.32.08.58.24.79.16.21.37.39.62.54.26.15.55.28.88.39.33.11.66.22,1.01.34s.68.25,1.01.4c.33.15.62.33.88.56s.47.5.62.82c.16.33.24.72.24,1.2,0,.5-.09.97-.26,1.41-.17.44-.42.82-.75,1.15s-.73.58-1.21.77c-.48.19-1.02.28-1.63.28-.74,0-1.42-.13-2.03-.4-.61-.27-1.13-.63-1.56-1.09l.45-.74c.04-.06.09-.11.16-.15s.13-.06.2-.06c.11,0,.24.06.38.18s.32.25.54.4c.22.14.48.28.78.4.31.12.68.18,1.12.18.37,0,.7-.05.98-.15.29-.1.53-.24.73-.43s.35-.4.46-.66.16-.54.16-.86c0-.35-.08-.63-.24-.85-.16-.22-.36-.41-.62-.56s-.55-.28-.88-.38-.66-.21-1.01-.32-.68-.24-1.01-.38-.62-.33-.88-.56c-.26-.23-.46-.52-.62-.86s-.24-.77-.24-1.28c0-.41.08-.8.24-1.18.16-.38.38-.71.68-1.01s.67-.53,1.11-.7.95-.26,1.52-.26c.64,0,1.22.1,1.75.3.53.2.99.5,1.38.88l-.38.74Z"/><path class="cls-3" d="M1780.86,58.08c-.64,0-1.13-.18-1.48-.54-.34-.36-.52-.87-.52-1.54v-4.96h-.98c-.08,0-.16-.03-.22-.08s-.09-.13-.09-.24v-.57l1.33-.17.33-2.5c.01-.08.04-.15.1-.2s.13-.08.22-.08h.72v2.79h2.32v1.03h-2.32v4.86c0,.34.08.59.25.76s.38.25.64.25c.15,0,.28-.02.39-.06.11-.04.2-.08.28-.13.08-.05.15-.09.2-.13.06-.04.11-.06.15-.06.07,0,.14.04.2.14l.42.68c-.25.23-.54.41-.89.54s-.7.2-1.07.2Z"/><path class="cls-3" d="M1783.9,57.08c0-.14.03-.27.08-.39.05-.12.12-.23.21-.32.09-.09.19-.16.32-.22.12-.05.25-.08.39-.08s.27.03.39.08c.12.05.23.13.32.22s.16.2.21.32c.05.12.08.25.08.39s-.03.28-.08.4c-.05.12-.12.23-.21.32-.09.09-.2.16-.32.21-.12.05-.25.08-.39.08s-.27-.03-.39-.08-.23-.12-.32-.21c-.09-.09-.16-.2-.21-.32-.05-.12-.08-.25-.08-.4Z"/><path class="cls-3" d="M1800.5,57.96h-1.2c-.14,0-.25-.04-.34-.1-.09-.07-.15-.16-.19-.26l-1.07-2.77h-5.14l-1.07,2.77c-.04.1-.1.18-.19.26-.09.07-.2.11-.34.11h-1.2l4.58-11.46h1.58l4.58,11.46ZM1792.99,53.7h4.28l-1.8-4.66c-.12-.29-.23-.65-.34-1.08-.06.22-.12.42-.17.6-.06.18-.11.35-.16.48l-1.8,4.66Z"/><path class="cls-3" d="M1801.73,57.96v-8.1h.85c.2,0,.33.1.38.29l.11.88c.35-.39.75-.7,1.18-.94.43-.24.94-.36,1.51-.36.44,0,.83.07,1.17.22.34.15.62.35.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.82.1-1.18.3s-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M1813.08,58.08c-.64,0-1.13-.18-1.48-.54s-.52-.87-.52-1.54v-4.96h-.98c-.08,0-.16-.03-.22-.08s-.09-.13-.09-.24v-.57l1.33-.17.33-2.5c.01-.08.05-.15.1-.2s.13-.08.22-.08h.72v2.79h2.32v1.03h-2.32v4.86c0,.34.08.59.25.76.17.17.38.25.64.25.15,0,.28-.02.39-.06.11-.04.2-.08.28-.13.08-.05.15-.09.2-.13.06-.04.11-.06.15-.06.08,0,.14.04.2.14l.42.68c-.25.23-.54.41-.89.54s-.7.2-1.07.2Z"/><path class="cls-3" d="M1819.87,49.72c.59,0,1.13.1,1.6.3.48.2.88.48,1.22.84.33.36.59.8.77,1.32.18.51.27,1.09.27,1.72s-.09,1.22-.27,1.73-.43.95-.77,1.31c-.33.36-.74.64-1.22.84-.48.19-1.01.29-1.6.29s-1.13-.1-1.6-.29c-.48-.2-.88-.47-1.22-.84-.34-.36-.59-.8-.78-1.31-.18-.51-.27-1.09-.27-1.73s.09-1.21.27-1.72c.18-.52.44-.95.78-1.32.34-.36.74-.64,1.22-.84.48-.2,1.01-.3,1.6-.3ZM1819.87,56.96c.8,0,1.4-.27,1.79-.8.39-.54.59-1.28.59-2.24s-.2-1.72-.59-2.26c-.39-.54-.99-.81-1.79-.81-.41,0-.76.07-1.06.21-.3.14-.55.34-.75.6-.2.26-.35.58-.45.96s-.15.81-.15,1.29.05.91.15,1.29.25.7.45.96c.2.26.45.46.75.6.3.14.65.21,1.06.21Z"/><path class="cls-3" d="M1825.49,57.96v-8.1h.85c.2,0,.33.1.38.29l.11.88c.35-.39.75-.7,1.18-.94.43-.24.94-.36,1.51-.36.44,0,.83.07,1.17.22.34.15.62.35.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.82.1-1.18.3s-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M1836.29,47.31c0,.14-.03.27-.08.39-.06.12-.13.23-.22.32-.09.09-.2.17-.32.22-.12.05-.25.08-.39.08s-.27-.03-.39-.08c-.12-.05-.23-.13-.32-.22-.09-.09-.17-.2-.22-.32-.05-.12-.08-.25-.08-.39s.03-.27.08-.4.13-.24.22-.33c.09-.09.2-.17.32-.22s.25-.08.39-.08.27.03.39.08c.12.05.23.13.32.22.09.09.17.2.22.33s.08.26.08.4ZM1835.97,49.85v8.1h-1.42v-8.1h1.42Z"/><path class="cls-3" d="M1839.71,49.85v5.17c0,.61.14,1.09.42,1.42.28.34.71.5,1.28.5.42,0,.81-.1,1.18-.3.37-.2.71-.47,1.02-.82v-5.98h1.42v8.1h-.85c-.2,0-.33-.1-.38-.3l-.11-.87c-.35.39-.75.7-1.18.94-.44.24-.94.36-1.5.36-.44,0-.83-.07-1.17-.22s-.62-.35-.85-.62c-.23-.27-.4-.59-.52-.97-.11-.38-.17-.8-.17-1.26v-5.17h1.42Z"/><path class="cls-3" d="M1852.02,51.19c-.06.12-.16.18-.3.18-.08,0-.17-.03-.27-.09s-.23-.12-.37-.2c-.15-.07-.32-.14-.52-.2-.2-.06-.44-.09-.72-.09-.24,0-.46.03-.65.09-.19.06-.36.15-.49.25-.14.11-.24.23-.31.37-.07.14-.11.29-.11.46,0,.21.06.38.18.52.12.14.28.26.48.36.2.1.42.19.67.27.25.08.51.16.77.25.26.09.52.19.77.29.25.11.47.24.67.4s.36.36.48.59c.12.23.18.51.18.84,0,.37-.07.72-.2,1.04-.13.32-.33.59-.59.82-.26.23-.58.42-.96.55-.38.13-.82.2-1.31.2-.57,0-1.08-.09-1.54-.28-.46-.18-.85-.42-1.17-.71l.34-.54c.04-.07.09-.12.15-.16.06-.04.14-.06.23-.06s.2.04.3.11c.11.07.24.16.39.25s.34.17.55.25.49.11.81.11c.28,0,.52-.04.73-.11s.38-.17.52-.29.24-.26.31-.42c.07-.16.1-.33.1-.51,0-.22-.06-.41-.18-.56-.12-.15-.28-.27-.48-.38s-.42-.19-.68-.27c-.25-.08-.51-.16-.78-.24-.26-.09-.52-.18-.78-.29-.25-.11-.48-.25-.68-.41s-.36-.37-.48-.61-.18-.54-.18-.88c0-.31.06-.61.19-.89s.31-.54.56-.75c.25-.22.55-.39.9-.52s.77-.19,1.22-.19c.53,0,1.01.08,1.44.25s.79.4,1.1.69l-.32.52Z"/><path class="cls-3" d="M1853.9,56.97c0-.12.02-.24.07-.35.05-.11.11-.21.19-.29s.18-.15.3-.2c.12-.05.25-.07.38-.07.16,0,.3.03.43.09.12.06.23.14.31.24.08.1.15.22.19.36.04.13.06.28.06.44,0,.24-.03.49-.1.75-.07.26-.17.51-.3.77-.13.25-.29.5-.48.74s-.4.46-.64.66l-.24-.23c-.07-.06-.1-.14-.1-.22,0-.07.04-.14.11-.22.05-.06.12-.14.2-.24s.17-.21.25-.34.16-.27.24-.42.12-.32.16-.5h-.1c-.14,0-.26-.02-.38-.07-.11-.05-.21-.12-.29-.2s-.15-.19-.19-.31c-.04-.12-.07-.25-.07-.4Z"/><path class="cls-3" d="M1868.09,46.49v1.26h-5.5v4.01h4.7v1.26h-4.7v4.93h-1.56v-11.46h7.06Z"/><path class="cls-3" d="M1869.37,57.96v-8.1h.82c.15,0,.26.03.32.09.06.06.1.16.12.3l.1,1.26c.28-.57.62-1.01,1.03-1.32.41-.32.89-.48,1.44-.48.22,0,.43.03.61.08.18.05.35.12.5.21l-.18,1.06c-.04.13-.12.2-.25.2-.07,0-.19-.03-.34-.08-.16-.05-.37-.08-.65-.08-.5,0-.91.14-1.24.43-.33.29-.61.71-.84,1.26v5.16h-1.42Z"/><path class="cls-3" d="M1881.47,57.96h-.63c-.14,0-.25-.02-.34-.06-.08-.04-.14-.13-.17-.27l-.16-.75c-.21.19-.42.36-.62.52-.2.15-.42.28-.64.38-.22.1-.46.18-.72.24s-.54.08-.84.08-.61-.04-.88-.13c-.28-.09-.51-.22-.72-.4-.2-.18-.36-.4-.48-.67-.12-.27-.18-.59-.18-.96,0-.32.09-.63.26-.93s.46-.56.85-.79c.39-.23.91-.42,1.54-.57s1.41-.22,2.33-.22v-.64c0-.63-.13-1.11-.4-1.44-.27-.32-.67-.49-1.2-.49-.35,0-.64.04-.88.13s-.44.19-.62.3c-.17.11-.32.21-.45.3s-.25.13-.37.13c-.1,0-.18-.03-.25-.08s-.13-.11-.17-.19l-.26-.46c.45-.43.93-.75,1.45-.97.52-.21,1.09-.32,1.72-.32.45,0,.86.07,1.21.22.35.15.65.36.89.62.24.27.42.59.54.97.12.38.18.79.18,1.25v5.18ZM1877.77,57.08c.25,0,.48-.03.69-.08.21-.05.4-.12.59-.22.18-.09.36-.21.53-.34s.33-.29.49-.46v-1.67c-.66,0-1.21.04-1.67.12-.46.08-.83.19-1.12.33-.29.13-.5.29-.63.47-.13.18-.2.39-.2.61s.04.4.1.56.16.28.28.38c.12.1.26.17.42.22.16.05.33.07.52.07Z"/><path class="cls-3" d="M1883.63,57.96v-8.1h.85c.2,0,.33.1.38.29l.11.88c.35-.39.75-.7,1.18-.94.43-.24.94-.36,1.51-.36.44,0,.83.07,1.17.22.34.15.62.35.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.82.1-1.18.3s-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M1894.01,46.17v6.94h.37c.11,0,.19-.02.26-.04s.15-.09.23-.18l2.56-2.74c.08-.08.16-.15.24-.21.08-.05.19-.08.32-.08h1.3l-2.98,3.18c-.07.09-.15.17-.22.24-.07.07-.15.13-.24.18.1.06.18.14.26.22.08.08.15.18.22.28l3.17,4h-1.28c-.12,0-.22-.02-.3-.07-.08-.04-.16-.12-.24-.21l-2.66-3.32c-.08-.11-.16-.19-.24-.22-.08-.03-.2-.05-.36-.05h-.4v3.87h-1.43v-11.78h1.43Z"/><path class="cls-3" d="M1903.64,49.72c.49,0,.93.08,1.34.24.41.16.77.4,1.06.7.3.31.53.69.7,1.14.17.45.25.96.25,1.54,0,.22-.02.37-.07.45s-.14.11-.27.11h-5.39c.01.51.08.96.21,1.34s.3.69.53.95c.22.25.49.44.8.57.31.12.66.19,1.04.19.36,0,.67-.04.92-.12s.48-.17.67-.27.34-.19.47-.27.23-.12.32-.12c.12,0,.21.05.27.14l.4.52c-.18.21-.39.4-.63.56-.25.16-.51.29-.79.39-.28.1-.57.18-.87.23-.3.05-.59.08-.89.08-.56,0-1.08-.09-1.55-.28-.47-.19-.88-.47-1.22-.83s-.61-.82-.8-1.36c-.19-.54-.29-1.16-.29-1.86,0-.57.09-1.09.26-1.58.17-.49.42-.92.75-1.28.33-.36.72-.64,1.19-.85.47-.21,1-.31,1.58-.31ZM1903.67,50.77c-.69,0-1.23.2-1.62.6-.4.4-.64.95-.74,1.65h4.41c0-.33-.05-.63-.14-.91-.09-.28-.22-.51-.4-.71-.18-.2-.39-.35-.64-.46-.25-.11-.54-.16-.87-.16Z"/><path class="cls-3" d="M1908.81,57.96v-8.1h.85c.2,0,.33.1.38.29l.11.88c.35-.39.75-.7,1.18-.94.43-.24.94-.36,1.51-.36.44,0,.83.07,1.17.22.34.15.62.35.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.82.1-1.18.3s-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M1917.76,57.96v-11.78h1.43v4.85c.34-.39.72-.7,1.16-.94s.93-.36,1.49-.36c.47,0,.89.09,1.27.26.38.18.7.44.97.79.27.35.47.78.62,1.3.14.51.22,1.11.22,1.78,0,.6-.08,1.15-.24,1.67-.16.51-.39.96-.69,1.34-.3.38-.67.67-1.1.89s-.92.32-1.47.32-.97-.1-1.33-.3c-.37-.2-.68-.49-.96-.85l-.07.74c-.04.2-.17.3-.37.3h-.92ZM1921.37,50.86c-.46,0-.87.11-1.22.32-.35.21-.67.51-.96.9v3.92c.26.35.54.6.85.74.31.14.66.22,1.04.22.76,0,1.34-.27,1.74-.81.41-.54.61-1.31.61-2.3,0-.53-.05-.98-.14-1.36-.09-.38-.23-.69-.4-.93-.18-.24-.39-.42-.65-.53-.26-.11-.55-.17-.87-.17Z"/><path class="cls-3" d="M1929.86,49.72c.49,0,.93.08,1.34.24.41.16.77.4,1.06.7.3.31.53.69.7,1.14.17.45.25.96.25,1.54,0,.22-.02.37-.07.45s-.14.11-.27.11h-5.39c.01.51.08.96.21,1.34s.3.69.53.95c.22.25.49.44.8.57.31.12.66.19,1.04.19.36,0,.67-.04.92-.12s.48-.17.67-.27.34-.19.47-.27.23-.12.32-.12c.12,0,.21.05.27.14l.4.52c-.18.21-.39.4-.63.56-.25.16-.51.29-.79.39-.28.1-.57.18-.87.23-.3.05-.59.08-.89.08-.56,0-1.08-.09-1.55-.28-.47-.19-.88-.47-1.22-.83s-.61-.82-.8-1.36c-.19-.54-.29-1.16-.29-1.86,0-.57.09-1.09.26-1.58.17-.49.42-.92.75-1.28.33-.36.72-.64,1.19-.85.47-.21,1-.31,1.58-.31ZM1929.89,50.77c-.69,0-1.23.2-1.62.6-.4.4-.64.95-.74,1.65h4.41c0-.33-.05-.63-.14-.91-.09-.28-.22-.51-.4-.71-.18-.2-.39-.35-.64-.46-.25-.11-.54-.16-.87-.16Z"/><path class="cls-3" d="M1935.04,57.96v-8.1h.82c.16,0,.26.03.32.09s.1.16.12.3l.1,1.26c.28-.57.62-1.01,1.03-1.32.41-.32.89-.48,1.44-.48.22,0,.43.03.61.08s.35.12.5.21l-.18,1.06c-.04.13-.12.2-.25.2-.08,0-.19-.03-.34-.08-.15-.05-.37-.08-.65-.08-.5,0-.91.14-1.24.43s-.61.71-.84,1.26v5.16h-1.42Z"/><path class="cls-3" d="M1944.21,49.72c.35,0,.68.04.99.12s.58.19.84.34h2.2v.53c0,.18-.11.29-.34.34l-.92.13c.18.35.27.73.27,1.16,0,.39-.08.75-.23,1.08-.15.32-.36.6-.63.83-.27.23-.59.41-.96.53-.37.12-.78.18-1.22.18-.38,0-.74-.04-1.07-.14-.17.11-.3.23-.39.36s-.13.25-.13.37c0,.2.08.35.23.45.15.1.36.17.62.22.26.04.55.07.87.07h1c.34,0,.67.03,1,.09s.62.16.87.29c.26.14.46.32.62.56.15.24.23.54.23.92,0,.35-.09.69-.26,1.02-.17.33-.42.62-.75.88-.33.26-.72.46-1.19.62-.47.15-1,.23-1.59.23s-1.11-.06-1.56-.18-.81-.28-1.11-.47c-.29-.2-.51-.43-.66-.69-.15-.26-.22-.53-.22-.81,0-.4.13-.74.38-1.02.25-.28.6-.5,1.04-.67-.23-.11-.41-.25-.55-.43-.14-.18-.2-.42-.2-.71,0-.12.02-.24.06-.36s.11-.25.2-.37.2-.24.32-.35c.13-.11.28-.21.45-.29-.4-.22-.71-.52-.94-.89-.23-.37-.34-.8-.34-1.3,0-.4.08-.75.23-1.08s.36-.6.64-.82c.27-.23.6-.4.97-.52.38-.12.79-.18,1.24-.18ZM1946.74,58.37c0-.21-.06-.37-.17-.5s-.26-.22-.46-.29c-.19-.07-.41-.12-.66-.15-.25-.03-.51-.05-.79-.05h-.85c-.29,0-.56-.04-.82-.11-.3.14-.55.32-.74.53s-.28.46-.28.75c0,.18.05.35.14.51.09.16.24.29.43.41.19.11.43.21.72.27.29.07.63.1,1.03.1s.73-.04,1.03-.11c.3-.07.56-.17.77-.3.21-.13.37-.29.48-.47s.17-.38.17-.6ZM1944.21,54c.29,0,.54-.04.76-.12.22-.08.41-.19.56-.34s.26-.32.34-.52c.07-.2.11-.42.11-.66,0-.5-.15-.89-.45-1.18-.3-.29-.74-.44-1.32-.44s-1.01.15-1.31.44c-.3.29-.45.69-.45,1.18,0,.24.04.46.12.66.08.2.19.37.34.52s.33.26.55.34.47.12.75.12Z"/></g><g id="St._Marien"><path class="cls-1" d="M2401.99,1566.74l-327.22-295.99v-7.37c0-6.6-5.4-12-12-12h-163.05c-6.6,0-12,5.4-12,12v10.78c0,6.6,5.4,12,12,12h163.05c6.4,0,11.65-5.07,11.97-11.39l325.24,294.2,2.01-2.22Z"/><path class="cls-3" d="M1913.85,1264.97c-.05.08-.1.14-.15.18-.05.04-.12.06-.21.06-.09,0-.2-.04-.32-.14-.12-.09-.27-.19-.46-.3-.18-.11-.41-.21-.66-.3-.26-.09-.57-.14-.94-.14-.35,0-.65.05-.92.14s-.49.22-.67.38c-.18.16-.31.35-.4.56-.09.22-.14.45-.14.7,0,.32.08.58.24.79.16.21.37.39.62.54.26.15.55.28.88.39.33.11.66.22,1.01.34s.68.25,1.01.4c.33.15.62.33.88.56s.47.5.62.82c.16.33.24.72.24,1.2,0,.5-.09.97-.26,1.41-.17.44-.42.82-.75,1.15s-.73.58-1.21.77c-.48.19-1.02.28-1.63.28-.74,0-1.42-.13-2.03-.4-.61-.27-1.13-.63-1.56-1.09l.45-.74c.04-.06.09-.11.16-.15s.13-.06.2-.06c.11,0,.24.06.38.18s.32.25.54.4c.22.14.48.28.78.4.31.12.68.18,1.12.18.37,0,.7-.05.98-.15.29-.1.53-.24.73-.43s.35-.4.46-.66.16-.54.16-.86c0-.35-.08-.63-.24-.85-.16-.22-.36-.41-.62-.56s-.55-.28-.88-.38-.66-.21-1.01-.32-.68-.24-1.01-.38-.62-.33-.88-.56c-.26-.23-.46-.52-.62-.86s-.24-.77-.24-1.28c0-.41.08-.8.24-1.18.16-.38.38-.71.68-1.01s.67-.53,1.11-.7.95-.26,1.52-.26c.64,0,1.22.1,1.75.3.53.2.99.5,1.38.88l-.38.74Z"/><path class="cls-3" d="M1918.69,1274.77c-.64,0-1.13-.18-1.48-.54-.34-.36-.52-.87-.52-1.54v-4.96h-.98c-.08,0-.16-.03-.22-.08s-.09-.13-.09-.24v-.57l1.33-.17.33-2.5c.01-.08.04-.15.1-.2s.13-.08.22-.08h.72v2.79h2.32v1.03h-2.32v4.86c0,.34.08.59.25.76s.38.25.64.25c.15,0,.28-.02.39-.06.11-.04.2-.08.28-.13.08-.05.15-.09.2-.13.06-.04.11-.06.15-.06.07,0,.14.04.2.14l.42.68c-.25.23-.54.41-.89.54s-.7.2-1.07.2Z"/><path class="cls-3" d="M1921.74,1273.77c0-.14.03-.27.08-.39.05-.12.12-.23.21-.32.09-.09.19-.16.32-.22.12-.05.25-.08.39-.08s.27.03.39.08c.12.05.23.13.32.22s.16.2.21.32c.05.12.08.25.08.39s-.03.28-.08.4c-.05.12-.12.23-.21.32-.09.09-.2.16-.32.21-.12.05-.25.08-.39.08s-.27-.03-.39-.08-.23-.12-.32-.21c-.09-.09-.16-.2-.21-.32-.05-.12-.08-.25-.08-.4Z"/><path class="cls-3" d="M1934.74,1270.9c.06.14.11.28.16.43.05-.15.11-.29.17-.43.06-.14.12-.27.2-.41l3.88-7.05c.07-.12.14-.2.22-.22.08-.03.18-.04.32-.04h1.14v11.46h-1.36v-8.42c0-.11,0-.23,0-.36,0-.13.01-.26.02-.39l-3.93,7.17c-.13.24-.32.36-.56.36h-.22c-.24,0-.43-.12-.56-.36l-4.02-7.19c.02.14.03.27.04.41,0,.13.01.26.01.37v8.42h-1.36v-11.46h1.14c.14,0,.25.01.32.04.08.03.15.1.22.22l3.96,7.06c.07.13.14.26.2.4Z"/><path class="cls-3" d="M1949.35,1274.65h-.63c-.14,0-.25-.02-.34-.06-.08-.04-.14-.13-.17-.27l-.16-.75c-.21.19-.42.36-.62.52-.2.15-.42.28-.64.38-.22.1-.46.18-.72.24s-.54.08-.84.08-.61-.04-.88-.13c-.28-.09-.51-.22-.72-.4-.2-.18-.36-.4-.48-.67-.12-.27-.18-.59-.18-.96,0-.32.09-.63.26-.93s.46-.56.85-.79c.39-.23.91-.42,1.54-.57s1.41-.22,2.33-.22v-.64c0-.63-.13-1.11-.4-1.44-.27-.32-.67-.49-1.2-.49-.35,0-.64.04-.88.13s-.44.19-.62.3c-.17.11-.32.21-.45.3s-.25.13-.37.13c-.1,0-.18-.03-.25-.08s-.13-.11-.17-.19l-.26-.46c.45-.43.93-.75,1.45-.97.52-.21,1.09-.32,1.72-.32.45,0,.86.07,1.21.22.35.15.65.36.89.62.24.27.42.59.54.97.12.38.18.79.18,1.25v5.18ZM1945.65,1273.77c.25,0,.48-.03.69-.08.21-.05.4-.12.59-.22.18-.09.36-.21.53-.34s.33-.29.49-.46v-1.67c-.66,0-1.21.04-1.67.12-.46.08-.83.19-1.12.33-.29.13-.5.29-.63.47-.13.18-.2.39-.2.61s.04.4.1.56.16.28.28.38c.12.1.26.17.42.22.16.05.33.07.52.07Z"/><path class="cls-3" d="M1951.51,1274.65v-8.1h.82c.15,0,.26.03.32.09.06.06.1.16.12.3l.1,1.26c.28-.57.62-1.01,1.03-1.32.41-.32.89-.48,1.44-.48.22,0,.43.03.61.08.18.05.35.12.5.21l-.18,1.06c-.04.13-.12.2-.25.2-.07,0-.19-.03-.34-.08-.16-.05-.37-.08-.65-.08-.5,0-.91.14-1.24.43-.33.29-.61.71-.84,1.26v5.16h-1.42Z"/><path class="cls-3" d="M1959.86,1264c0,.14-.03.27-.08.39-.06.12-.13.23-.22.32-.09.09-.2.17-.32.22-.12.05-.25.08-.39.08s-.27-.03-.39-.08c-.12-.05-.23-.13-.32-.22s-.17-.2-.22-.32c-.05-.12-.08-.25-.08-.39s.03-.27.08-.4c.05-.13.13-.24.22-.33.09-.09.2-.17.32-.22.12-.05.25-.08.39-.08s.27.03.39.08c.12.05.23.13.32.22s.17.2.22.33c.06.13.08.26.08.4ZM1959.54,1266.54v8.1h-1.42v-8.1h1.42Z"/><path class="cls-3" d="M1965.26,1266.41c.49,0,.93.08,1.34.24.41.16.77.4,1.06.7.3.31.53.69.7,1.14.17.45.25.96.25,1.54,0,.22-.02.37-.07.45s-.14.11-.27.11h-5.39c.01.51.08.96.21,1.34s.3.69.53.95c.22.25.49.44.8.57.31.12.66.19,1.04.19.36,0,.67-.04.92-.12s.48-.17.67-.27.34-.19.47-.27.23-.12.32-.12c.12,0,.21.05.27.14l.4.52c-.18.21-.39.4-.63.56-.25.16-.51.29-.79.39-.28.1-.57.18-.87.23-.3.05-.59.08-.89.08-.56,0-1.08-.09-1.55-.28-.47-.19-.88-.47-1.22-.83s-.61-.82-.8-1.36c-.19-.54-.29-1.16-.29-1.86,0-.57.09-1.09.26-1.58.17-.49.42-.92.75-1.28.33-.36.72-.64,1.19-.85.47-.21,1-.31,1.58-.31ZM1965.29,1267.46c-.69,0-1.23.2-1.62.6-.4.4-.64.95-.74,1.65h4.41c0-.33-.05-.63-.14-.91-.09-.28-.22-.51-.4-.71-.18-.2-.39-.35-.64-.46-.25-.11-.54-.16-.87-.16Z"/><path class="cls-3" d="M1970.44,1274.65v-8.1h.85c.2,0,.33.1.38.29l.11.88c.35-.39.75-.7,1.18-.94.43-.24.94-.36,1.51-.36.44,0,.83.07,1.17.22.34.15.62.35.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.82.1-1.18.3s-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M1978.92,1273.66c0-.12.02-.24.07-.35.04-.11.11-.21.19-.29.08-.08.18-.15.3-.2.12-.05.25-.07.38-.07.16,0,.3.03.43.09s.23.14.31.24c.08.1.14.22.19.36.04.13.06.28.06.44,0,.24-.04.49-.1.75-.07.26-.17.51-.3.77-.13.25-.29.5-.48.74s-.4.46-.64.66l-.24-.23c-.07-.06-.1-.14-.1-.22,0-.07.04-.14.11-.22.05-.06.12-.14.2-.24.08-.1.17-.21.25-.34.08-.13.16-.27.24-.42.07-.15.12-.32.16-.5h-.1c-.14,0-.26-.02-.38-.07-.11-.05-.21-.12-.29-.2-.08-.09-.15-.19-.19-.31-.05-.12-.07-.25-.07-.4Z"/><path class="cls-3" d="M1994.02,1263.18v.58c0,.18-.06.35-.17.51l-6.49,9.11h6.54v1.26h-8.58v-.61c0-.16.05-.31.15-.46l6.5-9.14h-6.34v-1.26h8.38Z"/><path class="cls-3" d="M2000.21,1267.88c-.06.12-.16.18-.3.18-.08,0-.17-.03-.27-.09-.1-.06-.23-.12-.37-.2-.15-.07-.32-.14-.52-.2-.2-.06-.44-.09-.72-.09-.24,0-.46.03-.65.09-.19.06-.36.15-.49.25-.14.11-.24.23-.31.37s-.11.29-.11.46c0,.21.06.38.18.52.12.14.28.26.48.36.2.1.42.19.67.27.25.08.51.16.77.25.26.09.52.19.77.29.25.11.47.24.67.4s.36.36.48.59c.12.23.18.51.18.84,0,.37-.07.72-.2,1.04-.13.32-.33.59-.59.82s-.58.42-.96.55-.82.2-1.31.2c-.57,0-1.08-.09-1.54-.28-.46-.18-.85-.42-1.17-.71l.34-.54c.04-.07.09-.12.15-.16.06-.04.14-.06.23-.06s.2.04.3.11.24.16.39.25c.15.09.34.17.55.25s.49.11.81.11c.28,0,.52-.04.73-.11s.38-.17.52-.29.24-.26.31-.42c.07-.16.1-.33.1-.51,0-.22-.06-.41-.18-.56-.12-.15-.28-.27-.48-.38s-.42-.19-.68-.27c-.25-.08-.51-.16-.78-.24-.26-.09-.52-.18-.78-.29-.25-.11-.48-.25-.68-.41-.2-.17-.36-.37-.48-.61s-.18-.54-.18-.88c0-.31.06-.61.19-.89.13-.29.32-.54.56-.75.25-.22.55-.39.9-.52.36-.13.76-.19,1.22-.19.53,0,1.01.08,1.44.25.42.17.79.4,1.1.69l-.32.52Z"/><path class="cls-3" d="M2008.05,1267.98c-.04.06-.08.1-.13.14-.04.03-.1.05-.18.05s-.17-.03-.26-.1c-.09-.07-.21-.14-.36-.22-.14-.08-.32-.15-.52-.22-.21-.07-.46-.1-.76-.1-.39,0-.74.07-1.05.21-.3.14-.56.35-.76.61s-.36.59-.46.97c-.1.38-.16.8-.16,1.27s.06.93.17,1.31.27.7.47.96c.2.26.45.46.74.59.29.13.62.2.98.2s.63-.04.86-.12c.22-.08.41-.17.56-.28.15-.1.27-.19.37-.28.1-.08.19-.12.29-.12.12,0,.21.05.27.14l.4.52c-.35.43-.79.75-1.32.95-.53.2-1.09.3-1.67.3-.51,0-.98-.09-1.41-.28s-.81-.46-1.13-.81c-.32-.35-.57-.79-.76-1.31-.18-.52-.28-1.11-.28-1.77,0-.6.08-1.16.25-1.67.17-.51.41-.95.74-1.32.32-.37.72-.66,1.2-.87s1.02-.31,1.63-.31c.56,0,1.07.09,1.5.28.44.18.82.44,1.16.78l-.38.51Z"/><path class="cls-3" d="M2009.99,1274.65v-11.78h1.42v4.77c.35-.37.73-.66,1.15-.88.42-.22.91-.33,1.46-.33.44,0,.83.07,1.17.22.34.15.62.35.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.82.1-1.18.3s-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M2022.17,1266.41c.59,0,1.13.1,1.6.3s.88.48,1.22.84c.33.36.59.8.77,1.32.18.51.27,1.09.27,1.72s-.09,1.22-.27,1.73-.44.95-.77,1.31c-.33.36-.74.64-1.22.84-.48.19-1.01.29-1.6.29s-1.13-.1-1.6-.29c-.48-.2-.88-.47-1.22-.84-.34-.36-.59-.8-.78-1.31s-.27-1.09-.27-1.73.09-1.21.27-1.72c.18-.52.44-.95.78-1.32.34-.36.74-.64,1.22-.84s1.01-.3,1.6-.3ZM2022.17,1273.65c.8,0,1.4-.27,1.79-.8.39-.54.59-1.28.59-2.24s-.2-1.72-.59-2.26c-.4-.54-.99-.81-1.79-.81-.41,0-.76.07-1.06.21s-.55.34-.75.6c-.2.26-.35.58-.45.96s-.15.81-.15,1.29.05.91.15,1.29.25.7.45.96c.2.26.45.46.75.6s.65.21,1.06.21Z"/><path class="cls-3" d="M2027.78,1277.39v-10.85h.85c.2,0,.33.1.38.29l.12.96c.35-.42.74-.76,1.19-1.02.45-.26.96-.38,1.54-.38.46,0,.88.09,1.26.27.38.18.7.44.97.79.27.35.47.78.62,1.3.14.52.22,1.11.22,1.79,0,.6-.08,1.15-.24,1.67-.16.51-.39.96-.69,1.34-.3.38-.67.67-1.1.89-.44.22-.92.32-1.47.32-.5,0-.93-.08-1.28-.25-.36-.16-.67-.4-.94-.7v3.58h-1.42ZM2031.39,1267.55c-.46,0-.87.11-1.22.32-.35.21-.67.51-.96.9v3.92c.26.35.55.6.86.74.31.14.66.22,1.04.22.75,0,1.33-.27,1.74-.81.41-.54.61-1.31.61-2.3,0-.53-.05-.98-.14-1.36-.09-.38-.23-.69-.4-.93-.18-.24-.39-.42-.65-.53-.26-.11-.55-.17-.87-.17Z"/><path class="cls-3" d="M2042.57,1274.65h-.63c-.14,0-.25-.02-.34-.06-.08-.04-.14-.13-.17-.27l-.16-.75c-.21.19-.42.36-.62.52-.2.15-.42.28-.64.38-.22.1-.46.18-.72.24s-.54.08-.84.08-.61-.04-.88-.13c-.28-.09-.51-.22-.72-.4-.2-.18-.36-.4-.48-.67-.12-.27-.18-.59-.18-.96,0-.32.09-.63.26-.93s.46-.56.85-.79c.39-.23.91-.42,1.54-.57s1.41-.22,2.33-.22v-.64c0-.63-.13-1.11-.4-1.44-.27-.32-.67-.49-1.2-.49-.35,0-.64.04-.88.13s-.44.19-.62.3c-.17.11-.32.21-.45.3s-.25.13-.37.13c-.1,0-.18-.03-.25-.08s-.13-.11-.17-.19l-.26-.46c.45-.43.93-.75,1.45-.97.52-.21,1.09-.32,1.72-.32.45,0,.86.07,1.21.22.35.15.65.36.89.62.24.27.42.59.54.97.12.38.18.79.18,1.25v5.18ZM2038.87,1273.77c.25,0,.48-.03.69-.08.21-.05.4-.12.59-.22.18-.09.36-.21.53-.34s.33-.29.49-.46v-1.67c-.66,0-1.21.04-1.67.12-.46.08-.83.19-1.12.33-.29.13-.5.29-.63.47-.13.18-.2.39-.2.61s.04.4.1.56.16.28.28.38c.12.1.26.17.42.22.16.05.33.07.52.07Z"/><path class="cls-3" d="M2045.96,1266.54v5.17c0,.61.14,1.09.42,1.42.28.34.71.5,1.28.5.42,0,.81-.1,1.18-.3.37-.2.71-.47,1.02-.82v-5.98h1.42v8.1h-.85c-.2,0-.33-.1-.38-.3l-.11-.87c-.35.39-.75.7-1.18.94-.44.24-.94.36-1.5.36-.44,0-.83-.07-1.17-.22s-.62-.35-.85-.62c-.23-.27-.4-.59-.52-.97-.11-.38-.17-.8-.17-1.26v-5.17h1.42Z"/></g><g id="St._Joseph"><path class="cls-1" d="M1887.28,155.98h-74.37c-6.6,0-12,5.4-12,12v3.76l-57.53-.89-20.01,10.73c-.59-.74-1.21-1.45-1.88-2.12-4.38-4.38-10.44-7.09-17.12-7.09-13.38,0-24.22,10.84-24.22,24.22s10.84,24.22,24.22,24.22,24.22-10.84,24.22-24.22c0-4.58-1.27-8.87-3.49-12.53l18.98-10.18,56.83.86v4.03c0,6.6,5.4,12,12,12h74.37c6.6,0,12-5.4,12-12v-10.78c0-6.6-5.4-12-12-12Z"/><path class="cls-3" d="M1821.18,169.51c-.05.08-.1.14-.15.18-.05.04-.12.06-.21.06-.09,0-.2-.04-.32-.14s-.27-.19-.46-.3c-.18-.11-.41-.21-.66-.3-.26-.09-.57-.14-.94-.14-.35,0-.65.05-.92.14-.27.09-.49.22-.67.38-.18.16-.31.35-.4.56s-.14.45-.14.7c0,.32.08.58.24.8.16.21.37.39.62.54.26.15.55.28.88.39.33.11.66.22,1.01.34s.68.25,1.01.4.62.33.88.56c.26.22.47.5.62.82s.24.73.24,1.2c0,.5-.09.97-.26,1.41-.17.44-.42.82-.75,1.15s-.73.58-1.21.77c-.48.19-1.02.28-1.63.28-.74,0-1.42-.13-2.03-.4-.61-.27-1.13-.63-1.56-1.09l.45-.74c.04-.06.09-.11.16-.15s.13-.06.2-.06c.11,0,.24.06.38.18s.32.25.54.4c.22.14.48.28.78.4s.68.18,1.12.18c.37,0,.7-.05.98-.15s.53-.24.73-.43c.2-.18.35-.4.46-.66s.16-.54.16-.86c0-.35-.08-.63-.24-.85-.16-.22-.36-.41-.62-.56s-.55-.28-.88-.38c-.33-.1-.66-.21-1.01-.32s-.68-.24-1.01-.38c-.33-.14-.62-.33-.88-.56s-.46-.52-.62-.86c-.16-.34-.24-.77-.24-1.28,0-.41.08-.8.24-1.18.16-.38.38-.71.68-1.01.3-.29.67-.53,1.11-.7.44-.18.95-.26,1.52-.26.64,0,1.22.1,1.75.3.53.2.99.5,1.38.88l-.38.74Z"/><path class="cls-3" d="M1826.02,179.31c-.64,0-1.13-.18-1.48-.54-.34-.36-.52-.87-.52-1.54v-4.96h-.98c-.08,0-.16-.02-.22-.08s-.09-.13-.09-.24v-.57l1.33-.17.33-2.5c.01-.08.04-.15.1-.2.06-.05.13-.08.22-.08h.72v2.79h2.32v1.03h-2.32v4.86c0,.34.08.59.25.76.17.17.38.25.64.25.15,0,.28-.02.39-.06s.2-.08.28-.13c.08-.05.15-.09.2-.13.06-.04.11-.06.15-.06.07,0,.14.05.2.14l.42.68c-.25.23-.54.41-.89.54-.35.13-.7.2-1.07.2Z"/><path class="cls-3" d="M1829.07,178.3c0-.14.03-.27.08-.39.05-.12.12-.23.21-.32.09-.09.19-.16.32-.22s.25-.08.39-.08.27.03.39.08c.12.05.23.12.32.22.09.09.16.2.21.32.05.12.08.25.08.39s-.03.28-.08.4c-.05.12-.12.22-.21.32-.09.09-.2.16-.32.21-.12.05-.25.08-.39.08s-.27-.03-.39-.08-.23-.12-.32-.21c-.09-.09-.16-.2-.21-.32-.05-.12-.08-.25-.08-.4Z"/><path class="cls-3" d="M1840.55,175.22c0,.64-.08,1.21-.24,1.72-.16.51-.39.94-.7,1.28-.31.35-.68.62-1.13.8-.45.19-.96.28-1.54.28-.52,0-1.06-.07-1.62-.22.01-.15.02-.31.04-.46.02-.15.03-.3.05-.45.01-.09.04-.16.1-.22s.14-.08.25-.08c.1,0,.22.02.38.07.16.05.37.07.64.07.35,0,.67-.05.94-.16.28-.11.51-.27.7-.5.19-.22.33-.51.43-.86.1-.35.15-.76.15-1.24v-7.54h1.54v7.5Z"/><path class="cls-3" d="M1846.39,170.95c.59,0,1.13.1,1.6.3.48.2.88.48,1.22.84.33.36.59.8.77,1.32s.27,1.09.27,1.72-.09,1.22-.27,1.73c-.18.51-.43.95-.77,1.31-.33.36-.74.64-1.22.84-.48.19-1.01.29-1.6.29s-1.13-.1-1.6-.29c-.48-.19-.88-.47-1.22-.84s-.59-.8-.78-1.31c-.18-.51-.27-1.09-.27-1.73s.09-1.21.27-1.72c.18-.51.44-.95.78-1.32s.74-.64,1.22-.84c.48-.2,1.01-.3,1.6-.3ZM1846.39,178.18c.8,0,1.4-.27,1.79-.8s.59-1.28.59-2.24-.2-1.72-.59-2.26-.99-.81-1.79-.81c-.41,0-.76.07-1.06.21-.3.14-.55.34-.75.6s-.35.58-.45.96c-.1.38-.15.81-.15,1.29s.05.91.15,1.29.25.7.45.96.45.46.75.6c.3.14.65.21,1.06.21Z"/><path class="cls-3" d="M1856.65,172.41c-.06.12-.16.18-.3.18-.08,0-.17-.03-.27-.09-.1-.06-.23-.12-.37-.2-.15-.07-.32-.14-.52-.2-.2-.06-.44-.09-.72-.09-.24,0-.46.03-.65.09-.19.06-.36.15-.49.25-.14.11-.24.23-.31.37-.07.14-.11.29-.11.46,0,.21.06.38.18.52.12.14.28.26.48.36.2.1.42.19.67.27s.51.16.77.25c.26.09.52.19.77.29s.47.24.67.4c.2.16.36.36.48.59.12.23.18.51.18.84,0,.37-.07.72-.2,1.04-.13.32-.33.59-.59.82-.26.23-.58.42-.96.55-.38.13-.82.2-1.31.2-.57,0-1.08-.09-1.54-.28-.46-.18-.85-.42-1.17-.71l.34-.54c.04-.07.09-.12.15-.16s.14-.06.23-.06.2.04.3.11c.11.08.24.16.39.25.15.09.34.17.55.25.22.08.49.11.81.11.28,0,.52-.04.73-.11s.38-.17.52-.29c.14-.12.24-.26.31-.42.07-.16.1-.33.1-.51,0-.22-.06-.41-.18-.56-.12-.15-.28-.27-.48-.38-.2-.1-.42-.19-.68-.27s-.51-.16-.78-.24c-.26-.08-.52-.18-.78-.29-.25-.11-.48-.25-.68-.41-.2-.17-.36-.37-.48-.61-.12-.24-.18-.54-.18-.88,0-.31.06-.61.19-.89.13-.29.32-.54.56-.75.25-.22.55-.39.9-.52.36-.13.76-.19,1.22-.19.53,0,1.01.08,1.44.25.42.17.79.4,1.1.69l-.32.52Z"/><path class="cls-3" d="M1862.16,170.95c.49,0,.93.08,1.34.24.41.16.76.4,1.06.7.3.31.53.69.7,1.14.17.45.25.96.25,1.54,0,.22-.02.37-.07.45-.05.08-.14.11-.27.11h-5.39c.01.51.08.96.21,1.34s.3.7.53.95.49.44.8.57c.31.12.66.19,1.04.19.36,0,.67-.04.92-.12s.48-.17.67-.27c.19-.1.34-.19.47-.27.12-.08.23-.12.32-.12.12,0,.21.05.27.14l.4.52c-.18.21-.39.4-.63.56s-.51.29-.79.39c-.28.1-.57.18-.87.23-.3.05-.6.08-.89.08-.56,0-1.08-.09-1.55-.28s-.88-.47-1.22-.83c-.34-.37-.61-.82-.8-1.36-.19-.54-.29-1.16-.29-1.86,0-.57.09-1.09.26-1.58.17-.49.42-.92.75-1.28.33-.36.72-.64,1.19-.85.47-.21,1-.31,1.58-.31ZM1862.19,171.99c-.69,0-1.23.2-1.62.6s-.64.95-.74,1.65h4.41c0-.33-.04-.63-.14-.91s-.22-.51-.4-.71c-.18-.2-.39-.35-.64-.46-.25-.11-.54-.16-.87-.16Z"/><path class="cls-3" d="M1867.34,181.92v-10.85h.85c.2,0,.33.1.38.3l.12.96c.35-.42.74-.76,1.19-1.02.45-.26.96-.38,1.54-.38.46,0,.89.09,1.26.27.38.18.7.44.97.79.27.35.47.78.62,1.3.14.52.22,1.11.22,1.78,0,.6-.08,1.15-.24,1.67s-.39.96-.69,1.34c-.3.38-.67.67-1.1.89s-.92.32-1.47.32c-.5,0-.93-.08-1.28-.25s-.67-.4-.94-.7v3.58h-1.42ZM1870.94,172.08c-.46,0-.87.11-1.22.32-.35.21-.67.51-.96.9v3.92c.26.35.55.6.86.74.31.14.66.22,1.04.22.75,0,1.33-.27,1.74-.81s.61-1.31.61-2.3c0-.53-.05-.98-.14-1.36s-.23-.69-.4-.93c-.18-.24-.39-.42-.65-.53s-.55-.17-.87-.17Z"/><path class="cls-3" d="M1876.17,179.18v-11.78h1.42v4.77c.35-.37.73-.66,1.15-.88.42-.22.91-.33,1.46-.33.44,0,.83.07,1.17.22s.62.35.85.62c.23.27.4.59.52.97.12.38.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43s-.71-.51-1.28-.51c-.42,0-.81.1-1.18.3-.37.2-.7.48-1.01.82v5.97h-1.42Z"/><polygon class="cls-3" points="1711.99 189.56 1705.02 189.56 1705.02 181.35 1703.02 181.35 1703.02 189.56 1696.06 189.56 1696.06 191.56 1703.02 191.56 1703.02 213.85 1705.02 213.85 1705.02 191.56 1711.99 191.56 1711.99 189.56"/></g><g id="St._Johannes_Nepomuk"><path class="cls-1" d="M1584.44,318.06h-163.05c-6.6,0-12,5.4-12,12v5.83l-23.05-.15-46.25,39.59s-5.34-5.73-15.59-5.77c-13.37-.05-24.22,10.84-24.22,24.22s10.84,24.22,24.22,24.22,24.22-10.84,24.22-24.22c0-5.97-2.16-11.43-5.74-15.65l44.84-38.39,21.58.15v.96c0,6.6,5.4,12,12,12h163.05c6.6,0,12-5.4,12-12v-10.78c0-6.6-5.4-12-12-12Z"/><path class="cls-3" d="M1429.17,331.59c-.05.08-.1.14-.15.18s-.12.06-.21.06c-.09,0-.2-.04-.32-.14s-.27-.19-.46-.3c-.18-.11-.41-.21-.66-.3-.26-.09-.57-.14-.94-.14-.35,0-.65.05-.92.14-.27.09-.49.22-.67.38s-.31.35-.4.56c-.09.22-.14.45-.14.7,0,.32.08.59.24.8.16.21.37.39.62.54.26.15.55.28.88.39.33.11.66.22,1.01.34.34.12.68.25,1.01.4.33.15.62.33.88.56.26.22.47.5.62.82.16.33.24.73.24,1.2,0,.5-.09.97-.26,1.41-.17.44-.42.82-.75,1.15s-.73.58-1.21.77c-.48.19-1.02.28-1.63.28-.74,0-1.42-.13-2.03-.4-.61-.27-1.13-.63-1.56-1.09l.45-.74c.04-.06.09-.11.16-.15.06-.04.13-.06.2-.06.11,0,.24.06.38.18.14.12.32.25.54.4.22.14.48.28.78.4.31.12.68.18,1.12.18.37,0,.7-.05.98-.15.29-.1.53-.24.73-.43.2-.18.35-.4.46-.66.11-.26.16-.54.16-.86,0-.35-.08-.63-.24-.85-.16-.22-.36-.41-.62-.56s-.55-.28-.88-.38c-.33-.1-.66-.21-1.01-.32-.34-.11-.68-.24-1.01-.38-.33-.14-.62-.33-.88-.56-.26-.23-.46-.52-.62-.86s-.24-.77-.24-1.28c0-.41.08-.8.24-1.18s.39-.71.68-1.01c.3-.29.67-.53,1.11-.7.44-.18.95-.26,1.52-.26.64,0,1.22.1,1.75.3.53.2.99.5,1.38.88l-.38.74Z"/><path class="cls-3" d="M1434.01,341.39c-.64,0-1.13-.18-1.48-.54-.34-.36-.52-.87-.52-1.54v-4.96h-.98c-.08,0-.16-.03-.22-.08s-.09-.13-.09-.24v-.57l1.33-.17.33-2.5c.01-.08.05-.15.1-.2s.13-.08.22-.08h.72v2.79h2.32v1.03h-2.32v4.86c0,.34.08.59.25.76.17.17.38.25.64.25.15,0,.28-.02.39-.06s.2-.08.28-.13c.08-.05.15-.09.2-.13.06-.04.11-.06.15-.06.07,0,.14.04.2.14l.42.68c-.25.23-.54.41-.89.54s-.7.2-1.07.2Z"/><path class="cls-3" d="M1437.06,340.38c0-.14.03-.27.08-.39.05-.12.12-.23.21-.32.09-.09.19-.16.32-.22.12-.05.25-.08.39-.08s.27.03.39.08c.12.05.23.13.32.22.09.09.16.2.21.32.05.12.08.25.08.39s-.03.28-.08.4c-.05.12-.12.23-.21.32-.09.09-.2.16-.32.21s-.25.08-.39.08-.27-.03-.39-.08c-.12-.05-.23-.12-.32-.21-.09-.09-.16-.2-.21-.32-.05-.12-.08-.25-.08-.4Z"/><path class="cls-3" d="M1448.54,337.3c0,.64-.08,1.21-.24,1.72-.16.51-.39.93-.7,1.28s-.68.62-1.13.8c-.45.19-.96.28-1.54.28-.52,0-1.06-.08-1.62-.22.01-.15.02-.31.04-.46.02-.15.03-.3.05-.45.01-.09.04-.16.1-.22.06-.06.14-.08.25-.08.1,0,.22.02.38.07.16.05.37.07.64.07.35,0,.67-.05.94-.16.27-.11.51-.27.7-.5.19-.22.33-.51.43-.86.1-.35.15-.76.15-1.24v-7.54h1.54v7.5Z"/><path class="cls-3" d="M1454.38,333.03c.59,0,1.13.1,1.6.3.48.2.88.48,1.22.84.33.36.59.8.77,1.32s.27,1.09.27,1.72-.09,1.22-.27,1.73-.44.95-.77,1.31c-.33.36-.74.64-1.22.84-.48.2-1.01.29-1.6.29s-1.13-.1-1.6-.29c-.48-.19-.88-.47-1.22-.84-.34-.36-.59-.8-.78-1.31-.18-.51-.27-1.09-.27-1.73s.09-1.21.27-1.72c.18-.51.44-.95.78-1.32.34-.36.74-.64,1.22-.84.48-.2,1.01-.3,1.6-.3ZM1454.38,340.26c.8,0,1.4-.27,1.79-.8.39-.54.59-1.28.59-2.24s-.2-1.72-.59-2.26c-.4-.54-.99-.81-1.79-.81-.41,0-.76.07-1.06.21-.3.14-.55.34-.75.6-.2.26-.35.58-.45.96-.1.38-.15.81-.15,1.29s.05.91.15,1.29c.1.38.25.7.45.96.2.26.45.46.75.6.3.14.65.21,1.06.21Z"/><path class="cls-3" d="M1460,341.26v-11.78h1.42v4.77c.35-.37.73-.66,1.15-.88.42-.22.91-.33,1.46-.33.44,0,.83.07,1.17.22.34.15.62.36.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.81.1-1.18.3-.37.2-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M1474.85,341.26h-.63c-.14,0-.25-.02-.34-.06-.09-.04-.14-.13-.17-.27l-.16-.75c-.21.19-.42.36-.62.52-.2.15-.42.28-.64.38-.22.1-.46.18-.72.24-.25.05-.54.08-.84.08s-.61-.04-.88-.13c-.27-.09-.51-.22-.72-.4s-.36-.4-.48-.67-.18-.59-.18-.96c0-.32.09-.63.26-.93s.46-.56.85-.79c.39-.23.91-.42,1.54-.57s1.41-.22,2.33-.22v-.64c0-.63-.13-1.11-.4-1.44-.27-.32-.67-.49-1.2-.49-.35,0-.64.04-.88.13s-.44.19-.62.3-.32.21-.45.3c-.13.09-.25.13-.37.13-.1,0-.18-.03-.25-.08-.07-.05-.13-.11-.17-.19l-.26-.46c.45-.43.93-.75,1.45-.97.52-.21,1.09-.32,1.72-.32.45,0,.86.07,1.21.22s.65.36.89.62c.24.27.42.59.54.97.12.38.18.79.18,1.25v5.18ZM1471.15,340.39c.25,0,.48-.03.69-.08s.4-.12.59-.22c.18-.09.36-.21.53-.34.17-.13.33-.29.49-.46v-1.67c-.66,0-1.21.04-1.67.12-.46.08-.83.19-1.12.33-.29.13-.5.29-.63.47-.13.18-.2.39-.2.61s.03.4.1.56.16.28.28.38c.12.1.26.17.42.22.16.05.33.07.52.07Z"/><path class="cls-3" d="M1477.01,341.26v-8.1h.85c.2,0,.33.1.38.3l.11.88c.35-.39.75-.7,1.18-.94s.94-.36,1.51-.36c.44,0,.83.07,1.17.22.34.15.62.36.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.81.1-1.18.3-.37.2-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M1485.9,341.26v-8.1h.85c.2,0,.33.1.38.3l.11.88c.35-.39.75-.7,1.18-.94s.94-.36,1.51-.36c.44,0,.83.07,1.17.22.34.15.62.36.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.81.1-1.18.3-.37.2-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M1498.01,333.03c.49,0,.93.08,1.34.24.41.16.77.4,1.06.7.3.31.53.69.7,1.14.17.45.25.96.25,1.54,0,.22-.02.37-.07.45-.05.07-.14.11-.27.11h-5.39c.01.51.08.96.21,1.34s.3.69.53.95c.22.25.49.44.8.57.31.12.66.19,1.04.19.36,0,.67-.04.92-.12.26-.08.48-.17.67-.27s.34-.19.47-.27c.12-.08.23-.12.32-.12.12,0,.21.04.27.14l.4.52c-.18.21-.39.4-.63.56-.25.16-.51.29-.79.39-.28.1-.57.18-.87.23-.3.05-.6.08-.89.08-.56,0-1.08-.09-1.55-.28-.47-.19-.88-.47-1.22-.83-.34-.37-.61-.82-.8-1.36-.19-.54-.29-1.16-.29-1.86,0-.57.09-1.09.26-1.58.17-.49.42-.92.75-1.28.33-.36.72-.64,1.19-.85.47-.21,1-.31,1.58-.31ZM1498.04,334.08c-.69,0-1.23.2-1.62.6-.4.4-.64.95-.74,1.65h4.41c0-.33-.05-.63-.14-.91-.09-.27-.22-.51-.4-.71-.18-.2-.39-.35-.64-.46s-.54-.16-.87-.16Z"/><path class="cls-3" d="M1507.82,334.49c-.06.12-.16.18-.3.18-.08,0-.17-.03-.27-.09-.1-.06-.23-.12-.37-.2-.15-.07-.32-.14-.52-.2-.2-.06-.44-.09-.72-.09-.24,0-.46.03-.65.09s-.36.15-.49.25c-.14.11-.24.23-.31.37-.07.14-.11.29-.11.46,0,.21.06.38.18.52.12.14.28.26.48.36.2.1.42.19.67.27.25.08.51.16.77.25.26.09.52.19.77.29.25.11.47.24.67.4s.36.36.48.59c.12.23.18.51.18.84,0,.37-.07.72-.2,1.04s-.33.59-.59.82c-.26.23-.58.42-.96.55-.38.13-.82.2-1.31.2-.57,0-1.08-.09-1.54-.28-.46-.18-.85-.42-1.17-.71l.34-.54c.04-.07.09-.12.15-.16.06-.04.14-.06.23-.06s.2.04.3.11c.11.07.24.16.39.25.15.09.34.17.55.25.22.07.49.11.81.11.28,0,.52-.04.73-.11.21-.07.38-.17.52-.29.14-.12.24-.26.31-.42.07-.16.1-.33.1-.51,0-.22-.06-.41-.18-.56s-.28-.27-.48-.38c-.2-.1-.42-.19-.68-.27-.25-.08-.51-.16-.78-.24-.26-.08-.52-.18-.78-.29-.25-.11-.48-.25-.68-.41-.2-.17-.36-.37-.48-.61-.12-.24-.18-.54-.18-.88,0-.31.06-.61.19-.89.13-.29.31-.54.56-.75.25-.22.55-.39.9-.52.36-.13.77-.19,1.22-.19.53,0,1.01.08,1.44.25.42.17.79.4,1.1.69l-.32.52Z"/><path class="cls-3" d="M1514.55,329.85c.07.03.14.11.23.21l6.64,8.64c-.02-.14-.03-.27-.03-.4s0-.26,0-.38v-8.12h1.36v11.46h-.78c-.12,0-.23-.02-.31-.06-.08-.04-.16-.11-.24-.22l-6.63-8.63c.01.13.02.26.02.39,0,.13,0,.25,0,.35v8.17h-1.36v-11.46h.8c.14,0,.24.02.31.05Z"/><path class="cls-3" d="M1528.52,333.03c.49,0,.93.08,1.34.24.41.16.77.4,1.06.7s.53.69.7,1.14c.17.45.25.96.25,1.54,0,.22-.02.37-.07.45-.05.07-.14.11-.27.11h-5.39c.01.51.08.96.21,1.34s.3.69.53.95c.22.25.49.44.8.57.31.12.66.19,1.04.19.36,0,.67-.04.92-.12.26-.08.48-.17.67-.27s.34-.19.47-.27c.12-.08.23-.12.32-.12.12,0,.21.04.27.14l.4.52c-.18.21-.39.4-.63.56-.25.16-.51.29-.79.39-.28.1-.57.18-.87.23-.3.05-.6.08-.89.08-.56,0-1.08-.09-1.55-.28-.47-.19-.88-.47-1.22-.83-.34-.37-.61-.82-.8-1.36-.19-.54-.29-1.16-.29-1.86,0-.57.09-1.09.26-1.58.17-.49.42-.92.75-1.28.33-.36.72-.64,1.19-.85.47-.21,1-.31,1.58-.31ZM1528.55,334.08c-.69,0-1.23.2-1.62.6-.4.4-.64.95-.74,1.65h4.41c0-.33-.05-.63-.14-.91-.09-.27-.22-.51-.4-.71-.18-.2-.39-.35-.64-.46s-.54-.16-.87-.16Z"/><path class="cls-3" d="M1533.69,344.01v-10.85h.85c.2,0,.33.1.38.3l.12.96c.35-.42.74-.76,1.19-1.02s.96-.38,1.54-.38c.46,0,.88.09,1.26.27s.7.44.97.79c.27.35.47.78.62,1.3.14.52.22,1.11.22,1.78,0,.6-.08,1.15-.24,1.67s-.39.96-.69,1.34c-.3.38-.67.67-1.1.89-.43.22-.92.32-1.47.32-.5,0-.93-.08-1.28-.25-.35-.17-.67-.4-.94-.7v3.58h-1.42ZM1537.3,334.16c-.46,0-.87.11-1.22.32-.35.21-.67.51-.96.9v3.92c.26.35.55.6.86.74.31.14.66.22,1.04.22.75,0,1.33-.27,1.74-.81.4-.54.61-1.31.61-2.3,0-.53-.05-.98-.14-1.36-.09-.38-.23-.69-.4-.93-.18-.24-.39-.42-.65-.53-.26-.11-.55-.17-.87-.17Z"/><path class="cls-3" d="M1545.81,333.03c.59,0,1.13.1,1.6.3s.88.48,1.22.84c.33.36.59.8.77,1.32s.27,1.09.27,1.72-.09,1.22-.27,1.73-.43.95-.77,1.31c-.33.36-.74.64-1.22.84-.48.2-1.01.29-1.6.29s-1.13-.1-1.6-.29c-.48-.19-.88-.47-1.22-.84-.34-.36-.59-.8-.78-1.31s-.27-1.09-.27-1.73.09-1.21.27-1.72.44-.95.78-1.32c.34-.36.74-.64,1.22-.84.48-.2,1.01-.3,1.6-.3ZM1545.81,340.26c.8,0,1.4-.27,1.79-.8.39-.54.59-1.28.59-2.24s-.2-1.72-.59-2.26c-.39-.54-.99-.81-1.79-.81-.41,0-.76.07-1.06.21-.3.14-.55.34-.75.6-.2.26-.35.58-.45.96-.1.38-.15.81-.15,1.29s.05.91.15,1.29c.1.38.25.7.45.96.2.26.45.46.75.6.3.14.65.21,1.06.21Z"/><path class="cls-3" d="M1551.42,341.26v-8.1h.85c.2,0,.33.1.38.3l.1.83c.3-.37.63-.67,1-.9.37-.24.8-.35,1.29-.35.55,0,.99.15,1.33.46.34.3.58.71.73,1.23.11-.29.26-.55.44-.76.18-.21.39-.39.62-.53.23-.14.47-.24.73-.3.26-.06.52-.1.79-.1.43,0,.81.07,1.14.2.33.14.62.33.85.6.23.26.41.58.53.96.12.38.18.82.18,1.31v5.16h-1.42v-5.16c0-.63-.14-1.12-.42-1.44s-.68-.49-1.21-.49c-.23,0-.46.04-.67.12-.21.08-.4.2-.56.36-.16.16-.29.36-.38.6-.09.24-.14.52-.14.84v5.16h-1.42v-5.16c0-.65-.13-1.14-.39-1.46-.26-.32-.64-.48-1.14-.48-.35,0-.68.09-.98.28-.3.19-.58.45-.83.77v6.04h-1.42Z"/><path class="cls-3" d="M1565.79,333.16v5.17c0,.61.14,1.09.42,1.42.28.34.71.5,1.28.5.42,0,.81-.1,1.18-.3.37-.2.71-.47,1.02-.82v-5.98h1.42v8.1h-.85c-.2,0-.33-.1-.38-.3l-.11-.87c-.35.39-.75.7-1.18.94s-.94.36-1.5.36c-.44,0-.83-.07-1.17-.22-.34-.15-.62-.35-.85-.62s-.4-.59-.52-.97c-.11-.38-.17-.8-.17-1.26v-5.17h1.42Z"/><path class="cls-3" d="M1574.94,329.48v6.94h.37c.11,0,.19-.01.26-.04s.15-.09.23-.18l2.56-2.74c.08-.08.16-.15.24-.21.08-.05.19-.08.32-.08h1.3l-2.98,3.18c-.08.09-.15.17-.22.24s-.15.13-.24.18c.1.06.18.14.26.22.08.08.15.18.22.28l3.17,4h-1.28c-.12,0-.22-.02-.3-.07-.08-.04-.16-.12-.24-.21l-2.66-3.32c-.08-.11-.16-.18-.24-.22-.08-.03-.2-.05-.36-.05h-.4v3.87h-1.43v-11.78h1.43Z"/><polygon class="cls-3" points="1332.47 386.7 1325.5 386.7 1325.5 378.49 1323.5 378.49 1323.5 386.7 1316.53 386.7 1316.53 388.7 1323.5 388.7 1323.5 410.99 1325.5 410.99 1325.5 388.7 1332.47 388.7 1332.47 386.7"/></g><g id="St._Antonius"><path class="cls-1" d="M1717.11,1195.17h-87.77c-6.6,0-12,5.4-12,12v4.89h-27.9l-17.59,23.52c-3.78-2.44-8.27-3.86-13.1-3.86-13.38,0-24.22,10.84-24.22,24.22s10.84,24.22,24.22,24.22,24.22-10.84,24.22-24.22c0-6.69-2.71-12.74-7.09-17.12-.51-.51-1.05-1-1.6-1.46l16.67-22.3h26.4v2.89c0,6.6,5.4,12,12,12h87.77c6.6,0,12-5.4,12-12v-10.78c0-6.6-5.4-12-12-12Z"/><path class="cls-3" d="M1638.62,1208.82c-.05.08-.1.14-.15.18-.05.04-.12.06-.21.06s-.2-.04-.32-.14-.27-.19-.46-.3-.41-.21-.66-.3-.57-.14-.94-.14c-.35,0-.65.05-.92.14-.27.09-.49.22-.67.38s-.31.35-.4.56c-.09.22-.14.45-.14.7,0,.32.08.59.24.8.16.21.37.39.62.54.26.15.55.28.88.39s.66.22,1.01.34c.34.12.68.25,1.01.4.33.15.62.33.88.56.26.22.47.5.62.82.16.33.24.73.24,1.2,0,.5-.08.97-.26,1.41-.17.44-.42.82-.75,1.15s-.73.58-1.21.77-1.02.28-1.63.28c-.74,0-1.42-.13-2.03-.4-.61-.27-1.13-.63-1.56-1.09l.45-.74c.04-.06.09-.11.16-.15.06-.04.13-.06.2-.06.11,0,.24.06.38.18.14.12.32.25.54.4.22.14.48.28.78.4.31.12.68.18,1.12.18.37,0,.7-.05.98-.15.29-.1.53-.24.73-.43.2-.18.35-.4.46-.66.11-.26.16-.54.16-.86,0-.35-.08-.63-.24-.85-.16-.22-.36-.41-.62-.56s-.55-.28-.88-.38c-.33-.1-.66-.21-1.01-.32-.34-.11-.68-.24-1.01-.38-.33-.14-.62-.33-.88-.56-.26-.23-.46-.52-.62-.86s-.24-.77-.24-1.28c0-.41.08-.8.24-1.18s.39-.71.68-1.01c.3-.29.67-.53,1.11-.7.44-.18.95-.26,1.52-.26.64,0,1.22.1,1.75.3.53.2.99.5,1.38.88l-.38.74Z"/><path class="cls-3" d="M1643.46,1218.62c-.64,0-1.13-.18-1.48-.54s-.52-.87-.52-1.54v-4.96h-.98c-.08,0-.16-.03-.22-.08s-.09-.13-.09-.24v-.57l1.33-.17.33-2.5c.01-.08.05-.15.1-.2s.13-.08.22-.08h.72v2.79h2.32v1.03h-2.32v4.86c0,.34.08.59.25.76.17.17.38.25.64.25.15,0,.28-.02.39-.06s.2-.08.28-.13.15-.09.2-.13.11-.06.15-.06c.08,0,.14.04.2.14l.42.68c-.25.23-.54.41-.89.54s-.7.2-1.07.2Z"/><path class="cls-3" d="M1646.51,1217.61c0-.14.03-.27.08-.39.05-.12.12-.23.21-.32.09-.09.19-.16.32-.22.12-.05.25-.08.39-.08s.27.03.39.08c.12.05.23.13.32.22.09.09.16.2.21.32.05.12.08.25.08.39s-.03.28-.08.4-.12.23-.21.32-.2.16-.32.21c-.12.05-.25.08-.39.08s-.27-.03-.39-.08c-.12-.05-.23-.12-.32-.21s-.16-.2-.21-.32-.08-.25-.08-.4Z"/><path class="cls-3" d="M1663.11,1218.49h-1.2c-.14,0-.25-.04-.34-.1s-.15-.16-.19-.26l-1.07-2.77h-5.14l-1.07,2.77c-.04.1-.1.18-.19.26-.09.08-.2.11-.34.11h-1.2l4.58-11.46h1.58l4.58,11.46ZM1655.6,1214.23h4.28l-1.8-4.66c-.12-.29-.23-.65-.34-1.08-.06.22-.12.42-.17.6-.06.18-.11.35-.16.48l-1.8,4.66Z"/><path class="cls-3" d="M1664.33,1218.49v-8.1h.85c.2,0,.33.1.38.3l.11.88c.35-.39.75-.7,1.18-.94s.94-.36,1.51-.36c.44,0,.83.07,1.17.22.34.15.62.36.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43s-.71-.51-1.28-.51c-.42,0-.81.1-1.18.3-.37.2-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M1675.68,1218.62c-.64,0-1.13-.18-1.48-.54-.34-.36-.52-.87-.52-1.54v-4.96h-.98c-.08,0-.16-.03-.22-.08s-.09-.13-.09-.24v-.57l1.33-.17.33-2.5c.01-.08.04-.15.1-.2s.13-.08.22-.08h.72v2.79h2.32v1.03h-2.32v4.86c0,.34.08.59.25.76s.38.25.64.25c.15,0,.28-.02.39-.06s.2-.08.28-.13c.08-.05.15-.09.2-.13.06-.04.11-.06.15-.06.07,0,.14.04.2.14l.42.68c-.25.23-.54.41-.89.54s-.7.2-1.07.2Z"/><path class="cls-3" d="M1682.48,1210.26c.59,0,1.13.1,1.6.3s.88.48,1.22.84c.33.36.59.8.77,1.32s.27,1.09.27,1.72-.09,1.22-.27,1.73-.44.95-.77,1.31c-.33.36-.74.64-1.22.84-.48.2-1.01.29-1.6.29s-1.13-.1-1.6-.29c-.48-.19-.88-.47-1.22-.84-.34-.36-.59-.8-.78-1.31s-.27-1.09-.27-1.73.09-1.21.27-1.72.44-.95.78-1.32c.34-.36.74-.64,1.22-.84s1.01-.3,1.6-.3ZM1682.48,1217.49c.8,0,1.4-.27,1.79-.8.39-.54.59-1.28.59-2.24s-.2-1.72-.59-2.26c-.4-.54-.99-.81-1.79-.81-.41,0-.76.07-1.06.21s-.55.34-.75.6c-.2.26-.35.58-.45.96-.1.38-.15.81-.15,1.29s.05.91.15,1.29c.1.38.25.7.45.96.2.26.45.46.75.6s.65.21,1.06.21Z"/><path class="cls-3" d="M1688.09,1218.49v-8.1h.85c.2,0,.33.1.38.3l.11.88c.35-.39.75-.7,1.18-.94s.94-.36,1.51-.36c.44,0,.83.07,1.17.22.34.15.62.36.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43s-.71-.51-1.28-.51c-.42,0-.81.1-1.18.3-.37.2-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M1698.89,1207.84c0,.14-.03.27-.08.39-.06.12-.13.23-.22.32-.09.09-.2.17-.32.22-.12.05-.25.08-.39.08s-.27-.03-.39-.08c-.12-.05-.23-.13-.32-.22-.09-.09-.17-.2-.22-.32-.05-.12-.08-.25-.08-.39s.03-.27.08-.4c.05-.13.13-.24.22-.33.09-.09.2-.17.32-.22.12-.05.25-.08.39-.08s.27.03.39.08c.12.05.23.13.32.22.09.09.17.2.22.33.06.12.08.26.08.4ZM1698.57,1210.38v8.1h-1.42v-8.1h1.42Z"/><path class="cls-3" d="M1702.32,1210.38v5.17c0,.61.14,1.09.42,1.42.28.34.71.5,1.28.5.42,0,.81-.1,1.18-.3.37-.2.71-.47,1.02-.82v-5.98h1.42v8.1h-.85c-.2,0-.33-.1-.38-.3l-.11-.87c-.35.39-.75.7-1.18.94s-.94.36-1.5.36c-.44,0-.83-.07-1.17-.22-.34-.15-.62-.35-.85-.62s-.4-.59-.52-.97c-.12-.38-.17-.8-.17-1.26v-5.17h1.42Z"/><path class="cls-3" d="M1714.62,1211.72c-.06.12-.16.18-.3.18-.08,0-.17-.03-.27-.09-.1-.06-.23-.12-.37-.2-.15-.07-.32-.14-.52-.2-.2-.06-.44-.09-.72-.09-.24,0-.46.03-.65.09-.19.06-.36.15-.49.25-.14.11-.24.23-.31.37s-.11.29-.11.46c0,.21.06.38.18.52.12.14.28.26.48.36s.42.19.67.27c.25.08.51.16.77.25.26.09.52.19.77.29.25.11.47.24.67.4s.36.36.48.59c.12.23.18.51.18.84,0,.37-.07.72-.2,1.04-.13.32-.33.59-.59.82-.26.23-.58.42-.96.55s-.82.2-1.31.2c-.57,0-1.08-.09-1.54-.28-.46-.18-.85-.42-1.17-.71l.34-.54c.04-.07.09-.12.15-.16.06-.04.14-.06.23-.06s.2.04.3.11c.11.07.24.16.39.25.15.09.34.17.55.25.22.07.49.11.81.11.28,0,.52-.04.73-.11.21-.07.38-.17.52-.29.14-.12.24-.26.31-.42.07-.16.1-.33.1-.51,0-.22-.06-.41-.18-.56s-.28-.27-.48-.38c-.2-.1-.42-.19-.68-.27-.25-.08-.51-.16-.78-.24-.26-.08-.52-.18-.78-.29-.25-.11-.48-.25-.68-.41-.2-.17-.36-.37-.48-.61-.12-.24-.18-.54-.18-.88,0-.31.06-.61.19-.89.13-.29.32-.54.56-.75s.55-.39.9-.52c.36-.13.76-.19,1.22-.19.53,0,1.01.08,1.44.25.42.17.79.4,1.1.69l-.32.52Z"/><polygon class="cls-3" points="1566.72 1250.73 1559.75 1250.73 1559.75 1242.52 1557.75 1242.52 1557.75 1250.73 1550.78 1250.73 1550.78 1252.73 1557.75 1252.73 1557.75 1275.02 1559.75 1275.02 1559.75 1252.73 1566.72 1252.73 1566.72 1250.73"/></g><g id="St._Franziskus"><path class="cls-1" d="M839.4,1058.03c-4.38-4.38-10.44-7.09-17.12-7.09-7.07,0-13.43,3.03-17.86,7.87l.4-.46-20-17.51h-27.06v-3.89c0-6.6-5.4-12-12-12h-96.68c-6.6,0-12,5.4-12,12v10.78c0,6.6,5.4,12,12,12h96.68c6.6,0,12-5.4,12-12v-3.89h25.93l19.15,16.76.98-1.12c-3.59,4.22-5.76,9.69-5.76,15.67,0,13.38,10.84,24.22,24.22,24.22s24.22-10.84,24.22-24.22c0-6.69-2.71-12.74-7.09-17.12Z"/><path class="cls-3" d="M655.76,1039.04c-.05.08-.1.14-.15.18s-.12.06-.21.06c-.09,0-.2-.04-.32-.14s-.27-.19-.46-.3c-.18-.11-.41-.21-.66-.3-.26-.09-.57-.14-.94-.14-.35,0-.65.05-.92.14-.27.09-.49.22-.67.38s-.31.35-.4.56c-.09.22-.14.45-.14.7,0,.32.08.59.24.8.16.21.37.39.62.54.26.15.55.28.88.39.33.11.66.22,1.01.34.34.12.68.25,1.01.4.33.15.62.33.88.56.26.22.47.5.62.82.16.33.24.73.24,1.2,0,.5-.09.97-.26,1.41-.17.44-.42.82-.75,1.15s-.73.58-1.21.77c-.48.19-1.02.28-1.63.28-.74,0-1.42-.13-2.03-.4-.61-.27-1.13-.63-1.56-1.09l.45-.74c.04-.06.09-.11.16-.15.06-.04.13-.06.2-.06.11,0,.24.06.38.18.14.12.32.25.54.4.22.14.48.28.78.4.31.12.68.18,1.12.18.37,0,.7-.05.98-.15.29-.1.53-.24.73-.43.2-.18.35-.4.46-.66.11-.26.16-.54.16-.86,0-.35-.08-.63-.24-.85-.16-.22-.36-.41-.62-.56s-.55-.28-.88-.38c-.33-.1-.66-.21-1.01-.32-.34-.11-.68-.24-1.01-.38-.33-.14-.62-.33-.88-.56-.26-.23-.46-.52-.62-.86s-.24-.77-.24-1.28c0-.41.08-.8.24-1.18s.39-.71.68-1.01c.3-.29.67-.53,1.11-.7.44-.18.95-.26,1.52-.26.64,0,1.22.1,1.75.3.53.2.99.5,1.38.88l-.38.74Z"/><path class="cls-3" d="M660.6,1048.84c-.64,0-1.13-.18-1.48-.54-.34-.36-.52-.87-.52-1.54v-4.96h-.98c-.08,0-.16-.03-.22-.08s-.09-.13-.09-.24v-.57l1.33-.17.33-2.5c.01-.08.05-.15.1-.2s.13-.08.22-.08h.72v2.79h2.32v1.03h-2.32v4.86c0,.34.08.59.25.76.17.17.38.25.64.25.15,0,.28-.02.39-.06s.2-.08.28-.13c.08-.05.15-.09.2-.13.06-.04.11-.06.15-.06.07,0,.14.04.2.14l.42.68c-.25.23-.54.41-.89.54s-.7.2-1.07.2Z"/><path class="cls-3" d="M663.64,1047.83c0-.14.03-.27.08-.39.05-.12.12-.23.21-.32.09-.09.19-.16.32-.22.12-.05.25-.08.39-.08s.27.03.39.08c.12.05.23.13.32.22.09.09.16.2.21.32.05.12.08.25.08.39s-.03.28-.08.4c-.05.12-.12.23-.21.32-.09.09-.2.16-.32.21s-.25.08-.39.08-.27-.03-.39-.08c-.12-.05-.23-.12-.32-.21-.09-.09-.16-.2-.21-.32-.05-.12-.08-.25-.08-.4Z"/><path class="cls-3" d="M677.88,1037.24v1.26h-5.5v4.01h4.7v1.26h-4.7v4.93h-1.56v-11.46h7.06Z"/><path class="cls-3" d="M679.16,1048.71v-8.1h.82c.15,0,.26.03.32.09.06.06.1.16.12.3l.1,1.26c.28-.57.62-1.01,1.03-1.32.41-.32.89-.48,1.44-.48.22,0,.43.03.61.08.18.05.35.12.5.21l-.18,1.06c-.04.13-.12.2-.25.2-.07,0-.19-.03-.34-.08s-.37-.08-.65-.08c-.5,0-.91.14-1.24.43-.33.29-.61.71-.84,1.26v5.16h-1.42Z"/><path class="cls-3" d="M691.26,1048.71h-.63c-.14,0-.25-.02-.34-.06-.09-.04-.14-.13-.17-.27l-.16-.75c-.21.19-.42.36-.62.52-.2.15-.42.28-.64.38-.22.1-.46.18-.72.24-.25.05-.54.08-.84.08s-.61-.04-.88-.13c-.27-.09-.51-.22-.72-.4s-.36-.4-.48-.67-.18-.59-.18-.96c0-.32.09-.63.26-.93s.46-.56.85-.79c.39-.23.91-.42,1.54-.57s1.41-.22,2.33-.22v-.64c0-.63-.13-1.11-.4-1.44-.27-.32-.67-.49-1.2-.49-.35,0-.64.04-.88.13s-.44.19-.62.3-.32.21-.45.3c-.13.09-.25.13-.37.13-.1,0-.18-.03-.25-.08-.07-.05-.13-.11-.17-.19l-.26-.46c.45-.43.93-.75,1.45-.97.52-.21,1.09-.32,1.72-.32.45,0,.86.07,1.21.22s.65.36.89.62c.24.27.42.59.54.97.12.38.18.79.18,1.25v5.18ZM687.56,1047.84c.25,0,.48-.03.69-.08s.4-.12.59-.22c.18-.09.36-.21.53-.34.17-.13.33-.29.49-.46v-1.67c-.66,0-1.21.04-1.67.12-.46.08-.83.19-1.12.33-.29.13-.5.29-.63.47-.13.18-.2.39-.2.61s.03.4.1.56.16.28.28.38c.12.1.26.17.42.22.16.05.33.07.52.07Z"/><path class="cls-3" d="M693.42,1048.71v-8.1h.85c.2,0,.33.1.38.3l.11.88c.35-.39.75-.7,1.18-.94s.94-.36,1.51-.36c.44,0,.83.07,1.17.22.34.15.62.36.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.81.1-1.18.3-.37.2-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M707.97,1041.21c0,.1-.02.2-.06.29-.04.09-.09.18-.14.25l-4.38,5.84h4.42v1.11h-6.1v-.59c0-.07.02-.15.05-.24.03-.09.08-.18.15-.27l4.41-5.88h-4.36v-1.12h6.02v.61Z"/><path class="cls-3" d="M711.61,1038.06c0,.14-.03.27-.08.39-.06.12-.13.23-.22.32-.09.09-.2.17-.32.22-.12.05-.25.08-.39.08s-.27-.03-.39-.08c-.12-.05-.23-.13-.32-.22-.09-.09-.17-.2-.22-.32-.05-.12-.08-.25-.08-.39s.03-.27.08-.4c.05-.13.13-.24.22-.33.09-.09.2-.17.32-.22.12-.05.25-.08.39-.08s.27.03.39.08c.12.05.23.13.32.22.09.09.17.2.22.33.06.12.08.26.08.4ZM711.29,1040.6v8.1h-1.42v-8.1h1.42Z"/><path class="cls-3" d="M718.44,1041.94c-.06.12-.16.18-.3.18-.08,0-.17-.03-.27-.09-.1-.06-.23-.12-.37-.2-.15-.07-.32-.14-.52-.2-.2-.06-.44-.09-.72-.09-.24,0-.46.03-.65.09s-.36.15-.49.25c-.14.11-.24.23-.31.37-.07.14-.11.29-.11.46,0,.21.06.38.18.52.12.14.28.26.48.36.2.1.42.19.67.27.25.08.51.16.77.25.26.09.52.19.77.29.25.11.47.24.67.4s.36.36.48.59c.12.23.18.51.18.84,0,.37-.07.72-.2,1.04s-.33.59-.59.82c-.26.23-.58.42-.96.55-.38.13-.82.2-1.31.2-.57,0-1.08-.09-1.54-.28-.46-.18-.85-.42-1.17-.71l.34-.54c.04-.07.09-.12.15-.16.06-.04.14-.06.23-.06s.2.04.3.11c.11.07.24.16.39.25.15.09.34.17.55.25.22.07.49.11.81.11.28,0,.52-.04.73-.11.21-.07.38-.17.52-.29.14-.12.24-.26.31-.42.07-.16.1-.33.1-.51,0-.22-.06-.41-.18-.56s-.28-.27-.48-.38c-.2-.1-.42-.19-.68-.27-.25-.08-.51-.16-.78-.24-.26-.08-.52-.18-.78-.29-.25-.11-.48-.25-.68-.41-.2-.17-.36-.37-.48-.61-.12-.24-.18-.54-.18-.88,0-.31.06-.61.19-.89.13-.29.31-.54.56-.75.25-.22.55-.39.9-.52.36-.13.77-.19,1.22-.19.53,0,1.01.08,1.44.25.42.17.79.4,1.1.69l-.32.52Z"/><path class="cls-3" d="M722.23,1036.92v6.94h.37c.11,0,.19-.01.26-.04s.15-.09.23-.18l2.56-2.74c.08-.08.16-.15.24-.21.08-.05.19-.08.32-.08h1.3l-2.98,3.18c-.07.09-.15.17-.22.24-.07.07-.15.13-.24.18.1.06.18.14.26.22.08.08.15.18.22.28l3.17,4h-1.28c-.12,0-.22-.02-.3-.07-.08-.04-.16-.12-.24-.21l-2.66-3.32c-.08-.11-.16-.18-.24-.22-.08-.03-.2-.05-.36-.05h-.4v3.87h-1.43v-11.78h1.43Z"/><path class="cls-3" d="M730.36,1040.6v5.17c0,.61.14,1.09.42,1.42.28.34.71.5,1.28.5.42,0,.81-.1,1.18-.3.37-.2.71-.47,1.02-.82v-5.98h1.42v8.1h-.85c-.2,0-.33-.1-.38-.3l-.11-.87c-.35.39-.75.7-1.18.94s-.94.36-1.5.36c-.44,0-.83-.07-1.17-.22-.34-.15-.62-.35-.85-.62-.23-.27-.4-.59-.52-.97-.11-.38-.17-.8-.17-1.26v-5.17h1.42Z"/><path class="cls-3" d="M742.67,1041.94c-.06.12-.16.18-.3.18-.08,0-.17-.03-.27-.09-.1-.06-.23-.12-.37-.2-.15-.07-.32-.14-.52-.2-.2-.06-.44-.09-.72-.09-.24,0-.46.03-.65.09s-.36.15-.49.25c-.14.11-.24.23-.31.37-.07.14-.11.29-.11.46,0,.21.06.38.18.52.12.14.28.26.48.36.2.1.42.19.67.27.25.08.51.16.77.25.26.09.52.19.77.29.25.11.47.24.67.4s.36.36.48.59c.12.23.18.51.18.84,0,.37-.07.72-.2,1.04s-.33.59-.59.82c-.26.23-.58.42-.96.55-.38.13-.82.2-1.31.2-.57,0-1.08-.09-1.54-.28-.46-.18-.85-.42-1.17-.71l.34-.54c.04-.07.09-.12.15-.16.06-.04.14-.06.23-.06s.2.04.3.11c.11.07.24.16.39.25.15.09.34.17.55.25.22.07.49.11.81.11.28,0,.52-.04.73-.11.21-.07.38-.17.52-.29.14-.12.24-.26.31-.42.07-.16.1-.33.1-.51,0-.22-.06-.41-.18-.56s-.28-.27-.48-.38c-.2-.1-.42-.19-.68-.27-.25-.08-.51-.16-.78-.24-.26-.08-.52-.18-.78-.29-.25-.11-.48-.25-.68-.41-.2-.17-.36-.37-.48-.61-.12-.24-.18-.54-.18-.88,0-.31.06-.61.19-.89.13-.29.31-.54.56-.75.25-.22.55-.39.9-.52.36-.13.77-.19,1.22-.19.53,0,1.01.08,1.44.25.42.17.79.4,1.1.69l-.32.52Z"/><polygon class="cls-3" points="830.25 1068.11 823.28 1068.11 823.28 1059.9 821.28 1059.9 821.28 1068.11 814.31 1068.11 814.31 1070.11 821.28 1070.11 821.28 1092.4 823.28 1092.4 823.28 1070.11 830.25 1070.11 830.25 1068.11"/></g><g id="Maria_Hilfe_der_Chrsiten"><path class="cls-1" d="M309.92,729.62h-174.64c-6.6,0-12,5.4-12,12v4.16h-45.84l-13.26,26.51c-.25,0-.5-.02-.75-.02-13.38,0-24.22,10.84-24.22,24.22s10.84,24.22,24.22,24.22,24.22-10.84,24.22-24.22c0-6.69-2.71-12.74-7.09-17.12-3.5-3.5-8.07-5.93-13.18-6.77l11.91-23.81h43.99v3.63c0,6.6,5.4,12,12,12h174.64c6.6,0,12-5.4,12-12v-10.78c0-6.6-5.4-12-12-12Z"/><path class="cls-3" d="M141.92,749.65c.06.14.11.28.16.43.05-.15.11-.29.17-.43.06-.14.12-.27.2-.41l3.88-7.05c.07-.12.14-.2.22-.22.07-.03.18-.04.32-.04h1.14v11.46h-1.36v-8.42c0-.11,0-.23,0-.36s.01-.26.02-.39l-3.93,7.17c-.13.24-.32.36-.56.36h-.22c-.24,0-.43-.12-.56-.36l-4.02-7.19c.02.14.03.27.04.41,0,.13.01.26.01.37v8.42h-1.36v-11.46h1.14c.14,0,.25.01.32.04.07.03.15.1.22.22l3.96,7.06c.07.13.14.26.2.4Z"/><path class="cls-3" d="M156.53,753.39h-.63c-.14,0-.25-.02-.34-.06-.09-.04-.14-.13-.17-.27l-.16-.75c-.21.19-.42.36-.62.52-.2.15-.42.28-.64.38-.22.1-.46.18-.72.24-.25.05-.54.08-.84.08s-.61-.04-.88-.13c-.27-.09-.51-.22-.72-.4-.2-.18-.36-.4-.48-.67-.12-.27-.18-.59-.18-.96,0-.32.09-.63.26-.93s.46-.56.85-.79c.39-.23.91-.42,1.54-.57s1.41-.22,2.33-.22v-.64c0-.63-.13-1.11-.4-1.44-.27-.32-.67-.49-1.2-.49-.35,0-.64.04-.88.13s-.44.19-.62.3-.32.21-.45.3c-.13.09-.25.13-.37.13-.1,0-.18-.03-.25-.08-.07-.05-.13-.11-.17-.19l-.26-.46c.45-.43.93-.75,1.45-.97.52-.21,1.09-.32,1.72-.32.45,0,.86.07,1.21.22.35.15.65.36.89.62.24.27.42.59.54.97s.18.79.18,1.25v5.18ZM152.84,752.52c.25,0,.48-.03.69-.08.21-.05.4-.12.59-.22.18-.09.36-.21.53-.34s.33-.29.49-.46v-1.67c-.66,0-1.21.04-1.67.12-.46.08-.83.19-1.12.33-.29.13-.5.29-.63.47-.13.18-.2.39-.2.61s.03.4.1.56.16.28.28.38c.12.1.26.17.42.22.16.05.33.07.52.07Z"/><path class="cls-3" d="M158.69,753.39v-8.1h.82c.15,0,.26.03.32.09.06.06.1.16.12.3l.1,1.26c.28-.57.62-1.01,1.03-1.32.41-.32.89-.48,1.44-.48.22,0,.43.03.61.08.18.05.35.12.5.21l-.18,1.06c-.04.13-.12.2-.25.2-.07,0-.19-.03-.34-.08s-.37-.08-.65-.08c-.5,0-.91.14-1.24.43-.33.29-.61.71-.84,1.26v5.16h-1.42Z"/><path class="cls-3" d="M167.04,742.74c0,.14-.03.27-.08.39-.06.12-.13.23-.22.32-.09.09-.2.17-.32.22-.12.05-.25.08-.39.08s-.27-.03-.39-.08c-.12-.05-.23-.13-.32-.22-.09-.09-.17-.2-.22-.32-.05-.12-.08-.25-.08-.39s.03-.27.08-.4c.05-.13.13-.24.22-.33s.2-.17.32-.22c.12-.05.25-.08.39-.08s.27.03.39.08.23.13.32.22c.09.09.17.2.22.33.06.13.08.26.08.4ZM166.72,745.28v8.1h-1.42v-8.1h1.42Z"/><path class="cls-3" d="M175.19,753.39h-.63c-.14,0-.25-.02-.34-.06-.09-.04-.14-.13-.17-.27l-.16-.75c-.21.19-.42.36-.62.52-.2.15-.42.28-.64.38-.22.1-.46.18-.72.24-.25.05-.54.08-.84.08s-.61-.04-.88-.13c-.27-.09-.51-.22-.72-.4-.2-.18-.36-.4-.48-.67-.12-.27-.18-.59-.18-.96,0-.32.09-.63.26-.93s.46-.56.85-.79c.39-.23.91-.42,1.54-.57s1.41-.22,2.33-.22v-.64c0-.63-.13-1.11-.4-1.44-.27-.32-.67-.49-1.2-.49-.35,0-.64.04-.88.13s-.44.19-.62.3-.32.21-.45.3c-.13.09-.25.13-.37.13-.1,0-.18-.03-.25-.08-.07-.05-.13-.11-.17-.19l-.26-.46c.45-.43.93-.75,1.45-.97.52-.21,1.09-.32,1.72-.32.45,0,.86.07,1.21.22.35.15.65.36.89.62.24.27.42.59.54.97s.18.79.18,1.25v5.18ZM171.49,752.52c.25,0,.48-.03.69-.08.21-.05.4-.12.59-.22.18-.09.36-.21.53-.34s.33-.29.49-.46v-1.67c-.66,0-1.21.04-1.67.12-.46.08-.83.19-1.12.33-.29.13-.5.29-.63.47-.13.18-.2.39-.2.61s.03.4.1.56.16.28.28.38c.12.1.26.17.42.22.16.05.33.07.52.07Z"/><path class="cls-3" d="M176.93,752.4c0-.12.02-.24.07-.35s.11-.21.19-.29c.08-.08.18-.15.3-.2.12-.05.25-.07.38-.07.16,0,.3.03.43.09.12.06.23.14.31.24.08.1.15.22.19.36.04.13.06.28.06.44,0,.24-.03.49-.1.75-.07.26-.17.51-.3.77-.13.25-.29.5-.48.74s-.4.46-.64.66l-.24-.23c-.07-.06-.1-.14-.1-.22,0-.07.04-.14.11-.22.05-.06.12-.14.2-.24.08-.1.17-.21.25-.34.08-.13.16-.27.24-.42.07-.15.12-.32.16-.5h-.1c-.14,0-.26-.02-.38-.07-.11-.05-.21-.12-.29-.2-.08-.09-.15-.19-.19-.31s-.07-.25-.07-.4Z"/><path class="cls-3" d="M193.35,753.39h-1.56v-5.22h-6.18v5.22h-1.56v-11.46h1.56v5.11h6.18v-5.11h1.56v11.46Z"/><path class="cls-3" d="M197.83,742.74c0,.14-.03.27-.08.39-.06.12-.13.23-.22.32-.09.09-.2.17-.32.22-.12.05-.25.08-.39.08s-.27-.03-.39-.08c-.12-.05-.23-.13-.32-.22-.09-.09-.17-.2-.22-.32-.05-.12-.08-.25-.08-.39s.03-.27.08-.4c.05-.13.13-.24.22-.33s.2-.17.32-.22c.12-.05.25-.08.39-.08s.27.03.39.08.23.13.32.22c.09.09.17.2.22.33.06.13.08.26.08.4ZM197.51,745.28v8.1h-1.42v-8.1h1.42Z"/><path class="cls-3" d="M201.6,741.6v11.78h-1.42v-11.78h1.42Z"/><path class="cls-3" d="M204.43,753.39v-6.89l-.9-.1c-.11-.03-.2-.07-.28-.12-.07-.06-.11-.14-.11-.24v-.58h1.28v-.79c0-.46.07-.88.2-1.24.13-.36.32-.66.56-.91s.53-.44.88-.56c.34-.13.73-.19,1.15-.19.36,0,.7.05,1.01.16l-.03.71c0,.11-.05.17-.14.19-.08.02-.21.03-.36.03h-.25c-.25,0-.47.03-.67.1-.2.06-.37.17-.52.31s-.25.33-.33.57c-.08.24-.12.53-.12.87v.74h2.34v1.03h-2.3v6.91h-1.43Z"/><path class="cls-3" d="M212.71,745.15c.49,0,.93.08,1.34.24.41.16.77.4,1.06.7.3.31.53.69.7,1.14.17.45.25.96.25,1.54,0,.22-.02.37-.07.45s-.14.11-.27.11h-5.39c.01.51.08.96.21,1.34s.3.69.53.95c.22.25.49.44.8.57.31.12.66.19,1.04.19.36,0,.67-.04.92-.12s.48-.17.67-.27.34-.19.47-.27c.12-.08.23-.12.32-.12.12,0,.21.05.27.14l.4.52c-.18.21-.39.4-.63.56-.25.16-.51.29-.79.39-.28.1-.57.18-.87.23-.3.05-.6.08-.89.08-.56,0-1.08-.09-1.55-.28-.47-.19-.88-.47-1.22-.83-.34-.37-.61-.82-.8-1.36-.19-.54-.29-1.16-.29-1.86,0-.57.09-1.09.26-1.58s.42-.92.75-1.28c.33-.36.72-.64,1.19-.85s1-.31,1.58-.31ZM212.75,746.2c-.69,0-1.23.2-1.62.6-.4.4-.64.95-.74,1.65h4.41c0-.33-.05-.63-.14-.91-.09-.28-.22-.51-.4-.71-.18-.2-.39-.35-.64-.46s-.54-.16-.87-.16Z"/><path class="cls-3" d="M226.68,753.39c-.2,0-.33-.1-.38-.3l-.13-.98c-.35.42-.74.76-1.19,1.01-.45.25-.96.38-1.53.38-.46,0-.89-.09-1.26-.27-.38-.18-.7-.44-.97-.79-.27-.35-.47-.78-.62-1.3s-.22-1.11-.22-1.78c0-.6.08-1.15.24-1.67.16-.52.39-.96.69-1.34.3-.38.67-.68,1.1-.89.43-.22.92-.32,1.47-.32.5,0,.92.08,1.27.25s.67.4.94.71v-4.5h1.42v11.78h-.85ZM223.92,752.35c.46,0,.87-.11,1.22-.32.35-.21.67-.52.96-.9v-3.92c-.26-.35-.55-.6-.86-.74-.31-.14-.66-.21-1.04-.21-.76,0-1.34.27-1.74.81s-.61,1.31-.61,2.3c0,.53.05.98.14,1.36.09.38.22.69.4.93.18.24.39.42.65.53s.55.17.88.17Z"/><path class="cls-3" d="M233.13,745.15c.49,0,.93.08,1.34.24.41.16.77.4,1.06.7.3.31.53.69.7,1.14.17.45.25.96.25,1.54,0,.22-.02.37-.07.45s-.14.11-.27.11h-5.39c.01.51.08.96.21,1.34s.3.69.53.95c.22.25.49.44.8.57.31.12.66.19,1.04.19.36,0,.67-.04.92-.12s.48-.17.67-.27.34-.19.47-.27c.12-.08.23-.12.32-.12.12,0,.21.05.27.14l.4.52c-.18.21-.39.4-.63.56-.25.16-.51.29-.79.39-.28.1-.57.18-.87.23-.3.05-.6.08-.89.08-.56,0-1.08-.09-1.55-.28-.47-.19-.88-.47-1.22-.83-.34-.37-.61-.82-.8-1.36-.19-.54-.29-1.16-.29-1.86,0-.57.09-1.09.26-1.58s.42-.92.75-1.28c.33-.36.72-.64,1.19-.85s1-.31,1.58-.31ZM233.16,746.2c-.69,0-1.23.2-1.62.6-.4.4-.64.95-.74,1.65h4.41c0-.33-.05-.63-.14-.91-.09-.28-.22-.51-.4-.71-.18-.2-.39-.35-.64-.46s-.54-.16-.87-.16Z"/><path class="cls-3" d="M238.3,753.39v-8.1h.82c.15,0,.26.03.32.09.06.06.1.16.12.3l.1,1.26c.28-.57.62-1.01,1.03-1.32.41-.32.89-.48,1.44-.48.22,0,.43.03.61.08.18.05.35.12.5.21l-.18,1.06c-.04.13-.12.2-.25.2-.07,0-.19-.03-.34-.08s-.37-.08-.65-.08c-.5,0-.91.14-1.24.43-.33.29-.61.71-.84,1.26v5.16h-1.42Z"/><path class="cls-3" d="M256.14,751.02c.08,0,.16.04.23.1l.61.66c-.47.54-1.04.97-1.71,1.27-.67.3-1.48.46-2.42.46-.83,0-1.58-.14-2.25-.43-.67-.29-1.25-.69-1.72-1.2s-.84-1.13-1.1-1.85c-.26-.72-.39-1.51-.39-2.38s.14-1.66.42-2.38c.28-.72.67-1.34,1.18-1.86.51-.52,1.11-.92,1.82-1.2.71-.29,1.49-.43,2.34-.43s1.57.13,2.18.39c.61.26,1.15.62,1.63,1.06l-.5.71c-.04.05-.08.1-.13.13-.05.03-.12.05-.21.05-.07,0-.14-.03-.22-.08-.08-.05-.17-.11-.28-.19-.11-.07-.23-.15-.38-.24-.14-.08-.31-.17-.51-.24-.2-.07-.43-.14-.69-.19s-.56-.08-.9-.08c-.61,0-1.17.11-1.68.32s-.95.51-1.32.9c-.37.39-.65.86-.86,1.42-.21.56-.31,1.19-.31,1.88s.1,1.35.31,1.91c.21.56.49,1.03.84,1.42.35.39.77.68,1.26.88s1.01.3,1.57.3c.34,0,.65-.02.92-.06.27-.04.52-.1.76-.19s.45-.19.65-.32c.2-.13.4-.29.6-.47.09-.08.18-.12.26-.12Z"/><path class="cls-3" d="M258.8,753.39v-11.78h1.42v4.77c.35-.37.73-.66,1.15-.88.42-.22.91-.33,1.46-.33.44,0,.83.07,1.17.22.34.15.62.35.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.81.1-1.18.3s-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M267.7,753.39v-8.1h.82c.15,0,.26.03.32.09.06.06.1.16.12.3l.1,1.26c.28-.57.62-1.01,1.03-1.32.41-.32.89-.48,1.44-.48.22,0,.43.03.61.08.18.05.35.12.5.21l-.18,1.06c-.04.13-.12.2-.25.2-.07,0-.19-.03-.34-.08s-.37-.08-.65-.08c-.5,0-.91.14-1.24.43-.33.29-.61.71-.84,1.26v5.16h-1.42Z"/><path class="cls-3" d="M276.05,742.74c0,.14-.03.27-.08.39-.06.12-.13.23-.22.32-.09.09-.2.17-.32.22-.12.05-.25.08-.39.08s-.27-.03-.39-.08c-.12-.05-.23-.13-.32-.22-.09-.09-.17-.2-.22-.32-.05-.12-.08-.25-.08-.39s.03-.27.08-.4c.05-.13.13-.24.22-.33s.2-.17.32-.22c.12-.05.25-.08.39-.08s.27.03.39.08.23.13.32.22c.09.09.17.2.22.33.06.13.08.26.08.4ZM275.73,745.28v8.1h-1.42v-8.1h1.42Z"/><path class="cls-3" d="M282.88,746.62c-.06.12-.16.18-.3.18-.08,0-.17-.03-.27-.09-.1-.06-.23-.12-.37-.2-.15-.07-.32-.14-.52-.2-.2-.06-.44-.09-.72-.09-.24,0-.46.03-.65.09-.19.06-.36.15-.49.25-.14.11-.24.23-.31.37-.07.14-.11.29-.11.46,0,.21.06.38.18.52.12.14.28.26.48.36.2.1.42.19.67.27.25.08.51.16.77.25s.52.19.77.29c.25.11.47.24.67.4s.36.36.48.59c.12.23.18.51.18.84,0,.37-.07.72-.2,1.04-.13.32-.33.59-.59.82-.26.23-.58.42-.96.55-.38.13-.82.2-1.31.2-.57,0-1.08-.09-1.54-.28-.46-.18-.85-.42-1.17-.71l.34-.54c.04-.07.09-.12.15-.16.06-.04.14-.06.23-.06s.2.04.3.11c.11.07.24.16.39.25.15.09.34.17.55.25s.49.11.81.11c.28,0,.52-.04.73-.11s.38-.17.52-.29.24-.26.31-.42c.07-.16.1-.33.1-.51,0-.22-.06-.41-.18-.56-.12-.15-.28-.27-.48-.38s-.42-.19-.68-.27c-.25-.08-.51-.16-.78-.24-.26-.09-.52-.18-.78-.29-.25-.11-.48-.25-.68-.41-.2-.17-.36-.37-.48-.61s-.18-.54-.18-.88c0-.31.06-.61.19-.89.13-.29.31-.54.56-.75.25-.22.55-.39.9-.52.36-.13.77-.19,1.22-.19.53,0,1.01.08,1.44.25.42.17.79.4,1.1.69l-.32.52Z"/><path class="cls-3" d="M287.64,753.52c-.64,0-1.13-.18-1.48-.54-.34-.36-.52-.87-.52-1.54v-4.96h-.98c-.08,0-.16-.03-.22-.08s-.09-.13-.09-.24v-.57l1.33-.17.33-2.5c.01-.08.05-.15.1-.2s.13-.08.22-.08h.72v2.79h2.32v1.03h-2.32v4.86c0,.34.08.59.25.76.17.17.38.25.64.25.15,0,.28-.02.39-.06.11-.04.2-.08.28-.13.08-.05.15-.09.2-.13.06-.04.11-.06.15-.06.07,0,.14.04.2.14l.42.68c-.25.23-.54.41-.89.54s-.7.2-1.07.2Z"/><path class="cls-3" d="M294.36,745.15c.49,0,.93.08,1.34.24.41.16.77.4,1.06.7.3.31.53.69.7,1.14.17.45.25.96.25,1.54,0,.22-.02.37-.07.45s-.14.11-.27.11h-5.39c.01.51.08.96.21,1.34s.3.69.53.95c.22.25.49.44.8.57.31.12.66.19,1.04.19.36,0,.67-.04.92-.12s.48-.17.67-.27.34-.19.47-.27c.12-.08.23-.12.32-.12.12,0,.21.05.27.14l.4.52c-.18.21-.39.4-.63.56-.25.16-.51.29-.79.39-.28.1-.57.18-.87.23-.3.05-.6.08-.89.08-.56,0-1.08-.09-1.55-.28-.47-.19-.88-.47-1.22-.83-.34-.37-.61-.82-.8-1.36-.19-.54-.29-1.16-.29-1.86,0-.57.09-1.09.26-1.58s.42-.92.75-1.28c.33-.36.72-.64,1.19-.85s1-.31,1.58-.31ZM294.39,746.2c-.69,0-1.23.2-1.62.6-.4.4-.64.95-.74,1.65h4.41c0-.33-.05-.63-.14-.91-.09-.28-.22-.51-.4-.71-.18-.2-.39-.35-.64-.46s-.54-.16-.87-.16Z"/><path class="cls-3" d="M299.54,753.39v-8.1h.85c.2,0,.33.1.38.29l.11.88c.35-.39.75-.7,1.18-.94.43-.24.94-.36,1.51-.36.44,0,.83.07,1.17.22.34.15.62.35.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.81.1-1.18.3s-.7.48-1.01.82v5.97h-1.42Z"/><polygon class="cls-3" points="71.41 789.44 64.44 789.44 64.44 781.23 62.44 781.23 62.44 789.44 55.47 789.44 55.47 791.44 62.44 791.44 62.44 813.73 64.44 813.73 64.44 791.44 71.41 791.44 71.41 789.44"/></g></g></svg>`; diff --git a/src/components/ChemnitzMap/chemnitz_map.svg b/src/components/ChemnitzMap/chemnitz_map.svg index 2d9c598..6791e8a 100644 --- a/src/components/ChemnitzMap/chemnitz_map.svg +++ b/src/components/ChemnitzMap/chemnitz_map.svg @@ -1 +1,930 @@ -<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2156.07 1357.94"><defs><style>.cls-1,.cls-2{fill:#ca5726;}.cls-3{fill:#fff;}.cls-4{fill:#67a3c2;}.cls-5{fill:#0f6898;}.cls-2{opacity:.3;}.cls-6{fill:#deecf7;}</style></defs><g id="Flächen"><polygon class="cls-2" points="1913.83 433.76 1933.32 501.96 1918.1 501.96 1935.25 571.57 1828.19 579.43 1832.88 599.35 1790.87 608.14 1777.96 554.11 1844.11 538.25 1822.71 456.37 1913.83 433.76"/><polygon class="cls-2" points="1685.18 736.76 1747.49 779.98 1746.59 822.87 1679.72 927.13 1616.25 813.9 1685.18 736.76"/><polygon class="cls-2" points="1640.8 860.34 1627.59 886.32 1580.46 903.47 1569.53 886.32 1589.72 875.65 1568.73 831.95 1616.25 813.9 1640.8 860.34"/><polygon class="cls-2" points="1592.8 948.24 1592.8 983.56 1574.57 983.56 1574.57 1009.57 1545.96 1022.27 1552.69 1064.06 1587.2 1064.06 1588.15 1075.15 1734.4 1060.53 1679.72 927.13 1592.8 948.24"/><polygon class="cls-2" points="1619.73 1318.68 1619.73 1291.38 1681.87 1286.16 1775.7 1302.88 1775.7 1312.84 1759.65 1312.84 1734.4 1335.26 1619.73 1318.68"/><polygon class="cls-2" points="2209.93 991.27 2179.63 1001.14 2092.12 944.91 2069.24 946.65 2055.09 981.52 2001.23 1043.8 1991.97 1079.98 2004.64 1128.43 2049.55 1130.29 2074.76 1114.48 2122.04 1117.01 2215.95 1130.29 2145.36 1172.55 2031.53 1196.11 2015.94 1196.11 1991.97 1218.83 2004.64 1265.12 2069.24 1318.13 2019.74 1318.13 1965.46 1268.48 1903.61 1157.48 1875 1166.17 1871.63 1209.38 1894.36 1261.27 1895.2 1286.16 1986.08 1363.58 2035.73 1367.3 2049.55 1421.64 2202.36 1421.64 2269.68 1157.48 2209.93 991.27"/><polygon class="cls-2" points="1293.57 609.02 1303.73 636.33 1340.08 625.49 1346.7 618.65 1338.85 607.58 1371.8 554.49 1356.1 546.44 1347.98 568.14 1322.11 579.43 1319.8 591.38 1293.57 609.02"/><polygon class="cls-2" points="1336.7 534.92 1330.52 556.23 1341.98 559.01 1347.98 539.16 1336.7 534.92"/><polygon class="cls-2" points="970.7 811.09 984.11 787.16 1033.84 811.09 1019.9 837.11 970.7 811.09"/><polygon class="cls-2" points="753.64 850.46 726.72 855.23 735.35 934.4 714.29 956.7 625.15 1017.38 641.15 1059.47 593.89 1072.83 597.88 1188.17 657.14 1206.65 664.71 1252.42 643.45 1275.6 604.24 1242.52 586.13 1252.72 566.21 1234.74 473 1269.13 453.36 1252.72 482.62 1212.06 475.17 1168.06 428.85 1142.46 387 1166.17 335.13 1136.41 326.78 1089.32 274.91 1038.62 266.67 1008.43 6.38 956.7 -65.09 954.62 -65.09 1363.26 246.29 1426.23 762.89 1391.34 724.14 1352.05 731.9 1318.68 752.6 1288.58 747.42 1252.72 762.89 1230.43 771.58 1202.42 707.69 1121.82 751.74 1073.45 762.89 1032.05 818.02 1042.33 837.13 1020.69 789.69 967.39 753.64 850.46"/><polygon class="cls-2" points="72 967.39 20.54 922.97 37.72 898.71 111.7 911.02 189.25 991.79 72 967.39"/><polygon class="cls-2" points="326.78 1089.32 342.79 1067.11 366.71 1052.01 346.75 1019.04 371.2 998.73 384.65 1012.01 500.54 972.37 547.5 908.66 607.46 884.98 590.16 844.49 519.73 838.09 519.73 789.05 538.35 789.05 519.73 723.7 475.17 704.66 419.27 721.37 412.71 779.98 440.02 814.24 407.14 879.99 332.7 938.44 317.06 979.76 292.39 956.7 260.01 967.39 271.24 1025.37 294.7 1060.95 326.78 1089.32"/><polygon class="cls-2" points="1392.66 1089.58 1403.13 1106.62 1328.15 1142.46 1314.81 1124.8 1392.66 1089.58"/><polygon class="cls-2" points="1207.82 761.22 1190.62 760.43 1186.16 813.9 1154.73 875.65 1144.49 998.73 1180.83 1142.46 1159.13 1138.34 1154.73 1160.84 1238 1202.42 1289.53 1193.51 1301.47 1184.71 1266.16 1129.51 1222.98 1101.81 1206.08 1061.68 1174.67 1009.57 1176.28 967.74 1207.82 761.22"/><polygon class="cls-2" points="1619.94 684.68 1669.45 728.5 1654.98 745.32 1669.45 754.36 1654.98 770.55 1626.24 740.57 1636.95 727.62 1607.38 702.04 1619.94 684.68"/><polygon class="cls-2" points="1623.95 496.12 1641.43 503.2 1651.43 476.29 1632.53 470.6 1623.95 496.12"/><polyline class="cls-2" points="1337.89 237.44 1335.32 267.42 1350.02 267.42"/><polygon class="cls-2" points="1473.97 263.86 1461.12 269.81 1463.57 304.56 1489.03 274.89 1473.97 263.86"/><polygon class="cls-2" points="1224.67 172.66 1264.31 159.36 1314.66 116.89 1327.4 73.81 1345 66.53 1368.66 41.66 1386.75 35.94 1397.07 100.86 1366.56 158.07 1304.63 164.89 1307.81 199.46 1223.05 188.93 1224.67 172.66"/><polygon class="cls-2" points="1170.96 237.78 1172.09 263.59 1140.95 267.44 1137.1 241.42 1170.96 237.78"/><polygon class="cls-2" points="1143.63 285.54 1154.6 283.84 1150.49 265.41 1140.95 267.44 1143.63 285.54"/><polygon class="cls-2" points="1132.89 392.01 1140.95 422.89 1173.67 411.84 1164.18 382.13 1132.89 392.01"/><polygon class="cls-2" points="935.06 398.83 954.81 429.45 967.97 426.41 972.06 432.5 935.06 450 915.33 413.09 935.06 398.83"/><polygon class="cls-2" points="1059.93 498.12 1010.63 500.85 1015.84 521.91 1076.63 521.91 1059.93 498.12"/><polygon class="cls-2" points="1875.22 246.08 1870.5 261.11 1892.26 266.99 1894.43 252.43 1875.22 246.08"/><polygon class="cls-2" points="1823.96 125.9 1833.39 100.86 1815.12 88.79 1807 100.86 1801.71 111.18 1804.52 122.49 1823.96 125.9"/><polygon class="cls-2" points="1807 -3.5 1815.12 75.27 1892.26 75.27 1899.28 94.82 1949.45 88.79 1961.23 100.86 1959.01 135.89 1996.24 166.13 2035.74 155.94 2049.61 125.9 2137.19 135.89 2191.94 192.46 2218.11 -41.13 2018.38 -48.14 1996.24 -48.14 1972.43 -22.28 1807 -3.5"/><polygon class="cls-2" points="312.81 336.41 292.39 371.14 189.25 430.12 130.49 424.42 127.29 445.55 194.86 492.56 185.31 541.59 200.39 562.93 249.63 527.74 334.03 500.85 374.89 462.3 429.63 576.54 414.32 596.91 384.65 605.34 384.65 636.33 410.75 659.44 475.17 704.66 490.68 636.33 557.78 633.45 572.01 607.49 620.25 562.93 682.62 564.54 680.93 501.96 714.29 454.16 689.68 432.74 647.91 433.04 617.61 378.62 578.47 393.48 582.31 432.16 552 441.28 551.42 409.57 531.46 387.77 531.46 337.74 513.47 291.47 442.57 296.54 427.27 375.97 406.09 394.5 397.37 363.56 359.61 368.61 360.2 392.44 312.81 336.41"/><polygon class="cls-2" points="596.12 -82.49 596.12 -48.14 642.16 30.66 659.54 120.78 664.75 208.69 675.63 237.78 654.33 247.52 623.05 225.3 615.23 192.91 596.12 188.93 592.65 225.3 550.08 241.2 525.76 237.17 496.22 254.67 482.32 233.36 497.96 201.23 478.85 185.51 416.3 241.42 384.16 247.52 375.47 237.17 352.02 241.42 306.01 287.69 280.79 233.36 230.54 224.18 221.72 237.17 168.72 247.52 173.07 267.44 127.29 281.6 108.78 305.98 81.86 301.51 59.49 331.45 18.44 291.47 -4.15 299.34 -14.57 267.44 -72.77 306.17 -51.06 -59.91 596.12 -82.49"/></g><g id="Kleine_Straßen"><path class="cls-6" d="M1329.41,300.65l-24.89-54.75-27.18,3.29v-54.03h-3v28.84l-43.1,5.8-31.07,3.34-8.28-44.26-2.95.55,3.36,17.98-101.4,13.12,4.96,50.97-20.96,2.59-10.78-62.31-46.06,21.68,80.92,247.67,23.16-7.53,5.49,17.18,80.61-26.59,9.19,25.21,2.82-1.03-9.68-26.55-5.13-15.29,39.36-12.79.24-.08,39.54-30.06-53.04-11.2,26.29-27.78-2.18-2.06-26.1,27.59-17.5-93.51,28.77-3.65-.38-2.98-28.95,3.67-6.11-32.67,32.8-4.05,36.15-4.37v3.04l13.01,60.4,30.74,99.1-15.1,20.49,2.42,1.78,16-21.71-.11-.34,22.34-99.97-14.21-14.71ZM1197.18,233.45l-19.18,2.06-1.72-23.01,16.58-2.15,4.32,23.09ZM1202.98,400.36l-9.01-26.05,27.91-8.8,5.01,26.78-23.91,8.07ZM1200.14,401.32l-88.4,29.85-8.98-28.09,88.35-27.87,9.03,26.11ZM1048.86,317.31l29.83-3.78,4.08,23.59-25.98,5.19-19.77-60.51,35.42-4.38,5.73,33.15-29.69,3.77.38,2.98ZM1102.39,307.49l-3.25-33.38,21.29-2.63,4.15,33.19-22.19,2.81ZM1114.34,309l-2.21.51,4.84,20.77-31.26,6.24-4.04-23.38,32.68-4.14ZM1131.11,390.99l-29.26,9.23-11.17-34.95-4.46-25.79,31.43-6.28,13.46,57.78ZM1083.28,340.07l4.48,25.91,11.23,35.14-20.84,6.57-20.43-62.52,25.55-5.1ZM1099.9,403.98l8.99,28.14-20.5,6.92-9.31-28.5,20.82-6.57ZM1133.98,390.09l-18.91-81.18,60.2-7.64,5.45,43.79.02.16,9.39,27.16-56.15,17.71ZM1127.55,304.3l-4.15-33.18,47.38-5.85,4.11,33.03-47.35,6.01ZM1123.03,268.14l-6-47.97,56.26-7.28,1.72,22.95-38.07,4.09.32,2.98,60.47-6.5,4.12,21.99-78.81,9.74ZM1094.17,223.13l19.89-2.57,5.99,47.96-21.21,2.62-4.68-48ZM1096.16,274.48l3.25,33.39-18.26,2.32-5.73-33.14,20.74-2.56ZM1061.84,216.16l10.08,58.29-35.86,4.43-14.33-43.85,40.1-18.88ZM1100.91,477.34l-11.58-35.44,20.48-6.91,11.42,35.75-20.32,6.61ZM1207.25,461.34l-77.68,25.63-4.57-14.31,77.59-25.22,4.66,13.9ZM1243.63,430.94l-119.54,38.86-11.43-35.78,116.05-39.18,48.85,10.32-33.92,25.78ZM1221.33,362.53l-28.34,8.94-9.31-26.94-5.43-43.64,30.82-3.91,12.27,65.55ZM1208.51,294.03l-30.64,3.89-4.11-33.02,28.63-3.54,6.11,32.68ZM1237.81,253.96l-32.98,4.08-4.11-21.95,30.87-3.32,42.74-5.75v22.53l-36.52,4.41ZM1290.26,315.31l-12.92-60.02v-3.08l25.36-3.07,24.09,52.99.11.24,13.45,13.92-20.84,93.28-29.24-94.25Z"/><polygon class="cls-6" points="1499.43 1345.83 1390.52 1340.02 1340.35 1302.27 1345.54 1280.19 1336.93 1242.78 1349.03 1222.74 1396.16 1203.47 1398.23 1182.16 1361.53 1156.26 1359.8 1158.71 1395.07 1183.61 1393.35 1201.38 1346.97 1220.34 1333.74 1242.27 1342.46 1280.18 1336.98 1303.49 1389.08 1342.69 1389.45 1342.97 1499.72 1348.85 1500.17 1348.87 1535.65 1328.08 1534.14 1325.49 1499.43 1345.83"/><polygon class="cls-6" points="1603.21 1235.31 1499.1 1290.06 1500.5 1292.71 1603.31 1238.64 1650.74 1259.82 1709.08 1243.26 1666.34 1201.62 1660.48 1181.53 1621.98 1165.48 1627.18 1157.66 1620.13 1140.17 1535.36 1079.81 1505.33 1027.01 1490.26 977.41 1487.39 978.28 1495.63 1005.4 1444.73 1020.48 1433.18 998.04 1430.52 999.42 1443.2 1024.06 1496.5 1008.27 1502.51 1028.04 1533.08 1081.87 1617.67 1142.11 1623.8 1157.31 1618.69 1165.02 1453.46 1251.4 1454.84 1254.05 1619.8 1167.83 1658.01 1183.75 1663.68 1203.22 1703.27 1241.79 1650.97 1256.63 1603.21 1235.31"/><polygon class="cls-6" points="883.06 1117.28 842.66 1125.89 869.29 1166.99 871.81 1165.36 847.55 1127.91 883.69 1120.21 883.06 1117.28"/><polygon class="cls-6" points="902.62 1224.78 917.02 1157.47 907.42 1117.59 897.04 1114.06 908.27 1093.5 895.45 1088.19 894.3 1090.97 904.03 1094.99 892.7 1115.75 904.89 1119.9 913.94 1157.5 899.68 1224.15 902.62 1224.78"/><path class="cls-6" d="M1156.23,1286.41l39.02-9.48,43.44-22.88-1.4-2.65-43.12,22.71-37.95,9.22v-.86l-41.27-74.51h-18.29l-26.35-24.34-2.04,2.2,27.21,25.14h17.7l17.06,30.8-85.34,33.29-7.33,20.67-27.07,10.93-14.93-64.45-2.92.68,22.13,95.55-53.71,7.38-14.2-7.6-50.71-29-8.82-35.76-55.15-3.83-.21,2.99,52.97,3.68,8.61,34.88,51.86,29.66,15.09,8.08,62.46-8.59.3-.04,10.98-6.43,5.59,15.35,113.38-34.34v9.75l11.92,18.54-5.24,31.42,2.96.49,5.2-31.23,30.44-14.8-1.31-2.7-29.94,14.56-11.04-17.17v-37.31ZM1022.28,1337.38l-4.5.62-6.58-28.41,28.77-11.61,7.33-20.65,84.43-32.94,21.51,38.84v.82l-24.18,5.87-.5.12-16.62,20.74-62.35,10.61-27.3,15.98ZM1036.89,1332.31l13.74-8.04,22.91-3.9,5.2,13.92-37.05,11.22-4.81-13.19ZM1081.62,1333.41l-5.07-13.56,37.01-6.3,16.7-20.83,22.97-5.58v24.58l-71.61,21.69Z"/><polygon class="cls-6" points="903.97 1047.08 984.46 940.46 993.34 946.2 1034.04 970.77 1057.37 1000.23 1097.35 1000.23 1097.35 997.23 1058.82 997.23 1036.22 968.69 1036.06 968.48 1011.63 953.73 1040.26 914.76 1087.52 909.06 1105.13 888.19 1112.11 891.68 1113.46 888.99 1104.36 884.45 1085.99 906.22 1038.61 911.93 1009.05 952.17 994.93 943.65 983.75 936.43 903.16 1043.18 848.2 1012.32 819.1 982.51 816.95 984.61 846.36 1014.72 903.97 1047.08"/><polygon class="cls-6" points="512.88 1214.19 426.15 1308.1 426.15 1338.29 385.5 1341.44 385.5 1396.14 388.5 1396.14 388.5 1344.21 429.15 1341.06 429.15 1309.27 515.39 1215.89 515.69 1215.56 521.21 1181.27 518.25 1180.79 512.88 1214.19"/><path class="cls-6" d="M709.69,758.73l.75,9.58h-25.28v-28.48h-3v39.01l1.65,16.17-17.63,3.6,8.26,46.75,14.14-3.74,1.07,10.44,7.63,39.75-48.12,51.12-12.8,22.35-14.24-9.18,7.4-18.33,51.03-44.92-6.7-33.81-2.94.58,6.36,32.11-12.01,10.57-14.3-32.17-2.74,1.22,14.69,33.03-11.4,10.04-19.08-35.15-2.64,1.43,19.41,35.75-21.92,19.3-.27.24-8.59,21.29,16.46,10.61-17.32,30.23-11.98,37.57-28.03,43.31-10.02,48.78-17.45,41.04,2.76,1.17,17.57-41.31,9.97-48.52,27.84-43.01.11-.17,12.01-37.65,31.16-54.47,49.05-52.1-7.89-41.06-1.11-10.85,24.1-6.37.29,3.72,2.99-.23-6.21-79.47-2.99.23ZM712.25,791.43h-9.23l.23-20.12h7.42l1.57,20.12ZM685.16,778.77v-7.45h15.1l-.23,20.39-13.26,2.71-1.6-15.65ZM676.82,841.64l-7.18-40.66,14.47-2.96,4.15,40.6-11.44,3.02ZM691.2,837.84l-4.13-40.42,13.2-2.7,6.06,39.12-15.12,4ZM709.24,833.07l-5.98-38.63h9.23l2.89,37.01-6.14,1.62Z"/><path class="cls-6" d="M126.92,899.48l28.31-5.55,58.97,64.35,20.03-2.32-.71-26.82-55.06-61.3,18.19-15.76,27.63,5.57,6.7,18.85h14.03v-3h-11.91l-6.56-18.45-30.74-6.2-19.21,16.65-52.76-73.43-2.44,1.75,52.92,73.66-.12.1.15.17-19.38,23.19-30.28,5.94-49.62-81.81-2.57,1.56,25.66,42.31-26.79,18.9-26.23-45.87-2.6,1.49,27.87,48.73,29.32-20.68,22.94,37.82,87.44,91.17,54.41,7.34.4-2.97-53.37-7.2-84.61-88.17ZM230.55,930.32l.61,22.97-15.78,1.83-57.62-62.87,18.61-22.26,54.18,60.32Z"/><polygon class="cls-6" points="133.05 714.74 133.05 763.82 138.94 781.84 141.79 780.91 136.05 763.34 136.05 714.92 208.45 725.81 216.15 743.11 218.89 741.9 210.53 723.09 134.77 711.69 134.63 711.67 7.64 716.91 15.84 662.69 58.36 653.37 112.87 659.78 117.52 638.89 180.65 663.45 190.7 627.21 187.8 626.41 178.64 659.45 147.96 647.51 171.52 587.77 168.73 586.67 145.16 646.43 118.17 635.93 124 609.71 150.37 575.85 163.39 571.62 162.46 568.76 148.57 573.29 121.22 608.4 110.53 656.48 58.46 650.36 58.21 650.33 17.07 659.35 30.02 629.75 23.11 601.45 -26.33 572.8 -54.64 591.9 -52.96 594.38 -26.21 576.34 20.5 603.4 26.86 629.48 13.06 661.03 4.36 718.58 18.65 768.66 -37.6 779.9 -37.01 782.84 19.48 771.56 36.28 830.44 39.17 829.62 7.85 719.9 133.05 714.74"/><path class="cls-6" d="M452.65,897.26l8.9-27.69-13.97-3.15-17.5,6.59-11.75-13.39-72.35,6.74-12.96-96.74-1.83-15.98,26.52-5.16-5.45-50.36-2.98.32,5.16,47.62-26.54,5.16,1.98,17.28-91.4,11.38.37,2.98,91.4-11.38,18.96,141.49-40.42,56.16-47.03,9.15.57,2.95,47.62-9.26.58-.11,41.81-58.1-5.95-44.42,70.71-6.58,10.51,11.97-44.55,45.33,4.64,26.6-18.24,14.95,4.93,15.33,2.86-.92-4.31-13.39,79.73-65.37ZM386.26,921.06l44.21-44.99,17.32-6.52,9.9,2.23-7.62,23.72-59.72,48.97-4.08-23.41Z"/><path class="cls-6" d="M493.21,455.66v-109.7h-3v106.7h-31.46l-20.58,35.91,4.24,43.99-30.89,4.49-76.13-19.46-14.53,50.89-26.27-4.71-90.66,30.02,5.93,15.75-24.99,7.68.88,2.87,26.19-8.05,36.49,5.13,7.66,29.41-1.97.36-43.06,25.29,1.52,2.59,42.61-25.02,1.66-.31,7.17,27.53-44.13,13.06.85,2.88,44.04-13.03,10.64,40.87,2.9-.76-10.67-40.96,54.15-16.03,41.33,19.24,2.1,11.49,2.95-.54-7.42-40.54-23.96-20.28-18.24-23.86v-21.13l18.91-66.21,73.88,18.89,34.32-4.99-4.42-45.89,19.24-33.57h32.72ZM207.83,595.65l64.05-21.21,11.64,36.47-33.85,3.39-36.75-5.17-5.08-13.49ZM251.53,617.14l32.92-3.3,8.3,25.99-33.7,6.2-7.52-28.9ZM362.47,678.67l-40.43-18.82-55.15,16.32-7.09-27.22,75.48-13.89,22.72,19.23,4.46,24.38ZM333.03,632.42l-37.31,6.86-8.22-25.75,28.88-2.89,16.66,21.78ZM315.56,587.01v20.7l-28.99,2.9-11.84-37.11,20.08-6.65,25.22,4.52-4.46,15.63Z"/><polygon class="cls-6" points="586.01 685.91 591.63 656.98 588.68 656.41 583.48 683.2 559.28 686.19 559.28 654.1 556.28 654.1 556.28 686.56 513.39 691.85 506.3 661.11 503.38 661.78 511.07 695.16 586.01 685.91"/><path class="cls-6" d="M1107.37,533.46l-35.71,7.59,7.22-18.54-17.41-24.81,2.96-35.63-10.25-26.12-18.19-49.88-30.73,5.54-3.07-6.87-2.74,1.22,3.48,7.78,1.83,9.59-22.73,7.13-8.63-17.83-2.7,1.31,9.76,20.16,25.12-7.88,3.85,10.24,42.16,21.11,9.79,24.95-3,36.02,17.11,24.38-7.36,18.87-103.82,22.05-.11.02-72.25,26.65-58.18,8.13,2.11-26.2,33.41-13.93-14.09-23.06h-17.36l-15.41-5.78-8.15-16.34,31.69-17.6,62.44-58.16.31-.29,8.17-29.44-40.93-89.35-2.73,1.25,40.47,88.35-7.65,27.57-61.87,57.62-59.33,32.94h-33.11l9.9,45.47,20.55-.3,45.9,28.03-125.47,17.53-4.12-18.18-91.55,22.62v37.48h3v-35.13l86.3-21.32,4.05,17.89,131.82-18.42,1.3.79.08-.98,59-8.25.16-.02,72.35-26.69,142.93-30.36-.62-2.93ZM1007.94,403.96l-1.81-9.46,27.91-5.03,16.04,43.98-38.25-19.15-3.89-10.35ZM785.74,544.39l47.18,27.84-2.05,25.36-46.67-28.5,1.54-24.71ZM864.93,557.1l-30.33,12.65-10.13-5.98,14-25.3h15.07l11.39,18.63ZM820.3,532.08l15.14,5.68-13.55,24.48-35.94-21.21.77-12.37,24.95-13.85,8.62,17.28ZM755.51,529.24h28.17l-2.45,39.18-17.14.25-8.58-39.43Z"/><path class="cls-6" d="M1361.37,645.93l24.21,13.28-17.43,58.04,2.87.86,17.24-57.43,28.15,15.44,6.48,18.33,2.83-1-6.86-19.42-28.97-15.89,23.1-31,26.11,19.67,19.2-26.82,39.8,28.31,1.74-2.45-39.79-28.3,14.22-19.86,31.32,22.16,1.73-2.45-90.69-64.16-1.73,2.45,56.92,40.27-14.21,19.85-52.91-37.63-1.74,2.45,26.76,19.03-17.33,23.26-24.42-18.4-1.81,2.4,24.43,18.41-23.36,31.35-24.08-13.21-19.19-18.72,63.14-83.91.14-.18,11.81-32.82-2.82-1.02-11.66,32.39-63.5,84.39-89.16,26.59-8.57-5.53,75.65-51,.44-.3,3.9-12.88,26.36-12.59,14.61-39.24-44.7-9.6,18.43-42.12,29.91-55.74,13.92,39.46,16.67,11.98-15.28,18.98,2.34,1.88,15.38-19.1,26.96,19.38,1.75-2.44-45.31-32.57-15.87-44.98-32.95,61.4-238.98,137.38.75,1.3-1.46.33,15.4,69.39-23.93,6.37-5.27-26.72-50.05,10.69,6.26,27.61-11.96,2.81-7.91,51.78-.02,23.07h47.62l13.7-8.68-1.38-6.25,23.36-6.48-13.75-64.87,45.45-12.1,9.87,40.91,2.92-.7-10.22-42.38-3.12-14.13,12.7-4.32,68.98-70.59,29.02-2.83,23.56,38.28-27.28,18.39-32.32,18.99-48.07,86.05h-14.95v3h16.71l48.53-86.88,30.86-18.13,10.86,7.01,90.11-26.87,19.8,19.31ZM1432.18,601.42l23.69,16.85-17.41,24.31-23.67-17.83,17.38-23.33ZM1360.3,530.87l-12.98,34.85-24.78,11.84-24.64-30.85,14.05-10.59.31-.24,6.13-14.02,41.9,9ZM1099.05,614.64l17.5-10.06,16.18,73.31-18.54,4.94-15.14-68.19ZM1035.63,676.24l44.1-9.42,4.71,23.88-43.23,10.16-5.58-24.62ZM1021.4,756.47l7.59-49.66,9.54-2.24-2.1,71.63h-15.03v-19.73ZM1074.8,762.14l1.54,6.97-11.19,7.09h-25.72l1.36-46.38,27.44-3.73,22.56-5.38,4.71,22.24-22.22,5.59.73,2.91,22.11-5.56,2.07,9.77-23.39,6.49ZM1090.16,717.77l-22.41,5.35-26.87,3.66.67-22.92,43.48-10.21v.05s.03,0,.03,0l5.1,24.08ZM1143.91,657.58l-11.71,3.98-12.92-58.55,51.15-29.41,21.15,35.2-47.67,48.78ZM1213.15,586.72l-19.41,19.86-20.71-34.48,160.47-92.25-23.67,54.11-66.06,49.77-30.62,2.99ZM1246.33,585.56l49.17-37.04,24.95,31.23-3.56,11.74-47.29,31.88-23.27-37.81Z"/><polygon class="cls-6" points="1301.16 1029.58 1278.08 1034.55 1274.69 1015.79 1279.88 969.16 1338.24 965.62 1343.54 839.94 1312.28 837.71 1312.07 840.7 1340.42 842.72 1335.36 962.79 1280.22 966.13 1282.56 945.09 1290.63 879.19 1290.65 879.02 1284.55 815.27 1318.49 812.58 1318.25 809.59 1281.28 812.52 1287.63 878.98 1279.58 944.75 1271.69 1015.67 1271.66 1015.89 1279.59 1059.73 1282.54 1059.2 1278.62 1037.5 1301.79 1032.51 1301.16 1029.58"/><rect class="cls-6" x="1419.78" y="394.48" width="97.14" height="3" transform="translate(-6.68 766.28) rotate(-29.19)"/><path class="cls-6" d="M2141.01,336.31l33.14-47.38-89.12-53.09-26.49,6.26-21.38-15.42-3.17-2.35,11.8-9.4-1.87-2.35-14.85,11.83.29.22-20.39,24.47v9.92l47.55,22.54,6.69-9.86-38.11-18.92,6.47-8.8-9.42-6.02,9.61-11.53,3.61,2.68,22.5,16.24,26.65-6.29,85.31,50.82-30.39,43.45h-65.32l-49.13-21.89-.18-.08-38.85-6.34-17.66-10.71-1.55,2.56,17.91,10.86.25.15,39.04,6.37,49.54,22.07h67.52ZM2027.27,244.77l-6.69,9.1,38.22,18.98-3.31,4.88-43.51-20.63v-6.93l8.25-9.91,7.04,4.5Z"/><polygon class="cls-6" points="2123.83 142.24 2121.66 144.31 2135.13 158.42 2111.05 184.5 2118.46 191.63 2091.9 218.99 2066.07 195.47 2064.05 197.69 2092.03 223.16 2122.71 191.56 2115.24 184.38 2139.24 158.38 2123.83 142.24"/><path class="cls-6" d="M1810.66,55.84l34.22,27.7,231.44-59.7-.75-2.9-229.98,59.32-33.57-27.17-50.35-12.47,11.59-43.74-2.9-.77-11.86,44.78-6.95,6.17-19.87-27.49-2.43,1.76,20.04,27.73-23.68,21.03-48.96,36.75,1.43.49-8.12,38.91-26.49-7.98-.87,2.87,26.55,8-7.54,21.02-41.24-12.83-.89,2.87,41.11,12.79-7.31,20.36-39.64-11.87-.86,2.87,39.49,11.82-15.92,44.36-3.89,12.66-32.3-8.55-.77,2.9,32.18,8.52-6.77,22.02-7.81,20.69-33.49-8.33,4.62-11.63-2.79-1.11-5.89,14.82,39.41,9.81,8.32-22.03,74.94,15.49-2.62,19.4h-.07s-2.02,23.68-2.02,23.68l-28.81-.91-5.8,41.61-60.35-22.02,7.53-29.12,14.4,4.07-7.41,25.88,2.88.83,8.23-28.77-20.25-5.72-13.55,52.36-153.76,63.23,1.14,2.78,21.48-8.83,25.15,56.57,69.05-26.32-1.07-2.8-21.97,8.37-24.59-54.98,85.08-34.99,31.93,67.34-61.04,27.48,1.23,2.74,61.87-27.86,18.61,6.8,20.04-4.63,11.8,41.26,2.88-.82-11.76-41.11,42.99-9.92,20.93,90.65-43.15,10.32,3.78,14.78-35,51.63-12.85-9.3-20.44-18.68-11.45,11.89-22.49,22.03-22.19-19.6-1.99,2.25,22.03,19.45-33.06,32.38,2.1,2.14,33.22-32.53,110.56,97.63,1.99-2.25-27.81-24.56,18.5-23.74-2.37-1.84-18.38,23.6-23.14-20.43,19.7-23.14-2.29-1.95-19.66,23.1-15.4-13.6,26.18-38.61,82.16,59.46,1.76-2.43-82.24-59.51,35.81-52.82-3.36-13.13,18.69-4.47,5.6,31.85,23.47-4.07,3.3,14.28-23.29,35.69,2.51,1.64,23.64-36.23.35-.53-11.19-48.46,45.31-10.84,6.48,26.2,33.23-8.31-6.5-25.84,21.67-5.19-13.94-54.27-2.91.75,6.25,24.32-18.56,4.62-15.79-62.74,103.78-23.96,9.02,36.72,2.91-.71-4.89-19.9,28.99-2.48,1.78,14.78,2.98-.36-1.91-15.86,6.09-16.25,13.9,4.44.91-2.86-24.37-7.78,7.17-22.02-2.85-.93-7.38,22.64-30.16,6.96-9.36-38.12,1.58-29.38,25.07,2.08-4.08,31.79,2.98.38,4.1-31.93,35.65,2.95.25-2.99-124.48-10.3v-39.08l30.12-90.69.67-1.57,88.73,30.55,10.09-31.97-2.86-.9-9.16,29.03-56.96-19.61,9.24-29.06-2.86-.91-9.22,28.99-25.82-8.89,26.75-62.48,13.14-15.33,25.76,4.04-19.5,56.77,2.84.97,20.66-60.16-30.95-4.85-14.53,16.95-28.81,67.3-30.26,91.1-.08.23v42.32l22.01,1.82v22.07h3v-21.82l35.51,2.94-1.6,29.91,9.46,38.52-103.79,23.96-11.01-43.77-32.83,9.89,10.61,41.55-43.54,10.05-9.63-41.71-.18-.79-40.14-14.65,5.52-39.58,82.68,2.62-1.27,32.54,3,.12,1.27-32.56,27.63.88,2.65,13.1,2.94-.6-3.12-15.43-29.98-.95.77-19.87-55.28-5.4,2.58-19.08,27.19,5.62.61-2.94-27.39-5.66,4.61-34.1,5.95-20.19,20.62,6.03.84-2.88-20.62-6.03,5.04-17.12,55.58,20.25,23.98-70.04,27.66,8.93,10.8-32.55-2.85-.95-9.87,29.73-24.78-8,10.31-30.11-2.84-.97-10.33,30.16-34.25-11.06-.92,2.86,34.2,11.04-6.34,18.53-66.69-23.58-8.23,28.04,65.39,23.37-7.1,20.74-83.8-30.54,16.97-57.96,14.1,3.94,7.42-25.8,19.96,6.81,5.86-16.01-2.82-1.03-4.85,13.26-17.32-5.91,8.88-30.86,28.58-16.23,16.87,12.31-11.75,35.48,2.85.94,12.43-37.56h-.02s10.29-33.33,10.29-33.33l11.35,2.81ZM1632.24,649.59l-37.28-32.92,22.37-21.91,9.45-9.82,17.18,15.7-9.56,9.41,2.11,2.14,9.78-9.63,11.97,8.66-26.01,38.37ZM1930.39,391.27l8.65,2.76-5.84,15.56-29.95,2.57-3.4-13.84,30.54-7.05ZM1531.51,471.13l-41.62,15.86-23.96-53.9,41.03-16.87,24.55,54.9ZM1647.62,453.47l-17.77-6.49-32.7-68.96,4.54-17.56,60.68,22.14-4.83,34.65,9.1,31.83-19.03,4.39ZM1741.91,564.93l-20.36,3.53-5.11-29.08,18.55-4.44,6.92,29.99ZM1737.23,531.32l-5.39-23.33,44.79-11.16,5.86,23.66-45.26,10.83ZM1779.55,496.1l27.21-6.78,6.02,23.92-27.36,6.55-5.86-23.69ZM1819.29,539.11l-27.4,6.85-5.76-23.25,27.38-6.55,5.78,22.96ZM1828.25,483.97l6.19,24.09-18.74,4.48-6.03-23.94,18.58-4.63ZM1806.03,486.42l-27.2,6.77-5.34-21.59-10.64-41.65,27.38-6.32,15.8,62.79ZM1752.19,388.21l27.07-8.15,10.23,40.66-27.39,6.32-9.92-38.83ZM1759.92,430.62l10.65,41.7,5.34,21.59-44.75,11.15-14.86-64.37,43.61-10.07ZM1703.27,397.52l9.45,40.92-43.14,9.96-8.97-31.37,4.65-33.38,38.01,13.87ZM1753.99,340.65l-53.59-1.7,1.75-20.5,52.5,5.13-.66,17.07ZM1721.05,189.53l6.54-22.28,63.73,22.53-7.58,22.16-62.68-22.4ZM1680.95,108.32l23.35,7.96,1.99,28.73-3.28,11.2-30.17-9.09,8.11-38.8ZM1672.04,150l30.13,9.08-6.36,21.71-31.32-9.75,7.55-21.04ZM1663.47,173.87l31.49,9.8-5.96,20.36-32.83-9.83,7.3-20.33ZM1689.55,207.33l9.37,3.42-5.88,18.53-21.64-6.33,5.97-19.26,12.18,3.65ZM1674.49,202.82l-5.97,19.27-20.23-5.92,6.87-19.14,19.33,5.79ZM1639.21,241.47l8.06-22.47,44.86,13.13-6.64,20.9-2.97,15-48.18-10.73,4.87-15.82ZM1633.46,260.17l21.72,4.84-3.34,17.32-23.69-4.9,5.31-17.26ZM1658.11,265.66l23.83,5.31-3.35,16.89-23.82-4.92,3.33-17.28ZM1681.54,288.46l3.33-16.85,19.92,4.44-2.27,16.75-20.99-4.34ZM1707.14,258.69l-1.95,14.39-19.74-4.4,2.93-14.82,6.63-20.88,18.14,5.31-6.01,20.41ZM1714,235.4l-18.08-5.29,5.82-18.34,17.35,6.32-5.1,17.31ZM1720.86,147.27l-11.64-3.25-1.85-26.68,20.12,6.86-6.64,23.07ZM1737.51,89.41l-9.18,31.9-45.34-15.46,44.47-33.38,23.59-20.95,15.48,21.41-29.03,16.48ZM1786.46,84.48l-16.65-12.15-16.5-22.82,6.92-6.15,36.15,8.95-9.94,32.17Z"/><polygon class="cls-6" points="1487.89 273.91 1442.96 326.27 1460.28 369.43 1463.07 368.32 1446.42 326.85 1490.17 275.87 1487.89 273.91"/><polygon class="cls-6" points="1604.61 67.27 1623.17 21.02 1620.39 19.9 1602.88 63.5 1525.08 36.77 1528.3 29.01 1525.53 27.86 1521.08 38.57 1562.03 52.64 1554.15 73.39 1536.87 67.66 1495.9 175.84 1498.71 176.91 1531.36 90.7 1563.47 102.27 1564.49 99.45 1532.42 87.89 1538.66 71.42 1568.52 81.32 1569.47 78.48 1557 74.34 1564.87 53.61 1604.61 67.27"/><polygon class="cls-6" points="1403.47 153.83 1435.2 127.05 1433.26 124.76 1401.41 151.64 1401.29 151.74 1353.41 212.93 1353.14 213.28 1346.33 292.97 1365.71 292.97 1382.25 223.4 1379.33 222.71 1363.34 289.97 1349.6 289.97 1356.05 214.43 1403.47 153.83"/><polygon class="cls-6" points="1421.6 125.22 1421.6 35.94 1418.6 35.94 1418.6 99.36 1397.07 99.36 1397.07 102.36 1418.6 102.36 1418.6 125.22 1421.6 125.22"/><rect class="cls-6" x="1370.13" y="3.98" width="72.46" height="3" transform="translate(640.52 1185.04) rotate(-57.23)"/><path class="cls-6" d="M1367.92-10.68l-89.9,90.05-32.97,17.61-5.35-16.05,81.17-92.3-2.25-1.98-81.45,92.62-21.14,6.23.85,2.88,20.17-5.94,5.33,15.98-21.43,11.45,1.41,2.65,20.98-11.21,20.29,60.82,2.85-.95-9.65-28.91,27.88-16.81-24.78-23,19.91-10.64,90.21-90.37-2.12-2.12ZM1279.74,114.92l-23.89,14.41-9.83-29.47,11.1-5.93,22.62,20.99Z"/><polygon class="cls-6" points="1905.4 707.75 1892.35 731.13 1894.97 732.59 1908.65 708.09 1937.09 672.47 1950.24 667.06 1959.49 689.92 1947.6 742.34 1950.53 743 1962.52 690.12 1962.62 689.67 1953.01 665.92 2005.21 644.45 2004.07 641.68 1951.89 663.14 1942.25 639.32 1938.57 595.17 1935.58 595.42 1939.28 639.8 1939.3 640.02 1949.11 664.28 1935.59 669.84 1935.23 669.99 1907.07 705.26 1852.65 670.29 1834.33 598.98 1831.43 599.72 1842.26 641.91 1819.42 646.6 1810.8 603.98 1807.86 604.57 1816.48 647.2 1801.01 650.38 1801.61 653.32 1843.01 644.82 1850.03 672.17 1905.4 707.75"/><polygon class="cls-6" points="1995.16 595.89 1965.21 460.43 1965.21 421.39 1962.21 421.39 1962.21 460.76 1992.23 596.53 1995.16 595.89"/><path class="cls-6" d="M1770.38,785.96l-1.8,2.4,19.07,14.33-55.22,76.47-15.3-10.3-1.68,2.49,15.22,10.24-3.67,5.09,34.22,23.85,63.17-83.99-54.01-40.58ZM1760.56,906.41l-29.35-20.45,58.83-81.47,30.15,22.65-59.63,79.27Z"/><polygon class="cls-6" points="1977.83 828.53 1911.11 858.97 1912.36 861.7 1979.57 831.03 2005.7 804.89 2003.58 802.77 1977.83 828.53"/><polygon class="cls-6" points="1980.11 1125.92 1978.58 1062.95 2012.07 1011.39 2048.18 962.01 2048.55 961.51 2040.02 908.35 2040.02 889.46 2073.63 848.77 2071.32 846.86 2037.02 888.39 2037.02 908.47 2045.39 960.75 2009.61 1009.68 2004.43 1017.66 1953.49 963.18 1951.3 965.23 2002.74 1020.25 1975.56 1062.09 1977.18 1128.8 2117.94 1134.62 2120.57 1146.95 2123.5 1146.33 2120.39 1131.72 1980.11 1125.92"/><polygon class="cls-6" points="1921.92 1014.98 1918.96 1014.46 1910.69 1061.34 1886.61 1042.62 1884.77 1044.99 1910.51 1065 1936.3 1125.39 1939.06 1124.21 1913.29 1063.88 1921.92 1014.98"/><polygon class="cls-6" points="1975.31 1157.28 1972.33 1157.69 1976.87 1191.36 1950.39 1201.59 1977.15 1261.88 1979.89 1260.67 1954.41 1203.25 1980.16 1193.31 1975.31 1157.28"/><rect class="cls-6" x="1812.81" y="1104.44" width="3" height="90.35" transform="translate(-265.45 613.04) rotate(-17.89)"/><path class="cls-6" d="M2090.19,746.53l86.99-37.82,128.07-17.43-.4-2.97-128.28,17.46-.21.03-87.76,38.15-.38.17-9.61,13.58-11.17,41.35,40.77,16.08,13.36,18.9,16.79-9.04,16.85,42.81,28.23-10.5-1.04-2.81-25.47,9.47-17.01-43.22-.16.09-9.7-18.1,85.32,36.11,1.17-2.76-88.74-37.56-.24-.45,9.65-23.17,84.64-30.81-1.03-2.82-85.26,31.04-.62.22-10.27,24.67-48.11-20.36,4.82-17.84,8.82-12.46ZM2125.65,800.87l11.46,21.39-14.62,7.88-12.34-17.47-39.11-15.42,4.73-17.49,49.89,21.11Z"/><polygon class="cls-6" points="2011.39 672.72 2032.61 670.29 2018.58 595.02 2015.63 595.57 2029.07 667.68 2011.05 669.74 2011.39 672.72"/><rect class="cls-6" x="800.76" y="317.88" width="3" height="40.09" transform="translate(-67.44 299.93) rotate(-20.34)"/><polygon class="cls-6" points="936.53 596.61 933.59 597.2 938.57 622.01 1039.7 596.45 1038.96 593.54 962.56 612.85 957 589.94 954.08 590.65 959.65 613.59 940.89 618.33 936.53 596.61"/><rect class="cls-6" x="901.21" y="301.82" width="3" height="57.8" transform="translate(-53.85 426.93) rotate(-25.86)"/><polygon class="cls-6" points="1203.55 112.96 1200.55 112.96 1200.55 147.12 1176.91 143.18 1176.17 115.42 1173.17 115.5 1173.89 142.67 1124.32 134.41 1123.83 137.37 1173.97 145.73 1175.12 188.97 1178.12 188.89 1176.99 146.23 1203.55 150.66 1203.55 112.96"/><path class="cls-6" d="M745.49,131.91l-20.33-28.79-51.13,13.63,12.36,157.77h37.28l104.38-35.94.19-.07,19.44-13.33.15-.32,9.26,1.77,13.89,25.83,113.04-48.57-10.57-47.25,17.16-10.74,22.1,17.65,37.81-30.38,17.11,29.21,2.59-1.52-17.34-29.6,32.12-25.81,20.78,39.31,2.65-1.4-21.05-39.82,28.1-22.58-13.57-26.01,69.78-39.73-1.48-2.61-72.29,41.16,13.77,26.39-25.73,20.67-50.18-94.91,57.61-40.03-1.71-2.46-59.79,41.54,51.69,97.77-70.87,56.94-21.88-17.47-20.76,12.99,10.49,46.89-108.23,46.5-12.06-22.43,70.66-21.89,21.36-26.2-2.33-1.9-20.79,25.5-71.18,22.05-8.84-1.69,10.61-22.61-7.19-12.73,63.12-8.1,30.79-12.35-1.12-2.79-29.2,11.71-24.17-63.22,26.66-11.57-1.19-2.75-29.29,12.72,25.06,65.54-62.26,7.98-15.57-27.55-44.11-5.53-12.69-30.49-2.77,1.15,13.36,32.09,44.34,5.56,22.85,40.44-10.28,21.9-72.68-13.92-.56,2.95,71.08,13.61-17.06,11.7-80.43,27.69-6.57-18.56,12.03-3.32-15.17-59.62,24.4-2.19-.27-2.99-78.58,7.06-2.95-37.65,66.14-14.32ZM748.29,239.52l-22.26,6.15-15.48-61.31,23.18-2.08,14.56,57.24ZM707.53,184.63l16.35,64.74,13.11-3.62,6.63,18.74-20.44,7.04h-34l-6.63-84.65,24.98-2.25ZM677.22,119.01l46.7-12.45,16.51,23.38-61.31,13.28-1.9-24.21Z"/><path class="cls-6" d="M158.38,367.65l-.63-2.93-44.22,9.47-35.43-2.13-3.88,19.97-.59-.04-.24-.02-65.15,16.49-37.32-12.58-10.15,11.2,2.22,2.02,8.83-9.74,36.29,12.23,39.82-10.08-14.45,58.93,2.91.71,14.83-60.48,22.4-5.67-15.63,80.45,2.95.57,15.7-80.83,30.57,2.05-21.21,93.63,2.93.66,21.32-94.09,24.19,1.62.2-2.99-23.72-1.59,3.97-17.52,43.48-9.31ZM77.24,392.23l3.31-17.02,31.25,1.88-3.89,17.19-30.66-2.05Z"/><polygon class="cls-6" points="234.4 377.06 232.17 355.38 313.13 337.88 312.49 334.94 228.91 353.01 231.11 374.34 145.88 381.94 146.14 384.93 234.4 377.06"/><path class="cls-6" d="M1009.22,383.66l2.83-.99-41.27-117.75-2.83.99,11.41,32.56-19.61,7.66-12.42-31.82-2.79,1.09,12.42,31.82-17.01,6.65-12.09-32.78-2.81,1.04,28.37,76.89,2.81-1.04-8.89-24.1,17.79-5.73,10.92,27.99-19.42,9.15,1.28,2.71,19.24-9.06,11.47,29.39,2.79-1.09-11.54-29.58,17.38-8.18,11.99,34.2ZM980.35,301.3l5.91,16.88-19.38,6.24-6.05-15.5,19.51-7.62ZM946.29,331.06l-5.3-14.38,17.06-6.67,5.98,15.33-17.74,5.72ZM978.76,354.85l-10.78-27.63,19.28-6.21,8.98,25.61-17.47,8.23Z"/><polygon class="cls-6" points="1042.14 616.1 1041.22 613.25 1023.81 618.86 1009.84 633.14 947.79 650.4 947.52 650.48 934.41 660.33 895.65 669.78 895.45 669.83 871.15 683.24 872.6 685.87 896.55 672.65 935.72 663.09 948.87 653.22 974.62 646.05 977.61 660.74 980.55 660.14 977.52 645.25 1009.64 636.31 1013.93 649.74 1016.79 648.82 1012.34 634.88 1025.44 621.48 1042.14 616.1"/><path class="cls-6" d="M811.57,866.94l93.02-88.15-2.06-2.18-44.42,42.1-30.15-29.67,37.43-37.82,20.52-10.04-1.32-2.7-20.74,10.15-.23.11-68.32,69.03,25.39,94.78-42.56,20.49,1.3,2.7,44.8-21.57-12.66-47.23ZM825.85,791.17l30.08,29.61-45.24,42.87-12.05-44.99,27.21-27.49Z"/><polygon class="cls-6" points="969.41 1011.25 953.34 1038.66 953.34 1064.27 944.29 1085.83 947.05 1086.99 956.34 1064.87 956.34 1039.47 972 1012.77 969.41 1011.25"/><polygon class="cls-6" points="963.49 1085.4 1076.01 1117.36 1076.01 1052.01 1073.01 1052.01 1073.01 1113.39 962.4 1081.98 957.02 1088.64 959.35 1090.52 963.49 1085.4"/><polygon class="cls-6" points="587.28 1240.42 562.36 1217.48 573.29 1207.77 571.3 1205.53 560.14 1215.44 553.88 1209.67 566.61 1201.63 565.01 1199.1 548.96 1209.22 587.42 1244.63 598.96 1232.47 596.79 1230.4 587.28 1240.42"/><path class="cls-6" d="M1715.13,1336.41h-22.92l-22.57,15.42-34.27-5.95-.26-.05-58.65,10.49-19.82-22.55h-11.75v3h10.39l20.04,22.8,10.46-1.87-.98,10.68,102.59,32.41,1.04.33,10.56-14.65h62.17v-29.49l-45.72-20.42-.29-.13ZM1758.15,1383.46h-60.71l-10.19,14.13-99.25-31.36.84-9.09,46.27-8.27,35.21,6.12,22.81-15.58h21.36l43.65,19.5v24.55Z"/></g><g id="größere_Straßen"><path class="cls-4" d="M1886.91,1046.69l35.82-29.97,131.24-207.46.17-.27,35.42-97.4,60.09-40.06,126.74-16.71-.78-5.95-127.43,16.8-.69.09-20.81,13.87-24.65-35.36v-25.38l-18.09-35.4-56.93,6.12-12.78-107.81-9.89-33.69-38.06-28.55-15.92-50.08,31.63-13.38,39.49,50.7,61.41,27.59,41.6,50.77h60.7v-6h-57.86l-40.69-49.66-61.34-27.56-41.41-53.16-32.94,13.94,15.65-66.32,31.52-93.12,43.82,15.07,1.67.58,85.49-77.35-13.64-90.5-39.23-36.43-19.29-63.66-5.74,1.74,19.76,65.21,38.88,36.1,12.85,85.25-80.48,72.81-284.67-97.88-50.99-79.89-5.06,3.23,51.55,80.77.56.88,17.83,6.13-42.97,135.62-127.93-32.58-1.48,5.81,128.55,32.74,6.63,114.04-65.86-10.54-98.16-29.05-77.41-67.19,31.82-59.69,35.51,8.92-12.76,39.51,5.71,1.84,14.73-45.61-40.76-10.24,114.68-308.91-5.62-2.09-94.37,254.19-74.77-26.62,35-92.13,25.38-3.75-.88-5.94-27.05,4-54.88,5.26h-58.26l-19.27,6.09-23.76,24.97-18.33,7.58-12.89,43.59-51.21,43.19,10.73,33.31-45.72-4.96-67.31-1.06-26.36,7.38-21.12-47.52,54.25-26.19,56.62-5.17-.54-5.97-57.16,5.21-.54.05-149.59,72.22-60.8-11.17-43.13-101.93-171.12,58.16,70.05,177.43-39.65,21.74-320.68,15.07-1.79.08-30.47,63.71-114.1,43.05-19.23,47.81-127.16,49.19-36.34-32.71,17.75-117.29,23.93-29.51-9.46-40.78,161.67-39.59-1.43-5.83-161.6,39.57-31.15-134.22-.06-.25L58.01,41.35l18.23-75.51-5.83-1.41-18.69,77.42,61.84,148.22,41.25,177.75-23.11,28.5-17.41,115-35.31-31.77-25.68-9.19-160.87-116.05-3.51,4.87,161.22,116.3.34.25,25.37,9.08,76.99,69.29,14.52,34.32,47.05,97.41,20.3,44.69-107.23,54.02-81.75,42.53H-3.74l-37.9-15.9-.28-.12-78.58-15.51-1.16,5.89,77.98,15.4,38.73,16.25h44.23l-76.47,77.32h-64.67v6H-34.68l82.95-83.87,81.95-42.63,105.42-53.11v99.27l28.25,174.05,8.32,30.04,42.62,48.12,64.83,23.33,50.25,35.33,33.21,20.81,56.74,16.51,30.02-11.01,13.46,28.96,195.7,189.63-71.71,109.32,5.02,3.29,74.43-113.46-.1-.1,87.05-151.25.19-.34,5.52-20.42,128.2,26.82,55.17-18.39,62.35-87.82,129.86,64.86v69.63l-40.31,53,13.16,76.95,5.91-1.01-12.72-74.38,39.96-52.53v-70.98l49.58-8.57,165.8-96.27,74.58-15.91,201.24-21.2,12.91,29.97v110.24l27.1,48.39-17.68-12.07h-67.14l-125.58,39.49-.75.24-32.75,34.91,4.38,4.11,31.68-33.76,123.96-38.98h64.37l26.12,17.83,2.02,3.6.65-.95,69.92,72.56,57.68,114.96,5.36-2.69-57.89-115.36-.21-.41-71.41-74.1,77.48-112.91,42.61-11.57,28.56,24.01h36.74l-.15.91,59.4-13.56,92.96,1.81,75.22-26.69-2.01-5.65-74.2,26.33-92.24-1.8h-.37s-51.46,11.74-51.46,11.74l4.64-29-51.57-3.22-63.92-2.39-28.29-12,6.1-55.79,42.46-4.47ZM1735.95,1056.56l-54.51-126.56,112.68-175.71,27.83,20.5,86.78,86.78v26.71l-37.39,49.54.94,44.2-32.23,63.56-104.1,10.97ZM1283.9,767.71l-3.73,43.19h-29.13l-31.21,84.53-28.89-3.75,19.45-127.34,73.52,3.37ZM1190.02,897.61l33.77,4.39,31.42-85.1h30.45l4.23-48.91,38.12,1.75.27-5.99-37.87-1.74.76-8.83,24.55-32.49h63.4l112.72-58.23-11.81,44.91v67.8l-19.3,49.38,27.6,80.47-9.92,48.05,6.69,22.77-41.23,12.56-.33.1-94.44,54.6-134.83,26.38-36.61-60.75v-30.26l12.35-80.87ZM1490.85,974.09l-6.25-21.28,9.94-48.19-27.42-79.94,18.91-48.39v-68.16l35.04-133.3.04-.17,7.97-55.86,60.21,54.54-50.43,47.75,26.95,58.7,11.72,86.53,36.17,49.16,59.83,112.13-104.98,22.79-.12.03-77.59,23.64ZM1861.02,349.54l-32.96-13.34-87.89,43.61-6.49-111.69,133.72,21.63,92.59,8.49-15.6,66.09-83.38-14.79ZM1828.31,342.78l31.04,12.56,85,15.08,15.52,48.83-199.24,49.44-19.72-82.54,87.4-43.37ZM1786.4,602.33l-139.9-75.27,31.99-30.55,77.74-20.5,30.18,126.32ZM1991.31,599.17l22.8,97.6v63.57l-71.61-22.92-25.51,8.14-34.42,42.93-22.2-6.2-10.88,11.55-23.45-23.45-.16-.16-55.24-40.7-41.44-37.54,37.47-41.93.48-.54,11.66-44.47,9.45,5.09,15.82,66.22,5.84-1.39-15.42-64.53,64.16-13.42,132.65,2.15ZM1641.93,531.41l131.44,70.72-11.66,44.47-36.96,41.36-126.63-114.72,43.81-41.84ZM1720.75,692.44l-104.27,116.7-33.2-45.12-11.57-85.46-.06-.44-25.53-55.61,47.65-45.12,126.99,115.04ZM1619.89,814.33l105.31-117.86,41.52,37.61.11.1,22.45,16.54-110.99,173.07-58.41-109.46ZM2096.03,620.34v25.82l25.65,36.8-37.09,24.72-35.87,98.64-130.57,206.39-33.69,28.2-37.3,3.93,31.15-61.44-.93-43.62,37.35-49.49v-31.21l-61.01-61.01,8.51-9.04,22.53,6.29,35.76-44.61,21.96-7,77.61,24.84v-72.48l-22.71-97.25,83.08-8.93,15.56,30.44ZM2008.3,482.76l12.74,107.49-27.48,2.95-135.14-2.19h-.33s-64.98,13.59-64.98,13.59l-31.08-130.09,201.02-49.88,36.1,27.08,9.16,31.05ZM1992.44,201.33l-30.82,91.04-93.36-8.55-133.88-21.66,42.74-134.87,215.33,74.04ZM1539.66,157.75l-19.32,52.04-32.18,60.37-45.26-39.28,10.83-14.01,4.04-67.12,7.08-18.64,74.81,26.64ZM1419.62,251.16l-37.33-30.76-37.2-13.07,40.33-80.79,73.39,3.55-6.82,17.95-.16.43-3.98,66.19-28.23,36.5ZM1444.69,38.94l50.59-4.84-34.23,90.09-72.71-3.51,11.85-23.73-9.89-58.01h54.38ZM1267.78,160.35l49.5-41.75,12.59-42.56,16.86-6.98,23.57-24.78,14.07-4.44,9.58,56.19-54.57,109.3-24.94-8.76-.32-.11-36.03-4.07-10.32-32.04ZM1159.3,191.66l66.02,1.02,50.17,5.45h0s37.28,4.21,37.28,4.21l66.52,23.37,36.65,30.2-13.74,17.76-34.92,24.83h-39.67l-78.93,28.46-92.84,20.72-22.02-148.89,25.47-7.13ZM875.6,322.32l40.4-37.61,141.22-44.53,51.73-34.41,19.06-5.34,21.98,148.57-182.65,40.76-10.83-36.04h-174.63l-7.86-19.51,39.34-21.58,62.23,9.68ZM906.79,80.05l42.21,99.77,65.91,12.11,90.73-43.8,20.69,46.54-19.91,5.58-51.81,34.46-141.05,44.48-.65.2-39.26,36.55-58.67-9.13-68.07-172.44,159.88-54.33ZM172.86,585.98l-13.54-32.01,128.42-49.68,19.22-47.79,112.76-42.55,1.13-.42,29.96-62.65,317.45-14.92,9.57,23.76h174.21l11.15,37.11,188.18-42,49.32,146.97,5.69-1.91-49.12-146.37,92.93-20.74.19-.04,78.3-28.23h36.18l-6.91,56.03,22.53,45.17,5.37-2.68-21.73-43.56,6.94-56.29,35.35-25.13,32.81-42.42,127.55,110.71.49.43,99.59,29.48.19.05,67.95,10.87,19.83,83-78.62,20.73-.75.2-81.79,78.11-64.26-58.22-.77-1.72,41.29-17.62-2.36-5.52-41.39,17.67-59.5-132.74-5.48,2.45,59.45,132.65-8.53,3.64h-80.27v6h81.5l9.76-4.17.72,1.6-8.59,60.25-21.33,81.15-116.23,60.04h-64.93l-27.39,36.25-.93,10.79-96.55-4.42-4.46,53.53-32.72-.76-4.49-84.2,12.83-11.57,76.18-111.64,14.3-19.46-54.43-82.89-5.02,3.29,52.14,79.4-11.86,16.14-75.87,111.18-45.58,41.11-12.82,24.49-15.42-8.12-43.27-195.43,71.03-18.24-1.49-5.81-320.95,82.4-1.19.3-10.9,18.07-30.14,4.83-24.46-5.18-43.97,13.43-141.09-13.32-.41-.04-71.95,13.07-.16.03-221.42,66.31-20.44-44.99-46.99-97.27ZM1144.81,812.43l-60.29,132.97-.39.87,17.06,88.01v14.72h-72.82l-72.27-50.97,107.74-147.62,49.89-95.25,26.75-24.13,4.34,81.4ZM907.43,1071.4l19.26-33.09,25.86-35.44,73.91,52.12h74.72v76.51l-193.75-60.11ZM893.83,1082.85l-39.38-24.21,2.24-16.8,42.33,32.1-5.19,8.91ZM683.71,736.71l-4.92-69.31,40.77-12.45,24.03,5.09,33.99-5.44,11.07-18.35,54.13-13.9,11.86,58.84,14.49,5.54,3.6,26.12,32.46,76.4,73.99,43.91-90.45,87.36-45.64,23.8-30.89,42.11-21.7-25.78-43.89-134.29-6.53-51.69-25.89-15.91v-30.4l-30.48,8.35ZM1031.58,573.87l43.83,197.95,17.89,9.42-34.45,65.82-13.44,18.41-135.46-80.38-31.38-73.86-3.98-28.85-14.72-5.63-11.27-55.91,182.97-46.98ZM847.11,948.98l44.79-23.35.38-.2,92.25-89.11,57.32,34.02-120.11,164.57-13.03,22.37-25.54-19-8.53,9.65-29.49-22.36-28.98-34.43,30.93-42.16ZM879.45,1051.57l4.58-5.18,21.66,16.11-3.63,6.23-22.62-17.15ZM848.31,1236.91l-86.1,149.6-193.91-187.91-15.32-32.96-33.35,12.23-54.04-15.73-32.3-20.23-50.84-35.75-64.14-23.08-40.68-45.93-7.83-28.23-28.15-173.41v-101.42l221.47-66.33,70.98-12.9,138.74,13.1,5.42,76.46,29.95-8.21v25.89l26.3,16.16,6.25,49.4,44.43,135.94,55.62,66.09.22.26,10.19,7.72-3.21,24.04,42.82,26.33-4.18,7.17-38.32,141.69ZM1039.03,1222.16l-51.77,17.26-126.27-26.42,31.22-115.45,12.12-20.82,195,60.5-60.3,84.94ZM1530.16,1078.25l-75.98,16.19-165.69,96.21-50.03,8.65-131.28-65.56v-100.02l-16.8-86.7,59.38-130.96,39.16.91,4.45-53.4,10.98.5-32.64,213.73-.03,32.6,39.64,65.77,139.45-27.28.49-.1,94.71-54.75,124-37.77,106.32-23.09,53.43,124.04-199.54,21.02ZM1971.26,1154.48h-33.31l2.45-26.51,34.76,2.17-3.89,24.34ZM1930.25,1127.34l4.15.26-2.21,23.9-25.73-21.64-47.77,12.97-77.38,112.77-30.22-53.96v-95.18l83.32,5.35,30.89,13.1,64.94,2.43ZM1832.45,1105.67l-81.36-5.23v-8.72l-12.66-29.39,99.91-10.53-5.89,53.86Z"/></g><g id="Autobahn_große_Straße"><path class="cls-5" d="M2103.99,861.1l-482.61-312.94-47.17-61.71-67.13-145.49,28.43-25.99,18.01-43.36,37.23,14.67,34.49-124.18,61.86-54.13,21.97-68.1,105.47-66.33-6.39-10.16-105.22,66.17-116.44-26.36-47.2,14.85,32.2-113.21-11.54-3.28-38.29,134.62,65.34-20.56,109.3,24.75-19.6,60.77-62.06,54.3-31.89,114.8-35.8-14.1-21.5,51.79-65.1,59.54-52.27,30.93h-26.88l-63.96,47.18-55.64-85.52-14.15-71.82-15.41-88.08-4.43-89.73-13.72-64.03-25.93-28.29-106.58-71.21-6.67,9.98,105.38,70.41,22.75,24.82,12.83,59.89,4.42,89.5,15.55,88.88,14.63,74.29,56.35,86.61-204.94,79.58v72.85l-45.19,30.81-103.77,26.5-106.92,61.26-.62.36-105.01,99.48-33.28,17.17-170.6,67.39c1.52-6.43,2-13.85-1.47-19.27-2.05-3.19-6.25-6.97-14.61-6.76-4.69.11-8.21,1.43-10.84,3.17l-7.79-116.32-52.87-164.95-126.77-264.54L302.07,8.79l-.04-.74-23.33-74.23-11.45,3.6,22.89,72.83,19.98,330.77,127.43,265.92,52.17,162.77,7.99,119.34c-3.4-1.86-7.32-2.8-11.62-2.76-7.72.1-11.78,3.9-13.82,7.08-6.46,10.04-1.32,27.98,2.26,37.66l-167.18,66.04-49.15,6.41L2.26,949.7l-79.69-49.24-6.31,10.21L-2.26,961.01l258.99,54.43,1,.21,52.64-6.87,162.71-64.28c-1.12,6.74-.36,12.23,2.29,16.34,2.13,3.32,6.52,7.27,15.3,7.27h0c1.52,0,2.99-.24,4.4-.69l-6.32,53.65-48.7,101.54-69.65,95.63-59.87,51.61-100.22,52.2-.61.32-124.47,106.54,7.8,9.12,123.42-105.64,100.23-52.2.62-.32,61.45-52.97.52-.45,71.11-97.64,50.04-104.33,7.78-66.03c3.31,2.38,8.09,4.26,14.99,4.26.58,0,1.18-.01,1.79-.04,6.99-.31,10.59-3.93,12.38-6.91,3.46-5.76,3.42-14.39-.14-26.37-1-3.37-2.13-6.48-3.12-8.99l177.44-70.09,35.6-18.34,105.2-99.67,104.88-60.09,104.23-26.61,52.17-35.57v-70.98l199.63-77.52.81,1.25.86-.63,18.31,19.27,90.81,34.84-19.75,51.23-52.17,81.92-22.37,82-.04.14-31.01,140.66-.17.77,4.44,99.91-13.38,125.97,12.1,32.67,217.52,184.23,17.22,23.3v25.3l-19.84,37.47-4.5,83.33,11.98.65,4.35-80.69,20-37.77v-32.23l-20.4-27.6-216.18-183.09-10.03-27.08,13.18-124.07-4.41-99.24,30.78-139.6,21.85-80.1,51.83-81.4,22.63-58.69,8.1-75.2-27.04-33.05,48.74-28.85,30.26-27.67,65.81,142.62.28.6,49.24,64.42,483.11,313.27,91.33,97.93,8.78-8.18-91.83-98.47-.5-.54ZM514.45,895.26c.88-1.19,2.36-2.57,6.04-2.65,2.25-.03,3.67.37,4.23,1.24,1.35,2.1.97,9.52-2.96,18.53l-8.93,3.53c-1.25-7.2-1.58-16.32,1.62-20.65ZM482.36,899.86c.32-.5.98-1.53,3.87-1.56,3.42-.04,6.04.96,8.13,3.17,2.61,2.75,4.09,7,4.92,11.19l.56,8.38-14.13,5.58c-3.49-9.68-6.27-22.21-3.35-26.76ZM490.68,956.12h0c-2.7,0-4.46-.59-5.21-1.76-1.93-2.99-.45-10.2,1.46-15.32l11.6-4.58c-.69,8.29-2.54,17.33-5.84,20.69-.84.86-1.46.98-2,.98ZM527.11,949.56c-.21.35-.61,1.01-2.64,1.1-7.97.35-10.1-2.54-10.8-3.49-3.28-4.45-2.18-12.93-.87-18.36l10.23-4.04c4.97,12.38,5.7,22.1,4.08,24.79ZM1426.72,504.4l-86.6-33.23-15.41-16.22,60.43-44.58h21.74l26.48,32.37-6.64,61.67Z"/></g><g id="Standorte"><g id="St._Antonius_Frankenberg"><path class="cls-1" d="M2077.41-72.94l-2.93-.62-26.15,122.88-84.67,1.52v-4.07c0-6.6-5.4-12-12-12h-186.29c-6.6,0-12,5.4-12,12v10.79c0,6.6,5.4,12,12,12h186.29c6.6,0,12-5.4,12-12v-3.72l87.11-1.58,26.64-125.18Z"/><path class="cls-3" d="M1776.02,48.28c-.05.08-.1.14-.15.18-.05.04-.12.06-.21.06-.09,0-.2-.04-.32-.14-.12-.09-.27-.19-.46-.3-.18-.11-.41-.21-.66-.3-.26-.09-.57-.14-.94-.14-.35,0-.65.05-.92.14s-.49.22-.67.38c-.18.16-.31.35-.4.56-.09.22-.14.45-.14.7,0,.32.08.58.24.79.16.21.37.39.62.54.26.15.55.28.88.39.33.11.66.22,1.01.34s.68.25,1.01.4c.33.15.62.33.88.56s.47.5.62.82c.16.33.24.72.24,1.2,0,.5-.09.97-.26,1.41-.17.44-.42.82-.75,1.15s-.73.58-1.21.77c-.48.19-1.02.28-1.63.28-.74,0-1.42-.13-2.03-.4-.61-.27-1.13-.63-1.56-1.09l.45-.74c.04-.06.09-.11.16-.15s.13-.06.2-.06c.11,0,.24.06.38.18s.32.25.54.4c.22.14.48.28.78.4.31.12.68.18,1.12.18.37,0,.7-.05.98-.15.29-.1.53-.24.73-.43s.35-.4.46-.66.16-.54.16-.86c0-.35-.08-.63-.24-.85-.16-.22-.36-.41-.62-.56s-.55-.28-.88-.38-.66-.21-1.01-.32-.68-.24-1.01-.38-.62-.33-.88-.56c-.26-.23-.46-.52-.62-.86s-.24-.77-.24-1.28c0-.41.08-.8.24-1.18.16-.38.38-.71.68-1.01s.67-.53,1.11-.7.95-.26,1.52-.26c.64,0,1.22.1,1.75.3.53.2.99.5,1.38.88l-.38.74Z"/><path class="cls-3" d="M1780.86,58.08c-.64,0-1.13-.18-1.48-.54-.34-.36-.52-.87-.52-1.54v-4.96h-.98c-.08,0-.16-.03-.22-.08s-.09-.13-.09-.24v-.57l1.33-.17.33-2.5c.01-.08.04-.15.1-.2s.13-.08.22-.08h.72v2.79h2.32v1.03h-2.32v4.86c0,.34.08.59.25.76s.38.25.64.25c.15,0,.28-.02.39-.06.11-.04.2-.08.28-.13.08-.05.15-.09.2-.13.06-.04.11-.06.15-.06.07,0,.14.04.2.14l.42.68c-.25.23-.54.41-.89.54s-.7.2-1.07.2Z"/><path class="cls-3" d="M1783.9,57.08c0-.14.03-.27.08-.39.05-.12.12-.23.21-.32.09-.09.19-.16.32-.22.12-.05.25-.08.39-.08s.27.03.39.08c.12.05.23.13.32.22s.16.2.21.32c.05.12.08.25.08.39s-.03.28-.08.4c-.05.12-.12.23-.21.32-.09.09-.2.16-.32.21-.12.05-.25.08-.39.08s-.27-.03-.39-.08-.23-.12-.32-.21c-.09-.09-.16-.2-.21-.32-.05-.12-.08-.25-.08-.4Z"/><path class="cls-3" d="M1800.5,57.96h-1.2c-.14,0-.25-.04-.34-.1-.09-.07-.15-.16-.19-.26l-1.07-2.77h-5.14l-1.07,2.77c-.04.1-.1.18-.19.26-.09.07-.2.11-.34.11h-1.2l4.58-11.46h1.58l4.58,11.46ZM1792.99,53.7h4.28l-1.8-4.66c-.12-.29-.23-.65-.34-1.08-.06.22-.12.42-.17.6-.06.18-.11.35-.16.48l-1.8,4.66Z"/><path class="cls-3" d="M1801.73,57.96v-8.1h.85c.2,0,.33.1.38.29l.11.88c.35-.39.75-.7,1.18-.94.43-.24.94-.36,1.51-.36.44,0,.83.07,1.17.22.34.15.62.35.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.82.1-1.18.3s-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M1813.08,58.08c-.64,0-1.13-.18-1.48-.54s-.52-.87-.52-1.54v-4.96h-.98c-.08,0-.16-.03-.22-.08s-.09-.13-.09-.24v-.57l1.33-.17.33-2.5c.01-.08.05-.15.1-.2s.13-.08.22-.08h.72v2.79h2.32v1.03h-2.32v4.86c0,.34.08.59.25.76.17.17.38.25.64.25.15,0,.28-.02.39-.06.11-.04.2-.08.28-.13.08-.05.15-.09.2-.13.06-.04.11-.06.15-.06.08,0,.14.04.2.14l.42.68c-.25.23-.54.41-.89.54s-.7.2-1.07.2Z"/><path class="cls-3" d="M1819.87,49.72c.59,0,1.13.1,1.6.3.48.2.88.48,1.22.84.33.36.59.8.77,1.32.18.51.27,1.09.27,1.72s-.09,1.22-.27,1.73-.43.95-.77,1.31c-.33.36-.74.64-1.22.84-.48.19-1.01.29-1.6.29s-1.13-.1-1.6-.29c-.48-.2-.88-.47-1.22-.84-.34-.36-.59-.8-.78-1.31-.18-.51-.27-1.09-.27-1.73s.09-1.21.27-1.72c.18-.52.44-.95.78-1.32.34-.36.74-.64,1.22-.84.48-.2,1.01-.3,1.6-.3ZM1819.87,56.96c.8,0,1.4-.27,1.79-.8.39-.54.59-1.28.59-2.24s-.2-1.72-.59-2.26c-.39-.54-.99-.81-1.79-.81-.41,0-.76.07-1.06.21-.3.14-.55.34-.75.6-.2.26-.35.58-.45.96s-.15.81-.15,1.29.05.91.15,1.29.25.7.45.96c.2.26.45.46.75.6.3.14.65.21,1.06.21Z"/><path class="cls-3" d="M1825.49,57.96v-8.1h.85c.2,0,.33.1.38.29l.11.88c.35-.39.75-.7,1.18-.94.43-.24.94-.36,1.51-.36.44,0,.83.07,1.17.22.34.15.62.35.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.82.1-1.18.3s-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M1836.29,47.31c0,.14-.03.27-.08.39-.06.12-.13.23-.22.32-.09.09-.2.17-.32.22-.12.05-.25.08-.39.08s-.27-.03-.39-.08c-.12-.05-.23-.13-.32-.22-.09-.09-.17-.2-.22-.32-.05-.12-.08-.25-.08-.39s.03-.27.08-.4.13-.24.22-.33c.09-.09.2-.17.32-.22s.25-.08.39-.08.27.03.39.08c.12.05.23.13.32.22.09.09.17.2.22.33s.08.26.08.4ZM1835.97,49.85v8.1h-1.42v-8.1h1.42Z"/><path class="cls-3" d="M1839.71,49.85v5.17c0,.61.14,1.09.42,1.42.28.34.71.5,1.28.5.42,0,.81-.1,1.18-.3.37-.2.71-.47,1.02-.82v-5.98h1.42v8.1h-.85c-.2,0-.33-.1-.38-.3l-.11-.87c-.35.39-.75.7-1.18.94-.44.24-.94.36-1.5.36-.44,0-.83-.07-1.17-.22s-.62-.35-.85-.62c-.23-.27-.4-.59-.52-.97-.11-.38-.17-.8-.17-1.26v-5.17h1.42Z"/><path class="cls-3" d="M1852.02,51.19c-.06.12-.16.18-.3.18-.08,0-.17-.03-.27-.09s-.23-.12-.37-.2c-.15-.07-.32-.14-.52-.2-.2-.06-.44-.09-.72-.09-.24,0-.46.03-.65.09-.19.06-.36.15-.49.25-.14.11-.24.23-.31.37-.07.14-.11.29-.11.46,0,.21.06.38.18.52.12.14.28.26.48.36.2.1.42.19.67.27.25.08.51.16.77.25.26.09.52.19.77.29.25.11.47.24.67.4s.36.36.48.59c.12.23.18.51.18.84,0,.37-.07.72-.2,1.04-.13.32-.33.59-.59.82-.26.23-.58.42-.96.55-.38.13-.82.2-1.31.2-.57,0-1.08-.09-1.54-.28-.46-.18-.85-.42-1.17-.71l.34-.54c.04-.07.09-.12.15-.16.06-.04.14-.06.23-.06s.2.04.3.11c.11.07.24.16.39.25s.34.17.55.25.49.11.81.11c.28,0,.52-.04.73-.11s.38-.17.52-.29.24-.26.31-.42c.07-.16.1-.33.1-.51,0-.22-.06-.41-.18-.56-.12-.15-.28-.27-.48-.38s-.42-.19-.68-.27c-.25-.08-.51-.16-.78-.24-.26-.09-.52-.18-.78-.29-.25-.11-.48-.25-.68-.41s-.36-.37-.48-.61-.18-.54-.18-.88c0-.31.06-.61.19-.89s.31-.54.56-.75c.25-.22.55-.39.9-.52s.77-.19,1.22-.19c.53,0,1.01.08,1.44.25s.79.4,1.1.69l-.32.52Z"/><path class="cls-3" d="M1853.9,56.97c0-.12.02-.24.07-.35.05-.11.11-.21.19-.29s.18-.15.3-.2c.12-.05.25-.07.38-.07.16,0,.3.03.43.09.12.06.23.14.31.24.08.1.15.22.19.36.04.13.06.28.06.44,0,.24-.03.49-.1.75-.07.26-.17.51-.3.77-.13.25-.29.5-.48.74s-.4.46-.64.66l-.24-.23c-.07-.06-.1-.14-.1-.22,0-.07.04-.14.11-.22.05-.06.12-.14.2-.24s.17-.21.25-.34.16-.27.24-.42.12-.32.16-.5h-.1c-.14,0-.26-.02-.38-.07-.11-.05-.21-.12-.29-.2s-.15-.19-.19-.31c-.04-.12-.07-.25-.07-.4Z"/><path class="cls-3" d="M1868.09,46.49v1.26h-5.5v4.01h4.7v1.26h-4.7v4.93h-1.56v-11.46h7.06Z"/><path class="cls-3" d="M1869.37,57.96v-8.1h.82c.15,0,.26.03.32.09.06.06.1.16.12.3l.1,1.26c.28-.57.62-1.01,1.03-1.32.41-.32.89-.48,1.44-.48.22,0,.43.03.61.08.18.05.35.12.5.21l-.18,1.06c-.04.13-.12.2-.25.2-.07,0-.19-.03-.34-.08-.16-.05-.37-.08-.65-.08-.5,0-.91.14-1.24.43-.33.29-.61.71-.84,1.26v5.16h-1.42Z"/><path class="cls-3" d="M1881.47,57.96h-.63c-.14,0-.25-.02-.34-.06-.08-.04-.14-.13-.17-.27l-.16-.75c-.21.19-.42.36-.62.52-.2.15-.42.28-.64.38-.22.1-.46.18-.72.24s-.54.08-.84.08-.61-.04-.88-.13c-.28-.09-.51-.22-.72-.4-.2-.18-.36-.4-.48-.67-.12-.27-.18-.59-.18-.96,0-.32.09-.63.26-.93s.46-.56.85-.79c.39-.23.91-.42,1.54-.57s1.41-.22,2.33-.22v-.64c0-.63-.13-1.11-.4-1.44-.27-.32-.67-.49-1.2-.49-.35,0-.64.04-.88.13s-.44.19-.62.3c-.17.11-.32.21-.45.3s-.25.13-.37.13c-.1,0-.18-.03-.25-.08s-.13-.11-.17-.19l-.26-.46c.45-.43.93-.75,1.45-.97.52-.21,1.09-.32,1.72-.32.45,0,.86.07,1.21.22.35.15.65.36.89.62.24.27.42.59.54.97.12.38.18.79.18,1.25v5.18ZM1877.77,57.08c.25,0,.48-.03.69-.08.21-.05.4-.12.59-.22.18-.09.36-.21.53-.34s.33-.29.49-.46v-1.67c-.66,0-1.21.04-1.67.12-.46.08-.83.19-1.12.33-.29.13-.5.29-.63.47-.13.18-.2.39-.2.61s.04.4.1.56.16.28.28.38c.12.1.26.17.42.22.16.05.33.07.52.07Z"/><path class="cls-3" d="M1883.63,57.96v-8.1h.85c.2,0,.33.1.38.29l.11.88c.35-.39.75-.7,1.18-.94.43-.24.94-.36,1.51-.36.44,0,.83.07,1.17.22.34.15.62.35.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.82.1-1.18.3s-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M1894.01,46.17v6.94h.37c.11,0,.19-.02.26-.04s.15-.09.23-.18l2.56-2.74c.08-.08.16-.15.24-.21.08-.05.19-.08.32-.08h1.3l-2.98,3.18c-.07.09-.15.17-.22.24-.07.07-.15.13-.24.18.1.06.18.14.26.22.08.08.15.18.22.28l3.17,4h-1.28c-.12,0-.22-.02-.3-.07-.08-.04-.16-.12-.24-.21l-2.66-3.32c-.08-.11-.16-.19-.24-.22-.08-.03-.2-.05-.36-.05h-.4v3.87h-1.43v-11.78h1.43Z"/><path class="cls-3" d="M1903.64,49.72c.49,0,.93.08,1.34.24.41.16.77.4,1.06.7.3.31.53.69.7,1.14.17.45.25.96.25,1.54,0,.22-.02.37-.07.45s-.14.11-.27.11h-5.39c.01.51.08.96.21,1.34s.3.69.53.95c.22.25.49.44.8.57.31.12.66.19,1.04.19.36,0,.67-.04.92-.12s.48-.17.67-.27.34-.19.47-.27.23-.12.32-.12c.12,0,.21.05.27.14l.4.52c-.18.21-.39.4-.63.56-.25.16-.51.29-.79.39-.28.1-.57.18-.87.23-.3.05-.59.08-.89.08-.56,0-1.08-.09-1.55-.28-.47-.19-.88-.47-1.22-.83s-.61-.82-.8-1.36c-.19-.54-.29-1.16-.29-1.86,0-.57.09-1.09.26-1.58.17-.49.42-.92.75-1.28.33-.36.72-.64,1.19-.85.47-.21,1-.31,1.58-.31ZM1903.67,50.77c-.69,0-1.23.2-1.62.6-.4.4-.64.95-.74,1.65h4.41c0-.33-.05-.63-.14-.91-.09-.28-.22-.51-.4-.71-.18-.2-.39-.35-.64-.46-.25-.11-.54-.16-.87-.16Z"/><path class="cls-3" d="M1908.81,57.96v-8.1h.85c.2,0,.33.1.38.29l.11.88c.35-.39.75-.7,1.18-.94.43-.24.94-.36,1.51-.36.44,0,.83.07,1.17.22.34.15.62.35.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.82.1-1.18.3s-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M1917.76,57.96v-11.78h1.43v4.85c.34-.39.72-.7,1.16-.94s.93-.36,1.49-.36c.47,0,.89.09,1.27.26.38.18.7.44.97.79.27.35.47.78.62,1.3.14.51.22,1.11.22,1.78,0,.6-.08,1.15-.24,1.67-.16.51-.39.96-.69,1.34-.3.38-.67.67-1.1.89s-.92.32-1.47.32-.97-.1-1.33-.3c-.37-.2-.68-.49-.96-.85l-.07.74c-.04.2-.17.3-.37.3h-.92ZM1921.37,50.86c-.46,0-.87.11-1.22.32-.35.21-.67.51-.96.9v3.92c.26.35.54.6.85.74.31.14.66.22,1.04.22.76,0,1.34-.27,1.74-.81.41-.54.61-1.31.61-2.3,0-.53-.05-.98-.14-1.36-.09-.38-.23-.69-.4-.93-.18-.24-.39-.42-.65-.53-.26-.11-.55-.17-.87-.17Z"/><path class="cls-3" d="M1929.86,49.72c.49,0,.93.08,1.34.24.41.16.77.4,1.06.7.3.31.53.69.7,1.14.17.45.25.96.25,1.54,0,.22-.02.37-.07.45s-.14.11-.27.11h-5.39c.01.51.08.96.21,1.34s.3.69.53.95c.22.25.49.44.8.57.31.12.66.19,1.04.19.36,0,.67-.04.92-.12s.48-.17.67-.27.34-.19.47-.27.23-.12.32-.12c.12,0,.21.05.27.14l.4.52c-.18.21-.39.4-.63.56-.25.16-.51.29-.79.39-.28.1-.57.18-.87.23-.3.05-.59.08-.89.08-.56,0-1.08-.09-1.55-.28-.47-.19-.88-.47-1.22-.83s-.61-.82-.8-1.36c-.19-.54-.29-1.16-.29-1.86,0-.57.09-1.09.26-1.58.17-.49.42-.92.75-1.28.33-.36.72-.64,1.19-.85.47-.21,1-.31,1.58-.31ZM1929.89,50.77c-.69,0-1.23.2-1.62.6-.4.4-.64.95-.74,1.65h4.41c0-.33-.05-.63-.14-.91-.09-.28-.22-.51-.4-.71-.18-.2-.39-.35-.64-.46-.25-.11-.54-.16-.87-.16Z"/><path class="cls-3" d="M1935.04,57.96v-8.1h.82c.16,0,.26.03.32.09s.1.16.12.3l.1,1.26c.28-.57.62-1.01,1.03-1.32.41-.32.89-.48,1.44-.48.22,0,.43.03.61.08s.35.12.5.21l-.18,1.06c-.04.13-.12.2-.25.2-.08,0-.19-.03-.34-.08-.15-.05-.37-.08-.65-.08-.5,0-.91.14-1.24.43s-.61.71-.84,1.26v5.16h-1.42Z"/><path class="cls-3" d="M1944.21,49.72c.35,0,.68.04.99.12s.58.19.84.34h2.2v.53c0,.18-.11.29-.34.34l-.92.13c.18.35.27.73.27,1.16,0,.39-.08.75-.23,1.08-.15.32-.36.6-.63.83-.27.23-.59.41-.96.53-.37.12-.78.18-1.22.18-.38,0-.74-.04-1.07-.14-.17.11-.3.23-.39.36s-.13.25-.13.37c0,.2.08.35.23.45.15.1.36.17.62.22.26.04.55.07.87.07h1c.34,0,.67.03,1,.09s.62.16.87.29c.26.14.46.32.62.56.15.24.23.54.23.92,0,.35-.09.69-.26,1.02-.17.33-.42.62-.75.88-.33.26-.72.46-1.19.62-.47.15-1,.23-1.59.23s-1.11-.06-1.56-.18-.81-.28-1.11-.47c-.29-.2-.51-.43-.66-.69-.15-.26-.22-.53-.22-.81,0-.4.13-.74.38-1.02.25-.28.6-.5,1.04-.67-.23-.11-.41-.25-.55-.43-.14-.18-.2-.42-.2-.71,0-.12.02-.24.06-.36s.11-.25.2-.37.2-.24.32-.35c.13-.11.28-.21.45-.29-.4-.22-.71-.52-.94-.89-.23-.37-.34-.8-.34-1.3,0-.4.08-.75.23-1.08s.36-.6.64-.82c.27-.23.6-.4.97-.52.38-.12.79-.18,1.24-.18ZM1946.74,58.37c0-.21-.06-.37-.17-.5s-.26-.22-.46-.29c-.19-.07-.41-.12-.66-.15-.25-.03-.51-.05-.79-.05h-.85c-.29,0-.56-.04-.82-.11-.3.14-.55.32-.74.53s-.28.46-.28.75c0,.18.05.35.14.51.09.16.24.29.43.41.19.11.43.21.72.27.29.07.63.1,1.03.1s.73-.04,1.03-.11c.3-.07.56-.17.77-.3.21-.13.37-.29.48-.47s.17-.38.17-.6ZM1944.21,54c.29,0,.54-.04.76-.12.22-.08.41-.19.56-.34s.26-.32.34-.52c.07-.2.11-.42.11-.66,0-.5-.15-.89-.45-1.18-.3-.29-.74-.44-1.32-.44s-1.01.15-1.31.44c-.3.29-.45.69-.45,1.18,0,.24.04.46.12.66.08.2.19.37.34.52s.33.26.55.34.47.12.75.12Z"/></g><g id="St._Marien"><path class="cls-1" d="M2401.99,1566.74l-327.22-295.99v-7.37c0-6.6-5.4-12-12-12h-163.05c-6.6,0-12,5.4-12,12v10.78c0,6.6,5.4,12,12,12h163.05c6.4,0,11.65-5.07,11.97-11.39l325.24,294.2,2.01-2.22Z"/><path class="cls-3" d="M1913.85,1264.97c-.05.08-.1.14-.15.18-.05.04-.12.06-.21.06-.09,0-.2-.04-.32-.14-.12-.09-.27-.19-.46-.3-.18-.11-.41-.21-.66-.3-.26-.09-.57-.14-.94-.14-.35,0-.65.05-.92.14s-.49.22-.67.38c-.18.16-.31.35-.4.56-.09.22-.14.45-.14.7,0,.32.08.58.24.79.16.21.37.39.62.54.26.15.55.28.88.39.33.11.66.22,1.01.34s.68.25,1.01.4c.33.15.62.33.88.56s.47.5.62.82c.16.33.24.72.24,1.2,0,.5-.09.97-.26,1.41-.17.44-.42.82-.75,1.15s-.73.58-1.21.77c-.48.19-1.02.28-1.63.28-.74,0-1.42-.13-2.03-.4-.61-.27-1.13-.63-1.56-1.09l.45-.74c.04-.06.09-.11.16-.15s.13-.06.2-.06c.11,0,.24.06.38.18s.32.25.54.4c.22.14.48.28.78.4.31.12.68.18,1.12.18.37,0,.7-.05.98-.15.29-.1.53-.24.73-.43s.35-.4.46-.66.16-.54.16-.86c0-.35-.08-.63-.24-.85-.16-.22-.36-.41-.62-.56s-.55-.28-.88-.38-.66-.21-1.01-.32-.68-.24-1.01-.38-.62-.33-.88-.56c-.26-.23-.46-.52-.62-.86s-.24-.77-.24-1.28c0-.41.08-.8.24-1.18.16-.38.38-.71.68-1.01s.67-.53,1.11-.7.95-.26,1.52-.26c.64,0,1.22.1,1.75.3.53.2.99.5,1.38.88l-.38.74Z"/><path class="cls-3" d="M1918.69,1274.77c-.64,0-1.13-.18-1.48-.54-.34-.36-.52-.87-.52-1.54v-4.96h-.98c-.08,0-.16-.03-.22-.08s-.09-.13-.09-.24v-.57l1.33-.17.33-2.5c.01-.08.04-.15.1-.2s.13-.08.22-.08h.72v2.79h2.32v1.03h-2.32v4.86c0,.34.08.59.25.76s.38.25.64.25c.15,0,.28-.02.39-.06.11-.04.2-.08.28-.13.08-.05.15-.09.2-.13.06-.04.11-.06.15-.06.07,0,.14.04.2.14l.42.68c-.25.23-.54.41-.89.54s-.7.2-1.07.2Z"/><path class="cls-3" d="M1921.74,1273.77c0-.14.03-.27.08-.39.05-.12.12-.23.21-.32.09-.09.19-.16.32-.22.12-.05.25-.08.39-.08s.27.03.39.08c.12.05.23.13.32.22s.16.2.21.32c.05.12.08.25.08.39s-.03.28-.08.4c-.05.12-.12.23-.21.32-.09.09-.2.16-.32.21-.12.05-.25.08-.39.08s-.27-.03-.39-.08-.23-.12-.32-.21c-.09-.09-.16-.2-.21-.32-.05-.12-.08-.25-.08-.4Z"/><path class="cls-3" d="M1934.74,1270.9c.06.14.11.28.16.43.05-.15.11-.29.17-.43.06-.14.12-.27.2-.41l3.88-7.05c.07-.12.14-.2.22-.22.08-.03.18-.04.32-.04h1.14v11.46h-1.36v-8.42c0-.11,0-.23,0-.36,0-.13.01-.26.02-.39l-3.93,7.17c-.13.24-.32.36-.56.36h-.22c-.24,0-.43-.12-.56-.36l-4.02-7.19c.02.14.03.27.04.41,0,.13.01.26.01.37v8.42h-1.36v-11.46h1.14c.14,0,.25.01.32.04.08.03.15.1.22.22l3.96,7.06c.07.13.14.26.2.4Z"/><path class="cls-3" d="M1949.35,1274.65h-.63c-.14,0-.25-.02-.34-.06-.08-.04-.14-.13-.17-.27l-.16-.75c-.21.19-.42.36-.62.52-.2.15-.42.28-.64.38-.22.1-.46.18-.72.24s-.54.08-.84.08-.61-.04-.88-.13c-.28-.09-.51-.22-.72-.4-.2-.18-.36-.4-.48-.67-.12-.27-.18-.59-.18-.96,0-.32.09-.63.26-.93s.46-.56.85-.79c.39-.23.91-.42,1.54-.57s1.41-.22,2.33-.22v-.64c0-.63-.13-1.11-.4-1.44-.27-.32-.67-.49-1.2-.49-.35,0-.64.04-.88.13s-.44.19-.62.3c-.17.11-.32.21-.45.3s-.25.13-.37.13c-.1,0-.18-.03-.25-.08s-.13-.11-.17-.19l-.26-.46c.45-.43.93-.75,1.45-.97.52-.21,1.09-.32,1.72-.32.45,0,.86.07,1.21.22.35.15.65.36.89.62.24.27.42.59.54.97.12.38.18.79.18,1.25v5.18ZM1945.65,1273.77c.25,0,.48-.03.69-.08.21-.05.4-.12.59-.22.18-.09.36-.21.53-.34s.33-.29.49-.46v-1.67c-.66,0-1.21.04-1.67.12-.46.08-.83.19-1.12.33-.29.13-.5.29-.63.47-.13.18-.2.39-.2.61s.04.4.1.56.16.28.28.38c.12.1.26.17.42.22.16.05.33.07.52.07Z"/><path class="cls-3" d="M1951.51,1274.65v-8.1h.82c.15,0,.26.03.32.09.06.06.1.16.12.3l.1,1.26c.28-.57.62-1.01,1.03-1.32.41-.32.89-.48,1.44-.48.22,0,.43.03.61.08.18.05.35.12.5.21l-.18,1.06c-.04.13-.12.2-.25.2-.07,0-.19-.03-.34-.08-.16-.05-.37-.08-.65-.08-.5,0-.91.14-1.24.43-.33.29-.61.71-.84,1.26v5.16h-1.42Z"/><path class="cls-3" d="M1959.86,1264c0,.14-.03.27-.08.39-.06.12-.13.23-.22.32-.09.09-.2.17-.32.22-.12.05-.25.08-.39.08s-.27-.03-.39-.08c-.12-.05-.23-.13-.32-.22s-.17-.2-.22-.32c-.05-.12-.08-.25-.08-.39s.03-.27.08-.4c.05-.13.13-.24.22-.33.09-.09.2-.17.32-.22.12-.05.25-.08.39-.08s.27.03.39.08c.12.05.23.13.32.22s.17.2.22.33c.06.13.08.26.08.4ZM1959.54,1266.54v8.1h-1.42v-8.1h1.42Z"/><path class="cls-3" d="M1965.26,1266.41c.49,0,.93.08,1.34.24.41.16.77.4,1.06.7.3.31.53.69.7,1.14.17.45.25.96.25,1.54,0,.22-.02.37-.07.45s-.14.11-.27.11h-5.39c.01.51.08.96.21,1.34s.3.69.53.95c.22.25.49.44.8.57.31.12.66.19,1.04.19.36,0,.67-.04.92-.12s.48-.17.67-.27.34-.19.47-.27.23-.12.32-.12c.12,0,.21.05.27.14l.4.52c-.18.21-.39.4-.63.56-.25.16-.51.29-.79.39-.28.1-.57.18-.87.23-.3.05-.59.08-.89.08-.56,0-1.08-.09-1.55-.28-.47-.19-.88-.47-1.22-.83s-.61-.82-.8-1.36c-.19-.54-.29-1.16-.29-1.86,0-.57.09-1.09.26-1.58.17-.49.42-.92.75-1.28.33-.36.72-.64,1.19-.85.47-.21,1-.31,1.58-.31ZM1965.29,1267.46c-.69,0-1.23.2-1.62.6-.4.4-.64.95-.74,1.65h4.41c0-.33-.05-.63-.14-.91-.09-.28-.22-.51-.4-.71-.18-.2-.39-.35-.64-.46-.25-.11-.54-.16-.87-.16Z"/><path class="cls-3" d="M1970.44,1274.65v-8.1h.85c.2,0,.33.1.38.29l.11.88c.35-.39.75-.7,1.18-.94.43-.24.94-.36,1.51-.36.44,0,.83.07,1.17.22.34.15.62.35.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.82.1-1.18.3s-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M1978.92,1273.66c0-.12.02-.24.07-.35.04-.11.11-.21.19-.29.08-.08.18-.15.3-.2.12-.05.25-.07.38-.07.16,0,.3.03.43.09s.23.14.31.24c.08.1.14.22.19.36.04.13.06.28.06.44,0,.24-.04.49-.1.75-.07.26-.17.51-.3.77-.13.25-.29.5-.48.74s-.4.46-.64.66l-.24-.23c-.07-.06-.1-.14-.1-.22,0-.07.04-.14.11-.22.05-.06.12-.14.2-.24.08-.1.17-.21.25-.34.08-.13.16-.27.24-.42.07-.15.12-.32.16-.5h-.1c-.14,0-.26-.02-.38-.07-.11-.05-.21-.12-.29-.2-.08-.09-.15-.19-.19-.31-.05-.12-.07-.25-.07-.4Z"/><path class="cls-3" d="M1994.02,1263.18v.58c0,.18-.06.35-.17.51l-6.49,9.11h6.54v1.26h-8.58v-.61c0-.16.05-.31.15-.46l6.5-9.14h-6.34v-1.26h8.38Z"/><path class="cls-3" d="M2000.21,1267.88c-.06.12-.16.18-.3.18-.08,0-.17-.03-.27-.09-.1-.06-.23-.12-.37-.2-.15-.07-.32-.14-.52-.2-.2-.06-.44-.09-.72-.09-.24,0-.46.03-.65.09-.19.06-.36.15-.49.25-.14.11-.24.23-.31.37s-.11.29-.11.46c0,.21.06.38.18.52.12.14.28.26.48.36.2.1.42.19.67.27.25.08.51.16.77.25.26.09.52.19.77.29.25.11.47.24.67.4s.36.36.48.59c.12.23.18.51.18.84,0,.37-.07.72-.2,1.04-.13.32-.33.59-.59.82s-.58.42-.96.55-.82.2-1.31.2c-.57,0-1.08-.09-1.54-.28-.46-.18-.85-.42-1.17-.71l.34-.54c.04-.07.09-.12.15-.16.06-.04.14-.06.23-.06s.2.04.3.11.24.16.39.25c.15.09.34.17.55.25s.49.11.81.11c.28,0,.52-.04.73-.11s.38-.17.52-.29.24-.26.31-.42c.07-.16.1-.33.1-.51,0-.22-.06-.41-.18-.56-.12-.15-.28-.27-.48-.38s-.42-.19-.68-.27c-.25-.08-.51-.16-.78-.24-.26-.09-.52-.18-.78-.29-.25-.11-.48-.25-.68-.41-.2-.17-.36-.37-.48-.61s-.18-.54-.18-.88c0-.31.06-.61.19-.89.13-.29.32-.54.56-.75.25-.22.55-.39.9-.52.36-.13.76-.19,1.22-.19.53,0,1.01.08,1.44.25.42.17.79.4,1.1.69l-.32.52Z"/><path class="cls-3" d="M2008.05,1267.98c-.04.06-.08.1-.13.14-.04.03-.1.05-.18.05s-.17-.03-.26-.1c-.09-.07-.21-.14-.36-.22-.14-.08-.32-.15-.52-.22-.21-.07-.46-.1-.76-.1-.39,0-.74.07-1.05.21-.3.14-.56.35-.76.61s-.36.59-.46.97c-.1.38-.16.8-.16,1.27s.06.93.17,1.31.27.7.47.96c.2.26.45.46.74.59.29.13.62.2.98.2s.63-.04.86-.12c.22-.08.41-.17.56-.28.15-.1.27-.19.37-.28.1-.08.19-.12.29-.12.12,0,.21.05.27.14l.4.52c-.35.43-.79.75-1.32.95-.53.2-1.09.3-1.67.3-.51,0-.98-.09-1.41-.28s-.81-.46-1.13-.81c-.32-.35-.57-.79-.76-1.31-.18-.52-.28-1.11-.28-1.77,0-.6.08-1.16.25-1.67.17-.51.41-.95.74-1.32.32-.37.72-.66,1.2-.87s1.02-.31,1.63-.31c.56,0,1.07.09,1.5.28.44.18.82.44,1.16.78l-.38.51Z"/><path class="cls-3" d="M2009.99,1274.65v-11.78h1.42v4.77c.35-.37.73-.66,1.15-.88.42-.22.91-.33,1.46-.33.44,0,.83.07,1.17.22.34.15.62.35.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.82.1-1.18.3s-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M2022.17,1266.41c.59,0,1.13.1,1.6.3s.88.48,1.22.84c.33.36.59.8.77,1.32.18.51.27,1.09.27,1.72s-.09,1.22-.27,1.73-.44.95-.77,1.31c-.33.36-.74.64-1.22.84-.48.19-1.01.29-1.6.29s-1.13-.1-1.6-.29c-.48-.2-.88-.47-1.22-.84-.34-.36-.59-.8-.78-1.31s-.27-1.09-.27-1.73.09-1.21.27-1.72c.18-.52.44-.95.78-1.32.34-.36.74-.64,1.22-.84s1.01-.3,1.6-.3ZM2022.17,1273.65c.8,0,1.4-.27,1.79-.8.39-.54.59-1.28.59-2.24s-.2-1.72-.59-2.26c-.4-.54-.99-.81-1.79-.81-.41,0-.76.07-1.06.21s-.55.34-.75.6c-.2.26-.35.58-.45.96s-.15.81-.15,1.29.05.91.15,1.29.25.7.45.96c.2.26.45.46.75.6s.65.21,1.06.21Z"/><path class="cls-3" d="M2027.78,1277.39v-10.85h.85c.2,0,.33.1.38.29l.12.96c.35-.42.74-.76,1.19-1.02.45-.26.96-.38,1.54-.38.46,0,.88.09,1.26.27.38.18.7.44.97.79.27.35.47.78.62,1.3.14.52.22,1.11.22,1.79,0,.6-.08,1.15-.24,1.67-.16.51-.39.96-.69,1.34-.3.38-.67.67-1.1.89-.44.22-.92.32-1.47.32-.5,0-.93-.08-1.28-.25-.36-.16-.67-.4-.94-.7v3.58h-1.42ZM2031.39,1267.55c-.46,0-.87.11-1.22.32-.35.21-.67.51-.96.9v3.92c.26.35.55.6.86.74.31.14.66.22,1.04.22.75,0,1.33-.27,1.74-.81.41-.54.61-1.31.61-2.3,0-.53-.05-.98-.14-1.36-.09-.38-.23-.69-.4-.93-.18-.24-.39-.42-.65-.53-.26-.11-.55-.17-.87-.17Z"/><path class="cls-3" d="M2042.57,1274.65h-.63c-.14,0-.25-.02-.34-.06-.08-.04-.14-.13-.17-.27l-.16-.75c-.21.19-.42.36-.62.52-.2.15-.42.28-.64.38-.22.1-.46.18-.72.24s-.54.08-.84.08-.61-.04-.88-.13c-.28-.09-.51-.22-.72-.4-.2-.18-.36-.4-.48-.67-.12-.27-.18-.59-.18-.96,0-.32.09-.63.26-.93s.46-.56.85-.79c.39-.23.91-.42,1.54-.57s1.41-.22,2.33-.22v-.64c0-.63-.13-1.11-.4-1.44-.27-.32-.67-.49-1.2-.49-.35,0-.64.04-.88.13s-.44.19-.62.3c-.17.11-.32.21-.45.3s-.25.13-.37.13c-.1,0-.18-.03-.25-.08s-.13-.11-.17-.19l-.26-.46c.45-.43.93-.75,1.45-.97.52-.21,1.09-.32,1.72-.32.45,0,.86.07,1.21.22.35.15.65.36.89.62.24.27.42.59.54.97.12.38.18.79.18,1.25v5.18ZM2038.87,1273.77c.25,0,.48-.03.69-.08.21-.05.4-.12.59-.22.18-.09.36-.21.53-.34s.33-.29.49-.46v-1.67c-.66,0-1.21.04-1.67.12-.46.08-.83.19-1.12.33-.29.13-.5.29-.63.47-.13.18-.2.39-.2.61s.04.4.1.56.16.28.28.38c.12.1.26.17.42.22.16.05.33.07.52.07Z"/><path class="cls-3" d="M2045.96,1266.54v5.17c0,.61.14,1.09.42,1.42.28.34.71.5,1.28.5.42,0,.81-.1,1.18-.3.37-.2.71-.47,1.02-.82v-5.98h1.42v8.1h-.85c-.2,0-.33-.1-.38-.3l-.11-.87c-.35.39-.75.7-1.18.94-.44.24-.94.36-1.5.36-.44,0-.83-.07-1.17-.22s-.62-.35-.85-.62c-.23-.27-.4-.59-.52-.97-.11-.38-.17-.8-.17-1.26v-5.17h1.42Z"/></g><g id="St._Joseph"><path class="cls-1" d="M1887.28,155.98h-74.37c-6.6,0-12,5.4-12,12v3.76l-57.53-.89-20.01,10.73c-.59-.74-1.21-1.45-1.88-2.12-4.38-4.38-10.44-7.09-17.12-7.09-13.38,0-24.22,10.84-24.22,24.22s10.84,24.22,24.22,24.22,24.22-10.84,24.22-24.22c0-4.58-1.27-8.87-3.49-12.53l18.98-10.18,56.83.86v4.03c0,6.6,5.4,12,12,12h74.37c6.6,0,12-5.4,12-12v-10.78c0-6.6-5.4-12-12-12Z"/><path class="cls-3" d="M1821.18,169.51c-.05.08-.1.14-.15.18-.05.04-.12.06-.21.06-.09,0-.2-.04-.32-.14s-.27-.19-.46-.3c-.18-.11-.41-.21-.66-.3-.26-.09-.57-.14-.94-.14-.35,0-.65.05-.92.14-.27.09-.49.22-.67.38-.18.16-.31.35-.4.56s-.14.45-.14.7c0,.32.08.58.24.8.16.21.37.39.62.54.26.15.55.28.88.39.33.11.66.22,1.01.34s.68.25,1.01.4.62.33.88.56c.26.22.47.5.62.82s.24.73.24,1.2c0,.5-.09.97-.26,1.41-.17.44-.42.82-.75,1.15s-.73.58-1.21.77c-.48.19-1.02.28-1.63.28-.74,0-1.42-.13-2.03-.4-.61-.27-1.13-.63-1.56-1.09l.45-.74c.04-.06.09-.11.16-.15s.13-.06.2-.06c.11,0,.24.06.38.18s.32.25.54.4c.22.14.48.28.78.4s.68.18,1.12.18c.37,0,.7-.05.98-.15s.53-.24.73-.43c.2-.18.35-.4.46-.66s.16-.54.16-.86c0-.35-.08-.63-.24-.85-.16-.22-.36-.41-.62-.56s-.55-.28-.88-.38c-.33-.1-.66-.21-1.01-.32s-.68-.24-1.01-.38c-.33-.14-.62-.33-.88-.56s-.46-.52-.62-.86c-.16-.34-.24-.77-.24-1.28,0-.41.08-.8.24-1.18.16-.38.38-.71.68-1.01.3-.29.67-.53,1.11-.7.44-.18.95-.26,1.52-.26.64,0,1.22.1,1.75.3.53.2.99.5,1.38.88l-.38.74Z"/><path class="cls-3" d="M1826.02,179.31c-.64,0-1.13-.18-1.48-.54-.34-.36-.52-.87-.52-1.54v-4.96h-.98c-.08,0-.16-.02-.22-.08s-.09-.13-.09-.24v-.57l1.33-.17.33-2.5c.01-.08.04-.15.1-.2.06-.05.13-.08.22-.08h.72v2.79h2.32v1.03h-2.32v4.86c0,.34.08.59.25.76.17.17.38.25.64.25.15,0,.28-.02.39-.06s.2-.08.28-.13c.08-.05.15-.09.2-.13.06-.04.11-.06.15-.06.07,0,.14.05.2.14l.42.68c-.25.23-.54.41-.89.54-.35.13-.7.2-1.07.2Z"/><path class="cls-3" d="M1829.07,178.3c0-.14.03-.27.08-.39.05-.12.12-.23.21-.32.09-.09.19-.16.32-.22s.25-.08.39-.08.27.03.39.08c.12.05.23.12.32.22.09.09.16.2.21.32.05.12.08.25.08.39s-.03.28-.08.4c-.05.12-.12.22-.21.32-.09.09-.2.16-.32.21-.12.05-.25.08-.39.08s-.27-.03-.39-.08-.23-.12-.32-.21c-.09-.09-.16-.2-.21-.32-.05-.12-.08-.25-.08-.4Z"/><path class="cls-3" d="M1840.55,175.22c0,.64-.08,1.21-.24,1.72-.16.51-.39.94-.7,1.28-.31.35-.68.62-1.13.8-.45.19-.96.28-1.54.28-.52,0-1.06-.07-1.62-.22.01-.15.02-.31.04-.46.02-.15.03-.3.05-.45.01-.09.04-.16.1-.22s.14-.08.25-.08c.1,0,.22.02.38.07.16.05.37.07.64.07.35,0,.67-.05.94-.16.28-.11.51-.27.7-.5.19-.22.33-.51.43-.86.1-.35.15-.76.15-1.24v-7.54h1.54v7.5Z"/><path class="cls-3" d="M1846.39,170.95c.59,0,1.13.1,1.6.3.48.2.88.48,1.22.84.33.36.59.8.77,1.32s.27,1.09.27,1.72-.09,1.22-.27,1.73c-.18.51-.43.95-.77,1.31-.33.36-.74.64-1.22.84-.48.19-1.01.29-1.6.29s-1.13-.1-1.6-.29c-.48-.19-.88-.47-1.22-.84s-.59-.8-.78-1.31c-.18-.51-.27-1.09-.27-1.73s.09-1.21.27-1.72c.18-.51.44-.95.78-1.32s.74-.64,1.22-.84c.48-.2,1.01-.3,1.6-.3ZM1846.39,178.18c.8,0,1.4-.27,1.79-.8s.59-1.28.59-2.24-.2-1.72-.59-2.26-.99-.81-1.79-.81c-.41,0-.76.07-1.06.21-.3.14-.55.34-.75.6s-.35.58-.45.96c-.1.38-.15.81-.15,1.29s.05.91.15,1.29.25.7.45.96.45.46.75.6c.3.14.65.21,1.06.21Z"/><path class="cls-3" d="M1856.65,172.41c-.06.12-.16.18-.3.18-.08,0-.17-.03-.27-.09-.1-.06-.23-.12-.37-.2-.15-.07-.32-.14-.52-.2-.2-.06-.44-.09-.72-.09-.24,0-.46.03-.65.09-.19.06-.36.15-.49.25-.14.11-.24.23-.31.37-.07.14-.11.29-.11.46,0,.21.06.38.18.52.12.14.28.26.48.36.2.1.42.19.67.27s.51.16.77.25c.26.09.52.19.77.29s.47.24.67.4c.2.16.36.36.48.59.12.23.18.51.18.84,0,.37-.07.72-.2,1.04-.13.32-.33.59-.59.82-.26.23-.58.42-.96.55-.38.13-.82.2-1.31.2-.57,0-1.08-.09-1.54-.28-.46-.18-.85-.42-1.17-.71l.34-.54c.04-.07.09-.12.15-.16s.14-.06.23-.06.2.04.3.11c.11.08.24.16.39.25.15.09.34.17.55.25.22.08.49.11.81.11.28,0,.52-.04.73-.11s.38-.17.52-.29c.14-.12.24-.26.31-.42.07-.16.1-.33.1-.51,0-.22-.06-.41-.18-.56-.12-.15-.28-.27-.48-.38-.2-.1-.42-.19-.68-.27s-.51-.16-.78-.24c-.26-.08-.52-.18-.78-.29-.25-.11-.48-.25-.68-.41-.2-.17-.36-.37-.48-.61-.12-.24-.18-.54-.18-.88,0-.31.06-.61.19-.89.13-.29.32-.54.56-.75.25-.22.55-.39.9-.52.36-.13.76-.19,1.22-.19.53,0,1.01.08,1.44.25.42.17.79.4,1.1.69l-.32.52Z"/><path class="cls-3" d="M1862.16,170.95c.49,0,.93.08,1.34.24.41.16.76.4,1.06.7.3.31.53.69.7,1.14.17.45.25.96.25,1.54,0,.22-.02.37-.07.45-.05.08-.14.11-.27.11h-5.39c.01.51.08.96.21,1.34s.3.7.53.95.49.44.8.57c.31.12.66.19,1.04.19.36,0,.67-.04.92-.12s.48-.17.67-.27c.19-.1.34-.19.47-.27.12-.08.23-.12.32-.12.12,0,.21.05.27.14l.4.52c-.18.21-.39.4-.63.56s-.51.29-.79.39c-.28.1-.57.18-.87.23-.3.05-.6.08-.89.08-.56,0-1.08-.09-1.55-.28s-.88-.47-1.22-.83c-.34-.37-.61-.82-.8-1.36-.19-.54-.29-1.16-.29-1.86,0-.57.09-1.09.26-1.58.17-.49.42-.92.75-1.28.33-.36.72-.64,1.19-.85.47-.21,1-.31,1.58-.31ZM1862.19,171.99c-.69,0-1.23.2-1.62.6s-.64.95-.74,1.65h4.41c0-.33-.04-.63-.14-.91s-.22-.51-.4-.71c-.18-.2-.39-.35-.64-.46-.25-.11-.54-.16-.87-.16Z"/><path class="cls-3" d="M1867.34,181.92v-10.85h.85c.2,0,.33.1.38.3l.12.96c.35-.42.74-.76,1.19-1.02.45-.26.96-.38,1.54-.38.46,0,.89.09,1.26.27.38.18.7.44.97.79.27.35.47.78.62,1.3.14.52.22,1.11.22,1.78,0,.6-.08,1.15-.24,1.67s-.39.96-.69,1.34c-.3.38-.67.67-1.1.89s-.92.32-1.47.32c-.5,0-.93-.08-1.28-.25s-.67-.4-.94-.7v3.58h-1.42ZM1870.94,172.08c-.46,0-.87.11-1.22.32-.35.21-.67.51-.96.9v3.92c.26.35.55.6.86.74.31.14.66.22,1.04.22.75,0,1.33-.27,1.74-.81s.61-1.31.61-2.3c0-.53-.05-.98-.14-1.36s-.23-.69-.4-.93c-.18-.24-.39-.42-.65-.53s-.55-.17-.87-.17Z"/><path class="cls-3" d="M1876.17,179.18v-11.78h1.42v4.77c.35-.37.73-.66,1.15-.88.42-.22.91-.33,1.46-.33.44,0,.83.07,1.17.22s.62.35.85.62c.23.27.4.59.52.97.12.38.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43s-.71-.51-1.28-.51c-.42,0-.81.1-1.18.3-.37.2-.7.48-1.01.82v5.97h-1.42Z"/><polygon class="cls-3" points="1711.99 189.56 1705.02 189.56 1705.02 181.35 1703.02 181.35 1703.02 189.56 1696.06 189.56 1696.06 191.56 1703.02 191.56 1703.02 213.85 1705.02 213.85 1705.02 191.56 1711.99 191.56 1711.99 189.56"/></g><g id="St._Johannes_Nepomuk"><path class="cls-1" d="M1584.44,318.06h-163.05c-6.6,0-12,5.4-12,12v5.83l-23.05-.15-46.25,39.59s-5.34-5.73-15.59-5.77c-13.37-.05-24.22,10.84-24.22,24.22s10.84,24.22,24.22,24.22,24.22-10.84,24.22-24.22c0-5.97-2.16-11.43-5.74-15.65l44.84-38.39,21.58.15v.96c0,6.6,5.4,12,12,12h163.05c6.6,0,12-5.4,12-12v-10.78c0-6.6-5.4-12-12-12Z"/><path class="cls-3" d="M1429.17,331.59c-.05.08-.1.14-.15.18s-.12.06-.21.06c-.09,0-.2-.04-.32-.14s-.27-.19-.46-.3c-.18-.11-.41-.21-.66-.3-.26-.09-.57-.14-.94-.14-.35,0-.65.05-.92.14-.27.09-.49.22-.67.38s-.31.35-.4.56c-.09.22-.14.45-.14.7,0,.32.08.59.24.8.16.21.37.39.62.54.26.15.55.28.88.39.33.11.66.22,1.01.34.34.12.68.25,1.01.4.33.15.62.33.88.56.26.22.47.5.62.82.16.33.24.73.24,1.2,0,.5-.09.97-.26,1.41-.17.44-.42.82-.75,1.15s-.73.58-1.21.77c-.48.19-1.02.28-1.63.28-.74,0-1.42-.13-2.03-.4-.61-.27-1.13-.63-1.56-1.09l.45-.74c.04-.06.09-.11.16-.15.06-.04.13-.06.2-.06.11,0,.24.06.38.18.14.12.32.25.54.4.22.14.48.28.78.4.31.12.68.18,1.12.18.37,0,.7-.05.98-.15.29-.1.53-.24.73-.43.2-.18.35-.4.46-.66.11-.26.16-.54.16-.86,0-.35-.08-.63-.24-.85-.16-.22-.36-.41-.62-.56s-.55-.28-.88-.38c-.33-.1-.66-.21-1.01-.32-.34-.11-.68-.24-1.01-.38-.33-.14-.62-.33-.88-.56-.26-.23-.46-.52-.62-.86s-.24-.77-.24-1.28c0-.41.08-.8.24-1.18s.39-.71.68-1.01c.3-.29.67-.53,1.11-.7.44-.18.95-.26,1.52-.26.64,0,1.22.1,1.75.3.53.2.99.5,1.38.88l-.38.74Z"/><path class="cls-3" d="M1434.01,341.39c-.64,0-1.13-.18-1.48-.54-.34-.36-.52-.87-.52-1.54v-4.96h-.98c-.08,0-.16-.03-.22-.08s-.09-.13-.09-.24v-.57l1.33-.17.33-2.5c.01-.08.05-.15.1-.2s.13-.08.22-.08h.72v2.79h2.32v1.03h-2.32v4.86c0,.34.08.59.25.76.17.17.38.25.64.25.15,0,.28-.02.39-.06s.2-.08.28-.13c.08-.05.15-.09.2-.13.06-.04.11-.06.15-.06.07,0,.14.04.2.14l.42.68c-.25.23-.54.41-.89.54s-.7.2-1.07.2Z"/><path class="cls-3" d="M1437.06,340.38c0-.14.03-.27.08-.39.05-.12.12-.23.21-.32.09-.09.19-.16.32-.22.12-.05.25-.08.39-.08s.27.03.39.08c.12.05.23.13.32.22.09.09.16.2.21.32.05.12.08.25.08.39s-.03.28-.08.4c-.05.12-.12.23-.21.32-.09.09-.2.16-.32.21s-.25.08-.39.08-.27-.03-.39-.08c-.12-.05-.23-.12-.32-.21-.09-.09-.16-.2-.21-.32-.05-.12-.08-.25-.08-.4Z"/><path class="cls-3" d="M1448.54,337.3c0,.64-.08,1.21-.24,1.72-.16.51-.39.93-.7,1.28s-.68.62-1.13.8c-.45.19-.96.28-1.54.28-.52,0-1.06-.08-1.62-.22.01-.15.02-.31.04-.46.02-.15.03-.3.05-.45.01-.09.04-.16.1-.22.06-.06.14-.08.25-.08.1,0,.22.02.38.07.16.05.37.07.64.07.35,0,.67-.05.94-.16.27-.11.51-.27.7-.5.19-.22.33-.51.43-.86.1-.35.15-.76.15-1.24v-7.54h1.54v7.5Z"/><path class="cls-3" d="M1454.38,333.03c.59,0,1.13.1,1.6.3.48.2.88.48,1.22.84.33.36.59.8.77,1.32s.27,1.09.27,1.72-.09,1.22-.27,1.73-.44.95-.77,1.31c-.33.36-.74.64-1.22.84-.48.2-1.01.29-1.6.29s-1.13-.1-1.6-.29c-.48-.19-.88-.47-1.22-.84-.34-.36-.59-.8-.78-1.31-.18-.51-.27-1.09-.27-1.73s.09-1.21.27-1.72c.18-.51.44-.95.78-1.32.34-.36.74-.64,1.22-.84.48-.2,1.01-.3,1.6-.3ZM1454.38,340.26c.8,0,1.4-.27,1.79-.8.39-.54.59-1.28.59-2.24s-.2-1.72-.59-2.26c-.4-.54-.99-.81-1.79-.81-.41,0-.76.07-1.06.21-.3.14-.55.34-.75.6-.2.26-.35.58-.45.96-.1.38-.15.81-.15,1.29s.05.91.15,1.29c.1.38.25.7.45.96.2.26.45.46.75.6.3.14.65.21,1.06.21Z"/><path class="cls-3" d="M1460,341.26v-11.78h1.42v4.77c.35-.37.73-.66,1.15-.88.42-.22.91-.33,1.46-.33.44,0,.83.07,1.17.22.34.15.62.36.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.81.1-1.18.3-.37.2-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M1474.85,341.26h-.63c-.14,0-.25-.02-.34-.06-.09-.04-.14-.13-.17-.27l-.16-.75c-.21.19-.42.36-.62.52-.2.15-.42.28-.64.38-.22.1-.46.18-.72.24-.25.05-.54.08-.84.08s-.61-.04-.88-.13c-.27-.09-.51-.22-.72-.4s-.36-.4-.48-.67-.18-.59-.18-.96c0-.32.09-.63.26-.93s.46-.56.85-.79c.39-.23.91-.42,1.54-.57s1.41-.22,2.33-.22v-.64c0-.63-.13-1.11-.4-1.44-.27-.32-.67-.49-1.2-.49-.35,0-.64.04-.88.13s-.44.19-.62.3-.32.21-.45.3c-.13.09-.25.13-.37.13-.1,0-.18-.03-.25-.08-.07-.05-.13-.11-.17-.19l-.26-.46c.45-.43.93-.75,1.45-.97.52-.21,1.09-.32,1.72-.32.45,0,.86.07,1.21.22s.65.36.89.62c.24.27.42.59.54.97.12.38.18.79.18,1.25v5.18ZM1471.15,340.39c.25,0,.48-.03.69-.08s.4-.12.59-.22c.18-.09.36-.21.53-.34.17-.13.33-.29.49-.46v-1.67c-.66,0-1.21.04-1.67.12-.46.08-.83.19-1.12.33-.29.13-.5.29-.63.47-.13.18-.2.39-.2.61s.03.4.1.56.16.28.28.38c.12.1.26.17.42.22.16.05.33.07.52.07Z"/><path class="cls-3" d="M1477.01,341.26v-8.1h.85c.2,0,.33.1.38.3l.11.88c.35-.39.75-.7,1.18-.94s.94-.36,1.51-.36c.44,0,.83.07,1.17.22.34.15.62.36.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.81.1-1.18.3-.37.2-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M1485.9,341.26v-8.1h.85c.2,0,.33.1.38.3l.11.88c.35-.39.75-.7,1.18-.94s.94-.36,1.51-.36c.44,0,.83.07,1.17.22.34.15.62.36.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.81.1-1.18.3-.37.2-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M1498.01,333.03c.49,0,.93.08,1.34.24.41.16.77.4,1.06.7.3.31.53.69.7,1.14.17.45.25.96.25,1.54,0,.22-.02.37-.07.45-.05.07-.14.11-.27.11h-5.39c.01.51.08.96.21,1.34s.3.69.53.95c.22.25.49.44.8.57.31.12.66.19,1.04.19.36,0,.67-.04.92-.12.26-.08.48-.17.67-.27s.34-.19.47-.27c.12-.08.23-.12.32-.12.12,0,.21.04.27.14l.4.52c-.18.21-.39.4-.63.56-.25.16-.51.29-.79.39-.28.1-.57.18-.87.23-.3.05-.6.08-.89.08-.56,0-1.08-.09-1.55-.28-.47-.19-.88-.47-1.22-.83-.34-.37-.61-.82-.8-1.36-.19-.54-.29-1.16-.29-1.86,0-.57.09-1.09.26-1.58.17-.49.42-.92.75-1.28.33-.36.72-.64,1.19-.85.47-.21,1-.31,1.58-.31ZM1498.04,334.08c-.69,0-1.23.2-1.62.6-.4.4-.64.95-.74,1.65h4.41c0-.33-.05-.63-.14-.91-.09-.27-.22-.51-.4-.71-.18-.2-.39-.35-.64-.46s-.54-.16-.87-.16Z"/><path class="cls-3" d="M1507.82,334.49c-.06.12-.16.18-.3.18-.08,0-.17-.03-.27-.09-.1-.06-.23-.12-.37-.2-.15-.07-.32-.14-.52-.2-.2-.06-.44-.09-.72-.09-.24,0-.46.03-.65.09s-.36.15-.49.25c-.14.11-.24.23-.31.37-.07.14-.11.29-.11.46,0,.21.06.38.18.52.12.14.28.26.48.36.2.1.42.19.67.27.25.08.51.16.77.25.26.09.52.19.77.29.25.11.47.24.67.4s.36.36.48.59c.12.23.18.51.18.84,0,.37-.07.72-.2,1.04s-.33.59-.59.82c-.26.23-.58.42-.96.55-.38.13-.82.2-1.31.2-.57,0-1.08-.09-1.54-.28-.46-.18-.85-.42-1.17-.71l.34-.54c.04-.07.09-.12.15-.16.06-.04.14-.06.23-.06s.2.04.3.11c.11.07.24.16.39.25.15.09.34.17.55.25.22.07.49.11.81.11.28,0,.52-.04.73-.11.21-.07.38-.17.52-.29.14-.12.24-.26.31-.42.07-.16.1-.33.1-.51,0-.22-.06-.41-.18-.56s-.28-.27-.48-.38c-.2-.1-.42-.19-.68-.27-.25-.08-.51-.16-.78-.24-.26-.08-.52-.18-.78-.29-.25-.11-.48-.25-.68-.41-.2-.17-.36-.37-.48-.61-.12-.24-.18-.54-.18-.88,0-.31.06-.61.19-.89.13-.29.31-.54.56-.75.25-.22.55-.39.9-.52.36-.13.77-.19,1.22-.19.53,0,1.01.08,1.44.25.42.17.79.4,1.1.69l-.32.52Z"/><path class="cls-3" d="M1514.55,329.85c.07.03.14.11.23.21l6.64,8.64c-.02-.14-.03-.27-.03-.4s0-.26,0-.38v-8.12h1.36v11.46h-.78c-.12,0-.23-.02-.31-.06-.08-.04-.16-.11-.24-.22l-6.63-8.63c.01.13.02.26.02.39,0,.13,0,.25,0,.35v8.17h-1.36v-11.46h.8c.14,0,.24.02.31.05Z"/><path class="cls-3" d="M1528.52,333.03c.49,0,.93.08,1.34.24.41.16.77.4,1.06.7s.53.69.7,1.14c.17.45.25.96.25,1.54,0,.22-.02.37-.07.45-.05.07-.14.11-.27.11h-5.39c.01.51.08.96.21,1.34s.3.69.53.95c.22.25.49.44.8.57.31.12.66.19,1.04.19.36,0,.67-.04.92-.12.26-.08.48-.17.67-.27s.34-.19.47-.27c.12-.08.23-.12.32-.12.12,0,.21.04.27.14l.4.52c-.18.21-.39.4-.63.56-.25.16-.51.29-.79.39-.28.1-.57.18-.87.23-.3.05-.6.08-.89.08-.56,0-1.08-.09-1.55-.28-.47-.19-.88-.47-1.22-.83-.34-.37-.61-.82-.8-1.36-.19-.54-.29-1.16-.29-1.86,0-.57.09-1.09.26-1.58.17-.49.42-.92.75-1.28.33-.36.72-.64,1.19-.85.47-.21,1-.31,1.58-.31ZM1528.55,334.08c-.69,0-1.23.2-1.62.6-.4.4-.64.95-.74,1.65h4.41c0-.33-.05-.63-.14-.91-.09-.27-.22-.51-.4-.71-.18-.2-.39-.35-.64-.46s-.54-.16-.87-.16Z"/><path class="cls-3" d="M1533.69,344.01v-10.85h.85c.2,0,.33.1.38.3l.12.96c.35-.42.74-.76,1.19-1.02s.96-.38,1.54-.38c.46,0,.88.09,1.26.27s.7.44.97.79c.27.35.47.78.62,1.3.14.52.22,1.11.22,1.78,0,.6-.08,1.15-.24,1.67s-.39.96-.69,1.34c-.3.38-.67.67-1.1.89-.43.22-.92.32-1.47.32-.5,0-.93-.08-1.28-.25-.35-.17-.67-.4-.94-.7v3.58h-1.42ZM1537.3,334.16c-.46,0-.87.11-1.22.32-.35.21-.67.51-.96.9v3.92c.26.35.55.6.86.74.31.14.66.22,1.04.22.75,0,1.33-.27,1.74-.81.4-.54.61-1.31.61-2.3,0-.53-.05-.98-.14-1.36-.09-.38-.23-.69-.4-.93-.18-.24-.39-.42-.65-.53-.26-.11-.55-.17-.87-.17Z"/><path class="cls-3" d="M1545.81,333.03c.59,0,1.13.1,1.6.3s.88.48,1.22.84c.33.36.59.8.77,1.32s.27,1.09.27,1.72-.09,1.22-.27,1.73-.43.95-.77,1.31c-.33.36-.74.64-1.22.84-.48.2-1.01.29-1.6.29s-1.13-.1-1.6-.29c-.48-.19-.88-.47-1.22-.84-.34-.36-.59-.8-.78-1.31s-.27-1.09-.27-1.73.09-1.21.27-1.72.44-.95.78-1.32c.34-.36.74-.64,1.22-.84.48-.2,1.01-.3,1.6-.3ZM1545.81,340.26c.8,0,1.4-.27,1.79-.8.39-.54.59-1.28.59-2.24s-.2-1.72-.59-2.26c-.39-.54-.99-.81-1.79-.81-.41,0-.76.07-1.06.21-.3.14-.55.34-.75.6-.2.26-.35.58-.45.96-.1.38-.15.81-.15,1.29s.05.91.15,1.29c.1.38.25.7.45.96.2.26.45.46.75.6.3.14.65.21,1.06.21Z"/><path class="cls-3" d="M1551.42,341.26v-8.1h.85c.2,0,.33.1.38.3l.1.83c.3-.37.63-.67,1-.9.37-.24.8-.35,1.29-.35.55,0,.99.15,1.33.46.34.3.58.71.73,1.23.11-.29.26-.55.44-.76.18-.21.39-.39.62-.53.23-.14.47-.24.73-.3.26-.06.52-.1.79-.1.43,0,.81.07,1.14.2.33.14.62.33.85.6.23.26.41.58.53.96.12.38.18.82.18,1.31v5.16h-1.42v-5.16c0-.63-.14-1.12-.42-1.44s-.68-.49-1.21-.49c-.23,0-.46.04-.67.12-.21.08-.4.2-.56.36-.16.16-.29.36-.38.6-.09.24-.14.52-.14.84v5.16h-1.42v-5.16c0-.65-.13-1.14-.39-1.46-.26-.32-.64-.48-1.14-.48-.35,0-.68.09-.98.28-.3.19-.58.45-.83.77v6.04h-1.42Z"/><path class="cls-3" d="M1565.79,333.16v5.17c0,.61.14,1.09.42,1.42.28.34.71.5,1.28.5.42,0,.81-.1,1.18-.3.37-.2.71-.47,1.02-.82v-5.98h1.42v8.1h-.85c-.2,0-.33-.1-.38-.3l-.11-.87c-.35.39-.75.7-1.18.94s-.94.36-1.5.36c-.44,0-.83-.07-1.17-.22-.34-.15-.62-.35-.85-.62s-.4-.59-.52-.97c-.11-.38-.17-.8-.17-1.26v-5.17h1.42Z"/><path class="cls-3" d="M1574.94,329.48v6.94h.37c.11,0,.19-.01.26-.04s.15-.09.23-.18l2.56-2.74c.08-.08.16-.15.24-.21.08-.05.19-.08.32-.08h1.3l-2.98,3.18c-.08.09-.15.17-.22.24s-.15.13-.24.18c.1.06.18.14.26.22.08.08.15.18.22.28l3.17,4h-1.28c-.12,0-.22-.02-.3-.07-.08-.04-.16-.12-.24-.21l-2.66-3.32c-.08-.11-.16-.18-.24-.22-.08-.03-.2-.05-.36-.05h-.4v3.87h-1.43v-11.78h1.43Z"/><polygon class="cls-3" points="1332.47 386.7 1325.5 386.7 1325.5 378.49 1323.5 378.49 1323.5 386.7 1316.53 386.7 1316.53 388.7 1323.5 388.7 1323.5 410.99 1325.5 410.99 1325.5 388.7 1332.47 388.7 1332.47 386.7"/></g><g id="St._Antonius"><path class="cls-1" d="M1717.11,1195.17h-87.77c-6.6,0-12,5.4-12,12v4.89h-27.9l-17.59,23.52c-3.78-2.44-8.27-3.86-13.1-3.86-13.38,0-24.22,10.84-24.22,24.22s10.84,24.22,24.22,24.22,24.22-10.84,24.22-24.22c0-6.69-2.71-12.74-7.09-17.12-.51-.51-1.05-1-1.6-1.46l16.67-22.3h26.4v2.89c0,6.6,5.4,12,12,12h87.77c6.6,0,12-5.4,12-12v-10.78c0-6.6-5.4-12-12-12Z"/><path class="cls-3" d="M1638.62,1208.82c-.05.08-.1.14-.15.18-.05.04-.12.06-.21.06s-.2-.04-.32-.14-.27-.19-.46-.3-.41-.21-.66-.3-.57-.14-.94-.14c-.35,0-.65.05-.92.14-.27.09-.49.22-.67.38s-.31.35-.4.56c-.09.22-.14.45-.14.7,0,.32.08.59.24.8.16.21.37.39.62.54.26.15.55.28.88.39s.66.22,1.01.34c.34.12.68.25,1.01.4.33.15.62.33.88.56.26.22.47.5.62.82.16.33.24.73.24,1.2,0,.5-.08.97-.26,1.41-.17.44-.42.82-.75,1.15s-.73.58-1.21.77-1.02.28-1.63.28c-.74,0-1.42-.13-2.03-.4-.61-.27-1.13-.63-1.56-1.09l.45-.74c.04-.06.09-.11.16-.15.06-.04.13-.06.2-.06.11,0,.24.06.38.18.14.12.32.25.54.4.22.14.48.28.78.4.31.12.68.18,1.12.18.37,0,.7-.05.98-.15.29-.1.53-.24.73-.43.2-.18.35-.4.46-.66.11-.26.16-.54.16-.86,0-.35-.08-.63-.24-.85-.16-.22-.36-.41-.62-.56s-.55-.28-.88-.38c-.33-.1-.66-.21-1.01-.32-.34-.11-.68-.24-1.01-.38-.33-.14-.62-.33-.88-.56-.26-.23-.46-.52-.62-.86s-.24-.77-.24-1.28c0-.41.08-.8.24-1.18s.39-.71.68-1.01c.3-.29.67-.53,1.11-.7.44-.18.95-.26,1.52-.26.64,0,1.22.1,1.75.3.53.2.99.5,1.38.88l-.38.74Z"/><path class="cls-3" d="M1643.46,1218.62c-.64,0-1.13-.18-1.48-.54s-.52-.87-.52-1.54v-4.96h-.98c-.08,0-.16-.03-.22-.08s-.09-.13-.09-.24v-.57l1.33-.17.33-2.5c.01-.08.05-.15.1-.2s.13-.08.22-.08h.72v2.79h2.32v1.03h-2.32v4.86c0,.34.08.59.25.76.17.17.38.25.64.25.15,0,.28-.02.39-.06s.2-.08.28-.13.15-.09.2-.13.11-.06.15-.06c.08,0,.14.04.2.14l.42.68c-.25.23-.54.41-.89.54s-.7.2-1.07.2Z"/><path class="cls-3" d="M1646.51,1217.61c0-.14.03-.27.08-.39.05-.12.12-.23.21-.32.09-.09.19-.16.32-.22.12-.05.25-.08.39-.08s.27.03.39.08c.12.05.23.13.32.22.09.09.16.2.21.32.05.12.08.25.08.39s-.03.28-.08.4-.12.23-.21.32-.2.16-.32.21c-.12.05-.25.08-.39.08s-.27-.03-.39-.08c-.12-.05-.23-.12-.32-.21s-.16-.2-.21-.32-.08-.25-.08-.4Z"/><path class="cls-3" d="M1663.11,1218.49h-1.2c-.14,0-.25-.04-.34-.1s-.15-.16-.19-.26l-1.07-2.77h-5.14l-1.07,2.77c-.04.1-.1.18-.19.26-.09.08-.2.11-.34.11h-1.2l4.58-11.46h1.58l4.58,11.46ZM1655.6,1214.23h4.28l-1.8-4.66c-.12-.29-.23-.65-.34-1.08-.06.22-.12.42-.17.6-.06.18-.11.35-.16.48l-1.8,4.66Z"/><path class="cls-3" d="M1664.33,1218.49v-8.1h.85c.2,0,.33.1.38.3l.11.88c.35-.39.75-.7,1.18-.94s.94-.36,1.51-.36c.44,0,.83.07,1.17.22.34.15.62.36.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43s-.71-.51-1.28-.51c-.42,0-.81.1-1.18.3-.37.2-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M1675.68,1218.62c-.64,0-1.13-.18-1.48-.54-.34-.36-.52-.87-.52-1.54v-4.96h-.98c-.08,0-.16-.03-.22-.08s-.09-.13-.09-.24v-.57l1.33-.17.33-2.5c.01-.08.04-.15.1-.2s.13-.08.22-.08h.72v2.79h2.32v1.03h-2.32v4.86c0,.34.08.59.25.76s.38.25.64.25c.15,0,.28-.02.39-.06s.2-.08.28-.13c.08-.05.15-.09.2-.13.06-.04.11-.06.15-.06.07,0,.14.04.2.14l.42.68c-.25.23-.54.41-.89.54s-.7.2-1.07.2Z"/><path class="cls-3" d="M1682.48,1210.26c.59,0,1.13.1,1.6.3s.88.48,1.22.84c.33.36.59.8.77,1.32s.27,1.09.27,1.72-.09,1.22-.27,1.73-.44.95-.77,1.31c-.33.36-.74.64-1.22.84-.48.2-1.01.29-1.6.29s-1.13-.1-1.6-.29c-.48-.19-.88-.47-1.22-.84-.34-.36-.59-.8-.78-1.31s-.27-1.09-.27-1.73.09-1.21.27-1.72.44-.95.78-1.32c.34-.36.74-.64,1.22-.84s1.01-.3,1.6-.3ZM1682.48,1217.49c.8,0,1.4-.27,1.79-.8.39-.54.59-1.28.59-2.24s-.2-1.72-.59-2.26c-.4-.54-.99-.81-1.79-.81-.41,0-.76.07-1.06.21s-.55.34-.75.6c-.2.26-.35.58-.45.96-.1.38-.15.81-.15,1.29s.05.91.15,1.29c.1.38.25.7.45.96.2.26.45.46.75.6s.65.21,1.06.21Z"/><path class="cls-3" d="M1688.09,1218.49v-8.1h.85c.2,0,.33.1.38.3l.11.88c.35-.39.75-.7,1.18-.94s.94-.36,1.51-.36c.44,0,.83.07,1.17.22.34.15.62.36.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43s-.71-.51-1.28-.51c-.42,0-.81.1-1.18.3-.37.2-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M1698.89,1207.84c0,.14-.03.27-.08.39-.06.12-.13.23-.22.32-.09.09-.2.17-.32.22-.12.05-.25.08-.39.08s-.27-.03-.39-.08c-.12-.05-.23-.13-.32-.22-.09-.09-.17-.2-.22-.32-.05-.12-.08-.25-.08-.39s.03-.27.08-.4c.05-.13.13-.24.22-.33.09-.09.2-.17.32-.22.12-.05.25-.08.39-.08s.27.03.39.08c.12.05.23.13.32.22.09.09.17.2.22.33.06.12.08.26.08.4ZM1698.57,1210.38v8.1h-1.42v-8.1h1.42Z"/><path class="cls-3" d="M1702.32,1210.38v5.17c0,.61.14,1.09.42,1.42.28.34.71.5,1.28.5.42,0,.81-.1,1.18-.3.37-.2.71-.47,1.02-.82v-5.98h1.42v8.1h-.85c-.2,0-.33-.1-.38-.3l-.11-.87c-.35.39-.75.7-1.18.94s-.94.36-1.5.36c-.44,0-.83-.07-1.17-.22-.34-.15-.62-.35-.85-.62s-.4-.59-.52-.97c-.12-.38-.17-.8-.17-1.26v-5.17h1.42Z"/><path class="cls-3" d="M1714.62,1211.72c-.06.12-.16.18-.3.18-.08,0-.17-.03-.27-.09-.1-.06-.23-.12-.37-.2-.15-.07-.32-.14-.52-.2-.2-.06-.44-.09-.72-.09-.24,0-.46.03-.65.09-.19.06-.36.15-.49.25-.14.11-.24.23-.31.37s-.11.29-.11.46c0,.21.06.38.18.52.12.14.28.26.48.36s.42.19.67.27c.25.08.51.16.77.25.26.09.52.19.77.29.25.11.47.24.67.4s.36.36.48.59c.12.23.18.51.18.84,0,.37-.07.72-.2,1.04-.13.32-.33.59-.59.82-.26.23-.58.42-.96.55s-.82.2-1.31.2c-.57,0-1.08-.09-1.54-.28-.46-.18-.85-.42-1.17-.71l.34-.54c.04-.07.09-.12.15-.16.06-.04.14-.06.23-.06s.2.04.3.11c.11.07.24.16.39.25.15.09.34.17.55.25.22.07.49.11.81.11.28,0,.52-.04.73-.11.21-.07.38-.17.52-.29.14-.12.24-.26.31-.42.07-.16.1-.33.1-.51,0-.22-.06-.41-.18-.56s-.28-.27-.48-.38c-.2-.1-.42-.19-.68-.27-.25-.08-.51-.16-.78-.24-.26-.08-.52-.18-.78-.29-.25-.11-.48-.25-.68-.41-.2-.17-.36-.37-.48-.61-.12-.24-.18-.54-.18-.88,0-.31.06-.61.19-.89.13-.29.32-.54.56-.75s.55-.39.9-.52c.36-.13.76-.19,1.22-.19.53,0,1.01.08,1.44.25.42.17.79.4,1.1.69l-.32.52Z"/><polygon class="cls-3" points="1566.72 1250.73 1559.75 1250.73 1559.75 1242.52 1557.75 1242.52 1557.75 1250.73 1550.78 1250.73 1550.78 1252.73 1557.75 1252.73 1557.75 1275.02 1559.75 1275.02 1559.75 1252.73 1566.72 1252.73 1566.72 1250.73"/></g><g id="St._Franziskus"><path class="cls-1" d="M839.4,1058.03c-4.38-4.38-10.44-7.09-17.12-7.09-7.07,0-13.43,3.03-17.86,7.87l.4-.46-20-17.51h-27.06v-3.89c0-6.6-5.4-12-12-12h-96.68c-6.6,0-12,5.4-12,12v10.78c0,6.6,5.4,12,12,12h96.68c6.6,0,12-5.4,12-12v-3.89h25.93l19.15,16.76.98-1.12c-3.59,4.22-5.76,9.69-5.76,15.67,0,13.38,10.84,24.22,24.22,24.22s24.22-10.84,24.22-24.22c0-6.69-2.71-12.74-7.09-17.12Z"/><path class="cls-3" d="M655.76,1039.04c-.05.08-.1.14-.15.18s-.12.06-.21.06c-.09,0-.2-.04-.32-.14s-.27-.19-.46-.3c-.18-.11-.41-.21-.66-.3-.26-.09-.57-.14-.94-.14-.35,0-.65.05-.92.14-.27.09-.49.22-.67.38s-.31.35-.4.56c-.09.22-.14.45-.14.7,0,.32.08.59.24.8.16.21.37.39.62.54.26.15.55.28.88.39.33.11.66.22,1.01.34.34.12.68.25,1.01.4.33.15.62.33.88.56.26.22.47.5.62.82.16.33.24.73.24,1.2,0,.5-.09.97-.26,1.41-.17.44-.42.82-.75,1.15s-.73.58-1.21.77c-.48.19-1.02.28-1.63.28-.74,0-1.42-.13-2.03-.4-.61-.27-1.13-.63-1.56-1.09l.45-.74c.04-.06.09-.11.16-.15.06-.04.13-.06.2-.06.11,0,.24.06.38.18.14.12.32.25.54.4.22.14.48.28.78.4.31.12.68.18,1.12.18.37,0,.7-.05.98-.15.29-.1.53-.24.73-.43.2-.18.35-.4.46-.66.11-.26.16-.54.16-.86,0-.35-.08-.63-.24-.85-.16-.22-.36-.41-.62-.56s-.55-.28-.88-.38c-.33-.1-.66-.21-1.01-.32-.34-.11-.68-.24-1.01-.38-.33-.14-.62-.33-.88-.56-.26-.23-.46-.52-.62-.86s-.24-.77-.24-1.28c0-.41.08-.8.24-1.18s.39-.71.68-1.01c.3-.29.67-.53,1.11-.7.44-.18.95-.26,1.52-.26.64,0,1.22.1,1.75.3.53.2.99.5,1.38.88l-.38.74Z"/><path class="cls-3" d="M660.6,1048.84c-.64,0-1.13-.18-1.48-.54-.34-.36-.52-.87-.52-1.54v-4.96h-.98c-.08,0-.16-.03-.22-.08s-.09-.13-.09-.24v-.57l1.33-.17.33-2.5c.01-.08.05-.15.1-.2s.13-.08.22-.08h.72v2.79h2.32v1.03h-2.32v4.86c0,.34.08.59.25.76.17.17.38.25.64.25.15,0,.28-.02.39-.06s.2-.08.28-.13c.08-.05.15-.09.2-.13.06-.04.11-.06.15-.06.07,0,.14.04.2.14l.42.68c-.25.23-.54.41-.89.54s-.7.2-1.07.2Z"/><path class="cls-3" d="M663.64,1047.83c0-.14.03-.27.08-.39.05-.12.12-.23.21-.32.09-.09.19-.16.32-.22.12-.05.25-.08.39-.08s.27.03.39.08c.12.05.23.13.32.22.09.09.16.2.21.32.05.12.08.25.08.39s-.03.28-.08.4c-.05.12-.12.23-.21.32-.09.09-.2.16-.32.21s-.25.08-.39.08-.27-.03-.39-.08c-.12-.05-.23-.12-.32-.21-.09-.09-.16-.2-.21-.32-.05-.12-.08-.25-.08-.4Z"/><path class="cls-3" d="M677.88,1037.24v1.26h-5.5v4.01h4.7v1.26h-4.7v4.93h-1.56v-11.46h7.06Z"/><path class="cls-3" d="M679.16,1048.71v-8.1h.82c.15,0,.26.03.32.09.06.06.1.16.12.3l.1,1.26c.28-.57.62-1.01,1.03-1.32.41-.32.89-.48,1.44-.48.22,0,.43.03.61.08.18.05.35.12.5.21l-.18,1.06c-.04.13-.12.2-.25.2-.07,0-.19-.03-.34-.08s-.37-.08-.65-.08c-.5,0-.91.14-1.24.43-.33.29-.61.71-.84,1.26v5.16h-1.42Z"/><path class="cls-3" d="M691.26,1048.71h-.63c-.14,0-.25-.02-.34-.06-.09-.04-.14-.13-.17-.27l-.16-.75c-.21.19-.42.36-.62.52-.2.15-.42.28-.64.38-.22.1-.46.18-.72.24-.25.05-.54.08-.84.08s-.61-.04-.88-.13c-.27-.09-.51-.22-.72-.4s-.36-.4-.48-.67-.18-.59-.18-.96c0-.32.09-.63.26-.93s.46-.56.85-.79c.39-.23.91-.42,1.54-.57s1.41-.22,2.33-.22v-.64c0-.63-.13-1.11-.4-1.44-.27-.32-.67-.49-1.2-.49-.35,0-.64.04-.88.13s-.44.19-.62.3-.32.21-.45.3c-.13.09-.25.13-.37.13-.1,0-.18-.03-.25-.08-.07-.05-.13-.11-.17-.19l-.26-.46c.45-.43.93-.75,1.45-.97.52-.21,1.09-.32,1.72-.32.45,0,.86.07,1.21.22s.65.36.89.62c.24.27.42.59.54.97.12.38.18.79.18,1.25v5.18ZM687.56,1047.84c.25,0,.48-.03.69-.08s.4-.12.59-.22c.18-.09.36-.21.53-.34.17-.13.33-.29.49-.46v-1.67c-.66,0-1.21.04-1.67.12-.46.08-.83.19-1.12.33-.29.13-.5.29-.63.47-.13.18-.2.39-.2.61s.03.4.1.56.16.28.28.38c.12.1.26.17.42.22.16.05.33.07.52.07Z"/><path class="cls-3" d="M693.42,1048.71v-8.1h.85c.2,0,.33.1.38.3l.11.88c.35-.39.75-.7,1.18-.94s.94-.36,1.51-.36c.44,0,.83.07,1.17.22.34.15.62.36.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.81.1-1.18.3-.37.2-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M707.97,1041.21c0,.1-.02.2-.06.29-.04.09-.09.18-.14.25l-4.38,5.84h4.42v1.11h-6.1v-.59c0-.07.02-.15.05-.24.03-.09.08-.18.15-.27l4.41-5.88h-4.36v-1.12h6.02v.61Z"/><path class="cls-3" d="M711.61,1038.06c0,.14-.03.27-.08.39-.06.12-.13.23-.22.32-.09.09-.2.17-.32.22-.12.05-.25.08-.39.08s-.27-.03-.39-.08c-.12-.05-.23-.13-.32-.22-.09-.09-.17-.2-.22-.32-.05-.12-.08-.25-.08-.39s.03-.27.08-.4c.05-.13.13-.24.22-.33.09-.09.2-.17.32-.22.12-.05.25-.08.39-.08s.27.03.39.08c.12.05.23.13.32.22.09.09.17.2.22.33.06.12.08.26.08.4ZM711.29,1040.6v8.1h-1.42v-8.1h1.42Z"/><path class="cls-3" d="M718.44,1041.94c-.06.12-.16.18-.3.18-.08,0-.17-.03-.27-.09-.1-.06-.23-.12-.37-.2-.15-.07-.32-.14-.52-.2-.2-.06-.44-.09-.72-.09-.24,0-.46.03-.65.09s-.36.15-.49.25c-.14.11-.24.23-.31.37-.07.14-.11.29-.11.46,0,.21.06.38.18.52.12.14.28.26.48.36.2.1.42.19.67.27.25.08.51.16.77.25.26.09.52.19.77.29.25.11.47.24.67.4s.36.36.48.59c.12.23.18.51.18.84,0,.37-.07.72-.2,1.04s-.33.59-.59.82c-.26.23-.58.42-.96.55-.38.13-.82.2-1.31.2-.57,0-1.08-.09-1.54-.28-.46-.18-.85-.42-1.17-.71l.34-.54c.04-.07.09-.12.15-.16.06-.04.14-.06.23-.06s.2.04.3.11c.11.07.24.16.39.25.15.09.34.17.55.25.22.07.49.11.81.11.28,0,.52-.04.73-.11.21-.07.38-.17.52-.29.14-.12.24-.26.31-.42.07-.16.1-.33.1-.51,0-.22-.06-.41-.18-.56s-.28-.27-.48-.38c-.2-.1-.42-.19-.68-.27-.25-.08-.51-.16-.78-.24-.26-.08-.52-.18-.78-.29-.25-.11-.48-.25-.68-.41-.2-.17-.36-.37-.48-.61-.12-.24-.18-.54-.18-.88,0-.31.06-.61.19-.89.13-.29.31-.54.56-.75.25-.22.55-.39.9-.52.36-.13.77-.19,1.22-.19.53,0,1.01.08,1.44.25.42.17.79.4,1.1.69l-.32.52Z"/><path class="cls-3" d="M722.23,1036.92v6.94h.37c.11,0,.19-.01.26-.04s.15-.09.23-.18l2.56-2.74c.08-.08.16-.15.24-.21.08-.05.19-.08.32-.08h1.3l-2.98,3.18c-.07.09-.15.17-.22.24-.07.07-.15.13-.24.18.1.06.18.14.26.22.08.08.15.18.22.28l3.17,4h-1.28c-.12,0-.22-.02-.3-.07-.08-.04-.16-.12-.24-.21l-2.66-3.32c-.08-.11-.16-.18-.24-.22-.08-.03-.2-.05-.36-.05h-.4v3.87h-1.43v-11.78h1.43Z"/><path class="cls-3" d="M730.36,1040.6v5.17c0,.61.14,1.09.42,1.42.28.34.71.5,1.28.5.42,0,.81-.1,1.18-.3.37-.2.71-.47,1.02-.82v-5.98h1.42v8.1h-.85c-.2,0-.33-.1-.38-.3l-.11-.87c-.35.39-.75.7-1.18.94s-.94.36-1.5.36c-.44,0-.83-.07-1.17-.22-.34-.15-.62-.35-.85-.62-.23-.27-.4-.59-.52-.97-.11-.38-.17-.8-.17-1.26v-5.17h1.42Z"/><path class="cls-3" d="M742.67,1041.94c-.06.12-.16.18-.3.18-.08,0-.17-.03-.27-.09-.1-.06-.23-.12-.37-.2-.15-.07-.32-.14-.52-.2-.2-.06-.44-.09-.72-.09-.24,0-.46.03-.65.09s-.36.15-.49.25c-.14.11-.24.23-.31.37-.07.14-.11.29-.11.46,0,.21.06.38.18.52.12.14.28.26.48.36.2.1.42.19.67.27.25.08.51.16.77.25.26.09.52.19.77.29.25.11.47.24.67.4s.36.36.48.59c.12.23.18.51.18.84,0,.37-.07.72-.2,1.04s-.33.59-.59.82c-.26.23-.58.42-.96.55-.38.13-.82.2-1.31.2-.57,0-1.08-.09-1.54-.28-.46-.18-.85-.42-1.17-.71l.34-.54c.04-.07.09-.12.15-.16.06-.04.14-.06.23-.06s.2.04.3.11c.11.07.24.16.39.25.15.09.34.17.55.25.22.07.49.11.81.11.28,0,.52-.04.73-.11.21-.07.38-.17.52-.29.14-.12.24-.26.31-.42.07-.16.1-.33.1-.51,0-.22-.06-.41-.18-.56s-.28-.27-.48-.38c-.2-.1-.42-.19-.68-.27-.25-.08-.51-.16-.78-.24-.26-.08-.52-.18-.78-.29-.25-.11-.48-.25-.68-.41-.2-.17-.36-.37-.48-.61-.12-.24-.18-.54-.18-.88,0-.31.06-.61.19-.89.13-.29.31-.54.56-.75.25-.22.55-.39.9-.52.36-.13.77-.19,1.22-.19.53,0,1.01.08,1.44.25.42.17.79.4,1.1.69l-.32.52Z"/><polygon class="cls-3" points="830.25 1068.11 823.28 1068.11 823.28 1059.9 821.28 1059.9 821.28 1068.11 814.31 1068.11 814.31 1070.11 821.28 1070.11 821.28 1092.4 823.28 1092.4 823.28 1070.11 830.25 1070.11 830.25 1068.11"/></g><g id="Maria_Hilfe_der_Chrsiten"><path class="cls-1" d="M309.92,729.62h-174.64c-6.6,0-12,5.4-12,12v4.16h-45.84l-13.26,26.51c-.25,0-.5-.02-.75-.02-13.38,0-24.22,10.84-24.22,24.22s10.84,24.22,24.22,24.22,24.22-10.84,24.22-24.22c0-6.69-2.71-12.74-7.09-17.12-3.5-3.5-8.07-5.93-13.18-6.77l11.91-23.81h43.99v3.63c0,6.6,5.4,12,12,12h174.64c6.6,0,12-5.4,12-12v-10.78c0-6.6-5.4-12-12-12Z"/><path class="cls-3" d="M141.92,749.65c.06.14.11.28.16.43.05-.15.11-.29.17-.43.06-.14.12-.27.2-.41l3.88-7.05c.07-.12.14-.2.22-.22.07-.03.18-.04.32-.04h1.14v11.46h-1.36v-8.42c0-.11,0-.23,0-.36s.01-.26.02-.39l-3.93,7.17c-.13.24-.32.36-.56.36h-.22c-.24,0-.43-.12-.56-.36l-4.02-7.19c.02.14.03.27.04.41,0,.13.01.26.01.37v8.42h-1.36v-11.46h1.14c.14,0,.25.01.32.04.07.03.15.1.22.22l3.96,7.06c.07.13.14.26.2.4Z"/><path class="cls-3" d="M156.53,753.39h-.63c-.14,0-.25-.02-.34-.06-.09-.04-.14-.13-.17-.27l-.16-.75c-.21.19-.42.36-.62.52-.2.15-.42.28-.64.38-.22.1-.46.18-.72.24-.25.05-.54.08-.84.08s-.61-.04-.88-.13c-.27-.09-.51-.22-.72-.4-.2-.18-.36-.4-.48-.67-.12-.27-.18-.59-.18-.96,0-.32.09-.63.26-.93s.46-.56.85-.79c.39-.23.91-.42,1.54-.57s1.41-.22,2.33-.22v-.64c0-.63-.13-1.11-.4-1.44-.27-.32-.67-.49-1.2-.49-.35,0-.64.04-.88.13s-.44.19-.62.3-.32.21-.45.3c-.13.09-.25.13-.37.13-.1,0-.18-.03-.25-.08-.07-.05-.13-.11-.17-.19l-.26-.46c.45-.43.93-.75,1.45-.97.52-.21,1.09-.32,1.72-.32.45,0,.86.07,1.21.22.35.15.65.36.89.62.24.27.42.59.54.97s.18.79.18,1.25v5.18ZM152.84,752.52c.25,0,.48-.03.69-.08.21-.05.4-.12.59-.22.18-.09.36-.21.53-.34s.33-.29.49-.46v-1.67c-.66,0-1.21.04-1.67.12-.46.08-.83.19-1.12.33-.29.13-.5.29-.63.47-.13.18-.2.39-.2.61s.03.4.1.56.16.28.28.38c.12.1.26.17.42.22.16.05.33.07.52.07Z"/><path class="cls-3" d="M158.69,753.39v-8.1h.82c.15,0,.26.03.32.09.06.06.1.16.12.3l.1,1.26c.28-.57.62-1.01,1.03-1.32.41-.32.89-.48,1.44-.48.22,0,.43.03.61.08.18.05.35.12.5.21l-.18,1.06c-.04.13-.12.2-.25.2-.07,0-.19-.03-.34-.08s-.37-.08-.65-.08c-.5,0-.91.14-1.24.43-.33.29-.61.71-.84,1.26v5.16h-1.42Z"/><path class="cls-3" d="M167.04,742.74c0,.14-.03.27-.08.39-.06.12-.13.23-.22.32-.09.09-.2.17-.32.22-.12.05-.25.08-.39.08s-.27-.03-.39-.08c-.12-.05-.23-.13-.32-.22-.09-.09-.17-.2-.22-.32-.05-.12-.08-.25-.08-.39s.03-.27.08-.4c.05-.13.13-.24.22-.33s.2-.17.32-.22c.12-.05.25-.08.39-.08s.27.03.39.08.23.13.32.22c.09.09.17.2.22.33.06.13.08.26.08.4ZM166.72,745.28v8.1h-1.42v-8.1h1.42Z"/><path class="cls-3" d="M175.19,753.39h-.63c-.14,0-.25-.02-.34-.06-.09-.04-.14-.13-.17-.27l-.16-.75c-.21.19-.42.36-.62.52-.2.15-.42.28-.64.38-.22.1-.46.18-.72.24-.25.05-.54.08-.84.08s-.61-.04-.88-.13c-.27-.09-.51-.22-.72-.4-.2-.18-.36-.4-.48-.67-.12-.27-.18-.59-.18-.96,0-.32.09-.63.26-.93s.46-.56.85-.79c.39-.23.91-.42,1.54-.57s1.41-.22,2.33-.22v-.64c0-.63-.13-1.11-.4-1.44-.27-.32-.67-.49-1.2-.49-.35,0-.64.04-.88.13s-.44.19-.62.3-.32.21-.45.3c-.13.09-.25.13-.37.13-.1,0-.18-.03-.25-.08-.07-.05-.13-.11-.17-.19l-.26-.46c.45-.43.93-.75,1.45-.97.52-.21,1.09-.32,1.72-.32.45,0,.86.07,1.21.22.35.15.65.36.89.62.24.27.42.59.54.97s.18.79.18,1.25v5.18ZM171.49,752.52c.25,0,.48-.03.69-.08.21-.05.4-.12.59-.22.18-.09.36-.21.53-.34s.33-.29.49-.46v-1.67c-.66,0-1.21.04-1.67.12-.46.08-.83.19-1.12.33-.29.13-.5.29-.63.47-.13.18-.2.39-.2.61s.03.4.1.56.16.28.28.38c.12.1.26.17.42.22.16.05.33.07.52.07Z"/><path class="cls-3" d="M176.93,752.4c0-.12.02-.24.07-.35s.11-.21.19-.29c.08-.08.18-.15.3-.2.12-.05.25-.07.38-.07.16,0,.3.03.43.09.12.06.23.14.31.24.08.1.15.22.19.36.04.13.06.28.06.44,0,.24-.03.49-.1.75-.07.26-.17.51-.3.77-.13.25-.29.5-.48.74s-.4.46-.64.66l-.24-.23c-.07-.06-.1-.14-.1-.22,0-.07.04-.14.11-.22.05-.06.12-.14.2-.24.08-.1.17-.21.25-.34.08-.13.16-.27.24-.42.07-.15.12-.32.16-.5h-.1c-.14,0-.26-.02-.38-.07-.11-.05-.21-.12-.29-.2-.08-.09-.15-.19-.19-.31s-.07-.25-.07-.4Z"/><path class="cls-3" d="M193.35,753.39h-1.56v-5.22h-6.18v5.22h-1.56v-11.46h1.56v5.11h6.18v-5.11h1.56v11.46Z"/><path class="cls-3" d="M197.83,742.74c0,.14-.03.27-.08.39-.06.12-.13.23-.22.32-.09.09-.2.17-.32.22-.12.05-.25.08-.39.08s-.27-.03-.39-.08c-.12-.05-.23-.13-.32-.22-.09-.09-.17-.2-.22-.32-.05-.12-.08-.25-.08-.39s.03-.27.08-.4c.05-.13.13-.24.22-.33s.2-.17.32-.22c.12-.05.25-.08.39-.08s.27.03.39.08.23.13.32.22c.09.09.17.2.22.33.06.13.08.26.08.4ZM197.51,745.28v8.1h-1.42v-8.1h1.42Z"/><path class="cls-3" d="M201.6,741.6v11.78h-1.42v-11.78h1.42Z"/><path class="cls-3" d="M204.43,753.39v-6.89l-.9-.1c-.11-.03-.2-.07-.28-.12-.07-.06-.11-.14-.11-.24v-.58h1.28v-.79c0-.46.07-.88.2-1.24.13-.36.32-.66.56-.91s.53-.44.88-.56c.34-.13.73-.19,1.15-.19.36,0,.7.05,1.01.16l-.03.71c0,.11-.05.17-.14.19-.08.02-.21.03-.36.03h-.25c-.25,0-.47.03-.67.1-.2.06-.37.17-.52.31s-.25.33-.33.57c-.08.24-.12.53-.12.87v.74h2.34v1.03h-2.3v6.91h-1.43Z"/><path class="cls-3" d="M212.71,745.15c.49,0,.93.08,1.34.24.41.16.77.4,1.06.7.3.31.53.69.7,1.14.17.45.25.96.25,1.54,0,.22-.02.37-.07.45s-.14.11-.27.11h-5.39c.01.51.08.96.21,1.34s.3.69.53.95c.22.25.49.44.8.57.31.12.66.19,1.04.19.36,0,.67-.04.92-.12s.48-.17.67-.27.34-.19.47-.27c.12-.08.23-.12.32-.12.12,0,.21.05.27.14l.4.52c-.18.21-.39.4-.63.56-.25.16-.51.29-.79.39-.28.1-.57.18-.87.23-.3.05-.6.08-.89.08-.56,0-1.08-.09-1.55-.28-.47-.19-.88-.47-1.22-.83-.34-.37-.61-.82-.8-1.36-.19-.54-.29-1.16-.29-1.86,0-.57.09-1.09.26-1.58s.42-.92.75-1.28c.33-.36.72-.64,1.19-.85s1-.31,1.58-.31ZM212.75,746.2c-.69,0-1.23.2-1.62.6-.4.4-.64.95-.74,1.65h4.41c0-.33-.05-.63-.14-.91-.09-.28-.22-.51-.4-.71-.18-.2-.39-.35-.64-.46s-.54-.16-.87-.16Z"/><path class="cls-3" d="M226.68,753.39c-.2,0-.33-.1-.38-.3l-.13-.98c-.35.42-.74.76-1.19,1.01-.45.25-.96.38-1.53.38-.46,0-.89-.09-1.26-.27-.38-.18-.7-.44-.97-.79-.27-.35-.47-.78-.62-1.3s-.22-1.11-.22-1.78c0-.6.08-1.15.24-1.67.16-.52.39-.96.69-1.34.3-.38.67-.68,1.1-.89.43-.22.92-.32,1.47-.32.5,0,.92.08,1.27.25s.67.4.94.71v-4.5h1.42v11.78h-.85ZM223.92,752.35c.46,0,.87-.11,1.22-.32.35-.21.67-.52.96-.9v-3.92c-.26-.35-.55-.6-.86-.74-.31-.14-.66-.21-1.04-.21-.76,0-1.34.27-1.74.81s-.61,1.31-.61,2.3c0,.53.05.98.14,1.36.09.38.22.69.4.93.18.24.39.42.65.53s.55.17.88.17Z"/><path class="cls-3" d="M233.13,745.15c.49,0,.93.08,1.34.24.41.16.77.4,1.06.7.3.31.53.69.7,1.14.17.45.25.96.25,1.54,0,.22-.02.37-.07.45s-.14.11-.27.11h-5.39c.01.51.08.96.21,1.34s.3.69.53.95c.22.25.49.44.8.57.31.12.66.19,1.04.19.36,0,.67-.04.92-.12s.48-.17.67-.27.34-.19.47-.27c.12-.08.23-.12.32-.12.12,0,.21.05.27.14l.4.52c-.18.21-.39.4-.63.56-.25.16-.51.29-.79.39-.28.1-.57.18-.87.23-.3.05-.6.08-.89.08-.56,0-1.08-.09-1.55-.28-.47-.19-.88-.47-1.22-.83-.34-.37-.61-.82-.8-1.36-.19-.54-.29-1.16-.29-1.86,0-.57.09-1.09.26-1.58s.42-.92.75-1.28c.33-.36.72-.64,1.19-.85s1-.31,1.58-.31ZM233.16,746.2c-.69,0-1.23.2-1.62.6-.4.4-.64.95-.74,1.65h4.41c0-.33-.05-.63-.14-.91-.09-.28-.22-.51-.4-.71-.18-.2-.39-.35-.64-.46s-.54-.16-.87-.16Z"/><path class="cls-3" d="M238.3,753.39v-8.1h.82c.15,0,.26.03.32.09.06.06.1.16.12.3l.1,1.26c.28-.57.62-1.01,1.03-1.32.41-.32.89-.48,1.44-.48.22,0,.43.03.61.08.18.05.35.12.5.21l-.18,1.06c-.04.13-.12.2-.25.2-.07,0-.19-.03-.34-.08s-.37-.08-.65-.08c-.5,0-.91.14-1.24.43-.33.29-.61.71-.84,1.26v5.16h-1.42Z"/><path class="cls-3" d="M256.14,751.02c.08,0,.16.04.23.1l.61.66c-.47.54-1.04.97-1.71,1.27-.67.3-1.48.46-2.42.46-.83,0-1.58-.14-2.25-.43-.67-.29-1.25-.69-1.72-1.2s-.84-1.13-1.1-1.85c-.26-.72-.39-1.51-.39-2.38s.14-1.66.42-2.38c.28-.72.67-1.34,1.18-1.86.51-.52,1.11-.92,1.82-1.2.71-.29,1.49-.43,2.34-.43s1.57.13,2.18.39c.61.26,1.15.62,1.63,1.06l-.5.71c-.04.05-.08.1-.13.13-.05.03-.12.05-.21.05-.07,0-.14-.03-.22-.08-.08-.05-.17-.11-.28-.19-.11-.07-.23-.15-.38-.24-.14-.08-.31-.17-.51-.24-.2-.07-.43-.14-.69-.19s-.56-.08-.9-.08c-.61,0-1.17.11-1.68.32s-.95.51-1.32.9c-.37.39-.65.86-.86,1.42-.21.56-.31,1.19-.31,1.88s.1,1.35.31,1.91c.21.56.49,1.03.84,1.42.35.39.77.68,1.26.88s1.01.3,1.57.3c.34,0,.65-.02.92-.06.27-.04.52-.1.76-.19s.45-.19.65-.32c.2-.13.4-.29.6-.47.09-.08.18-.12.26-.12Z"/><path class="cls-3" d="M258.8,753.39v-11.78h1.42v4.77c.35-.37.73-.66,1.15-.88.42-.22.91-.33,1.46-.33.44,0,.83.07,1.17.22.34.15.62.35.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.81.1-1.18.3s-.7.48-1.01.82v5.97h-1.42Z"/><path class="cls-3" d="M267.7,753.39v-8.1h.82c.15,0,.26.03.32.09.06.06.1.16.12.3l.1,1.26c.28-.57.62-1.01,1.03-1.32.41-.32.89-.48,1.44-.48.22,0,.43.03.61.08.18.05.35.12.5.21l-.18,1.06c-.04.13-.12.2-.25.2-.07,0-.19-.03-.34-.08s-.37-.08-.65-.08c-.5,0-.91.14-1.24.43-.33.29-.61.71-.84,1.26v5.16h-1.42Z"/><path class="cls-3" d="M276.05,742.74c0,.14-.03.27-.08.39-.06.12-.13.23-.22.32-.09.09-.2.17-.32.22-.12.05-.25.08-.39.08s-.27-.03-.39-.08c-.12-.05-.23-.13-.32-.22-.09-.09-.17-.2-.22-.32-.05-.12-.08-.25-.08-.39s.03-.27.08-.4c.05-.13.13-.24.22-.33s.2-.17.32-.22c.12-.05.25-.08.39-.08s.27.03.39.08.23.13.32.22c.09.09.17.2.22.33.06.13.08.26.08.4ZM275.73,745.28v8.1h-1.42v-8.1h1.42Z"/><path class="cls-3" d="M282.88,746.62c-.06.12-.16.18-.3.18-.08,0-.17-.03-.27-.09-.1-.06-.23-.12-.37-.2-.15-.07-.32-.14-.52-.2-.2-.06-.44-.09-.72-.09-.24,0-.46.03-.65.09-.19.06-.36.15-.49.25-.14.11-.24.23-.31.37-.07.14-.11.29-.11.46,0,.21.06.38.18.52.12.14.28.26.48.36.2.1.42.19.67.27.25.08.51.16.77.25s.52.19.77.29c.25.11.47.24.67.4s.36.36.48.59c.12.23.18.51.18.84,0,.37-.07.72-.2,1.04-.13.32-.33.59-.59.82-.26.23-.58.42-.96.55-.38.13-.82.2-1.31.2-.57,0-1.08-.09-1.54-.28-.46-.18-.85-.42-1.17-.71l.34-.54c.04-.07.09-.12.15-.16.06-.04.14-.06.23-.06s.2.04.3.11c.11.07.24.16.39.25.15.09.34.17.55.25s.49.11.81.11c.28,0,.52-.04.73-.11s.38-.17.52-.29.24-.26.31-.42c.07-.16.1-.33.1-.51,0-.22-.06-.41-.18-.56-.12-.15-.28-.27-.48-.38s-.42-.19-.68-.27c-.25-.08-.51-.16-.78-.24-.26-.09-.52-.18-.78-.29-.25-.11-.48-.25-.68-.41-.2-.17-.36-.37-.48-.61s-.18-.54-.18-.88c0-.31.06-.61.19-.89.13-.29.31-.54.56-.75.25-.22.55-.39.9-.52.36-.13.77-.19,1.22-.19.53,0,1.01.08,1.44.25.42.17.79.4,1.1.69l-.32.52Z"/><path class="cls-3" d="M287.64,753.52c-.64,0-1.13-.18-1.48-.54-.34-.36-.52-.87-.52-1.54v-4.96h-.98c-.08,0-.16-.03-.22-.08s-.09-.13-.09-.24v-.57l1.33-.17.33-2.5c.01-.08.05-.15.1-.2s.13-.08.22-.08h.72v2.79h2.32v1.03h-2.32v4.86c0,.34.08.59.25.76.17.17.38.25.64.25.15,0,.28-.02.39-.06.11-.04.2-.08.28-.13.08-.05.15-.09.2-.13.06-.04.11-.06.15-.06.07,0,.14.04.2.14l.42.68c-.25.23-.54.41-.89.54s-.7.2-1.07.2Z"/><path class="cls-3" d="M294.36,745.15c.49,0,.93.08,1.34.24.41.16.77.4,1.06.7.3.31.53.69.7,1.14.17.45.25.96.25,1.54,0,.22-.02.37-.07.45s-.14.11-.27.11h-5.39c.01.51.08.96.21,1.34s.3.69.53.95c.22.25.49.44.8.57.31.12.66.19,1.04.19.36,0,.67-.04.92-.12s.48-.17.67-.27.34-.19.47-.27c.12-.08.23-.12.32-.12.12,0,.21.05.27.14l.4.52c-.18.21-.39.4-.63.56-.25.16-.51.29-.79.39-.28.1-.57.18-.87.23-.3.05-.6.08-.89.08-.56,0-1.08-.09-1.55-.28-.47-.19-.88-.47-1.22-.83-.34-.37-.61-.82-.8-1.36-.19-.54-.29-1.16-.29-1.86,0-.57.09-1.09.26-1.58s.42-.92.75-1.28c.33-.36.72-.64,1.19-.85s1-.31,1.58-.31ZM294.39,746.2c-.69,0-1.23.2-1.62.6-.4.4-.64.95-.74,1.65h4.41c0-.33-.05-.63-.14-.91-.09-.28-.22-.51-.4-.71-.18-.2-.39-.35-.64-.46s-.54-.16-.87-.16Z"/><path class="cls-3" d="M299.54,753.39v-8.1h.85c.2,0,.33.1.38.29l.11.88c.35-.39.75-.7,1.18-.94.43-.24.94-.36,1.51-.36.44,0,.83.07,1.17.22.34.15.62.35.85.62.23.27.4.59.52.97s.18.8.18,1.26v5.16h-1.42v-5.16c0-.61-.14-1.09-.42-1.43-.28-.34-.71-.51-1.28-.51-.42,0-.81.1-1.18.3s-.7.48-1.01.82v5.97h-1.42Z"/><polygon class="cls-3" points="71.41 789.44 64.44 789.44 64.44 781.23 62.44 781.23 62.44 789.44 55.47 789.44 55.47 791.44 62.44 791.44 62.44 813.73 64.44 813.73 64.44 791.44 71.41 791.44 71.41 789.44"/></g></g></svg> \ No newline at end of file +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + viewBox="0 0 2156.07 1357.94" + version="1.1" + id="svg434" + sodipodi:docname="chemnitz_map.svg" + inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> + <sodipodi:namedview + id="namedview436" + pagecolor="#ffffff" + bordercolor="#000000" + borderopacity="0.25" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + inkscape:pagecheckerboard="0" + showgrid="false" + inkscape:zoom="0.58439659" + inkscape:cx="926.59678" + inkscape:cy="678.4776" + inkscape:window-width="2293" + inkscape:window-height="1082" + inkscape:window-x="952" + inkscape:window-y="1301" + inkscape:window-maximized="0" + inkscape:current-layer="Standorte" /> + <defs + id="defs4"> + <style + id="style2">.cls-1,.cls-2{fill:#ca5726;}.cls-3{fill:#fff;}.cls-4{fill:#67a3c2;}.cls-5{fill:#0f6898;}.cls-2{opacity:.3;}.cls-6{fill:#deecf7;}</style> + </defs> + <g + id="Flächen"> + <polygon + class="cls-2" + points="1913.83 433.76 1933.32 501.96 1918.1 501.96 1935.25 571.57 1828.19 579.43 1832.88 599.35 1790.87 608.14 1777.96 554.11 1844.11 538.25 1822.71 456.37 1913.83 433.76" + id="polygon6" /> + <polygon + class="cls-2" + points="1685.18 736.76 1747.49 779.98 1746.59 822.87 1679.72 927.13 1616.25 813.9 1685.18 736.76" + id="polygon8" /> + <polygon + class="cls-2" + points="1640.8 860.34 1627.59 886.32 1580.46 903.47 1569.53 886.32 1589.72 875.65 1568.73 831.95 1616.25 813.9 1640.8 860.34" + id="polygon10" /> + <polygon + class="cls-2" + points="1592.8 948.24 1592.8 983.56 1574.57 983.56 1574.57 1009.57 1545.96 1022.27 1552.69 1064.06 1587.2 1064.06 1588.15 1075.15 1734.4 1060.53 1679.72 927.13 1592.8 948.24" + id="polygon12" /> + <polygon + class="cls-2" + points="1619.73 1318.68 1619.73 1291.38 1681.87 1286.16 1775.7 1302.88 1775.7 1312.84 1759.65 1312.84 1734.4 1335.26 1619.73 1318.68" + id="polygon14" /> + <polygon + class="cls-2" + points="2209.93 991.27 2179.63 1001.14 2092.12 944.91 2069.24 946.65 2055.09 981.52 2001.23 1043.8 1991.97 1079.98 2004.64 1128.43 2049.55 1130.29 2074.76 1114.48 2122.04 1117.01 2215.95 1130.29 2145.36 1172.55 2031.53 1196.11 2015.94 1196.11 1991.97 1218.83 2004.64 1265.12 2069.24 1318.13 2019.74 1318.13 1965.46 1268.48 1903.61 1157.48 1875 1166.17 1871.63 1209.38 1894.36 1261.27 1895.2 1286.16 1986.08 1363.58 2035.73 1367.3 2049.55 1421.64 2202.36 1421.64 2269.68 1157.48 2209.93 991.27" + id="polygon16" /> + <polygon + class="cls-2" + points="1293.57 609.02 1303.73 636.33 1340.08 625.49 1346.7 618.65 1338.85 607.58 1371.8 554.49 1356.1 546.44 1347.98 568.14 1322.11 579.43 1319.8 591.38 1293.57 609.02" + id="polygon18" /> + <polygon + class="cls-2" + points="1336.7 534.92 1330.52 556.23 1341.98 559.01 1347.98 539.16 1336.7 534.92" + id="polygon20" /> + <polygon + class="cls-2" + points="970.7 811.09 984.11 787.16 1033.84 811.09 1019.9 837.11 970.7 811.09" + id="polygon22" /> + <polygon + class="cls-2" + points="753.64 850.46 726.72 855.23 735.35 934.4 714.29 956.7 625.15 1017.38 641.15 1059.47 593.89 1072.83 597.88 1188.17 657.14 1206.65 664.71 1252.42 643.45 1275.6 604.24 1242.52 586.13 1252.72 566.21 1234.74 473 1269.13 453.36 1252.72 482.62 1212.06 475.17 1168.06 428.85 1142.46 387 1166.17 335.13 1136.41 326.78 1089.32 274.91 1038.62 266.67 1008.43 6.38 956.7 -65.09 954.62 -65.09 1363.26 246.29 1426.23 762.89 1391.34 724.14 1352.05 731.9 1318.68 752.6 1288.58 747.42 1252.72 762.89 1230.43 771.58 1202.42 707.69 1121.82 751.74 1073.45 762.89 1032.05 818.02 1042.33 837.13 1020.69 789.69 967.39 753.64 850.46" + id="polygon24" /> + <polygon + class="cls-2" + points="72 967.39 20.54 922.97 37.72 898.71 111.7 911.02 189.25 991.79 72 967.39" + id="polygon26" /> + <polygon + class="cls-2" + points="326.78 1089.32 342.79 1067.11 366.71 1052.01 346.75 1019.04 371.2 998.73 384.65 1012.01 500.54 972.37 547.5 908.66 607.46 884.98 590.16 844.49 519.73 838.09 519.73 789.05 538.35 789.05 519.73 723.7 475.17 704.66 419.27 721.37 412.71 779.98 440.02 814.24 407.14 879.99 332.7 938.44 317.06 979.76 292.39 956.7 260.01 967.39 271.24 1025.37 294.7 1060.95 326.78 1089.32" + id="polygon28" /> + <polygon + class="cls-2" + points="1392.66 1089.58 1403.13 1106.62 1328.15 1142.46 1314.81 1124.8 1392.66 1089.58" + id="polygon30" /> + <polygon + class="cls-2" + points="1207.82 761.22 1190.62 760.43 1186.16 813.9 1154.73 875.65 1144.49 998.73 1180.83 1142.46 1159.13 1138.34 1154.73 1160.84 1238 1202.42 1289.53 1193.51 1301.47 1184.71 1266.16 1129.51 1222.98 1101.81 1206.08 1061.68 1174.67 1009.57 1176.28 967.74 1207.82 761.22" + id="polygon32" /> + <polygon + class="cls-2" + points="1619.94 684.68 1669.45 728.5 1654.98 745.32 1669.45 754.36 1654.98 770.55 1626.24 740.57 1636.95 727.62 1607.38 702.04 1619.94 684.68" + id="polygon34" /> + <polygon + class="cls-2" + points="1623.95 496.12 1641.43 503.2 1651.43 476.29 1632.53 470.6 1623.95 496.12" + id="polygon36" /> + <polyline + class="cls-2" + points="1337.89 237.44 1335.32 267.42 1350.02 267.42" + id="polyline38" /> + <polygon + class="cls-2" + points="1473.97 263.86 1461.12 269.81 1463.57 304.56 1489.03 274.89 1473.97 263.86" + id="polygon40" /> + <polygon + class="cls-2" + points="1224.67 172.66 1264.31 159.36 1314.66 116.89 1327.4 73.81 1345 66.53 1368.66 41.66 1386.75 35.94 1397.07 100.86 1366.56 158.07 1304.63 164.89 1307.81 199.46 1223.05 188.93 1224.67 172.66" + id="polygon42" /> + <polygon + class="cls-2" + points="1170.96 237.78 1172.09 263.59 1140.95 267.44 1137.1 241.42 1170.96 237.78" + id="polygon44" /> + <polygon + class="cls-2" + points="1143.63 285.54 1154.6 283.84 1150.49 265.41 1140.95 267.44 1143.63 285.54" + id="polygon46" /> + <polygon + class="cls-2" + points="1132.89 392.01 1140.95 422.89 1173.67 411.84 1164.18 382.13 1132.89 392.01" + id="polygon48" /> + <polygon + class="cls-2" + points="935.06 398.83 954.81 429.45 967.97 426.41 972.06 432.5 935.06 450 915.33 413.09 935.06 398.83" + id="polygon50" /> + <polygon + class="cls-2" + points="1059.93 498.12 1010.63 500.85 1015.84 521.91 1076.63 521.91 1059.93 498.12" + id="polygon52" /> + <polygon + class="cls-2" + points="1875.22 246.08 1870.5 261.11 1892.26 266.99 1894.43 252.43 1875.22 246.08" + id="polygon54" /> + <polygon + class="cls-2" + points="1823.96 125.9 1833.39 100.86 1815.12 88.79 1807 100.86 1801.71 111.18 1804.52 122.49 1823.96 125.9" + id="polygon56" /> + <polygon + class="cls-2" + points="1807 -3.5 1815.12 75.27 1892.26 75.27 1899.28 94.82 1949.45 88.79 1961.23 100.86 1959.01 135.89 1996.24 166.13 2035.74 155.94 2049.61 125.9 2137.19 135.89 2191.94 192.46 2218.11 -41.13 2018.38 -48.14 1996.24 -48.14 1972.43 -22.28 1807 -3.5" + id="polygon58" /> + <polygon + class="cls-2" + points="312.81 336.41 292.39 371.14 189.25 430.12 130.49 424.42 127.29 445.55 194.86 492.56 185.31 541.59 200.39 562.93 249.63 527.74 334.03 500.85 374.89 462.3 429.63 576.54 414.32 596.91 384.65 605.34 384.65 636.33 410.75 659.44 475.17 704.66 490.68 636.33 557.78 633.45 572.01 607.49 620.25 562.93 682.62 564.54 680.93 501.96 714.29 454.16 689.68 432.74 647.91 433.04 617.61 378.62 578.47 393.48 582.31 432.16 552 441.28 551.42 409.57 531.46 387.77 531.46 337.74 513.47 291.47 442.57 296.54 427.27 375.97 406.09 394.5 397.37 363.56 359.61 368.61 360.2 392.44 312.81 336.41" + id="polygon60" /> + <polygon + class="cls-2" + points="596.12 -82.49 596.12 -48.14 642.16 30.66 659.54 120.78 664.75 208.69 675.63 237.78 654.33 247.52 623.05 225.3 615.23 192.91 596.12 188.93 592.65 225.3 550.08 241.2 525.76 237.17 496.22 254.67 482.32 233.36 497.96 201.23 478.85 185.51 416.3 241.42 384.16 247.52 375.47 237.17 352.02 241.42 306.01 287.69 280.79 233.36 230.54 224.18 221.72 237.17 168.72 247.52 173.07 267.44 127.29 281.6 108.78 305.98 81.86 301.51 59.49 331.45 18.44 291.47 -4.15 299.34 -14.57 267.44 -72.77 306.17 -51.06 -59.91 596.12 -82.49" + id="polygon62" /> + </g> + <g + id="Kleine_Straßen"> + <path + class="cls-6" + d="M1329.41,300.65l-24.89-54.75-27.18,3.29v-54.03h-3v28.84l-43.1,5.8-31.07,3.34-8.28-44.26-2.95.55,3.36,17.98-101.4,13.12,4.96,50.97-20.96,2.59-10.78-62.31-46.06,21.68,80.92,247.67,23.16-7.53,5.49,17.18,80.61-26.59,9.19,25.21,2.82-1.03-9.68-26.55-5.13-15.29,39.36-12.79.24-.08,39.54-30.06-53.04-11.2,26.29-27.78-2.18-2.06-26.1,27.59-17.5-93.51,28.77-3.65-.38-2.98-28.95,3.67-6.11-32.67,32.8-4.05,36.15-4.37v3.04l13.01,60.4,30.74,99.1-15.1,20.49,2.42,1.78,16-21.71-.11-.34,22.34-99.97-14.21-14.71ZM1197.18,233.45l-19.18,2.06-1.72-23.01,16.58-2.15,4.32,23.09ZM1202.98,400.36l-9.01-26.05,27.91-8.8,5.01,26.78-23.91,8.07ZM1200.14,401.32l-88.4,29.85-8.98-28.09,88.35-27.87,9.03,26.11ZM1048.86,317.31l29.83-3.78,4.08,23.59-25.98,5.19-19.77-60.51,35.42-4.38,5.73,33.15-29.69,3.77.38,2.98ZM1102.39,307.49l-3.25-33.38,21.29-2.63,4.15,33.19-22.19,2.81ZM1114.34,309l-2.21.51,4.84,20.77-31.26,6.24-4.04-23.38,32.68-4.14ZM1131.11,390.99l-29.26,9.23-11.17-34.95-4.46-25.79,31.43-6.28,13.46,57.78ZM1083.28,340.07l4.48,25.91,11.23,35.14-20.84,6.57-20.43-62.52,25.55-5.1ZM1099.9,403.98l8.99,28.14-20.5,6.92-9.31-28.5,20.82-6.57ZM1133.98,390.09l-18.91-81.18,60.2-7.64,5.45,43.79.02.16,9.39,27.16-56.15,17.71ZM1127.55,304.3l-4.15-33.18,47.38-5.85,4.11,33.03-47.35,6.01ZM1123.03,268.14l-6-47.97,56.26-7.28,1.72,22.95-38.07,4.09.32,2.98,60.47-6.5,4.12,21.99-78.81,9.74ZM1094.17,223.13l19.89-2.57,5.99,47.96-21.21,2.62-4.68-48ZM1096.16,274.48l3.25,33.39-18.26,2.32-5.73-33.14,20.74-2.56ZM1061.84,216.16l10.08,58.29-35.86,4.43-14.33-43.85,40.1-18.88ZM1100.91,477.34l-11.58-35.44,20.48-6.91,11.42,35.75-20.32,6.61ZM1207.25,461.34l-77.68,25.63-4.57-14.31,77.59-25.22,4.66,13.9ZM1243.63,430.94l-119.54,38.86-11.43-35.78,116.05-39.18,48.85,10.32-33.92,25.78ZM1221.33,362.53l-28.34,8.94-9.31-26.94-5.43-43.64,30.82-3.91,12.27,65.55ZM1208.51,294.03l-30.64,3.89-4.11-33.02,28.63-3.54,6.11,32.68ZM1237.81,253.96l-32.98,4.08-4.11-21.95,30.87-3.32,42.74-5.75v22.53l-36.52,4.41ZM1290.26,315.31l-12.92-60.02v-3.08l25.36-3.07,24.09,52.99.11.24,13.45,13.92-20.84,93.28-29.24-94.25Z" + id="path65" /> + <polygon + class="cls-6" + points="1499.43 1345.83 1390.52 1340.02 1340.35 1302.27 1345.54 1280.19 1336.93 1242.78 1349.03 1222.74 1396.16 1203.47 1398.23 1182.16 1361.53 1156.26 1359.8 1158.71 1395.07 1183.61 1393.35 1201.38 1346.97 1220.34 1333.74 1242.27 1342.46 1280.18 1336.98 1303.49 1389.08 1342.69 1389.45 1342.97 1499.72 1348.85 1500.17 1348.87 1535.65 1328.08 1534.14 1325.49 1499.43 1345.83" + id="polygon67" /> + <polygon + class="cls-6" + points="1603.21 1235.31 1499.1 1290.06 1500.5 1292.71 1603.31 1238.64 1650.74 1259.82 1709.08 1243.26 1666.34 1201.62 1660.48 1181.53 1621.98 1165.48 1627.18 1157.66 1620.13 1140.17 1535.36 1079.81 1505.33 1027.01 1490.26 977.41 1487.39 978.28 1495.63 1005.4 1444.73 1020.48 1433.18 998.04 1430.52 999.42 1443.2 1024.06 1496.5 1008.27 1502.51 1028.04 1533.08 1081.87 1617.67 1142.11 1623.8 1157.31 1618.69 1165.02 1453.46 1251.4 1454.84 1254.05 1619.8 1167.83 1658.01 1183.75 1663.68 1203.22 1703.27 1241.79 1650.97 1256.63 1603.21 1235.31" + id="polygon69" /> + <polygon + class="cls-6" + points="883.06 1117.28 842.66 1125.89 869.29 1166.99 871.81 1165.36 847.55 1127.91 883.69 1120.21 883.06 1117.28" + id="polygon71" /> + <polygon + class="cls-6" + points="902.62 1224.78 917.02 1157.47 907.42 1117.59 897.04 1114.06 908.27 1093.5 895.45 1088.19 894.3 1090.97 904.03 1094.99 892.7 1115.75 904.89 1119.9 913.94 1157.5 899.68 1224.15 902.62 1224.78" + id="polygon73" /> + <path + class="cls-6" + d="M1156.23,1286.41l39.02-9.48,43.44-22.88-1.4-2.65-43.12,22.71-37.95,9.22v-.86l-41.27-74.51h-18.29l-26.35-24.34-2.04,2.2,27.21,25.14h17.7l17.06,30.8-85.34,33.29-7.33,20.67-27.07,10.93-14.93-64.45-2.92.68,22.13,95.55-53.71,7.38-14.2-7.6-50.71-29-8.82-35.76-55.15-3.83-.21,2.99,52.97,3.68,8.61,34.88,51.86,29.66,15.09,8.08,62.46-8.59.3-.04,10.98-6.43,5.59,15.35,113.38-34.34v9.75l11.92,18.54-5.24,31.42,2.96.49,5.2-31.23,30.44-14.8-1.31-2.7-29.94,14.56-11.04-17.17v-37.31ZM1022.28,1337.38l-4.5.62-6.58-28.41,28.77-11.61,7.33-20.65,84.43-32.94,21.51,38.84v.82l-24.18,5.87-.5.12-16.62,20.74-62.35,10.61-27.3,15.98ZM1036.89,1332.31l13.74-8.04,22.91-3.9,5.2,13.92-37.05,11.22-4.81-13.19ZM1081.62,1333.41l-5.07-13.56,37.01-6.3,16.7-20.83,22.97-5.58v24.58l-71.61,21.69Z" + id="path75" /> + <polygon + class="cls-6" + points="903.97 1047.08 984.46 940.46 993.34 946.2 1034.04 970.77 1057.37 1000.23 1097.35 1000.23 1097.35 997.23 1058.82 997.23 1036.22 968.69 1036.06 968.48 1011.63 953.73 1040.26 914.76 1087.52 909.06 1105.13 888.19 1112.11 891.68 1113.46 888.99 1104.36 884.45 1085.99 906.22 1038.61 911.93 1009.05 952.17 994.93 943.65 983.75 936.43 903.16 1043.18 848.2 1012.32 819.1 982.51 816.95 984.61 846.36 1014.72 903.97 1047.08" + id="polygon77" /> + <polygon + class="cls-6" + points="512.88 1214.19 426.15 1308.1 426.15 1338.29 385.5 1341.44 385.5 1396.14 388.5 1396.14 388.5 1344.21 429.15 1341.06 429.15 1309.27 515.39 1215.89 515.69 1215.56 521.21 1181.27 518.25 1180.79 512.88 1214.19" + id="polygon79" /> + <path + class="cls-6" + d="M709.69,758.73l.75,9.58h-25.28v-28.48h-3v39.01l1.65,16.17-17.63,3.6,8.26,46.75,14.14-3.74,1.07,10.44,7.63,39.75-48.12,51.12-12.8,22.35-14.24-9.18,7.4-18.33,51.03-44.92-6.7-33.81-2.94.58,6.36,32.11-12.01,10.57-14.3-32.17-2.74,1.22,14.69,33.03-11.4,10.04-19.08-35.15-2.64,1.43,19.41,35.75-21.92,19.3-.27.24-8.59,21.29,16.46,10.61-17.32,30.23-11.98,37.57-28.03,43.31-10.02,48.78-17.45,41.04,2.76,1.17,17.57-41.31,9.97-48.52,27.84-43.01.11-.17,12.01-37.65,31.16-54.47,49.05-52.1-7.89-41.06-1.11-10.85,24.1-6.37.29,3.72,2.99-.23-6.21-79.47-2.99.23ZM712.25,791.43h-9.23l.23-20.12h7.42l1.57,20.12ZM685.16,778.77v-7.45h15.1l-.23,20.39-13.26,2.71-1.6-15.65ZM676.82,841.64l-7.18-40.66,14.47-2.96,4.15,40.6-11.44,3.02ZM691.2,837.84l-4.13-40.42,13.2-2.7,6.06,39.12-15.12,4ZM709.24,833.07l-5.98-38.63h9.23l2.89,37.01-6.14,1.62Z" + id="path81" /> + <path + class="cls-6" + d="M126.92,899.48l28.31-5.55,58.97,64.35,20.03-2.32-.71-26.82-55.06-61.3,18.19-15.76,27.63,5.57,6.7,18.85h14.03v-3h-11.91l-6.56-18.45-30.74-6.2-19.21,16.65-52.76-73.43-2.44,1.75,52.92,73.66-.12.1.15.17-19.38,23.19-30.28,5.94-49.62-81.81-2.57,1.56,25.66,42.31-26.79,18.9-26.23-45.87-2.6,1.49,27.87,48.73,29.32-20.68,22.94,37.82,87.44,91.17,54.41,7.34.4-2.97-53.37-7.2-84.61-88.17ZM230.55,930.32l.61,22.97-15.78,1.83-57.62-62.87,18.61-22.26,54.18,60.32Z" + id="path83" /> + <polygon + class="cls-6" + points="133.05 714.74 133.05 763.82 138.94 781.84 141.79 780.91 136.05 763.34 136.05 714.92 208.45 725.81 216.15 743.11 218.89 741.9 210.53 723.09 134.77 711.69 134.63 711.67 7.64 716.91 15.84 662.69 58.36 653.37 112.87 659.78 117.52 638.89 180.65 663.45 190.7 627.21 187.8 626.41 178.64 659.45 147.96 647.51 171.52 587.77 168.73 586.67 145.16 646.43 118.17 635.93 124 609.71 150.37 575.85 163.39 571.62 162.46 568.76 148.57 573.29 121.22 608.4 110.53 656.48 58.46 650.36 58.21 650.33 17.07 659.35 30.02 629.75 23.11 601.45 -26.33 572.8 -54.64 591.9 -52.96 594.38 -26.21 576.34 20.5 603.4 26.86 629.48 13.06 661.03 4.36 718.58 18.65 768.66 -37.6 779.9 -37.01 782.84 19.48 771.56 36.28 830.44 39.17 829.62 7.85 719.9 133.05 714.74" + id="polygon85" /> + <path + class="cls-6" + d="M452.65,897.26l8.9-27.69-13.97-3.15-17.5,6.59-11.75-13.39-72.35,6.74-12.96-96.74-1.83-15.98,26.52-5.16-5.45-50.36-2.98.32,5.16,47.62-26.54,5.16,1.98,17.28-91.4,11.38.37,2.98,91.4-11.38,18.96,141.49-40.42,56.16-47.03,9.15.57,2.95,47.62-9.26.58-.11,41.81-58.1-5.95-44.42,70.71-6.58,10.51,11.97-44.55,45.33,4.64,26.6-18.24,14.95,4.93,15.33,2.86-.92-4.31-13.39,79.73-65.37ZM386.26,921.06l44.21-44.99,17.32-6.52,9.9,2.23-7.62,23.72-59.72,48.97-4.08-23.41Z" + id="path87" /> + <path + class="cls-6" + d="M493.21,455.66v-109.7h-3v106.7h-31.46l-20.58,35.91,4.24,43.99-30.89,4.49-76.13-19.46-14.53,50.89-26.27-4.71-90.66,30.02,5.93,15.75-24.99,7.68.88,2.87,26.19-8.05,36.49,5.13,7.66,29.41-1.97.36-43.06,25.29,1.52,2.59,42.61-25.02,1.66-.31,7.17,27.53-44.13,13.06.85,2.88,44.04-13.03,10.64,40.87,2.9-.76-10.67-40.96,54.15-16.03,41.33,19.24,2.1,11.49,2.95-.54-7.42-40.54-23.96-20.28-18.24-23.86v-21.13l18.91-66.21,73.88,18.89,34.32-4.99-4.42-45.89,19.24-33.57h32.72ZM207.83,595.65l64.05-21.21,11.64,36.47-33.85,3.39-36.75-5.17-5.08-13.49ZM251.53,617.14l32.92-3.3,8.3,25.99-33.7,6.2-7.52-28.9ZM362.47,678.67l-40.43-18.82-55.15,16.32-7.09-27.22,75.48-13.89,22.72,19.23,4.46,24.38ZM333.03,632.42l-37.31,6.86-8.22-25.75,28.88-2.89,16.66,21.78ZM315.56,587.01v20.7l-28.99,2.9-11.84-37.11,20.08-6.65,25.22,4.52-4.46,15.63Z" + id="path89" /> + <polygon + class="cls-6" + points="586.01 685.91 591.63 656.98 588.68 656.41 583.48 683.2 559.28 686.19 559.28 654.1 556.28 654.1 556.28 686.56 513.39 691.85 506.3 661.11 503.38 661.78 511.07 695.16 586.01 685.91" + id="polygon91" /> + <path + class="cls-6" + d="M1107.37,533.46l-35.71,7.59,7.22-18.54-17.41-24.81,2.96-35.63-10.25-26.12-18.19-49.88-30.73,5.54-3.07-6.87-2.74,1.22,3.48,7.78,1.83,9.59-22.73,7.13-8.63-17.83-2.7,1.31,9.76,20.16,25.12-7.88,3.85,10.24,42.16,21.11,9.79,24.95-3,36.02,17.11,24.38-7.36,18.87-103.82,22.05-.11.02-72.25,26.65-58.18,8.13,2.11-26.2,33.41-13.93-14.09-23.06h-17.36l-15.41-5.78-8.15-16.34,31.69-17.6,62.44-58.16.31-.29,8.17-29.44-40.93-89.35-2.73,1.25,40.47,88.35-7.65,27.57-61.87,57.62-59.33,32.94h-33.11l9.9,45.47,20.55-.3,45.9,28.03-125.47,17.53-4.12-18.18-91.55,22.62v37.48h3v-35.13l86.3-21.32,4.05,17.89,131.82-18.42,1.3.79.08-.98,59-8.25.16-.02,72.35-26.69,142.93-30.36-.62-2.93ZM1007.94,403.96l-1.81-9.46,27.91-5.03,16.04,43.98-38.25-19.15-3.89-10.35ZM785.74,544.39l47.18,27.84-2.05,25.36-46.67-28.5,1.54-24.71ZM864.93,557.1l-30.33,12.65-10.13-5.98,14-25.3h15.07l11.39,18.63ZM820.3,532.08l15.14,5.68-13.55,24.48-35.94-21.21.77-12.37,24.95-13.85,8.62,17.28ZM755.51,529.24h28.17l-2.45,39.18-17.14.25-8.58-39.43Z" + id="path93" /> + <path + class="cls-6" + d="M1361.37,645.93l24.21,13.28-17.43,58.04,2.87.86,17.24-57.43,28.15,15.44,6.48,18.33,2.83-1-6.86-19.42-28.97-15.89,23.1-31,26.11,19.67,19.2-26.82,39.8,28.31,1.74-2.45-39.79-28.3,14.22-19.86,31.32,22.16,1.73-2.45-90.69-64.16-1.73,2.45,56.92,40.27-14.21,19.85-52.91-37.63-1.74,2.45,26.76,19.03-17.33,23.26-24.42-18.4-1.81,2.4,24.43,18.41-23.36,31.35-24.08-13.21-19.19-18.72,63.14-83.91.14-.18,11.81-32.82-2.82-1.02-11.66,32.39-63.5,84.39-89.16,26.59-8.57-5.53,75.65-51,.44-.3,3.9-12.88,26.36-12.59,14.61-39.24-44.7-9.6,18.43-42.12,29.91-55.74,13.92,39.46,16.67,11.98-15.28,18.98,2.34,1.88,15.38-19.1,26.96,19.38,1.75-2.44-45.31-32.57-15.87-44.98-32.95,61.4-238.98,137.38.75,1.3-1.46.33,15.4,69.39-23.93,6.37-5.27-26.72-50.05,10.69,6.26,27.61-11.96,2.81-7.91,51.78-.02,23.07h47.62l13.7-8.68-1.38-6.25,23.36-6.48-13.75-64.87,45.45-12.1,9.87,40.91,2.92-.7-10.22-42.38-3.12-14.13,12.7-4.32,68.98-70.59,29.02-2.83,23.56,38.28-27.28,18.39-32.32,18.99-48.07,86.05h-14.95v3h16.71l48.53-86.88,30.86-18.13,10.86,7.01,90.11-26.87,19.8,19.31ZM1432.18,601.42l23.69,16.85-17.41,24.31-23.67-17.83,17.38-23.33ZM1360.3,530.87l-12.98,34.85-24.78,11.84-24.64-30.85,14.05-10.59.31-.24,6.13-14.02,41.9,9ZM1099.05,614.64l17.5-10.06,16.18,73.31-18.54,4.94-15.14-68.19ZM1035.63,676.24l44.1-9.42,4.71,23.88-43.23,10.16-5.58-24.62ZM1021.4,756.47l7.59-49.66,9.54-2.24-2.1,71.63h-15.03v-19.73ZM1074.8,762.14l1.54,6.97-11.19,7.09h-25.72l1.36-46.38,27.44-3.73,22.56-5.38,4.71,22.24-22.22,5.59.73,2.91,22.11-5.56,2.07,9.77-23.39,6.49ZM1090.16,717.77l-22.41,5.35-26.87,3.66.67-22.92,43.48-10.21v.05s.03,0,.03,0l5.1,24.08ZM1143.91,657.58l-11.71,3.98-12.92-58.55,51.15-29.41,21.15,35.2-47.67,48.78ZM1213.15,586.72l-19.41,19.86-20.71-34.48,160.47-92.25-23.67,54.11-66.06,49.77-30.62,2.99ZM1246.33,585.56l49.17-37.04,24.95,31.23-3.56,11.74-47.29,31.88-23.27-37.81Z" + id="path95" /> + <polygon + class="cls-6" + points="1301.16 1029.58 1278.08 1034.55 1274.69 1015.79 1279.88 969.16 1338.24 965.62 1343.54 839.94 1312.28 837.71 1312.07 840.7 1340.42 842.72 1335.36 962.79 1280.22 966.13 1282.56 945.09 1290.63 879.19 1290.65 879.02 1284.55 815.27 1318.49 812.58 1318.25 809.59 1281.28 812.52 1287.63 878.98 1279.58 944.75 1271.69 1015.67 1271.66 1015.89 1279.59 1059.73 1282.54 1059.2 1278.62 1037.5 1301.79 1032.51 1301.16 1029.58" + id="polygon97" /> + <rect + class="cls-6" + x="1419.78" + y="394.48" + width="97.14" + height="3" + transform="translate(-6.68 766.28) rotate(-29.19)" + id="rect99" /> + <path + class="cls-6" + d="M2141.01,336.31l33.14-47.38-89.12-53.09-26.49,6.26-21.38-15.42-3.17-2.35,11.8-9.4-1.87-2.35-14.85,11.83.29.22-20.39,24.47v9.92l47.55,22.54,6.69-9.86-38.11-18.92,6.47-8.8-9.42-6.02,9.61-11.53,3.61,2.68,22.5,16.24,26.65-6.29,85.31,50.82-30.39,43.45h-65.32l-49.13-21.89-.18-.08-38.85-6.34-17.66-10.71-1.55,2.56,17.91,10.86.25.15,39.04,6.37,49.54,22.07h67.52ZM2027.27,244.77l-6.69,9.1,38.22,18.98-3.31,4.88-43.51-20.63v-6.93l8.25-9.91,7.04,4.5Z" + id="path101" /> + <polygon + class="cls-6" + points="2123.83 142.24 2121.66 144.31 2135.13 158.42 2111.05 184.5 2118.46 191.63 2091.9 218.99 2066.07 195.47 2064.05 197.69 2092.03 223.16 2122.71 191.56 2115.24 184.38 2139.24 158.38 2123.83 142.24" + id="polygon103" /> + <path + class="cls-6" + d="M1810.66,55.84l34.22,27.7,231.44-59.7-.75-2.9-229.98,59.32-33.57-27.17-50.35-12.47,11.59-43.74-2.9-.77-11.86,44.78-6.95,6.17-19.87-27.49-2.43,1.76,20.04,27.73-23.68,21.03-48.96,36.75,1.43.49-8.12,38.91-26.49-7.98-.87,2.87,26.55,8-7.54,21.02-41.24-12.83-.89,2.87,41.11,12.79-7.31,20.36-39.64-11.87-.86,2.87,39.49,11.82-15.92,44.36-3.89,12.66-32.3-8.55-.77,2.9,32.18,8.52-6.77,22.02-7.81,20.69-33.49-8.33,4.62-11.63-2.79-1.11-5.89,14.82,39.41,9.81,8.32-22.03,74.94,15.49-2.62,19.4h-.07s-2.02,23.68-2.02,23.68l-28.81-.91-5.8,41.61-60.35-22.02,7.53-29.12,14.4,4.07-7.41,25.88,2.88.83,8.23-28.77-20.25-5.72-13.55,52.36-153.76,63.23,1.14,2.78,21.48-8.83,25.15,56.57,69.05-26.32-1.07-2.8-21.97,8.37-24.59-54.98,85.08-34.99,31.93,67.34-61.04,27.48,1.23,2.74,61.87-27.86,18.61,6.8,20.04-4.63,11.8,41.26,2.88-.82-11.76-41.11,42.99-9.92,20.93,90.65-43.15,10.32,3.78,14.78-35,51.63-12.85-9.3-20.44-18.68-11.45,11.89-22.49,22.03-22.19-19.6-1.99,2.25,22.03,19.45-33.06,32.38,2.1,2.14,33.22-32.53,110.56,97.63,1.99-2.25-27.81-24.56,18.5-23.74-2.37-1.84-18.38,23.6-23.14-20.43,19.7-23.14-2.29-1.95-19.66,23.1-15.4-13.6,26.18-38.61,82.16,59.46,1.76-2.43-82.24-59.51,35.81-52.82-3.36-13.13,18.69-4.47,5.6,31.85,23.47-4.07,3.3,14.28-23.29,35.69,2.51,1.64,23.64-36.23.35-.53-11.19-48.46,45.31-10.84,6.48,26.2,33.23-8.31-6.5-25.84,21.67-5.19-13.94-54.27-2.91.75,6.25,24.32-18.56,4.62-15.79-62.74,103.78-23.96,9.02,36.72,2.91-.71-4.89-19.9,28.99-2.48,1.78,14.78,2.98-.36-1.91-15.86,6.09-16.25,13.9,4.44.91-2.86-24.37-7.78,7.17-22.02-2.85-.93-7.38,22.64-30.16,6.96-9.36-38.12,1.58-29.38,25.07,2.08-4.08,31.79,2.98.38,4.1-31.93,35.65,2.95.25-2.99-124.48-10.3v-39.08l30.12-90.69.67-1.57,88.73,30.55,10.09-31.97-2.86-.9-9.16,29.03-56.96-19.61,9.24-29.06-2.86-.91-9.22,28.99-25.82-8.89,26.75-62.48,13.14-15.33,25.76,4.04-19.5,56.77,2.84.97,20.66-60.16-30.95-4.85-14.53,16.95-28.81,67.3-30.26,91.1-.08.23v42.32l22.01,1.82v22.07h3v-21.82l35.51,2.94-1.6,29.91,9.46,38.52-103.79,23.96-11.01-43.77-32.83,9.89,10.61,41.55-43.54,10.05-9.63-41.71-.18-.79-40.14-14.65,5.52-39.58,82.68,2.62-1.27,32.54,3,.12,1.27-32.56,27.63.88,2.65,13.1,2.94-.6-3.12-15.43-29.98-.95.77-19.87-55.28-5.4,2.58-19.08,27.19,5.62.61-2.94-27.39-5.66,4.61-34.1,5.95-20.19,20.62,6.03.84-2.88-20.62-6.03,5.04-17.12,55.58,20.25,23.98-70.04,27.66,8.93,10.8-32.55-2.85-.95-9.87,29.73-24.78-8,10.31-30.11-2.84-.97-10.33,30.16-34.25-11.06-.92,2.86,34.2,11.04-6.34,18.53-66.69-23.58-8.23,28.04,65.39,23.37-7.1,20.74-83.8-30.54,16.97-57.96,14.1,3.94,7.42-25.8,19.96,6.81,5.86-16.01-2.82-1.03-4.85,13.26-17.32-5.91,8.88-30.86,28.58-16.23,16.87,12.31-11.75,35.48,2.85.94,12.43-37.56h-.02s10.29-33.33,10.29-33.33l11.35,2.81ZM1632.24,649.59l-37.28-32.92,22.37-21.91,9.45-9.82,17.18,15.7-9.56,9.41,2.11,2.14,9.78-9.63,11.97,8.66-26.01,38.37ZM1930.39,391.27l8.65,2.76-5.84,15.56-29.95,2.57-3.4-13.84,30.54-7.05ZM1531.51,471.13l-41.62,15.86-23.96-53.9,41.03-16.87,24.55,54.9ZM1647.62,453.47l-17.77-6.49-32.7-68.96,4.54-17.56,60.68,22.14-4.83,34.65,9.1,31.83-19.03,4.39ZM1741.91,564.93l-20.36,3.53-5.11-29.08,18.55-4.44,6.92,29.99ZM1737.23,531.32l-5.39-23.33,44.79-11.16,5.86,23.66-45.26,10.83ZM1779.55,496.1l27.21-6.78,6.02,23.92-27.36,6.55-5.86-23.69ZM1819.29,539.11l-27.4,6.85-5.76-23.25,27.38-6.55,5.78,22.96ZM1828.25,483.97l6.19,24.09-18.74,4.48-6.03-23.94,18.58-4.63ZM1806.03,486.42l-27.2,6.77-5.34-21.59-10.64-41.65,27.38-6.32,15.8,62.79ZM1752.19,388.21l27.07-8.15,10.23,40.66-27.39,6.32-9.92-38.83ZM1759.92,430.62l10.65,41.7,5.34,21.59-44.75,11.15-14.86-64.37,43.61-10.07ZM1703.27,397.52l9.45,40.92-43.14,9.96-8.97-31.37,4.65-33.38,38.01,13.87ZM1753.99,340.65l-53.59-1.7,1.75-20.5,52.5,5.13-.66,17.07ZM1721.05,189.53l6.54-22.28,63.73,22.53-7.58,22.16-62.68-22.4ZM1680.95,108.32l23.35,7.96,1.99,28.73-3.28,11.2-30.17-9.09,8.11-38.8ZM1672.04,150l30.13,9.08-6.36,21.71-31.32-9.75,7.55-21.04ZM1663.47,173.87l31.49,9.8-5.96,20.36-32.83-9.83,7.3-20.33ZM1689.55,207.33l9.37,3.42-5.88,18.53-21.64-6.33,5.97-19.26,12.18,3.65ZM1674.49,202.82l-5.97,19.27-20.23-5.92,6.87-19.14,19.33,5.79ZM1639.21,241.47l8.06-22.47,44.86,13.13-6.64,20.9-2.97,15-48.18-10.73,4.87-15.82ZM1633.46,260.17l21.72,4.84-3.34,17.32-23.69-4.9,5.31-17.26ZM1658.11,265.66l23.83,5.31-3.35,16.89-23.82-4.92,3.33-17.28ZM1681.54,288.46l3.33-16.85,19.92,4.44-2.27,16.75-20.99-4.34ZM1707.14,258.69l-1.95,14.39-19.74-4.4,2.93-14.82,6.63-20.88,18.14,5.31-6.01,20.41ZM1714,235.4l-18.08-5.29,5.82-18.34,17.35,6.32-5.1,17.31ZM1720.86,147.27l-11.64-3.25-1.85-26.68,20.12,6.86-6.64,23.07ZM1737.51,89.41l-9.18,31.9-45.34-15.46,44.47-33.38,23.59-20.95,15.48,21.41-29.03,16.48ZM1786.46,84.48l-16.65-12.15-16.5-22.82,6.92-6.15,36.15,8.95-9.94,32.17Z" + id="path105" /> + <polygon + class="cls-6" + points="1487.89 273.91 1442.96 326.27 1460.28 369.43 1463.07 368.32 1446.42 326.85 1490.17 275.87 1487.89 273.91" + id="polygon107" /> + <polygon + class="cls-6" + points="1604.61 67.27 1623.17 21.02 1620.39 19.9 1602.88 63.5 1525.08 36.77 1528.3 29.01 1525.53 27.86 1521.08 38.57 1562.03 52.64 1554.15 73.39 1536.87 67.66 1495.9 175.84 1498.71 176.91 1531.36 90.7 1563.47 102.27 1564.49 99.45 1532.42 87.89 1538.66 71.42 1568.52 81.32 1569.47 78.48 1557 74.34 1564.87 53.61 1604.61 67.27" + id="polygon109" /> + <polygon + class="cls-6" + points="1403.47 153.83 1435.2 127.05 1433.26 124.76 1401.41 151.64 1401.29 151.74 1353.41 212.93 1353.14 213.28 1346.33 292.97 1365.71 292.97 1382.25 223.4 1379.33 222.71 1363.34 289.97 1349.6 289.97 1356.05 214.43 1403.47 153.83" + id="polygon111" /> + <polygon + class="cls-6" + points="1421.6 125.22 1421.6 35.94 1418.6 35.94 1418.6 99.36 1397.07 99.36 1397.07 102.36 1418.6 102.36 1418.6 125.22 1421.6 125.22" + id="polygon113" /> + <rect + class="cls-6" + x="1370.13" + y="3.98" + width="72.46" + height="3" + transform="translate(640.52 1185.04) rotate(-57.23)" + id="rect115" /> + <path + class="cls-6" + d="M1367.92-10.68l-89.9,90.05-32.97,17.61-5.35-16.05,81.17-92.3-2.25-1.98-81.45,92.62-21.14,6.23.85,2.88,20.17-5.94,5.33,15.98-21.43,11.45,1.41,2.65,20.98-11.21,20.29,60.82,2.85-.95-9.65-28.91,27.88-16.81-24.78-23,19.91-10.64,90.21-90.37-2.12-2.12ZM1279.74,114.92l-23.89,14.41-9.83-29.47,11.1-5.93,22.62,20.99Z" + id="path117" /> + <polygon + class="cls-6" + points="1905.4 707.75 1892.35 731.13 1894.97 732.59 1908.65 708.09 1937.09 672.47 1950.24 667.06 1959.49 689.92 1947.6 742.34 1950.53 743 1962.52 690.12 1962.62 689.67 1953.01 665.92 2005.21 644.45 2004.07 641.68 1951.89 663.14 1942.25 639.32 1938.57 595.17 1935.58 595.42 1939.28 639.8 1939.3 640.02 1949.11 664.28 1935.59 669.84 1935.23 669.99 1907.07 705.26 1852.65 670.29 1834.33 598.98 1831.43 599.72 1842.26 641.91 1819.42 646.6 1810.8 603.98 1807.86 604.57 1816.48 647.2 1801.01 650.38 1801.61 653.32 1843.01 644.82 1850.03 672.17 1905.4 707.75" + id="polygon119" /> + <polygon + class="cls-6" + points="1995.16 595.89 1965.21 460.43 1965.21 421.39 1962.21 421.39 1962.21 460.76 1992.23 596.53 1995.16 595.89" + id="polygon121" /> + <path + class="cls-6" + d="M1770.38,785.96l-1.8,2.4,19.07,14.33-55.22,76.47-15.3-10.3-1.68,2.49,15.22,10.24-3.67,5.09,34.22,23.85,63.17-83.99-54.01-40.58ZM1760.56,906.41l-29.35-20.45,58.83-81.47,30.15,22.65-59.63,79.27Z" + id="path123" /> + <polygon + class="cls-6" + points="1977.83 828.53 1911.11 858.97 1912.36 861.7 1979.57 831.03 2005.7 804.89 2003.58 802.77 1977.83 828.53" + id="polygon125" /> + <polygon + class="cls-6" + points="1980.11 1125.92 1978.58 1062.95 2012.07 1011.39 2048.18 962.01 2048.55 961.51 2040.02 908.35 2040.02 889.46 2073.63 848.77 2071.32 846.86 2037.02 888.39 2037.02 908.47 2045.39 960.75 2009.61 1009.68 2004.43 1017.66 1953.49 963.18 1951.3 965.23 2002.74 1020.25 1975.56 1062.09 1977.18 1128.8 2117.94 1134.62 2120.57 1146.95 2123.5 1146.33 2120.39 1131.72 1980.11 1125.92" + id="polygon127" /> + <polygon + class="cls-6" + points="1921.92 1014.98 1918.96 1014.46 1910.69 1061.34 1886.61 1042.62 1884.77 1044.99 1910.51 1065 1936.3 1125.39 1939.06 1124.21 1913.29 1063.88 1921.92 1014.98" + id="polygon129" /> + <polygon + class="cls-6" + points="1975.31 1157.28 1972.33 1157.69 1976.87 1191.36 1950.39 1201.59 1977.15 1261.88 1979.89 1260.67 1954.41 1203.25 1980.16 1193.31 1975.31 1157.28" + id="polygon131" /> + <rect + class="cls-6" + x="1812.81" + y="1104.44" + width="3" + height="90.35" + transform="translate(-265.45 613.04) rotate(-17.89)" + id="rect133" /> + <path + class="cls-6" + d="M2090.19,746.53l86.99-37.82,128.07-17.43-.4-2.97-128.28,17.46-.21.03-87.76,38.15-.38.17-9.61,13.58-11.17,41.35,40.77,16.08,13.36,18.9,16.79-9.04,16.85,42.81,28.23-10.5-1.04-2.81-25.47,9.47-17.01-43.22-.16.09-9.7-18.1,85.32,36.11,1.17-2.76-88.74-37.56-.24-.45,9.65-23.17,84.64-30.81-1.03-2.82-85.26,31.04-.62.22-10.27,24.67-48.11-20.36,4.82-17.84,8.82-12.46ZM2125.65,800.87l11.46,21.39-14.62,7.88-12.34-17.47-39.11-15.42,4.73-17.49,49.89,21.11Z" + id="path135" /> + <polygon + class="cls-6" + points="2011.39 672.72 2032.61 670.29 2018.58 595.02 2015.63 595.57 2029.07 667.68 2011.05 669.74 2011.39 672.72" + id="polygon137" /> + <rect + class="cls-6" + x="800.76" + y="317.88" + width="3" + height="40.09" + transform="translate(-67.44 299.93) rotate(-20.34)" + id="rect139" /> + <polygon + class="cls-6" + points="936.53 596.61 933.59 597.2 938.57 622.01 1039.7 596.45 1038.96 593.54 962.56 612.85 957 589.94 954.08 590.65 959.65 613.59 940.89 618.33 936.53 596.61" + id="polygon141" /> + <rect + class="cls-6" + x="901.21" + y="301.82" + width="3" + height="57.8" + transform="translate(-53.85 426.93) rotate(-25.86)" + id="rect143" /> + <polygon + class="cls-6" + points="1203.55 112.96 1200.55 112.96 1200.55 147.12 1176.91 143.18 1176.17 115.42 1173.17 115.5 1173.89 142.67 1124.32 134.41 1123.83 137.37 1173.97 145.73 1175.12 188.97 1178.12 188.89 1176.99 146.23 1203.55 150.66 1203.55 112.96" + id="polygon145" /> + <path + class="cls-6" + d="M745.49,131.91l-20.33-28.79-51.13,13.63,12.36,157.77h37.28l104.38-35.94.19-.07,19.44-13.33.15-.32,9.26,1.77,13.89,25.83,113.04-48.57-10.57-47.25,17.16-10.74,22.1,17.65,37.81-30.38,17.11,29.21,2.59-1.52-17.34-29.6,32.12-25.81,20.78,39.31,2.65-1.4-21.05-39.82,28.1-22.58-13.57-26.01,69.78-39.73-1.48-2.61-72.29,41.16,13.77,26.39-25.73,20.67-50.18-94.91,57.61-40.03-1.71-2.46-59.79,41.54,51.69,97.77-70.87,56.94-21.88-17.47-20.76,12.99,10.49,46.89-108.23,46.5-12.06-22.43,70.66-21.89,21.36-26.2-2.33-1.9-20.79,25.5-71.18,22.05-8.84-1.69,10.61-22.61-7.19-12.73,63.12-8.1,30.79-12.35-1.12-2.79-29.2,11.71-24.17-63.22,26.66-11.57-1.19-2.75-29.29,12.72,25.06,65.54-62.26,7.98-15.57-27.55-44.11-5.53-12.69-30.49-2.77,1.15,13.36,32.09,44.34,5.56,22.85,40.44-10.28,21.9-72.68-13.92-.56,2.95,71.08,13.61-17.06,11.7-80.43,27.69-6.57-18.56,12.03-3.32-15.17-59.62,24.4-2.19-.27-2.99-78.58,7.06-2.95-37.65,66.14-14.32ZM748.29,239.52l-22.26,6.15-15.48-61.31,23.18-2.08,14.56,57.24ZM707.53,184.63l16.35,64.74,13.11-3.62,6.63,18.74-20.44,7.04h-34l-6.63-84.65,24.98-2.25ZM677.22,119.01l46.7-12.45,16.51,23.38-61.31,13.28-1.9-24.21Z" + id="path147" /> + <path + class="cls-6" + d="M158.38,367.65l-.63-2.93-44.22,9.47-35.43-2.13-3.88,19.97-.59-.04-.24-.02-65.15,16.49-37.32-12.58-10.15,11.2,2.22,2.02,8.83-9.74,36.29,12.23,39.82-10.08-14.45,58.93,2.91.71,14.83-60.48,22.4-5.67-15.63,80.45,2.95.57,15.7-80.83,30.57,2.05-21.21,93.63,2.93.66,21.32-94.09,24.19,1.62.2-2.99-23.72-1.59,3.97-17.52,43.48-9.31ZM77.24,392.23l3.31-17.02,31.25,1.88-3.89,17.19-30.66-2.05Z" + id="path149" /> + <polygon + class="cls-6" + points="234.4 377.06 232.17 355.38 313.13 337.88 312.49 334.94 228.91 353.01 231.11 374.34 145.88 381.94 146.14 384.93 234.4 377.06" + id="polygon151" /> + <path + class="cls-6" + d="M1009.22,383.66l2.83-.99-41.27-117.75-2.83.99,11.41,32.56-19.61,7.66-12.42-31.82-2.79,1.09,12.42,31.82-17.01,6.65-12.09-32.78-2.81,1.04,28.37,76.89,2.81-1.04-8.89-24.1,17.79-5.73,10.92,27.99-19.42,9.15,1.28,2.71,19.24-9.06,11.47,29.39,2.79-1.09-11.54-29.58,17.38-8.18,11.99,34.2ZM980.35,301.3l5.91,16.88-19.38,6.24-6.05-15.5,19.51-7.62ZM946.29,331.06l-5.3-14.38,17.06-6.67,5.98,15.33-17.74,5.72ZM978.76,354.85l-10.78-27.63,19.28-6.21,8.98,25.61-17.47,8.23Z" + id="path153" /> + <polygon + class="cls-6" + points="1042.14 616.1 1041.22 613.25 1023.81 618.86 1009.84 633.14 947.79 650.4 947.52 650.48 934.41 660.33 895.65 669.78 895.45 669.83 871.15 683.24 872.6 685.87 896.55 672.65 935.72 663.09 948.87 653.22 974.62 646.05 977.61 660.74 980.55 660.14 977.52 645.25 1009.64 636.31 1013.93 649.74 1016.79 648.82 1012.34 634.88 1025.44 621.48 1042.14 616.1" + id="polygon155" /> + <path + class="cls-6" + d="M811.57,866.94l93.02-88.15-2.06-2.18-44.42,42.1-30.15-29.67,37.43-37.82,20.52-10.04-1.32-2.7-20.74,10.15-.23.11-68.32,69.03,25.39,94.78-42.56,20.49,1.3,2.7,44.8-21.57-12.66-47.23ZM825.85,791.17l30.08,29.61-45.24,42.87-12.05-44.99,27.21-27.49Z" + id="path157" /> + <polygon + class="cls-6" + points="969.41 1011.25 953.34 1038.66 953.34 1064.27 944.29 1085.83 947.05 1086.99 956.34 1064.87 956.34 1039.47 972 1012.77 969.41 1011.25" + id="polygon159" /> + <polygon + class="cls-6" + points="963.49 1085.4 1076.01 1117.36 1076.01 1052.01 1073.01 1052.01 1073.01 1113.39 962.4 1081.98 957.02 1088.64 959.35 1090.52 963.49 1085.4" + id="polygon161" /> + <polygon + class="cls-6" + points="587.28 1240.42 562.36 1217.48 573.29 1207.77 571.3 1205.53 560.14 1215.44 553.88 1209.67 566.61 1201.63 565.01 1199.1 548.96 1209.22 587.42 1244.63 598.96 1232.47 596.79 1230.4 587.28 1240.42" + id="polygon163" /> + <path + class="cls-6" + d="M1715.13,1336.41h-22.92l-22.57,15.42-34.27-5.95-.26-.05-58.65,10.49-19.82-22.55h-11.75v3h10.39l20.04,22.8,10.46-1.87-.98,10.68,102.59,32.41,1.04.33,10.56-14.65h62.17v-29.49l-45.72-20.42-.29-.13ZM1758.15,1383.46h-60.71l-10.19,14.13-99.25-31.36.84-9.09,46.27-8.27,35.21,6.12,22.81-15.58h21.36l43.65,19.5v24.55Z" + id="path165" /> + </g> + <g + id="größere_Straßen"> + <path + class="cls-4" + d="M1886.91,1046.69l35.82-29.97,131.24-207.46.17-.27,35.42-97.4,60.09-40.06,126.74-16.71-.78-5.95-127.43,16.8-.69.09-20.81,13.87-24.65-35.36v-25.38l-18.09-35.4-56.93,6.12-12.78-107.81-9.89-33.69-38.06-28.55-15.92-50.08,31.63-13.38,39.49,50.7,61.41,27.59,41.6,50.77h60.7v-6h-57.86l-40.69-49.66-61.34-27.56-41.41-53.16-32.94,13.94,15.65-66.32,31.52-93.12,43.82,15.07,1.67.58,85.49-77.35-13.64-90.5-39.23-36.43-19.29-63.66-5.74,1.74,19.76,65.21,38.88,36.1,12.85,85.25-80.48,72.81-284.67-97.88-50.99-79.89-5.06,3.23,51.55,80.77.56.88,17.83,6.13-42.97,135.62-127.93-32.58-1.48,5.81,128.55,32.74,6.63,114.04-65.86-10.54-98.16-29.05-77.41-67.19,31.82-59.69,35.51,8.92-12.76,39.51,5.71,1.84,14.73-45.61-40.76-10.24,114.68-308.91-5.62-2.09-94.37,254.19-74.77-26.62,35-92.13,25.38-3.75-.88-5.94-27.05,4-54.88,5.26h-58.26l-19.27,6.09-23.76,24.97-18.33,7.58-12.89,43.59-51.21,43.19,10.73,33.31-45.72-4.96-67.31-1.06-26.36,7.38-21.12-47.52,54.25-26.19,56.62-5.17-.54-5.97-57.16,5.21-.54.05-149.59,72.22-60.8-11.17-43.13-101.93-171.12,58.16,70.05,177.43-39.65,21.74-320.68,15.07-1.79.08-30.47,63.71-114.1,43.05-19.23,47.81-127.16,49.19-36.34-32.71,17.75-117.29,23.93-29.51-9.46-40.78,161.67-39.59-1.43-5.83-161.6,39.57-31.15-134.22-.06-.25L58.01,41.35l18.23-75.51-5.83-1.41-18.69,77.42,61.84,148.22,41.25,177.75-23.11,28.5-17.41,115-35.31-31.77-25.68-9.19-160.87-116.05-3.51,4.87,161.22,116.3.34.25,25.37,9.08,76.99,69.29,14.52,34.32,47.05,97.41,20.3,44.69-107.23,54.02-81.75,42.53H-3.74l-37.9-15.9-.28-.12-78.58-15.51-1.16,5.89,77.98,15.4,38.73,16.25h44.23l-76.47,77.32h-64.67v6H-34.68l82.95-83.87,81.95-42.63,105.42-53.11v99.27l28.25,174.05,8.32,30.04,42.62,48.12,64.83,23.33,50.25,35.33,33.21,20.81,56.74,16.51,30.02-11.01,13.46,28.96,195.7,189.63-71.71,109.32,5.02,3.29,74.43-113.46-.1-.1,87.05-151.25.19-.34,5.52-20.42,128.2,26.82,55.17-18.39,62.35-87.82,129.86,64.86v69.63l-40.31,53,13.16,76.95,5.91-1.01-12.72-74.38,39.96-52.53v-70.98l49.58-8.57,165.8-96.27,74.58-15.91,201.24-21.2,12.91,29.97v110.24l27.1,48.39-17.68-12.07h-67.14l-125.58,39.49-.75.24-32.75,34.91,4.38,4.11,31.68-33.76,123.96-38.98h64.37l26.12,17.83,2.02,3.6.65-.95,69.92,72.56,57.68,114.96,5.36-2.69-57.89-115.36-.21-.41-71.41-74.1,77.48-112.91,42.61-11.57,28.56,24.01h36.74l-.15.91,59.4-13.56,92.96,1.81,75.22-26.69-2.01-5.65-74.2,26.33-92.24-1.8h-.37s-51.46,11.74-51.46,11.74l4.64-29-51.57-3.22-63.92-2.39-28.29-12,6.1-55.79,42.46-4.47ZM1735.95,1056.56l-54.51-126.56,112.68-175.71,27.83,20.5,86.78,86.78v26.71l-37.39,49.54.94,44.2-32.23,63.56-104.1,10.97ZM1283.9,767.71l-3.73,43.19h-29.13l-31.21,84.53-28.89-3.75,19.45-127.34,73.52,3.37ZM1190.02,897.61l33.77,4.39,31.42-85.1h30.45l4.23-48.91,38.12,1.75.27-5.99-37.87-1.74.76-8.83,24.55-32.49h63.4l112.72-58.23-11.81,44.91v67.8l-19.3,49.38,27.6,80.47-9.92,48.05,6.69,22.77-41.23,12.56-.33.1-94.44,54.6-134.83,26.38-36.61-60.75v-30.26l12.35-80.87ZM1490.85,974.09l-6.25-21.28,9.94-48.19-27.42-79.94,18.91-48.39v-68.16l35.04-133.3.04-.17,7.97-55.86,60.21,54.54-50.43,47.75,26.95,58.7,11.72,86.53,36.17,49.16,59.83,112.13-104.98,22.79-.12.03-77.59,23.64ZM1861.02,349.54l-32.96-13.34-87.89,43.61-6.49-111.69,133.72,21.63,92.59,8.49-15.6,66.09-83.38-14.79ZM1828.31,342.78l31.04,12.56,85,15.08,15.52,48.83-199.24,49.44-19.72-82.54,87.4-43.37ZM1786.4,602.33l-139.9-75.27,31.99-30.55,77.74-20.5,30.18,126.32ZM1991.31,599.17l22.8,97.6v63.57l-71.61-22.92-25.51,8.14-34.42,42.93-22.2-6.2-10.88,11.55-23.45-23.45-.16-.16-55.24-40.7-41.44-37.54,37.47-41.93.48-.54,11.66-44.47,9.45,5.09,15.82,66.22,5.84-1.39-15.42-64.53,64.16-13.42,132.65,2.15ZM1641.93,531.41l131.44,70.72-11.66,44.47-36.96,41.36-126.63-114.72,43.81-41.84ZM1720.75,692.44l-104.27,116.7-33.2-45.12-11.57-85.46-.06-.44-25.53-55.61,47.65-45.12,126.99,115.04ZM1619.89,814.33l105.31-117.86,41.52,37.61.11.1,22.45,16.54-110.99,173.07-58.41-109.46ZM2096.03,620.34v25.82l25.65,36.8-37.09,24.72-35.87,98.64-130.57,206.39-33.69,28.2-37.3,3.93,31.15-61.44-.93-43.62,37.35-49.49v-31.21l-61.01-61.01,8.51-9.04,22.53,6.29,35.76-44.61,21.96-7,77.61,24.84v-72.48l-22.71-97.25,83.08-8.93,15.56,30.44ZM2008.3,482.76l12.74,107.49-27.48,2.95-135.14-2.19h-.33s-64.98,13.59-64.98,13.59l-31.08-130.09,201.02-49.88,36.1,27.08,9.16,31.05ZM1992.44,201.33l-30.82,91.04-93.36-8.55-133.88-21.66,42.74-134.87,215.33,74.04ZM1539.66,157.75l-19.32,52.04-32.18,60.37-45.26-39.28,10.83-14.01,4.04-67.12,7.08-18.64,74.81,26.64ZM1419.62,251.16l-37.33-30.76-37.2-13.07,40.33-80.79,73.39,3.55-6.82,17.95-.16.43-3.98,66.19-28.23,36.5ZM1444.69,38.94l50.59-4.84-34.23,90.09-72.71-3.51,11.85-23.73-9.89-58.01h54.38ZM1267.78,160.35l49.5-41.75,12.59-42.56,16.86-6.98,23.57-24.78,14.07-4.44,9.58,56.19-54.57,109.3-24.94-8.76-.32-.11-36.03-4.07-10.32-32.04ZM1159.3,191.66l66.02,1.02,50.17,5.45h0s37.28,4.21,37.28,4.21l66.52,23.37,36.65,30.2-13.74,17.76-34.92,24.83h-39.67l-78.93,28.46-92.84,20.72-22.02-148.89,25.47-7.13ZM875.6,322.32l40.4-37.61,141.22-44.53,51.73-34.41,19.06-5.34,21.98,148.57-182.65,40.76-10.83-36.04h-174.63l-7.86-19.51,39.34-21.58,62.23,9.68ZM906.79,80.05l42.21,99.77,65.91,12.11,90.73-43.8,20.69,46.54-19.91,5.58-51.81,34.46-141.05,44.48-.65.2-39.26,36.55-58.67-9.13-68.07-172.44,159.88-54.33ZM172.86,585.98l-13.54-32.01,128.42-49.68,19.22-47.79,112.76-42.55,1.13-.42,29.96-62.65,317.45-14.92,9.57,23.76h174.21l11.15,37.11,188.18-42,49.32,146.97,5.69-1.91-49.12-146.37,92.93-20.74.19-.04,78.3-28.23h36.18l-6.91,56.03,22.53,45.17,5.37-2.68-21.73-43.56,6.94-56.29,35.35-25.13,32.81-42.42,127.55,110.71.49.43,99.59,29.48.19.05,67.95,10.87,19.83,83-78.62,20.73-.75.2-81.79,78.11-64.26-58.22-.77-1.72,41.29-17.62-2.36-5.52-41.39,17.67-59.5-132.74-5.48,2.45,59.45,132.65-8.53,3.64h-80.27v6h81.5l9.76-4.17.72,1.6-8.59,60.25-21.33,81.15-116.23,60.04h-64.93l-27.39,36.25-.93,10.79-96.55-4.42-4.46,53.53-32.72-.76-4.49-84.2,12.83-11.57,76.18-111.64,14.3-19.46-54.43-82.89-5.02,3.29,52.14,79.4-11.86,16.14-75.87,111.18-45.58,41.11-12.82,24.49-15.42-8.12-43.27-195.43,71.03-18.24-1.49-5.81-320.95,82.4-1.19.3-10.9,18.07-30.14,4.83-24.46-5.18-43.97,13.43-141.09-13.32-.41-.04-71.95,13.07-.16.03-221.42,66.31-20.44-44.99-46.99-97.27ZM1144.81,812.43l-60.29,132.97-.39.87,17.06,88.01v14.72h-72.82l-72.27-50.97,107.74-147.62,49.89-95.25,26.75-24.13,4.34,81.4ZM907.43,1071.4l19.26-33.09,25.86-35.44,73.91,52.12h74.72v76.51l-193.75-60.11ZM893.83,1082.85l-39.38-24.21,2.24-16.8,42.33,32.1-5.19,8.91ZM683.71,736.71l-4.92-69.31,40.77-12.45,24.03,5.09,33.99-5.44,11.07-18.35,54.13-13.9,11.86,58.84,14.49,5.54,3.6,26.12,32.46,76.4,73.99,43.91-90.45,87.36-45.64,23.8-30.89,42.11-21.7-25.78-43.89-134.29-6.53-51.69-25.89-15.91v-30.4l-30.48,8.35ZM1031.58,573.87l43.83,197.95,17.89,9.42-34.45,65.82-13.44,18.41-135.46-80.38-31.38-73.86-3.98-28.85-14.72-5.63-11.27-55.91,182.97-46.98ZM847.11,948.98l44.79-23.35.38-.2,92.25-89.11,57.32,34.02-120.11,164.57-13.03,22.37-25.54-19-8.53,9.65-29.49-22.36-28.98-34.43,30.93-42.16ZM879.45,1051.57l4.58-5.18,21.66,16.11-3.63,6.23-22.62-17.15ZM848.31,1236.91l-86.1,149.6-193.91-187.91-15.32-32.96-33.35,12.23-54.04-15.73-32.3-20.23-50.84-35.75-64.14-23.08-40.68-45.93-7.83-28.23-28.15-173.41v-101.42l221.47-66.33,70.98-12.9,138.74,13.1,5.42,76.46,29.95-8.21v25.89l26.3,16.16,6.25,49.4,44.43,135.94,55.62,66.09.22.26,10.19,7.72-3.21,24.04,42.82,26.33-4.18,7.17-38.32,141.69ZM1039.03,1222.16l-51.77,17.26-126.27-26.42,31.22-115.45,12.12-20.82,195,60.5-60.3,84.94ZM1530.16,1078.25l-75.98,16.19-165.69,96.21-50.03,8.65-131.28-65.56v-100.02l-16.8-86.7,59.38-130.96,39.16.91,4.45-53.4,10.98.5-32.64,213.73-.03,32.6,39.64,65.77,139.45-27.28.49-.1,94.71-54.75,124-37.77,106.32-23.09,53.43,124.04-199.54,21.02ZM1971.26,1154.48h-33.31l2.45-26.51,34.76,2.17-3.89,24.34ZM1930.25,1127.34l4.15.26-2.21,23.9-25.73-21.64-47.77,12.97-77.38,112.77-30.22-53.96v-95.18l83.32,5.35,30.89,13.1,64.94,2.43ZM1832.45,1105.67l-81.36-5.23v-8.72l-12.66-29.39,99.91-10.53-5.89,53.86Z" + id="path168" /> + </g> + <g + id="Autobahn_große_Straße"> + <path + class="cls-5" + d="M2103.99,861.1l-482.61-312.94-47.17-61.71-67.13-145.49,28.43-25.99,18.01-43.36,37.23,14.67,34.49-124.18,61.86-54.13,21.97-68.1,105.47-66.33-6.39-10.16-105.22,66.17-116.44-26.36-47.2,14.85,32.2-113.21-11.54-3.28-38.29,134.62,65.34-20.56,109.3,24.75-19.6,60.77-62.06,54.3-31.89,114.8-35.8-14.1-21.5,51.79-65.1,59.54-52.27,30.93h-26.88l-63.96,47.18-55.64-85.52-14.15-71.82-15.41-88.08-4.43-89.73-13.72-64.03-25.93-28.29-106.58-71.21-6.67,9.98,105.38,70.41,22.75,24.82,12.83,59.89,4.42,89.5,15.55,88.88,14.63,74.29,56.35,86.61-204.94,79.58v72.85l-45.19,30.81-103.77,26.5-106.92,61.26-.62.36-105.01,99.48-33.28,17.17-170.6,67.39c1.52-6.43,2-13.85-1.47-19.27-2.05-3.19-6.25-6.97-14.61-6.76-4.69.11-8.21,1.43-10.84,3.17l-7.79-116.32-52.87-164.95-126.77-264.54L302.07,8.79l-.04-.74-23.33-74.23-11.45,3.6,22.89,72.83,19.98,330.77,127.43,265.92,52.17,162.77,7.99,119.34c-3.4-1.86-7.32-2.8-11.62-2.76-7.72.1-11.78,3.9-13.82,7.08-6.46,10.04-1.32,27.98,2.26,37.66l-167.18,66.04-49.15,6.41L2.26,949.7l-79.69-49.24-6.31,10.21L-2.26,961.01l258.99,54.43,1,.21,52.64-6.87,162.71-64.28c-1.12,6.74-.36,12.23,2.29,16.34,2.13,3.32,6.52,7.27,15.3,7.27h0c1.52,0,2.99-.24,4.4-.69l-6.32,53.65-48.7,101.54-69.65,95.63-59.87,51.61-100.22,52.2-.61.32-124.47,106.54,7.8,9.12,123.42-105.64,100.23-52.2.62-.32,61.45-52.97.52-.45,71.11-97.64,50.04-104.33,7.78-66.03c3.31,2.38,8.09,4.26,14.99,4.26.58,0,1.18-.01,1.79-.04,6.99-.31,10.59-3.93,12.38-6.91,3.46-5.76,3.42-14.39-.14-26.37-1-3.37-2.13-6.48-3.12-8.99l177.44-70.09,35.6-18.34,105.2-99.67,104.88-60.09,104.23-26.61,52.17-35.57v-70.98l199.63-77.52.81,1.25.86-.63,18.31,19.27,90.81,34.84-19.75,51.23-52.17,81.92-22.37,82-.04.14-31.01,140.66-.17.77,4.44,99.91-13.38,125.97,12.1,32.67,217.52,184.23,17.22,23.3v25.3l-19.84,37.47-4.5,83.33,11.98.65,4.35-80.69,20-37.77v-32.23l-20.4-27.6-216.18-183.09-10.03-27.08,13.18-124.07-4.41-99.24,30.78-139.6,21.85-80.1,51.83-81.4,22.63-58.69,8.1-75.2-27.04-33.05,48.74-28.85,30.26-27.67,65.81,142.62.28.6,49.24,64.42,483.11,313.27,91.33,97.93,8.78-8.18-91.83-98.47-.5-.54ZM514.45,895.26c.88-1.19,2.36-2.57,6.04-2.65,2.25-.03,3.67.37,4.23,1.24,1.35,2.1.97,9.52-2.96,18.53l-8.93,3.53c-1.25-7.2-1.58-16.32,1.62-20.65ZM482.36,899.86c.32-.5.98-1.53,3.87-1.56,3.42-.04,6.04.96,8.13,3.17,2.61,2.75,4.09,7,4.92,11.19l.56,8.38-14.13,5.58c-3.49-9.68-6.27-22.21-3.35-26.76ZM490.68,956.12h0c-2.7,0-4.46-.59-5.21-1.76-1.93-2.99-.45-10.2,1.46-15.32l11.6-4.58c-.69,8.29-2.54,17.33-5.84,20.69-.84.86-1.46.98-2,.98ZM527.11,949.56c-.21.35-.61,1.01-2.64,1.1-7.97.35-10.1-2.54-10.8-3.49-3.28-4.45-2.18-12.93-.87-18.36l10.23-4.04c4.97,12.38,5.7,22.1,4.08,24.79ZM1426.72,504.4l-86.6-33.23-15.41-16.22,60.43-44.58h21.74l26.48,32.37-6.64,61.67Z" + id="path171" /> + </g> + <g + id="Standorte"> + <g + id="St._Antonius_Frankenberg" + transform="matrix(1.6711957,0,0,1.6711957,-1341.8788,-19.079785)"> + <path + class="cls-1" + d="m 2077.41,-72.94 -2.93,-0.62 -26.15,122.88 -84.67,1.52 v -4.07 c 0,-6.6 -5.4,-12 -12,-12 h -186.29 c -6.6,0 -12,5.4 -12,12 v 10.79 c 0,6.6 5.4,12 12,12 h 186.29 c 6.6,0 12,-5.4 12,-12 v -3.72 l 87.11,-1.58 26.64,-125.18 z" + id="path174" /> + <path + class="cls-3" + d="m 1776.02,48.28 c -0.05,0.08 -0.1,0.14 -0.15,0.18 -0.05,0.04 -0.12,0.06 -0.21,0.06 -0.09,0 -0.2,-0.04 -0.32,-0.14 -0.12,-0.09 -0.27,-0.19 -0.46,-0.3 -0.18,-0.11 -0.41,-0.21 -0.66,-0.3 -0.26,-0.09 -0.57,-0.14 -0.94,-0.14 -0.35,0 -0.65,0.05 -0.92,0.14 -0.27,0.09 -0.49,0.22 -0.67,0.38 -0.18,0.16 -0.31,0.35 -0.4,0.56 -0.09,0.22 -0.14,0.45 -0.14,0.7 0,0.32 0.08,0.58 0.24,0.79 0.16,0.21 0.37,0.39 0.62,0.54 0.26,0.15 0.55,0.28 0.88,0.39 0.33,0.11 0.66,0.22 1.01,0.34 0.35,0.12 0.68,0.25 1.01,0.4 0.33,0.15 0.62,0.33 0.88,0.56 0.26,0.23 0.47,0.5 0.62,0.82 0.16,0.33 0.24,0.72 0.24,1.2 0,0.5 -0.09,0.97 -0.26,1.41 -0.17,0.44 -0.42,0.82 -0.75,1.15 -0.33,0.33 -0.73,0.58 -1.21,0.77 -0.48,0.19 -1.02,0.28 -1.63,0.28 -0.74,0 -1.42,-0.13 -2.03,-0.4 -0.61,-0.27 -1.13,-0.63 -1.56,-1.09 l 0.45,-0.74 c 0.04,-0.06 0.09,-0.11 0.16,-0.15 0.07,-0.04 0.13,-0.06 0.2,-0.06 0.11,0 0.24,0.06 0.38,0.18 0.14,0.12 0.32,0.25 0.54,0.4 0.22,0.14 0.48,0.28 0.78,0.4 0.31,0.12 0.68,0.18 1.12,0.18 0.37,0 0.7,-0.05 0.98,-0.15 0.29,-0.1 0.53,-0.24 0.73,-0.43 0.2,-0.19 0.35,-0.4 0.46,-0.66 0.11,-0.26 0.16,-0.54 0.16,-0.86 0,-0.35 -0.08,-0.63 -0.24,-0.85 -0.16,-0.22 -0.36,-0.41 -0.62,-0.56 -0.26,-0.15 -0.55,-0.28 -0.88,-0.38 -0.33,-0.1 -0.66,-0.21 -1.01,-0.32 -0.35,-0.11 -0.68,-0.24 -1.01,-0.38 -0.33,-0.14 -0.62,-0.33 -0.88,-0.56 -0.26,-0.23 -0.46,-0.52 -0.62,-0.86 -0.16,-0.34 -0.24,-0.77 -0.24,-1.28 0,-0.41 0.08,-0.8 0.24,-1.18 0.16,-0.38 0.38,-0.71 0.68,-1.01 0.3,-0.3 0.67,-0.53 1.11,-0.7 0.44,-0.17 0.95,-0.26 1.52,-0.26 0.64,0 1.22,0.1 1.75,0.3 0.53,0.2 0.99,0.5 1.38,0.88 l -0.38,0.74 z" + id="path176" /> + <path + class="cls-3" + d="m 1780.86,58.08 c -0.64,0 -1.13,-0.18 -1.48,-0.54 -0.34,-0.36 -0.52,-0.87 -0.52,-1.54 v -4.96 h -0.98 c -0.08,0 -0.16,-0.03 -0.22,-0.08 -0.06,-0.05 -0.09,-0.13 -0.09,-0.24 v -0.57 l 1.33,-0.17 0.33,-2.5 c 0.01,-0.08 0.04,-0.15 0.1,-0.2 0.06,-0.05 0.13,-0.08 0.22,-0.08 h 0.72 v 2.79 h 2.32 v 1.03 h -2.32 v 4.86 c 0,0.34 0.08,0.59 0.25,0.76 0.17,0.17 0.38,0.25 0.64,0.25 0.15,0 0.28,-0.02 0.39,-0.06 0.11,-0.04 0.2,-0.08 0.28,-0.13 0.08,-0.05 0.15,-0.09 0.2,-0.13 0.06,-0.04 0.11,-0.06 0.15,-0.06 0.07,0 0.14,0.04 0.2,0.14 l 0.42,0.68 c -0.25,0.23 -0.54,0.41 -0.89,0.54 -0.35,0.13 -0.7,0.2 -1.07,0.2 z" + id="path178" /> + <path + class="cls-3" + d="m 1783.9,57.08 c 0,-0.14 0.03,-0.27 0.08,-0.39 0.05,-0.12 0.12,-0.23 0.21,-0.32 0.09,-0.09 0.19,-0.16 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.16,0.2 0.21,0.32 0.05,0.12 0.08,0.25 0.08,0.39 0,0.14 -0.03,0.28 -0.08,0.4 -0.05,0.12 -0.12,0.23 -0.21,0.32 -0.09,0.09 -0.2,0.16 -0.32,0.21 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.12 -0.32,-0.21 -0.09,-0.09 -0.16,-0.2 -0.21,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.4 z" + id="path180" /> + <path + class="cls-3" + d="m 1800.5,57.96 h -1.2 c -0.14,0 -0.25,-0.04 -0.34,-0.1 -0.09,-0.07 -0.15,-0.16 -0.19,-0.26 l -1.07,-2.77 h -5.14 l -1.07,2.77 c -0.04,0.1 -0.1,0.18 -0.19,0.26 -0.09,0.07 -0.2,0.11 -0.34,0.11 h -1.2 l 4.58,-11.46 h 1.58 l 4.58,11.46 z m -7.51,-4.26 h 4.28 l -1.8,-4.66 c -0.12,-0.29 -0.23,-0.65 -0.34,-1.08 -0.06,0.22 -0.12,0.42 -0.17,0.6 -0.06,0.18 -0.11,0.35 -0.16,0.48 l -1.8,4.66 z" + id="path182" /> + <path + class="cls-3" + d="m 1801.73,57.96 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.29 l 0.11,0.88 c 0.35,-0.39 0.75,-0.7 1.18,-0.94 0.43,-0.24 0.94,-0.36 1.51,-0.36 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.35 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 V 52.8 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.82,0.1 -1.18,0.3 -0.36,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" + id="path184" /> + <path + class="cls-3" + d="m 1813.08,58.08 c -0.64,0 -1.13,-0.18 -1.48,-0.54 -0.35,-0.36 -0.52,-0.87 -0.52,-1.54 v -4.96 h -0.98 c -0.08,0 -0.16,-0.03 -0.22,-0.08 -0.06,-0.05 -0.09,-0.13 -0.09,-0.24 v -0.57 l 1.33,-0.17 0.33,-2.5 c 0.01,-0.08 0.05,-0.15 0.1,-0.2 0.05,-0.05 0.13,-0.08 0.22,-0.08 h 0.72 v 2.79 h 2.32 v 1.03 h -2.32 v 4.86 c 0,0.34 0.08,0.59 0.25,0.76 0.17,0.17 0.38,0.25 0.64,0.25 0.15,0 0.28,-0.02 0.39,-0.06 0.11,-0.04 0.2,-0.08 0.28,-0.13 0.08,-0.05 0.15,-0.09 0.2,-0.13 0.06,-0.04 0.11,-0.06 0.15,-0.06 0.08,0 0.14,0.04 0.2,0.14 l 0.42,0.68 c -0.25,0.23 -0.54,0.41 -0.89,0.54 -0.35,0.13 -0.7,0.2 -1.07,0.2 z" + id="path186" /> + <path + class="cls-3" + d="m 1819.87,49.72 c 0.59,0 1.13,0.1 1.6,0.3 0.48,0.2 0.88,0.48 1.22,0.84 0.33,0.36 0.59,0.8 0.77,1.32 0.18,0.51 0.27,1.09 0.27,1.72 0,0.63 -0.09,1.22 -0.27,1.73 -0.18,0.51 -0.43,0.95 -0.77,1.31 -0.33,0.36 -0.74,0.64 -1.22,0.84 -0.48,0.19 -1.01,0.29 -1.6,0.29 -0.59,0 -1.13,-0.1 -1.6,-0.29 -0.48,-0.2 -0.88,-0.47 -1.22,-0.84 -0.34,-0.36 -0.59,-0.8 -0.78,-1.31 -0.18,-0.51 -0.27,-1.09 -0.27,-1.73 0,-0.64 0.09,-1.21 0.27,-1.72 0.18,-0.52 0.44,-0.95 0.78,-1.32 0.34,-0.36 0.74,-0.64 1.22,-0.84 0.48,-0.2 1.01,-0.3 1.6,-0.3 z m 0,7.24 c 0.8,0 1.4,-0.27 1.79,-0.8 0.39,-0.54 0.59,-1.28 0.59,-2.24 0,-0.96 -0.2,-1.72 -0.59,-2.26 -0.39,-0.54 -0.99,-0.81 -1.79,-0.81 -0.41,0 -0.76,0.07 -1.06,0.21 -0.3,0.14 -0.55,0.34 -0.75,0.6 -0.2,0.26 -0.35,0.58 -0.45,0.96 -0.1,0.38 -0.15,0.81 -0.15,1.29 0,0.48 0.05,0.91 0.15,1.29 0.1,0.38 0.25,0.7 0.45,0.96 0.2,0.26 0.45,0.46 0.75,0.6 0.3,0.14 0.65,0.21 1.06,0.21 z" + id="path188" /> + <path + class="cls-3" + d="m 1825.49,57.96 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.29 l 0.11,0.88 c 0.35,-0.39 0.75,-0.7 1.18,-0.94 0.43,-0.24 0.94,-0.36 1.51,-0.36 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.35 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 V 52.8 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.82,0.1 -1.18,0.3 -0.36,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" + id="path190" /> + <path + class="cls-3" + d="m 1836.29,47.31 c 0,0.14 -0.03,0.27 -0.08,0.39 -0.06,0.12 -0.13,0.23 -0.22,0.32 -0.09,0.09 -0.2,0.17 -0.32,0.22 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.13 -0.32,-0.22 -0.09,-0.09 -0.17,-0.2 -0.22,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.39 0,-0.14 0.03,-0.27 0.08,-0.4 0.05,-0.13 0.13,-0.24 0.22,-0.33 0.09,-0.09 0.2,-0.17 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.17,0.2 0.22,0.33 0.05,0.13 0.08,0.26 0.08,0.4 z m -0.32,2.54 v 8.1 h -1.42 v -8.1 z" + id="path192" /> + <path + class="cls-3" + d="m 1839.71,49.85 v 5.17 c 0,0.61 0.14,1.09 0.42,1.42 0.28,0.34 0.71,0.5 1.28,0.5 0.42,0 0.81,-0.1 1.18,-0.3 0.37,-0.2 0.71,-0.47 1.02,-0.82 v -5.98 h 1.42 v 8.1 h -0.85 c -0.2,0 -0.33,-0.1 -0.38,-0.3 l -0.11,-0.87 c -0.35,0.39 -0.75,0.7 -1.18,0.94 -0.44,0.24 -0.94,0.36 -1.5,0.36 -0.44,0 -0.83,-0.07 -1.17,-0.22 -0.34,-0.15 -0.62,-0.35 -0.85,-0.62 -0.23,-0.27 -0.4,-0.59 -0.52,-0.97 -0.11,-0.38 -0.17,-0.8 -0.17,-1.26 v -5.17 h 1.42 z" + id="path194" /> + <path + class="cls-3" + d="m 1852.02,51.19 c -0.06,0.12 -0.16,0.18 -0.3,0.18 -0.08,0 -0.17,-0.03 -0.27,-0.09 -0.1,-0.06 -0.23,-0.12 -0.37,-0.2 -0.15,-0.07 -0.32,-0.14 -0.52,-0.2 -0.2,-0.06 -0.44,-0.09 -0.72,-0.09 -0.24,0 -0.46,0.03 -0.65,0.09 -0.19,0.06 -0.36,0.15 -0.49,0.25 -0.14,0.11 -0.24,0.23 -0.31,0.37 -0.07,0.14 -0.11,0.29 -0.11,0.46 0,0.21 0.06,0.38 0.18,0.52 0.12,0.14 0.28,0.26 0.48,0.36 0.2,0.1 0.42,0.19 0.67,0.27 0.25,0.08 0.51,0.16 0.77,0.25 0.26,0.09 0.52,0.19 0.77,0.29 0.25,0.11 0.47,0.24 0.67,0.4 0.2,0.16 0.36,0.36 0.48,0.59 0.12,0.23 0.18,0.51 0.18,0.84 0,0.37 -0.07,0.72 -0.2,1.04 -0.13,0.32 -0.33,0.59 -0.59,0.82 -0.26,0.23 -0.58,0.42 -0.96,0.55 -0.38,0.13 -0.82,0.2 -1.31,0.2 -0.57,0 -1.08,-0.09 -1.54,-0.28 -0.46,-0.18 -0.85,-0.42 -1.17,-0.71 l 0.34,-0.54 c 0.04,-0.07 0.09,-0.12 0.15,-0.16 0.06,-0.04 0.14,-0.06 0.23,-0.06 0.09,0 0.2,0.04 0.3,0.11 0.11,0.07 0.24,0.16 0.39,0.25 0.15,0.09 0.34,0.17 0.55,0.25 0.21,0.08 0.49,0.11 0.81,0.11 0.28,0 0.52,-0.04 0.73,-0.11 0.21,-0.07 0.38,-0.17 0.52,-0.29 0.14,-0.12 0.24,-0.26 0.31,-0.42 0.07,-0.16 0.1,-0.33 0.1,-0.51 0,-0.22 -0.06,-0.41 -0.18,-0.56 -0.12,-0.15 -0.28,-0.27 -0.48,-0.38 -0.2,-0.11 -0.42,-0.19 -0.68,-0.27 -0.25,-0.08 -0.51,-0.16 -0.78,-0.24 -0.26,-0.09 -0.52,-0.18 -0.78,-0.29 -0.25,-0.11 -0.48,-0.25 -0.68,-0.41 -0.2,-0.16 -0.36,-0.37 -0.48,-0.61 -0.12,-0.24 -0.18,-0.54 -0.18,-0.88 0,-0.31 0.06,-0.61 0.19,-0.89 0.13,-0.28 0.31,-0.54 0.56,-0.75 0.25,-0.22 0.55,-0.39 0.9,-0.52 0.35,-0.13 0.77,-0.19 1.22,-0.19 0.53,0 1.01,0.08 1.44,0.25 0.43,0.17 0.79,0.4 1.1,0.69 l -0.32,0.52 z" + id="path196" /> + <path + class="cls-3" + d="m 1853.9,56.97 c 0,-0.12 0.02,-0.24 0.07,-0.35 0.05,-0.11 0.11,-0.21 0.19,-0.29 0.08,-0.08 0.18,-0.15 0.3,-0.2 0.12,-0.05 0.25,-0.07 0.38,-0.07 0.16,0 0.3,0.03 0.43,0.09 0.12,0.06 0.23,0.14 0.31,0.24 0.08,0.1 0.15,0.22 0.19,0.36 0.04,0.13 0.06,0.28 0.06,0.44 0,0.24 -0.03,0.49 -0.1,0.75 -0.07,0.26 -0.17,0.51 -0.3,0.77 -0.13,0.25 -0.29,0.5 -0.48,0.74 -0.19,0.24 -0.4,0.46 -0.64,0.66 l -0.24,-0.23 c -0.07,-0.06 -0.1,-0.14 -0.1,-0.22 0,-0.07 0.04,-0.14 0.11,-0.22 0.05,-0.06 0.12,-0.14 0.2,-0.24 0.08,-0.1 0.17,-0.21 0.25,-0.34 0.08,-0.13 0.16,-0.27 0.24,-0.42 0.08,-0.15 0.12,-0.32 0.16,-0.5 h -0.1 c -0.14,0 -0.26,-0.02 -0.38,-0.07 -0.11,-0.05 -0.21,-0.12 -0.29,-0.2 -0.08,-0.08 -0.15,-0.19 -0.19,-0.31 -0.04,-0.12 -0.07,-0.25 -0.07,-0.4 z" + id="path198" /> + <path + class="cls-3" + d="m 1868.09,46.49 v 1.26 h -5.5 v 4.01 h 4.7 v 1.26 h -4.7 v 4.93 h -1.56 V 46.49 Z" + id="path200" /> + <path + class="cls-3" + d="m 1869.37,57.96 v -8.1 h 0.82 c 0.15,0 0.26,0.03 0.32,0.09 0.06,0.06 0.1,0.16 0.12,0.3 l 0.1,1.26 c 0.28,-0.57 0.62,-1.01 1.03,-1.32 0.41,-0.32 0.89,-0.48 1.44,-0.48 0.22,0 0.43,0.03 0.61,0.08 0.18,0.05 0.35,0.12 0.5,0.21 l -0.18,1.06 c -0.04,0.13 -0.12,0.2 -0.25,0.2 -0.07,0 -0.19,-0.03 -0.34,-0.08 -0.16,-0.05 -0.37,-0.08 -0.65,-0.08 -0.5,0 -0.91,0.14 -1.24,0.43 -0.33,0.29 -0.61,0.71 -0.84,1.26 v 5.16 h -1.42 z" + id="path202" /> + <path + class="cls-3" + d="m 1881.47,57.96 h -0.63 c -0.14,0 -0.25,-0.02 -0.34,-0.06 -0.08,-0.04 -0.14,-0.13 -0.17,-0.27 l -0.16,-0.75 c -0.21,0.19 -0.42,0.36 -0.62,0.52 -0.2,0.15 -0.42,0.28 -0.64,0.38 -0.22,0.1 -0.46,0.18 -0.72,0.24 -0.26,0.06 -0.54,0.08 -0.84,0.08 -0.3,0 -0.61,-0.04 -0.88,-0.13 -0.28,-0.09 -0.51,-0.22 -0.72,-0.4 -0.2,-0.18 -0.36,-0.4 -0.48,-0.67 -0.12,-0.27 -0.18,-0.59 -0.18,-0.96 0,-0.32 0.09,-0.63 0.26,-0.93 0.17,-0.3 0.46,-0.56 0.85,-0.79 0.39,-0.23 0.91,-0.42 1.54,-0.57 0.63,-0.15 1.41,-0.22 2.33,-0.22 v -0.64 c 0,-0.63 -0.13,-1.11 -0.4,-1.44 -0.27,-0.32 -0.67,-0.49 -1.2,-0.49 -0.35,0 -0.64,0.04 -0.88,0.13 -0.24,0.09 -0.44,0.19 -0.62,0.3 -0.17,0.11 -0.32,0.21 -0.45,0.3 -0.13,0.09 -0.25,0.13 -0.37,0.13 -0.1,0 -0.18,-0.03 -0.25,-0.08 -0.07,-0.05 -0.13,-0.11 -0.17,-0.19 l -0.26,-0.46 c 0.45,-0.43 0.93,-0.75 1.45,-0.97 0.52,-0.21 1.09,-0.32 1.72,-0.32 0.45,0 0.86,0.07 1.21,0.22 0.35,0.15 0.65,0.36 0.89,0.62 0.24,0.27 0.42,0.59 0.54,0.97 0.12,0.38 0.18,0.79 0.18,1.25 v 5.18 z m -3.7,-0.88 c 0.25,0 0.48,-0.03 0.69,-0.08 0.21,-0.05 0.4,-0.12 0.59,-0.22 0.18,-0.09 0.36,-0.21 0.53,-0.34 0.17,-0.13 0.33,-0.29 0.49,-0.46 v -1.67 c -0.66,0 -1.21,0.04 -1.67,0.12 -0.46,0.08 -0.83,0.19 -1.12,0.33 -0.29,0.13 -0.5,0.29 -0.63,0.47 -0.13,0.18 -0.2,0.39 -0.2,0.61 0,0.22 0.04,0.4 0.1,0.56 0.06,0.16 0.16,0.28 0.28,0.38 0.12,0.1 0.26,0.17 0.42,0.22 0.16,0.05 0.33,0.07 0.52,0.07 z" + id="path204" /> + <path + class="cls-3" + d="m 1883.63,57.96 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.29 l 0.11,0.88 c 0.35,-0.39 0.75,-0.7 1.18,-0.94 0.43,-0.24 0.94,-0.36 1.51,-0.36 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.35 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 V 52.8 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.82,0.1 -1.18,0.3 -0.36,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" + id="path206" /> + <path + class="cls-3" + d="m 1894.01,46.17 v 6.94 h 0.37 c 0.11,0 0.19,-0.02 0.26,-0.04 0.07,-0.02 0.15,-0.09 0.23,-0.18 l 2.56,-2.74 c 0.08,-0.08 0.16,-0.15 0.24,-0.21 0.08,-0.05 0.19,-0.08 0.32,-0.08 h 1.3 l -2.98,3.18 c -0.07,0.09 -0.15,0.17 -0.22,0.24 -0.07,0.07 -0.15,0.13 -0.24,0.18 0.1,0.06 0.18,0.14 0.26,0.22 0.08,0.08 0.15,0.18 0.22,0.28 l 3.17,4 h -1.28 c -0.12,0 -0.22,-0.02 -0.3,-0.07 -0.08,-0.04 -0.16,-0.12 -0.24,-0.21 l -2.66,-3.32 c -0.08,-0.11 -0.16,-0.19 -0.24,-0.22 -0.08,-0.03 -0.2,-0.05 -0.36,-0.05 h -0.4 v 3.87 h -1.43 V 46.18 h 1.43 z" + id="path208" /> + <path + class="cls-3" + d="m 1903.64,49.72 c 0.49,0 0.93,0.08 1.34,0.24 0.41,0.16 0.77,0.4 1.06,0.7 0.3,0.31 0.53,0.69 0.7,1.14 0.17,0.45 0.25,0.96 0.25,1.54 0,0.22 -0.02,0.37 -0.07,0.45 -0.05,0.08 -0.14,0.11 -0.27,0.11 h -5.39 c 0.01,0.51 0.08,0.96 0.21,1.34 0.13,0.38 0.3,0.69 0.53,0.95 0.22,0.25 0.49,0.44 0.8,0.57 0.31,0.12 0.66,0.19 1.04,0.19 0.36,0 0.67,-0.04 0.92,-0.12 0.25,-0.08 0.48,-0.17 0.67,-0.27 0.19,-0.1 0.34,-0.19 0.47,-0.27 0.13,-0.08 0.23,-0.12 0.32,-0.12 0.12,0 0.21,0.05 0.27,0.14 l 0.4,0.52 c -0.18,0.21 -0.39,0.4 -0.63,0.56 -0.25,0.16 -0.51,0.29 -0.79,0.39 -0.28,0.1 -0.57,0.18 -0.87,0.23 -0.3,0.05 -0.59,0.08 -0.89,0.08 -0.56,0 -1.08,-0.09 -1.55,-0.28 -0.47,-0.19 -0.88,-0.47 -1.22,-0.83 -0.34,-0.36 -0.61,-0.82 -0.8,-1.36 -0.19,-0.54 -0.29,-1.16 -0.29,-1.86 0,-0.57 0.09,-1.09 0.26,-1.58 0.17,-0.49 0.42,-0.92 0.75,-1.28 0.33,-0.36 0.72,-0.64 1.19,-0.85 0.47,-0.21 1,-0.31 1.58,-0.31 z m 0.03,1.05 c -0.69,0 -1.23,0.2 -1.62,0.6 -0.4,0.4 -0.64,0.95 -0.74,1.65 h 4.41 c 0,-0.33 -0.05,-0.63 -0.14,-0.91 -0.09,-0.28 -0.22,-0.51 -0.4,-0.71 -0.18,-0.2 -0.39,-0.35 -0.64,-0.46 -0.25,-0.11 -0.54,-0.16 -0.87,-0.16 z" + id="path210" /> + <path + class="cls-3" + d="m 1908.81,57.96 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.29 l 0.11,0.88 c 0.35,-0.39 0.75,-0.7 1.18,-0.94 0.43,-0.24 0.94,-0.36 1.51,-0.36 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.35 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 V 52.8 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.82,0.1 -1.18,0.3 -0.36,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" + id="path212" /> + <path + class="cls-3" + d="M 1917.76,57.96 V 46.18 h 1.43 v 4.85 c 0.34,-0.39 0.72,-0.7 1.16,-0.94 0.44,-0.24 0.93,-0.36 1.49,-0.36 0.47,0 0.89,0.09 1.27,0.26 0.38,0.18 0.7,0.44 0.97,0.79 0.27,0.35 0.47,0.78 0.62,1.3 0.14,0.51 0.22,1.11 0.22,1.78 0,0.6 -0.08,1.15 -0.24,1.67 -0.16,0.51 -0.39,0.96 -0.69,1.34 -0.3,0.38 -0.67,0.67 -1.1,0.89 -0.43,0.22 -0.92,0.32 -1.47,0.32 -0.55,0 -0.97,-0.1 -1.33,-0.3 -0.37,-0.2 -0.68,-0.49 -0.96,-0.85 l -0.07,0.74 c -0.04,0.2 -0.17,0.3 -0.37,0.3 h -0.92 z m 3.61,-7.1 c -0.46,0 -0.87,0.11 -1.22,0.32 -0.35,0.21 -0.67,0.51 -0.96,0.9 V 56 c 0.26,0.35 0.54,0.6 0.85,0.74 0.31,0.14 0.66,0.22 1.04,0.22 0.76,0 1.34,-0.27 1.74,-0.81 0.41,-0.54 0.61,-1.31 0.61,-2.3 0,-0.53 -0.05,-0.98 -0.14,-1.36 -0.09,-0.38 -0.23,-0.69 -0.4,-0.93 -0.18,-0.24 -0.39,-0.42 -0.65,-0.53 -0.26,-0.11 -0.55,-0.17 -0.87,-0.17 z" + id="path214" /> + <path + class="cls-3" + d="m 1929.86,49.72 c 0.49,0 0.93,0.08 1.34,0.24 0.41,0.16 0.77,0.4 1.06,0.7 0.3,0.31 0.53,0.69 0.7,1.14 0.17,0.45 0.25,0.96 0.25,1.54 0,0.22 -0.02,0.37 -0.07,0.45 -0.05,0.08 -0.14,0.11 -0.27,0.11 h -5.39 c 0.01,0.51 0.08,0.96 0.21,1.34 0.13,0.38 0.3,0.69 0.53,0.95 0.22,0.25 0.49,0.44 0.8,0.57 0.31,0.12 0.66,0.19 1.04,0.19 0.36,0 0.67,-0.04 0.92,-0.12 0.25,-0.08 0.48,-0.17 0.67,-0.27 0.19,-0.1 0.34,-0.19 0.47,-0.27 0.13,-0.08 0.23,-0.12 0.32,-0.12 0.12,0 0.21,0.05 0.27,0.14 l 0.4,0.52 c -0.18,0.21 -0.39,0.4 -0.63,0.56 -0.25,0.16 -0.51,0.29 -0.79,0.39 -0.28,0.1 -0.57,0.18 -0.87,0.23 -0.3,0.05 -0.59,0.08 -0.89,0.08 -0.56,0 -1.08,-0.09 -1.55,-0.28 -0.47,-0.19 -0.88,-0.47 -1.22,-0.83 -0.34,-0.36 -0.61,-0.82 -0.8,-1.36 -0.19,-0.54 -0.29,-1.16 -0.29,-1.86 0,-0.57 0.09,-1.09 0.26,-1.58 0.17,-0.49 0.42,-0.92 0.75,-1.28 0.33,-0.36 0.72,-0.64 1.19,-0.85 0.47,-0.21 1,-0.31 1.58,-0.31 z m 0.03,1.05 c -0.69,0 -1.23,0.2 -1.62,0.6 -0.4,0.4 -0.64,0.95 -0.74,1.65 h 4.41 c 0,-0.33 -0.05,-0.63 -0.14,-0.91 -0.09,-0.28 -0.22,-0.51 -0.4,-0.71 -0.18,-0.2 -0.39,-0.35 -0.64,-0.46 -0.25,-0.11 -0.54,-0.16 -0.87,-0.16 z" + id="path216" /> + <path + class="cls-3" + d="m 1935.04,57.96 v -8.1 h 0.82 c 0.16,0 0.26,0.03 0.32,0.09 0.06,0.06 0.1,0.16 0.12,0.3 l 0.1,1.26 c 0.28,-0.57 0.62,-1.01 1.03,-1.32 0.41,-0.32 0.89,-0.48 1.44,-0.48 0.22,0 0.43,0.03 0.61,0.08 0.18,0.05 0.35,0.12 0.5,0.21 l -0.18,1.06 c -0.04,0.13 -0.12,0.2 -0.25,0.2 -0.08,0 -0.19,-0.03 -0.34,-0.08 -0.15,-0.05 -0.37,-0.08 -0.65,-0.08 -0.5,0 -0.91,0.14 -1.24,0.43 -0.33,0.29 -0.61,0.71 -0.84,1.26 v 5.16 h -1.42 z" + id="path218" /> + <path + class="cls-3" + d="m 1944.21,49.72 c 0.35,0 0.68,0.04 0.99,0.12 0.31,0.08 0.58,0.19 0.84,0.34 h 2.2 v 0.53 c 0,0.18 -0.11,0.29 -0.34,0.34 l -0.92,0.13 c 0.18,0.35 0.27,0.73 0.27,1.16 0,0.39 -0.08,0.75 -0.23,1.08 -0.15,0.32 -0.36,0.6 -0.63,0.83 -0.27,0.23 -0.59,0.41 -0.96,0.53 -0.37,0.12 -0.78,0.18 -1.22,0.18 -0.38,0 -0.74,-0.04 -1.07,-0.14 -0.17,0.11 -0.3,0.23 -0.39,0.36 -0.09,0.13 -0.13,0.25 -0.13,0.37 0,0.2 0.08,0.35 0.23,0.45 0.15,0.1 0.36,0.17 0.62,0.22 0.26,0.04 0.55,0.07 0.87,0.07 h 1 c 0.34,0 0.67,0.03 1,0.09 0.33,0.06 0.62,0.16 0.87,0.29 0.26,0.14 0.46,0.32 0.62,0.56 0.15,0.24 0.23,0.54 0.23,0.92 0,0.35 -0.09,0.69 -0.26,1.02 -0.17,0.33 -0.42,0.62 -0.75,0.88 -0.33,0.26 -0.72,0.46 -1.19,0.62 -0.47,0.15 -1,0.23 -1.59,0.23 -0.59,0 -1.11,-0.06 -1.56,-0.18 -0.45,-0.12 -0.81,-0.28 -1.11,-0.47 -0.29,-0.2 -0.51,-0.43 -0.66,-0.69 -0.15,-0.26 -0.22,-0.53 -0.22,-0.81 0,-0.4 0.13,-0.74 0.38,-1.02 0.25,-0.28 0.6,-0.5 1.04,-0.67 -0.23,-0.11 -0.41,-0.25 -0.55,-0.43 -0.14,-0.18 -0.2,-0.42 -0.2,-0.71 0,-0.12 0.02,-0.24 0.06,-0.36 0.04,-0.12 0.11,-0.25 0.2,-0.37 0.09,-0.12 0.2,-0.24 0.32,-0.35 0.13,-0.11 0.28,-0.21 0.45,-0.29 -0.4,-0.22 -0.71,-0.52 -0.94,-0.89 -0.23,-0.37 -0.34,-0.8 -0.34,-1.3 0,-0.4 0.08,-0.75 0.23,-1.08 0.15,-0.33 0.36,-0.6 0.64,-0.82 0.27,-0.23 0.6,-0.4 0.97,-0.52 0.38,-0.12 0.79,-0.18 1.24,-0.18 z m 2.53,8.65 c 0,-0.21 -0.06,-0.37 -0.17,-0.5 -0.11,-0.13 -0.26,-0.22 -0.46,-0.29 -0.19,-0.07 -0.41,-0.12 -0.66,-0.15 -0.25,-0.03 -0.51,-0.05 -0.79,-0.05 h -0.85 c -0.29,0 -0.56,-0.04 -0.82,-0.11 -0.3,0.14 -0.55,0.32 -0.74,0.53 -0.19,0.21 -0.28,0.46 -0.28,0.75 0,0.18 0.05,0.35 0.14,0.51 0.09,0.16 0.24,0.29 0.43,0.41 0.19,0.11 0.43,0.21 0.72,0.27 0.29,0.07 0.63,0.1 1.03,0.1 0.4,0 0.73,-0.04 1.03,-0.11 0.3,-0.07 0.56,-0.17 0.77,-0.3 0.21,-0.13 0.37,-0.29 0.48,-0.47 0.11,-0.18 0.17,-0.38 0.17,-0.6 z M 1944.21,54 c 0.29,0 0.54,-0.04 0.76,-0.12 0.22,-0.08 0.41,-0.19 0.56,-0.34 0.15,-0.15 0.26,-0.32 0.34,-0.52 0.07,-0.2 0.11,-0.42 0.11,-0.66 0,-0.5 -0.15,-0.89 -0.45,-1.18 -0.3,-0.29 -0.74,-0.44 -1.32,-0.44 -0.58,0 -1.01,0.15 -1.31,0.44 -0.3,0.29 -0.45,0.69 -0.45,1.18 0,0.24 0.04,0.46 0.12,0.66 0.08,0.2 0.19,0.37 0.34,0.52 0.15,0.15 0.33,0.26 0.55,0.34 0.22,0.08 0.47,0.12 0.75,0.12 z" + id="path220" /> + </g> + <g + id="St._Marien" + transform="matrix(1.6477365,0,0,1.6477365,-1377.435,-822.17746)"> + <path + class="cls-1" + d="m 2401.99,1566.74 -327.22,-295.99 v -7.37 c 0,-6.6 -5.4,-12 -12,-12 h -163.05 c -6.6,0 -12,5.4 -12,12 v 10.78 c 0,6.6 5.4,12 12,12 h 163.05 c 6.4,0 11.65,-5.07 11.97,-11.39 l 325.24,294.2 2.01,-2.22 z" + id="path223" /> + <path + class="cls-3" + d="m 1913.85,1264.97 c -0.05,0.08 -0.1,0.14 -0.15,0.18 -0.05,0.04 -0.12,0.06 -0.21,0.06 -0.09,0 -0.2,-0.04 -0.32,-0.14 -0.12,-0.09 -0.27,-0.19 -0.46,-0.3 -0.18,-0.11 -0.41,-0.21 -0.66,-0.3 -0.26,-0.09 -0.57,-0.14 -0.94,-0.14 -0.35,0 -0.65,0.05 -0.92,0.14 -0.27,0.09 -0.49,0.22 -0.67,0.38 -0.18,0.16 -0.31,0.35 -0.4,0.56 -0.09,0.22 -0.14,0.45 -0.14,0.7 0,0.32 0.08,0.58 0.24,0.79 0.16,0.21 0.37,0.39 0.62,0.54 0.26,0.15 0.55,0.28 0.88,0.39 0.33,0.11 0.66,0.22 1.01,0.34 0.35,0.12 0.68,0.25 1.01,0.4 0.33,0.15 0.62,0.33 0.88,0.56 0.26,0.23 0.47,0.5 0.62,0.82 0.16,0.33 0.24,0.72 0.24,1.2 0,0.5 -0.09,0.97 -0.26,1.41 -0.17,0.44 -0.42,0.82 -0.75,1.15 -0.33,0.33 -0.73,0.58 -1.21,0.77 -0.48,0.19 -1.02,0.28 -1.63,0.28 -0.74,0 -1.42,-0.13 -2.03,-0.4 -0.61,-0.27 -1.13,-0.63 -1.56,-1.09 l 0.45,-0.74 c 0.04,-0.06 0.09,-0.11 0.16,-0.15 0.07,-0.04 0.13,-0.06 0.2,-0.06 0.11,0 0.24,0.06 0.38,0.18 0.14,0.12 0.32,0.25 0.54,0.4 0.22,0.14 0.48,0.28 0.78,0.4 0.31,0.12 0.68,0.18 1.12,0.18 0.37,0 0.7,-0.05 0.98,-0.15 0.29,-0.1 0.53,-0.24 0.73,-0.43 0.2,-0.19 0.35,-0.4 0.46,-0.66 0.11,-0.26 0.16,-0.54 0.16,-0.86 0,-0.35 -0.08,-0.63 -0.24,-0.85 -0.16,-0.22 -0.36,-0.41 -0.62,-0.56 -0.26,-0.15 -0.55,-0.28 -0.88,-0.38 -0.33,-0.1 -0.66,-0.21 -1.01,-0.32 -0.35,-0.11 -0.68,-0.24 -1.01,-0.38 -0.33,-0.14 -0.62,-0.33 -0.88,-0.56 -0.26,-0.23 -0.46,-0.52 -0.62,-0.86 -0.16,-0.34 -0.24,-0.77 -0.24,-1.28 0,-0.41 0.08,-0.8 0.24,-1.18 0.16,-0.38 0.38,-0.71 0.68,-1.01 0.3,-0.3 0.67,-0.53 1.11,-0.7 0.44,-0.17 0.95,-0.26 1.52,-0.26 0.64,0 1.22,0.1 1.75,0.3 0.53,0.2 0.99,0.5 1.38,0.88 l -0.38,0.74 z" + id="path225" /> + <path + class="cls-3" + d="m 1918.69,1274.77 c -0.64,0 -1.13,-0.18 -1.48,-0.54 -0.34,-0.36 -0.52,-0.87 -0.52,-1.54 v -4.96 h -0.98 c -0.08,0 -0.16,-0.03 -0.22,-0.08 -0.06,-0.05 -0.09,-0.13 -0.09,-0.24 v -0.57 l 1.33,-0.17 0.33,-2.5 c 0.01,-0.08 0.04,-0.15 0.1,-0.2 0.06,-0.05 0.13,-0.08 0.22,-0.08 h 0.72 v 2.79 h 2.32 v 1.03 h -2.32 v 4.86 c 0,0.34 0.08,0.59 0.25,0.76 0.17,0.17 0.38,0.25 0.64,0.25 0.15,0 0.28,-0.02 0.39,-0.06 0.11,-0.04 0.2,-0.08 0.28,-0.13 0.08,-0.05 0.15,-0.09 0.2,-0.13 0.06,-0.04 0.11,-0.06 0.15,-0.06 0.07,0 0.14,0.04 0.2,0.14 l 0.42,0.68 c -0.25,0.23 -0.54,0.41 -0.89,0.54 -0.35,0.13 -0.7,0.2 -1.07,0.2 z" + id="path227" /> + <path + class="cls-3" + d="m 1921.74,1273.77 c 0,-0.14 0.03,-0.27 0.08,-0.39 0.05,-0.12 0.12,-0.23 0.21,-0.32 0.09,-0.09 0.19,-0.16 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.16,0.2 0.21,0.32 0.05,0.12 0.08,0.25 0.08,0.39 0,0.14 -0.03,0.28 -0.08,0.4 -0.05,0.12 -0.12,0.23 -0.21,0.32 -0.09,0.09 -0.2,0.16 -0.32,0.21 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.12 -0.32,-0.21 -0.09,-0.09 -0.16,-0.2 -0.21,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.4 z" + id="path229" /> + <path + class="cls-3" + d="m 1934.74,1270.9 c 0.06,0.14 0.11,0.28 0.16,0.43 0.05,-0.15 0.11,-0.29 0.17,-0.43 0.06,-0.14 0.12,-0.27 0.2,-0.41 l 3.88,-7.05 c 0.07,-0.12 0.14,-0.2 0.22,-0.22 0.08,-0.03 0.18,-0.04 0.32,-0.04 h 1.14 v 11.46 h -1.36 v -8.42 c 0,-0.11 0,-0.23 0,-0.36 0,-0.13 0.01,-0.26 0.02,-0.39 l -3.93,7.17 c -0.13,0.24 -0.32,0.36 -0.56,0.36 h -0.22 c -0.24,0 -0.43,-0.12 -0.56,-0.36 l -4.02,-7.19 c 0.02,0.14 0.03,0.27 0.04,0.41 0,0.13 0.01,0.26 0.01,0.37 v 8.42 h -1.36 v -11.46 h 1.14 c 0.14,0 0.25,0.01 0.32,0.04 0.08,0.03 0.15,0.1 0.22,0.22 l 3.96,7.06 c 0.07,0.13 0.14,0.26 0.2,0.4 z" + id="path231" /> + <path + class="cls-3" + d="m 1949.35,1274.65 h -0.63 c -0.14,0 -0.25,-0.02 -0.34,-0.06 -0.08,-0.04 -0.14,-0.13 -0.17,-0.27 l -0.16,-0.75 c -0.21,0.19 -0.42,0.36 -0.62,0.52 -0.2,0.15 -0.42,0.28 -0.64,0.38 -0.22,0.1 -0.46,0.18 -0.72,0.24 -0.26,0.06 -0.54,0.08 -0.84,0.08 -0.3,0 -0.61,-0.04 -0.88,-0.13 -0.28,-0.09 -0.51,-0.22 -0.72,-0.4 -0.2,-0.18 -0.36,-0.4 -0.48,-0.67 -0.12,-0.27 -0.18,-0.59 -0.18,-0.96 0,-0.32 0.09,-0.63 0.26,-0.93 0.17,-0.3 0.46,-0.56 0.85,-0.79 0.39,-0.23 0.91,-0.42 1.54,-0.57 0.63,-0.15 1.41,-0.22 2.33,-0.22 v -0.64 c 0,-0.63 -0.13,-1.11 -0.4,-1.44 -0.27,-0.32 -0.67,-0.49 -1.2,-0.49 -0.35,0 -0.64,0.04 -0.88,0.13 -0.24,0.09 -0.44,0.19 -0.62,0.3 -0.17,0.11 -0.32,0.21 -0.45,0.3 -0.13,0.09 -0.25,0.13 -0.37,0.13 -0.1,0 -0.18,-0.03 -0.25,-0.08 -0.07,-0.05 -0.13,-0.11 -0.17,-0.19 l -0.26,-0.46 c 0.45,-0.43 0.93,-0.75 1.45,-0.97 0.52,-0.21 1.09,-0.32 1.72,-0.32 0.45,0 0.86,0.07 1.21,0.22 0.35,0.15 0.65,0.36 0.89,0.62 0.24,0.27 0.42,0.59 0.54,0.97 0.12,0.38 0.18,0.79 0.18,1.25 v 5.18 z m -3.7,-0.88 c 0.25,0 0.48,-0.03 0.69,-0.08 0.21,-0.05 0.4,-0.12 0.59,-0.22 0.18,-0.09 0.36,-0.21 0.53,-0.34 0.17,-0.13 0.33,-0.29 0.49,-0.46 V 1271 c -0.66,0 -1.21,0.04 -1.67,0.12 -0.46,0.08 -0.83,0.19 -1.12,0.33 -0.29,0.13 -0.5,0.29 -0.63,0.47 -0.13,0.18 -0.2,0.39 -0.2,0.61 0,0.22 0.04,0.4 0.1,0.56 0.06,0.16 0.16,0.28 0.28,0.38 0.12,0.1 0.26,0.17 0.42,0.22 0.16,0.05 0.33,0.07 0.52,0.07 z" + id="path233" /> + <path + class="cls-3" + d="m 1951.51,1274.65 v -8.1 h 0.82 c 0.15,0 0.26,0.03 0.32,0.09 0.06,0.06 0.1,0.16 0.12,0.3 l 0.1,1.26 c 0.28,-0.57 0.62,-1.01 1.03,-1.32 0.41,-0.32 0.89,-0.48 1.44,-0.48 0.22,0 0.43,0.03 0.61,0.08 0.18,0.05 0.35,0.12 0.5,0.21 l -0.18,1.06 c -0.04,0.13 -0.12,0.2 -0.25,0.2 -0.07,0 -0.19,-0.03 -0.34,-0.08 -0.16,-0.05 -0.37,-0.08 -0.65,-0.08 -0.5,0 -0.91,0.14 -1.24,0.43 -0.33,0.29 -0.61,0.71 -0.84,1.26 v 5.16 h -1.42 z" + id="path235" /> + <path + class="cls-3" + d="m 1959.86,1264 c 0,0.14 -0.03,0.27 -0.08,0.39 -0.06,0.12 -0.13,0.23 -0.22,0.32 -0.09,0.09 -0.2,0.17 -0.32,0.22 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.13 -0.32,-0.22 -0.09,-0.09 -0.17,-0.2 -0.22,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.39 0,-0.14 0.03,-0.27 0.08,-0.4 0.05,-0.13 0.13,-0.24 0.22,-0.33 0.09,-0.09 0.2,-0.17 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.17,0.2 0.22,0.33 0.06,0.13 0.08,0.26 0.08,0.4 z m -0.32,2.54 v 8.1 h -1.42 v -8.1 z" + id="path237" /> + <path + class="cls-3" + d="m 1965.26,1266.41 c 0.49,0 0.93,0.08 1.34,0.24 0.41,0.16 0.77,0.4 1.06,0.7 0.3,0.31 0.53,0.69 0.7,1.14 0.17,0.45 0.25,0.96 0.25,1.54 0,0.22 -0.02,0.37 -0.07,0.45 -0.05,0.08 -0.14,0.11 -0.27,0.11 h -5.39 c 0.01,0.51 0.08,0.96 0.21,1.34 0.13,0.38 0.3,0.69 0.53,0.95 0.22,0.25 0.49,0.44 0.8,0.57 0.31,0.12 0.66,0.19 1.04,0.19 0.36,0 0.67,-0.04 0.92,-0.12 0.25,-0.08 0.48,-0.17 0.67,-0.27 0.19,-0.1 0.34,-0.19 0.47,-0.27 0.13,-0.08 0.23,-0.12 0.32,-0.12 0.12,0 0.21,0.05 0.27,0.14 l 0.4,0.52 c -0.18,0.21 -0.39,0.4 -0.63,0.56 -0.25,0.16 -0.51,0.29 -0.79,0.39 -0.28,0.1 -0.57,0.18 -0.87,0.23 -0.3,0.05 -0.59,0.08 -0.89,0.08 -0.56,0 -1.08,-0.09 -1.55,-0.28 -0.47,-0.19 -0.88,-0.47 -1.22,-0.83 -0.34,-0.36 -0.61,-0.82 -0.8,-1.36 -0.19,-0.54 -0.29,-1.16 -0.29,-1.86 0,-0.57 0.09,-1.09 0.26,-1.58 0.17,-0.49 0.42,-0.92 0.75,-1.28 0.33,-0.36 0.72,-0.64 1.19,-0.85 0.47,-0.21 1,-0.31 1.58,-0.31 z m 0.03,1.05 c -0.69,0 -1.23,0.2 -1.62,0.6 -0.4,0.4 -0.64,0.95 -0.74,1.65 h 4.41 c 0,-0.33 -0.05,-0.63 -0.14,-0.91 -0.09,-0.28 -0.22,-0.51 -0.4,-0.71 -0.18,-0.2 -0.39,-0.35 -0.64,-0.46 -0.25,-0.11 -0.54,-0.16 -0.87,-0.16 z" + id="path239" /> + <path + class="cls-3" + d="m 1970.44,1274.65 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.29 l 0.11,0.88 c 0.35,-0.39 0.75,-0.7 1.18,-0.94 0.43,-0.24 0.94,-0.36 1.51,-0.36 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.35 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 v -5.16 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.82,0.1 -1.18,0.3 -0.36,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" + id="path241" /> + <path + class="cls-3" + d="m 1978.92,1273.66 c 0,-0.12 0.02,-0.24 0.07,-0.35 0.04,-0.11 0.11,-0.21 0.19,-0.29 0.08,-0.08 0.18,-0.15 0.3,-0.2 0.12,-0.05 0.25,-0.07 0.38,-0.07 0.16,0 0.3,0.03 0.43,0.09 0.13,0.06 0.23,0.14 0.31,0.24 0.08,0.1 0.14,0.22 0.19,0.36 0.04,0.13 0.06,0.28 0.06,0.44 0,0.24 -0.04,0.49 -0.1,0.75 -0.07,0.26 -0.17,0.51 -0.3,0.77 -0.13,0.25 -0.29,0.5 -0.48,0.74 -0.19,0.24 -0.4,0.46 -0.64,0.66 l -0.24,-0.23 c -0.07,-0.06 -0.1,-0.14 -0.1,-0.22 0,-0.07 0.04,-0.14 0.11,-0.22 0.05,-0.06 0.12,-0.14 0.2,-0.24 0.08,-0.1 0.17,-0.21 0.25,-0.34 0.08,-0.13 0.16,-0.27 0.24,-0.42 0.07,-0.15 0.12,-0.32 0.16,-0.5 h -0.1 c -0.14,0 -0.26,-0.02 -0.38,-0.07 -0.11,-0.05 -0.21,-0.12 -0.29,-0.2 -0.08,-0.09 -0.15,-0.19 -0.19,-0.31 -0.05,-0.12 -0.07,-0.25 -0.07,-0.4 z" + id="path243" /> + <path + class="cls-3" + d="m 1994.02,1263.18 v 0.58 c 0,0.18 -0.06,0.35 -0.17,0.51 l -6.49,9.11 h 6.54 v 1.26 h -8.58 v -0.61 c 0,-0.16 0.05,-0.31 0.15,-0.46 l 6.5,-9.14 h -6.34 v -1.26 h 8.38 z" + id="path245" /> + <path + class="cls-3" + d="m 2000.21,1267.88 c -0.06,0.12 -0.16,0.18 -0.3,0.18 -0.08,0 -0.17,-0.03 -0.27,-0.09 -0.1,-0.06 -0.23,-0.12 -0.37,-0.2 -0.15,-0.07 -0.32,-0.14 -0.52,-0.2 -0.2,-0.06 -0.44,-0.09 -0.72,-0.09 -0.24,0 -0.46,0.03 -0.65,0.09 -0.19,0.06 -0.36,0.15 -0.49,0.25 -0.14,0.11 -0.24,0.23 -0.31,0.37 -0.07,0.14 -0.11,0.29 -0.11,0.46 0,0.21 0.06,0.38 0.18,0.52 0.12,0.14 0.28,0.26 0.48,0.36 0.2,0.1 0.42,0.19 0.67,0.27 0.25,0.08 0.51,0.16 0.77,0.25 0.26,0.09 0.52,0.19 0.77,0.29 0.25,0.11 0.47,0.24 0.67,0.4 0.2,0.16 0.36,0.36 0.48,0.59 0.12,0.23 0.18,0.51 0.18,0.84 0,0.37 -0.07,0.72 -0.2,1.04 -0.13,0.32 -0.33,0.59 -0.59,0.82 -0.26,0.23 -0.58,0.42 -0.96,0.55 -0.38,0.13 -0.82,0.2 -1.31,0.2 -0.57,0 -1.08,-0.09 -1.54,-0.28 -0.46,-0.18 -0.85,-0.42 -1.17,-0.71 l 0.34,-0.54 c 0.04,-0.07 0.09,-0.12 0.15,-0.16 0.06,-0.04 0.14,-0.06 0.23,-0.06 0.09,0 0.2,0.04 0.3,0.11 0.1,0.07 0.24,0.16 0.39,0.25 0.15,0.09 0.34,0.17 0.55,0.25 0.21,0.08 0.49,0.11 0.81,0.11 0.28,0 0.52,-0.04 0.73,-0.11 0.21,-0.07 0.38,-0.17 0.52,-0.29 0.14,-0.12 0.24,-0.26 0.31,-0.42 0.07,-0.16 0.1,-0.33 0.1,-0.51 0,-0.22 -0.06,-0.41 -0.18,-0.56 -0.12,-0.15 -0.28,-0.27 -0.48,-0.38 -0.2,-0.11 -0.42,-0.19 -0.68,-0.27 -0.25,-0.08 -0.51,-0.16 -0.78,-0.24 -0.26,-0.09 -0.52,-0.18 -0.78,-0.29 -0.25,-0.11 -0.48,-0.25 -0.68,-0.41 -0.2,-0.17 -0.36,-0.37 -0.48,-0.61 -0.12,-0.24 -0.18,-0.54 -0.18,-0.88 0,-0.31 0.06,-0.61 0.19,-0.89 0.13,-0.29 0.32,-0.54 0.56,-0.75 0.25,-0.22 0.55,-0.39 0.9,-0.52 0.36,-0.13 0.76,-0.19 1.22,-0.19 0.53,0 1.01,0.08 1.44,0.25 0.42,0.17 0.79,0.4 1.1,0.69 l -0.32,0.52 z" + id="path247" /> + <path + class="cls-3" + d="m 2008.05,1267.98 c -0.04,0.06 -0.08,0.1 -0.13,0.14 -0.04,0.03 -0.1,0.05 -0.18,0.05 -0.08,0 -0.17,-0.03 -0.26,-0.1 -0.09,-0.07 -0.21,-0.14 -0.36,-0.22 -0.14,-0.08 -0.32,-0.15 -0.52,-0.22 -0.21,-0.07 -0.46,-0.1 -0.76,-0.1 -0.39,0 -0.74,0.07 -1.05,0.21 -0.3,0.14 -0.56,0.35 -0.76,0.61 -0.2,0.26 -0.36,0.59 -0.46,0.97 -0.1,0.38 -0.16,0.8 -0.16,1.27 0,0.47 0.06,0.93 0.17,1.31 0.11,0.38 0.27,0.7 0.47,0.96 0.2,0.26 0.45,0.46 0.74,0.59 0.29,0.13 0.62,0.2 0.98,0.2 0.36,0 0.63,-0.04 0.86,-0.12 0.22,-0.08 0.41,-0.17 0.56,-0.28 0.15,-0.1 0.27,-0.19 0.37,-0.28 0.1,-0.08 0.19,-0.12 0.29,-0.12 0.12,0 0.21,0.05 0.27,0.14 l 0.4,0.52 c -0.35,0.43 -0.79,0.75 -1.32,0.95 -0.53,0.2 -1.09,0.3 -1.67,0.3 -0.51,0 -0.98,-0.09 -1.41,-0.28 -0.43,-0.19 -0.81,-0.46 -1.13,-0.81 -0.32,-0.35 -0.57,-0.79 -0.76,-1.31 -0.18,-0.52 -0.28,-1.11 -0.28,-1.77 0,-0.6 0.08,-1.16 0.25,-1.67 0.17,-0.51 0.41,-0.95 0.74,-1.32 0.32,-0.37 0.72,-0.66 1.2,-0.87 0.48,-0.21 1.02,-0.31 1.63,-0.31 0.56,0 1.07,0.09 1.5,0.28 0.44,0.18 0.82,0.44 1.16,0.78 l -0.38,0.51 z" + id="path249" /> + <path + class="cls-3" + d="m 2009.99,1274.65 v -11.78 h 1.42 v 4.77 c 0.35,-0.37 0.73,-0.66 1.15,-0.88 0.42,-0.22 0.91,-0.33 1.46,-0.33 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.35 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 v -5.16 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.82,0.1 -1.18,0.3 -0.36,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" + id="path251" /> + <path + class="cls-3" + d="m 2022.17,1266.41 c 0.59,0 1.13,0.1 1.6,0.3 0.47,0.2 0.88,0.48 1.22,0.84 0.33,0.36 0.59,0.8 0.77,1.32 0.18,0.51 0.27,1.09 0.27,1.72 0,0.63 -0.09,1.22 -0.27,1.73 -0.18,0.51 -0.44,0.95 -0.77,1.31 -0.33,0.36 -0.74,0.64 -1.22,0.84 -0.48,0.19 -1.01,0.29 -1.6,0.29 -0.59,0 -1.13,-0.1 -1.6,-0.29 -0.48,-0.2 -0.88,-0.47 -1.22,-0.84 -0.34,-0.36 -0.59,-0.8 -0.78,-1.31 -0.19,-0.51 -0.27,-1.09 -0.27,-1.73 0,-0.64 0.09,-1.21 0.27,-1.72 0.18,-0.52 0.44,-0.95 0.78,-1.32 0.34,-0.36 0.74,-0.64 1.22,-0.84 0.48,-0.2 1.01,-0.3 1.6,-0.3 z m 0,7.24 c 0.8,0 1.4,-0.27 1.79,-0.8 0.39,-0.54 0.59,-1.28 0.59,-2.24 0,-0.96 -0.2,-1.72 -0.59,-2.26 -0.4,-0.54 -0.99,-0.81 -1.79,-0.81 -0.41,0 -0.76,0.07 -1.06,0.21 -0.3,0.14 -0.55,0.34 -0.75,0.6 -0.2,0.26 -0.35,0.58 -0.45,0.96 -0.1,0.38 -0.15,0.81 -0.15,1.29 0,0.48 0.05,0.91 0.15,1.29 0.1,0.38 0.25,0.7 0.45,0.96 0.2,0.26 0.45,0.46 0.75,0.6 0.3,0.14 0.65,0.21 1.06,0.21 z" + id="path253" /> + <path + class="cls-3" + d="m 2027.78,1277.39 v -10.85 h 0.85 c 0.2,0 0.33,0.1 0.38,0.29 l 0.12,0.96 c 0.35,-0.42 0.74,-0.76 1.19,-1.02 0.45,-0.26 0.96,-0.38 1.54,-0.38 0.46,0 0.88,0.09 1.26,0.27 0.38,0.18 0.7,0.44 0.97,0.79 0.27,0.35 0.47,0.78 0.62,1.3 0.14,0.52 0.22,1.11 0.22,1.79 0,0.6 -0.08,1.15 -0.24,1.67 -0.16,0.51 -0.39,0.96 -0.69,1.34 -0.3,0.38 -0.67,0.67 -1.1,0.89 -0.44,0.22 -0.92,0.32 -1.47,0.32 -0.5,0 -0.93,-0.08 -1.28,-0.25 -0.36,-0.16 -0.67,-0.4 -0.94,-0.7 v 3.58 h -1.42 z m 3.61,-9.84 c -0.46,0 -0.87,0.11 -1.22,0.32 -0.35,0.21 -0.67,0.51 -0.96,0.9 v 3.92 c 0.26,0.35 0.55,0.6 0.86,0.74 0.31,0.14 0.66,0.22 1.04,0.22 0.75,0 1.33,-0.27 1.74,-0.81 0.41,-0.54 0.61,-1.31 0.61,-2.3 0,-0.53 -0.05,-0.98 -0.14,-1.36 -0.09,-0.38 -0.23,-0.69 -0.4,-0.93 -0.18,-0.24 -0.39,-0.42 -0.65,-0.53 -0.26,-0.11 -0.55,-0.17 -0.87,-0.17 z" + id="path255" /> + <path + class="cls-3" + d="m 2042.57,1274.65 h -0.63 c -0.14,0 -0.25,-0.02 -0.34,-0.06 -0.08,-0.04 -0.14,-0.13 -0.17,-0.27 l -0.16,-0.75 c -0.21,0.19 -0.42,0.36 -0.62,0.52 -0.2,0.15 -0.42,0.28 -0.64,0.38 -0.22,0.1 -0.46,0.18 -0.72,0.24 -0.26,0.06 -0.54,0.08 -0.84,0.08 -0.3,0 -0.61,-0.04 -0.88,-0.13 -0.28,-0.09 -0.51,-0.22 -0.72,-0.4 -0.2,-0.18 -0.36,-0.4 -0.48,-0.67 -0.12,-0.27 -0.18,-0.59 -0.18,-0.96 0,-0.32 0.09,-0.63 0.26,-0.93 0.17,-0.3 0.46,-0.56 0.85,-0.79 0.39,-0.23 0.91,-0.42 1.54,-0.57 0.63,-0.15 1.41,-0.22 2.33,-0.22 v -0.64 c 0,-0.63 -0.13,-1.11 -0.4,-1.44 -0.27,-0.32 -0.67,-0.49 -1.2,-0.49 -0.35,0 -0.64,0.04 -0.88,0.13 -0.24,0.09 -0.44,0.19 -0.62,0.3 -0.17,0.11 -0.32,0.21 -0.45,0.3 -0.13,0.09 -0.25,0.13 -0.37,0.13 -0.1,0 -0.18,-0.03 -0.25,-0.08 -0.07,-0.05 -0.13,-0.11 -0.17,-0.19 l -0.26,-0.46 c 0.45,-0.43 0.93,-0.75 1.45,-0.97 0.52,-0.21 1.09,-0.32 1.72,-0.32 0.45,0 0.86,0.07 1.21,0.22 0.35,0.15 0.65,0.36 0.89,0.62 0.24,0.27 0.42,0.59 0.54,0.97 0.12,0.38 0.18,0.79 0.18,1.25 v 5.18 z m -3.7,-0.88 c 0.25,0 0.48,-0.03 0.69,-0.08 0.21,-0.05 0.4,-0.12 0.59,-0.22 0.18,-0.09 0.36,-0.21 0.53,-0.34 0.17,-0.13 0.33,-0.29 0.49,-0.46 V 1271 c -0.66,0 -1.21,0.04 -1.67,0.12 -0.46,0.08 -0.83,0.19 -1.12,0.33 -0.29,0.13 -0.5,0.29 -0.63,0.47 -0.13,0.18 -0.2,0.39 -0.2,0.61 0,0.22 0.04,0.4 0.1,0.56 0.06,0.16 0.16,0.28 0.28,0.38 0.12,0.1 0.26,0.17 0.42,0.22 0.16,0.05 0.33,0.07 0.52,0.07 z" + id="path257" /> + <path + class="cls-3" + d="m 2045.96,1266.54 v 5.17 c 0,0.61 0.14,1.09 0.42,1.42 0.28,0.34 0.71,0.5 1.28,0.5 0.42,0 0.81,-0.1 1.18,-0.3 0.37,-0.2 0.71,-0.47 1.02,-0.82 v -5.98 h 1.42 v 8.1 h -0.85 c -0.2,0 -0.33,-0.1 -0.38,-0.3 l -0.11,-0.87 c -0.35,0.39 -0.75,0.7 -1.18,0.94 -0.44,0.24 -0.94,0.36 -1.5,0.36 -0.44,0 -0.83,-0.07 -1.17,-0.22 -0.34,-0.15 -0.62,-0.35 -0.85,-0.62 -0.23,-0.27 -0.4,-0.59 -0.52,-0.97 -0.11,-0.38 -0.17,-0.8 -0.17,-1.26 v -5.17 h 1.42 z" + id="path259" /> + </g> + <g + id="St._Joseph" + transform="matrix(1.620492,0,0,1.620492,-1062.6403,-128.45221)"> + <path + class="cls-1" + d="m 1887.28,155.98 h -74.37 c -6.6,0 -12,5.4 -12,12 v 3.76 l -57.53,-0.89 -20.01,10.73 c -0.59,-0.74 -1.21,-1.45 -1.88,-2.12 -4.38,-4.38 -10.44,-7.09 -17.12,-7.09 -13.38,0 -24.22,10.84 -24.22,24.22 0,13.38 10.84,24.22 24.22,24.22 13.38,0 24.22,-10.84 24.22,-24.22 0,-4.58 -1.27,-8.87 -3.49,-12.53 l 18.98,-10.18 56.83,0.86 v 4.03 c 0,6.6 5.4,12 12,12 h 74.37 c 6.6,0 12,-5.4 12,-12 v -10.78 c 0,-6.6 -5.4,-12 -12,-12 z" + id="path262" /> + <path + class="cls-3" + d="m 1821.18,169.51 c -0.05,0.08 -0.1,0.14 -0.15,0.18 -0.05,0.04 -0.12,0.06 -0.21,0.06 -0.09,0 -0.2,-0.04 -0.32,-0.14 -0.12,-0.1 -0.27,-0.19 -0.46,-0.3 -0.18,-0.11 -0.41,-0.21 -0.66,-0.3 -0.26,-0.09 -0.57,-0.14 -0.94,-0.14 -0.35,0 -0.65,0.05 -0.92,0.14 -0.27,0.09 -0.49,0.22 -0.67,0.38 -0.18,0.16 -0.31,0.35 -0.4,0.56 -0.09,0.21 -0.14,0.45 -0.14,0.7 0,0.32 0.08,0.58 0.24,0.8 0.16,0.21 0.37,0.39 0.62,0.54 0.26,0.15 0.55,0.28 0.88,0.39 0.33,0.11 0.66,0.22 1.01,0.34 0.35,0.12 0.68,0.25 1.01,0.4 0.33,0.15 0.62,0.33 0.88,0.56 0.26,0.22 0.47,0.5 0.62,0.82 0.15,0.32 0.24,0.73 0.24,1.2 0,0.5 -0.09,0.97 -0.26,1.41 -0.17,0.44 -0.42,0.82 -0.75,1.15 -0.33,0.33 -0.73,0.58 -1.21,0.77 -0.48,0.19 -1.02,0.28 -1.63,0.28 -0.74,0 -1.42,-0.13 -2.03,-0.4 -0.61,-0.27 -1.13,-0.63 -1.56,-1.09 l 0.45,-0.74 c 0.04,-0.06 0.09,-0.11 0.16,-0.15 0.07,-0.04 0.13,-0.06 0.2,-0.06 0.11,0 0.24,0.06 0.38,0.18 0.14,0.12 0.32,0.25 0.54,0.4 0.22,0.14 0.48,0.28 0.78,0.4 0.3,0.12 0.68,0.18 1.12,0.18 0.37,0 0.7,-0.05 0.98,-0.15 0.28,-0.1 0.53,-0.24 0.73,-0.43 0.2,-0.18 0.35,-0.4 0.46,-0.66 0.11,-0.26 0.16,-0.54 0.16,-0.86 0,-0.35 -0.08,-0.63 -0.24,-0.85 -0.16,-0.22 -0.36,-0.41 -0.62,-0.56 -0.26,-0.15 -0.55,-0.28 -0.88,-0.38 -0.33,-0.1 -0.66,-0.21 -1.01,-0.32 -0.35,-0.11 -0.68,-0.24 -1.01,-0.38 -0.33,-0.14 -0.62,-0.33 -0.88,-0.56 -0.26,-0.23 -0.46,-0.52 -0.62,-0.86 -0.16,-0.34 -0.24,-0.77 -0.24,-1.28 0,-0.41 0.08,-0.8 0.24,-1.18 0.16,-0.38 0.38,-0.71 0.68,-1.01 0.3,-0.29 0.67,-0.53 1.11,-0.7 0.44,-0.18 0.95,-0.26 1.52,-0.26 0.64,0 1.22,0.1 1.75,0.3 0.53,0.2 0.99,0.5 1.38,0.88 l -0.38,0.74 z" + id="path264" /> + <path + class="cls-3" + d="m 1826.02,179.31 c -0.64,0 -1.13,-0.18 -1.48,-0.54 -0.34,-0.36 -0.52,-0.87 -0.52,-1.54 v -4.96 h -0.98 c -0.08,0 -0.16,-0.02 -0.22,-0.08 -0.06,-0.06 -0.09,-0.13 -0.09,-0.24 v -0.57 l 1.33,-0.17 0.33,-2.5 c 0.01,-0.08 0.04,-0.15 0.1,-0.2 0.06,-0.05 0.13,-0.08 0.22,-0.08 h 0.72 v 2.79 h 2.32 v 1.03 h -2.32 v 4.86 c 0,0.34 0.08,0.59 0.25,0.76 0.17,0.17 0.38,0.25 0.64,0.25 0.15,0 0.28,-0.02 0.39,-0.06 0.11,-0.04 0.2,-0.08 0.28,-0.13 0.08,-0.05 0.15,-0.09 0.2,-0.13 0.06,-0.04 0.11,-0.06 0.15,-0.06 0.07,0 0.14,0.05 0.2,0.14 l 0.42,0.68 c -0.25,0.23 -0.54,0.41 -0.89,0.54 -0.35,0.13 -0.7,0.2 -1.07,0.2 z" + id="path266" /> + <path + class="cls-3" + d="m 1829.07,178.3 c 0,-0.14 0.03,-0.27 0.08,-0.39 0.05,-0.12 0.12,-0.23 0.21,-0.32 0.09,-0.09 0.19,-0.16 0.32,-0.22 0.13,-0.06 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.12 0.32,0.22 0.09,0.09 0.16,0.2 0.21,0.32 0.05,0.12 0.08,0.25 0.08,0.39 0,0.14 -0.03,0.28 -0.08,0.4 -0.05,0.12 -0.12,0.22 -0.21,0.32 -0.09,0.09 -0.2,0.16 -0.32,0.21 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.12 -0.32,-0.21 -0.09,-0.09 -0.16,-0.2 -0.21,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.4 z" + id="path268" /> + <path + class="cls-3" + d="m 1840.55,175.22 c 0,0.64 -0.08,1.21 -0.24,1.72 -0.16,0.51 -0.39,0.94 -0.7,1.28 -0.31,0.35 -0.68,0.62 -1.13,0.8 -0.45,0.19 -0.96,0.28 -1.54,0.28 -0.52,0 -1.06,-0.07 -1.62,-0.22 0.01,-0.15 0.02,-0.31 0.04,-0.46 0.02,-0.15 0.03,-0.3 0.05,-0.45 0.01,-0.09 0.04,-0.16 0.1,-0.22 0.06,-0.06 0.14,-0.08 0.25,-0.08 0.1,0 0.22,0.02 0.38,0.07 0.16,0.05 0.37,0.07 0.64,0.07 0.35,0 0.67,-0.05 0.94,-0.16 0.28,-0.11 0.51,-0.27 0.7,-0.5 0.19,-0.22 0.33,-0.51 0.43,-0.86 0.1,-0.35 0.15,-0.76 0.15,-1.24 v -7.54 h 1.54 v 7.5 z" + id="path270" /> + <path + class="cls-3" + d="m 1846.39,170.95 c 0.59,0 1.13,0.1 1.6,0.3 0.48,0.2 0.88,0.48 1.22,0.84 0.33,0.36 0.59,0.8 0.77,1.32 0.18,0.52 0.27,1.09 0.27,1.72 0,0.63 -0.09,1.22 -0.27,1.73 -0.18,0.51 -0.43,0.95 -0.77,1.31 -0.33,0.36 -0.74,0.64 -1.22,0.84 -0.48,0.19 -1.01,0.29 -1.6,0.29 -0.59,0 -1.13,-0.1 -1.6,-0.29 -0.48,-0.19 -0.88,-0.47 -1.22,-0.84 -0.34,-0.37 -0.59,-0.8 -0.78,-1.31 -0.18,-0.51 -0.27,-1.09 -0.27,-1.73 0,-0.64 0.09,-1.21 0.27,-1.72 0.18,-0.51 0.44,-0.95 0.78,-1.32 0.34,-0.37 0.74,-0.64 1.22,-0.84 0.48,-0.2 1.01,-0.3 1.6,-0.3 z m 0,7.23 c 0.8,0 1.4,-0.27 1.79,-0.8 0.39,-0.53 0.59,-1.28 0.59,-2.24 0,-0.96 -0.2,-1.72 -0.59,-2.26 -0.39,-0.54 -0.99,-0.81 -1.79,-0.81 -0.41,0 -0.76,0.07 -1.06,0.21 -0.3,0.14 -0.55,0.34 -0.75,0.6 -0.2,0.26 -0.35,0.58 -0.45,0.96 -0.1,0.38 -0.15,0.81 -0.15,1.29 0,0.48 0.05,0.91 0.15,1.29 0.1,0.38 0.25,0.7 0.45,0.96 0.2,0.26 0.45,0.46 0.75,0.6 0.3,0.14 0.65,0.21 1.06,0.21 z" + id="path272" /> + <path + class="cls-3" + d="m 1856.65,172.41 c -0.06,0.12 -0.16,0.18 -0.3,0.18 -0.08,0 -0.17,-0.03 -0.27,-0.09 -0.1,-0.06 -0.23,-0.12 -0.37,-0.2 -0.15,-0.07 -0.32,-0.14 -0.52,-0.2 -0.2,-0.06 -0.44,-0.09 -0.72,-0.09 -0.24,0 -0.46,0.03 -0.65,0.09 -0.19,0.06 -0.36,0.15 -0.49,0.25 -0.14,0.11 -0.24,0.23 -0.31,0.37 -0.07,0.14 -0.11,0.29 -0.11,0.46 0,0.21 0.06,0.38 0.18,0.52 0.12,0.14 0.28,0.26 0.48,0.36 0.2,0.1 0.42,0.19 0.67,0.27 0.25,0.08 0.51,0.16 0.77,0.25 0.26,0.09 0.52,0.19 0.77,0.29 0.25,0.1 0.47,0.24 0.67,0.4 0.2,0.16 0.36,0.36 0.48,0.59 0.12,0.23 0.18,0.51 0.18,0.84 0,0.37 -0.07,0.72 -0.2,1.04 -0.13,0.32 -0.33,0.59 -0.59,0.82 -0.26,0.23 -0.58,0.42 -0.96,0.55 -0.38,0.13 -0.82,0.2 -1.31,0.2 -0.57,0 -1.08,-0.09 -1.54,-0.28 -0.46,-0.18 -0.85,-0.42 -1.17,-0.71 l 0.34,-0.54 c 0.04,-0.07 0.09,-0.12 0.15,-0.16 0.06,-0.04 0.14,-0.06 0.23,-0.06 0.09,0 0.2,0.04 0.3,0.11 0.11,0.08 0.24,0.16 0.39,0.25 0.15,0.09 0.34,0.17 0.55,0.25 0.22,0.08 0.49,0.11 0.81,0.11 0.28,0 0.52,-0.04 0.73,-0.11 0.21,-0.07 0.38,-0.17 0.52,-0.29 0.14,-0.12 0.24,-0.26 0.31,-0.42 0.07,-0.16 0.1,-0.33 0.1,-0.51 0,-0.22 -0.06,-0.41 -0.18,-0.56 -0.12,-0.15 -0.28,-0.27 -0.48,-0.38 -0.2,-0.1 -0.42,-0.19 -0.68,-0.27 -0.26,-0.08 -0.51,-0.16 -0.78,-0.24 -0.26,-0.08 -0.52,-0.18 -0.78,-0.29 -0.25,-0.11 -0.48,-0.25 -0.68,-0.41 -0.2,-0.17 -0.36,-0.37 -0.48,-0.61 -0.12,-0.24 -0.18,-0.54 -0.18,-0.88 0,-0.31 0.06,-0.61 0.19,-0.89 0.13,-0.29 0.32,-0.54 0.56,-0.75 0.25,-0.22 0.55,-0.39 0.9,-0.52 0.36,-0.13 0.76,-0.19 1.22,-0.19 0.53,0 1.01,0.08 1.44,0.25 0.42,0.17 0.79,0.4 1.1,0.69 l -0.32,0.52 z" + id="path274" /> + <path + class="cls-3" + d="m 1862.16,170.95 c 0.49,0 0.93,0.08 1.34,0.24 0.41,0.16 0.76,0.4 1.06,0.7 0.3,0.31 0.53,0.69 0.7,1.14 0.17,0.45 0.25,0.96 0.25,1.54 0,0.22 -0.02,0.37 -0.07,0.45 -0.05,0.08 -0.14,0.11 -0.27,0.11 h -5.39 c 0.01,0.51 0.08,0.96 0.21,1.34 0.13,0.38 0.3,0.7 0.53,0.95 0.23,0.25 0.49,0.44 0.8,0.57 0.31,0.12 0.66,0.19 1.04,0.19 0.36,0 0.67,-0.04 0.92,-0.12 0.25,-0.08 0.48,-0.17 0.67,-0.27 0.19,-0.1 0.34,-0.19 0.47,-0.27 0.12,-0.08 0.23,-0.12 0.32,-0.12 0.12,0 0.21,0.05 0.27,0.14 l 0.4,0.52 c -0.18,0.21 -0.39,0.4 -0.63,0.56 -0.24,0.16 -0.51,0.29 -0.79,0.39 -0.28,0.1 -0.57,0.18 -0.87,0.23 -0.3,0.05 -0.6,0.08 -0.89,0.08 -0.56,0 -1.08,-0.09 -1.55,-0.28 -0.47,-0.19 -0.88,-0.47 -1.22,-0.83 -0.34,-0.37 -0.61,-0.82 -0.8,-1.36 -0.19,-0.54 -0.29,-1.16 -0.29,-1.86 0,-0.57 0.09,-1.09 0.26,-1.58 0.17,-0.49 0.42,-0.92 0.75,-1.28 0.33,-0.36 0.72,-0.64 1.19,-0.85 0.47,-0.21 1,-0.31 1.58,-0.31 z m 0.03,1.04 c -0.69,0 -1.23,0.2 -1.62,0.6 -0.39,0.4 -0.64,0.95 -0.74,1.65 h 4.41 c 0,-0.33 -0.04,-0.63 -0.14,-0.91 -0.1,-0.28 -0.22,-0.51 -0.4,-0.71 -0.18,-0.2 -0.39,-0.35 -0.64,-0.46 -0.25,-0.11 -0.54,-0.16 -0.87,-0.16 z" + id="path276" /> + <path + class="cls-3" + d="m 1867.34,181.92 v -10.85 h 0.85 c 0.2,0 0.33,0.1 0.38,0.3 l 0.12,0.96 c 0.35,-0.42 0.74,-0.76 1.19,-1.02 0.45,-0.26 0.96,-0.38 1.54,-0.38 0.46,0 0.89,0.09 1.26,0.27 0.38,0.18 0.7,0.44 0.97,0.79 0.27,0.35 0.47,0.78 0.62,1.3 0.14,0.52 0.22,1.11 0.22,1.78 0,0.6 -0.08,1.15 -0.24,1.67 -0.16,0.52 -0.39,0.96 -0.69,1.34 -0.3,0.38 -0.67,0.67 -1.1,0.89 -0.43,0.22 -0.92,0.32 -1.47,0.32 -0.5,0 -0.93,-0.08 -1.28,-0.25 -0.35,-0.17 -0.67,-0.4 -0.94,-0.7 v 3.58 h -1.42 z m 3.6,-9.84 c -0.46,0 -0.87,0.11 -1.22,0.32 -0.35,0.21 -0.67,0.51 -0.96,0.9 v 3.92 c 0.26,0.35 0.55,0.6 0.86,0.74 0.31,0.14 0.66,0.22 1.04,0.22 0.75,0 1.33,-0.27 1.74,-0.81 0.41,-0.54 0.61,-1.31 0.61,-2.3 0,-0.53 -0.05,-0.98 -0.14,-1.36 -0.09,-0.38 -0.23,-0.69 -0.4,-0.93 -0.18,-0.24 -0.39,-0.42 -0.65,-0.53 -0.26,-0.11 -0.55,-0.17 -0.87,-0.17 z" + id="path278" /> + <path + class="cls-3" + d="M 1876.17,179.18 V 167.4 h 1.42 v 4.77 c 0.35,-0.37 0.73,-0.66 1.15,-0.88 0.42,-0.22 0.91,-0.33 1.46,-0.33 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.35 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 v -5.16 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.81,0.1 -1.18,0.3 -0.37,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" + id="path280" /> + <polygon + class="cls-3" + points="1705.02,189.56 1705.02,181.35 1703.02,181.35 1703.02,189.56 1696.06,189.56 1696.06,191.56 1703.02,191.56 1703.02,213.85 1705.02,213.85 1705.02,191.56 1711.99,191.56 1711.99,189.56 " + id="polygon282" /> + </g> + <g + id="St._Johannes_Nepomuk" + transform="matrix(1.7370821,0,0,1.7370821,-972.06473,-299.91291)"> + <path + class="cls-1" + d="m 1584.44,318.06 h -163.05 c -6.6,0 -12,5.4 -12,12 v 5.83 l -23.05,-0.15 -46.25,39.59 c 0,0 -5.34,-5.73 -15.59,-5.77 -13.37,-0.05 -24.22,10.84 -24.22,24.22 0,13.38 10.84,24.22 24.22,24.22 13.38,0 24.22,-10.84 24.22,-24.22 0,-5.97 -2.16,-11.43 -5.74,-15.65 l 44.84,-38.39 21.58,0.15 v 0.96 c 0,6.6 5.4,12 12,12 h 163.05 c 6.6,0 12,-5.4 12,-12 v -10.78 c 0,-6.6 -5.4,-12 -12,-12 z" + id="path285" /> + <path + class="cls-3" + d="m 1429.17,331.59 c -0.05,0.08 -0.1,0.14 -0.15,0.18 -0.05,0.04 -0.12,0.06 -0.21,0.06 -0.09,0 -0.2,-0.04 -0.32,-0.14 -0.12,-0.1 -0.27,-0.19 -0.46,-0.3 -0.18,-0.11 -0.41,-0.21 -0.66,-0.3 -0.26,-0.09 -0.57,-0.14 -0.94,-0.14 -0.35,0 -0.65,0.05 -0.92,0.14 -0.27,0.09 -0.49,0.22 -0.67,0.38 -0.18,0.16 -0.31,0.35 -0.4,0.56 -0.09,0.22 -0.14,0.45 -0.14,0.7 0,0.32 0.08,0.59 0.24,0.8 0.16,0.21 0.37,0.39 0.62,0.54 0.26,0.15 0.55,0.28 0.88,0.39 0.33,0.11 0.66,0.22 1.01,0.34 0.34,0.12 0.68,0.25 1.01,0.4 0.33,0.15 0.62,0.33 0.88,0.56 0.26,0.22 0.47,0.5 0.62,0.82 0.16,0.33 0.24,0.73 0.24,1.2 0,0.5 -0.09,0.97 -0.26,1.41 -0.17,0.44 -0.42,0.82 -0.75,1.15 -0.33,0.33 -0.73,0.58 -1.21,0.77 -0.48,0.19 -1.02,0.28 -1.63,0.28 -0.74,0 -1.42,-0.13 -2.03,-0.4 -0.61,-0.27 -1.13,-0.63 -1.56,-1.09 l 0.45,-0.74 c 0.04,-0.06 0.09,-0.11 0.16,-0.15 0.06,-0.04 0.13,-0.06 0.2,-0.06 0.11,0 0.24,0.06 0.38,0.18 0.14,0.12 0.32,0.25 0.54,0.4 0.22,0.14 0.48,0.28 0.78,0.4 0.31,0.12 0.68,0.18 1.12,0.18 0.37,0 0.7,-0.05 0.98,-0.15 0.29,-0.1 0.53,-0.24 0.73,-0.43 0.2,-0.18 0.35,-0.4 0.46,-0.66 0.11,-0.26 0.16,-0.54 0.16,-0.86 0,-0.35 -0.08,-0.63 -0.24,-0.85 -0.16,-0.22 -0.36,-0.41 -0.62,-0.56 -0.26,-0.15 -0.55,-0.28 -0.88,-0.38 -0.33,-0.1 -0.66,-0.21 -1.01,-0.32 -0.34,-0.11 -0.68,-0.24 -1.01,-0.38 -0.33,-0.14 -0.62,-0.33 -0.88,-0.56 -0.26,-0.23 -0.46,-0.52 -0.62,-0.86 -0.16,-0.34 -0.24,-0.77 -0.24,-1.28 0,-0.41 0.08,-0.8 0.24,-1.18 0.16,-0.38 0.39,-0.71 0.68,-1.01 0.3,-0.29 0.67,-0.53 1.11,-0.7 0.44,-0.18 0.95,-0.26 1.52,-0.26 0.64,0 1.22,0.1 1.75,0.3 0.53,0.2 0.99,0.5 1.38,0.88 l -0.38,0.74 z" + id="path287" /> + <path + class="cls-3" + d="m 1434.01,341.39 c -0.64,0 -1.13,-0.18 -1.48,-0.54 -0.34,-0.36 -0.52,-0.87 -0.52,-1.54 v -4.96 h -0.98 c -0.08,0 -0.16,-0.03 -0.22,-0.08 -0.06,-0.05 -0.09,-0.13 -0.09,-0.24 v -0.57 l 1.33,-0.17 0.33,-2.5 c 0.01,-0.08 0.05,-0.15 0.1,-0.2 0.05,-0.05 0.13,-0.08 0.22,-0.08 h 0.72 v 2.79 h 2.32 v 1.03 h -2.32 v 4.86 c 0,0.34 0.08,0.59 0.25,0.76 0.17,0.17 0.38,0.25 0.64,0.25 0.15,0 0.28,-0.02 0.39,-0.06 0.11,-0.04 0.2,-0.08 0.28,-0.13 0.08,-0.05 0.15,-0.09 0.2,-0.13 0.06,-0.04 0.11,-0.06 0.15,-0.06 0.07,0 0.14,0.04 0.2,0.14 l 0.42,0.68 c -0.25,0.23 -0.54,0.41 -0.89,0.54 -0.35,0.13 -0.7,0.2 -1.07,0.2 z" + id="path289" /> + <path + class="cls-3" + d="m 1437.06,340.38 c 0,-0.14 0.03,-0.27 0.08,-0.39 0.05,-0.12 0.12,-0.23 0.21,-0.32 0.09,-0.09 0.19,-0.16 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.16,0.2 0.21,0.32 0.05,0.12 0.08,0.25 0.08,0.39 0,0.14 -0.03,0.28 -0.08,0.4 -0.05,0.12 -0.12,0.23 -0.21,0.32 -0.09,0.09 -0.2,0.16 -0.32,0.21 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.12 -0.32,-0.21 -0.09,-0.09 -0.16,-0.2 -0.21,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.4 z" + id="path291" /> + <path + class="cls-3" + d="m 1448.54,337.3 c 0,0.64 -0.08,1.21 -0.24,1.72 -0.16,0.51 -0.39,0.93 -0.7,1.28 -0.31,0.35 -0.68,0.62 -1.13,0.8 -0.45,0.19 -0.96,0.28 -1.54,0.28 -0.52,0 -1.06,-0.08 -1.62,-0.22 0.01,-0.15 0.02,-0.31 0.04,-0.46 0.02,-0.15 0.03,-0.3 0.05,-0.45 0.01,-0.09 0.04,-0.16 0.1,-0.22 0.06,-0.06 0.14,-0.08 0.25,-0.08 0.1,0 0.22,0.02 0.38,0.07 0.16,0.05 0.37,0.07 0.64,0.07 0.35,0 0.67,-0.05 0.94,-0.16 0.27,-0.11 0.51,-0.27 0.7,-0.5 0.19,-0.22 0.33,-0.51 0.43,-0.86 0.1,-0.35 0.15,-0.76 0.15,-1.24 v -7.54 h 1.54 v 7.5 z" + id="path293" /> + <path + class="cls-3" + d="m 1454.38,333.03 c 0.59,0 1.13,0.1 1.6,0.3 0.48,0.2 0.88,0.48 1.22,0.84 0.33,0.36 0.59,0.8 0.77,1.32 0.18,0.52 0.27,1.09 0.27,1.72 0,0.63 -0.09,1.22 -0.27,1.73 -0.18,0.51 -0.44,0.95 -0.77,1.31 -0.33,0.36 -0.74,0.64 -1.22,0.84 -0.48,0.2 -1.01,0.29 -1.6,0.29 -0.59,0 -1.13,-0.1 -1.6,-0.29 -0.48,-0.19 -0.88,-0.47 -1.22,-0.84 -0.34,-0.36 -0.59,-0.8 -0.78,-1.31 -0.18,-0.51 -0.27,-1.09 -0.27,-1.73 0,-0.64 0.09,-1.21 0.27,-1.72 0.18,-0.51 0.44,-0.95 0.78,-1.32 0.34,-0.36 0.74,-0.64 1.22,-0.84 0.48,-0.2 1.01,-0.3 1.6,-0.3 z m 0,7.23 c 0.8,0 1.4,-0.27 1.79,-0.8 0.39,-0.54 0.59,-1.28 0.59,-2.24 0,-0.96 -0.2,-1.72 -0.59,-2.26 -0.4,-0.54 -0.99,-0.81 -1.79,-0.81 -0.41,0 -0.76,0.07 -1.06,0.21 -0.3,0.14 -0.55,0.34 -0.75,0.6 -0.2,0.26 -0.35,0.58 -0.45,0.96 -0.1,0.38 -0.15,0.81 -0.15,1.29 0,0.48 0.05,0.91 0.15,1.29 0.1,0.38 0.25,0.7 0.45,0.96 0.2,0.26 0.45,0.46 0.75,0.6 0.3,0.14 0.65,0.21 1.06,0.21 z" + id="path295" /> + <path + class="cls-3" + d="m 1460,341.26 v -11.78 h 1.42 v 4.77 c 0.35,-0.37 0.73,-0.66 1.15,-0.88 0.42,-0.22 0.91,-0.33 1.46,-0.33 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.36 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 v -5.16 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.81,0.1 -1.18,0.3 -0.37,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" + id="path297" /> + <path + class="cls-3" + d="m 1474.85,341.26 h -0.63 c -0.14,0 -0.25,-0.02 -0.34,-0.06 -0.09,-0.04 -0.14,-0.13 -0.17,-0.27 l -0.16,-0.75 c -0.21,0.19 -0.42,0.36 -0.62,0.52 -0.2,0.15 -0.42,0.28 -0.64,0.38 -0.22,0.1 -0.46,0.18 -0.72,0.24 -0.25,0.05 -0.54,0.08 -0.84,0.08 -0.3,0 -0.61,-0.04 -0.88,-0.13 -0.27,-0.09 -0.51,-0.22 -0.72,-0.4 -0.21,-0.18 -0.36,-0.4 -0.48,-0.67 -0.12,-0.27 -0.18,-0.59 -0.18,-0.96 0,-0.32 0.09,-0.63 0.26,-0.93 0.17,-0.3 0.46,-0.56 0.85,-0.79 0.39,-0.23 0.91,-0.42 1.54,-0.57 0.63,-0.15 1.41,-0.22 2.33,-0.22 v -0.64 c 0,-0.63 -0.13,-1.11 -0.4,-1.44 -0.27,-0.32 -0.67,-0.49 -1.2,-0.49 -0.35,0 -0.64,0.04 -0.88,0.13 -0.24,0.09 -0.44,0.19 -0.62,0.3 -0.18,0.11 -0.32,0.21 -0.45,0.3 -0.13,0.09 -0.25,0.13 -0.37,0.13 -0.1,0 -0.18,-0.03 -0.25,-0.08 -0.07,-0.05 -0.13,-0.11 -0.17,-0.19 l -0.26,-0.46 c 0.45,-0.43 0.93,-0.75 1.45,-0.97 0.52,-0.21 1.09,-0.32 1.72,-0.32 0.45,0 0.86,0.07 1.21,0.22 0.35,0.15 0.65,0.36 0.89,0.62 0.24,0.27 0.42,0.59 0.54,0.97 0.12,0.38 0.18,0.79 0.18,1.25 v 5.18 z m -3.7,-0.87 c 0.25,0 0.48,-0.03 0.69,-0.08 0.21,-0.05 0.4,-0.12 0.59,-0.22 0.18,-0.09 0.36,-0.21 0.53,-0.34 0.17,-0.13 0.33,-0.29 0.49,-0.46 v -1.67 c -0.66,0 -1.21,0.04 -1.67,0.12 -0.46,0.08 -0.83,0.19 -1.12,0.33 -0.29,0.13 -0.5,0.29 -0.63,0.47 -0.13,0.18 -0.2,0.39 -0.2,0.61 0,0.22 0.03,0.4 0.1,0.56 0.07,0.16 0.16,0.28 0.28,0.38 0.12,0.1 0.26,0.17 0.42,0.22 0.16,0.05 0.33,0.07 0.52,0.07 z" + id="path299" /> + <path + class="cls-3" + d="m 1477.01,341.26 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.3 l 0.11,0.88 c 0.35,-0.39 0.75,-0.7 1.18,-0.94 0.43,-0.24 0.94,-0.36 1.51,-0.36 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.36 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 v -5.16 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.81,0.1 -1.18,0.3 -0.37,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" + id="path301" /> + <path + class="cls-3" + d="m 1485.9,341.26 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.3 l 0.11,0.88 c 0.35,-0.39 0.75,-0.7 1.18,-0.94 0.43,-0.24 0.94,-0.36 1.51,-0.36 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.36 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 v -5.16 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.81,0.1 -1.18,0.3 -0.37,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" + id="path303" /> + <path + class="cls-3" + d="m 1498.01,333.03 c 0.49,0 0.93,0.08 1.34,0.24 0.41,0.16 0.77,0.4 1.06,0.7 0.3,0.31 0.53,0.69 0.7,1.14 0.17,0.45 0.25,0.96 0.25,1.54 0,0.22 -0.02,0.37 -0.07,0.45 -0.05,0.07 -0.14,0.11 -0.27,0.11 h -5.39 c 0.01,0.51 0.08,0.96 0.21,1.34 0.13,0.38 0.3,0.69 0.53,0.95 0.22,0.25 0.49,0.44 0.8,0.57 0.31,0.12 0.66,0.19 1.04,0.19 0.36,0 0.67,-0.04 0.92,-0.12 0.26,-0.08 0.48,-0.17 0.67,-0.27 0.19,-0.1 0.34,-0.19 0.47,-0.27 0.12,-0.08 0.23,-0.12 0.32,-0.12 0.12,0 0.21,0.04 0.27,0.14 l 0.4,0.52 c -0.18,0.21 -0.39,0.4 -0.63,0.56 -0.25,0.16 -0.51,0.29 -0.79,0.39 -0.28,0.1 -0.57,0.18 -0.87,0.23 -0.3,0.05 -0.6,0.08 -0.89,0.08 -0.56,0 -1.08,-0.09 -1.55,-0.28 -0.47,-0.19 -0.88,-0.47 -1.22,-0.83 -0.34,-0.37 -0.61,-0.82 -0.8,-1.36 -0.19,-0.54 -0.29,-1.16 -0.29,-1.86 0,-0.57 0.09,-1.09 0.26,-1.58 0.17,-0.49 0.42,-0.92 0.75,-1.28 0.33,-0.36 0.72,-0.64 1.19,-0.85 0.47,-0.21 1,-0.31 1.58,-0.31 z m 0.03,1.05 c -0.69,0 -1.23,0.2 -1.62,0.6 -0.4,0.4 -0.64,0.95 -0.74,1.65 h 4.41 c 0,-0.33 -0.05,-0.63 -0.14,-0.91 -0.09,-0.27 -0.22,-0.51 -0.4,-0.71 -0.18,-0.2 -0.39,-0.35 -0.64,-0.46 -0.25,-0.11 -0.54,-0.16 -0.87,-0.16 z" + id="path305" /> + <path + class="cls-3" + d="m 1507.82,334.49 c -0.06,0.12 -0.16,0.18 -0.3,0.18 -0.08,0 -0.17,-0.03 -0.27,-0.09 -0.1,-0.06 -0.23,-0.12 -0.37,-0.2 -0.15,-0.07 -0.32,-0.14 -0.52,-0.2 -0.2,-0.06 -0.44,-0.09 -0.72,-0.09 -0.24,0 -0.46,0.03 -0.65,0.09 -0.19,0.06 -0.36,0.15 -0.49,0.25 -0.14,0.11 -0.24,0.23 -0.31,0.37 -0.07,0.14 -0.11,0.29 -0.11,0.46 0,0.21 0.06,0.38 0.18,0.52 0.12,0.14 0.28,0.26 0.48,0.36 0.2,0.1 0.42,0.19 0.67,0.27 0.25,0.08 0.51,0.16 0.77,0.25 0.26,0.09 0.52,0.19 0.77,0.29 0.25,0.11 0.47,0.24 0.67,0.4 0.2,0.16 0.36,0.36 0.48,0.59 0.12,0.23 0.18,0.51 0.18,0.84 0,0.37 -0.07,0.72 -0.2,1.04 -0.13,0.32 -0.33,0.59 -0.59,0.82 -0.26,0.23 -0.58,0.42 -0.96,0.55 -0.38,0.13 -0.82,0.2 -1.31,0.2 -0.57,0 -1.08,-0.09 -1.54,-0.28 -0.46,-0.18 -0.85,-0.42 -1.17,-0.71 l 0.34,-0.54 c 0.04,-0.07 0.09,-0.12 0.15,-0.16 0.06,-0.04 0.14,-0.06 0.23,-0.06 0.09,0 0.2,0.04 0.3,0.11 0.11,0.07 0.24,0.16 0.39,0.25 0.15,0.09 0.34,0.17 0.55,0.25 0.22,0.07 0.49,0.11 0.81,0.11 0.28,0 0.52,-0.04 0.73,-0.11 0.21,-0.07 0.38,-0.17 0.52,-0.29 0.14,-0.12 0.24,-0.26 0.31,-0.42 0.07,-0.16 0.1,-0.33 0.1,-0.51 0,-0.22 -0.06,-0.41 -0.18,-0.56 -0.12,-0.15 -0.28,-0.27 -0.48,-0.38 -0.2,-0.1 -0.42,-0.19 -0.68,-0.27 -0.25,-0.08 -0.51,-0.16 -0.78,-0.24 -0.26,-0.08 -0.52,-0.18 -0.78,-0.29 -0.25,-0.11 -0.48,-0.25 -0.68,-0.41 -0.2,-0.17 -0.36,-0.37 -0.48,-0.61 -0.12,-0.24 -0.18,-0.54 -0.18,-0.88 0,-0.31 0.06,-0.61 0.19,-0.89 0.13,-0.29 0.31,-0.54 0.56,-0.75 0.25,-0.22 0.55,-0.39 0.9,-0.52 0.36,-0.13 0.77,-0.19 1.22,-0.19 0.53,0 1.01,0.08 1.44,0.25 0.42,0.17 0.79,0.4 1.1,0.69 l -0.32,0.52 z" + id="path307" /> + <path + class="cls-3" + d="m 1514.55,329.85 c 0.07,0.03 0.14,0.11 0.23,0.21 l 6.64,8.64 c -0.02,-0.14 -0.03,-0.27 -0.03,-0.4 0,-0.13 0,-0.26 0,-0.38 v -8.12 h 1.36 v 11.46 h -0.78 c -0.12,0 -0.23,-0.02 -0.31,-0.06 -0.08,-0.04 -0.16,-0.11 -0.24,-0.22 l -6.63,-8.63 c 0.01,0.13 0.02,0.26 0.02,0.39 0,0.13 0,0.25 0,0.35 v 8.17 h -1.36 V 329.8 h 0.8 c 0.14,0 0.24,0.02 0.31,0.05 z" + id="path309" /> + <path + class="cls-3" + d="m 1528.52,333.03 c 0.49,0 0.93,0.08 1.34,0.24 0.41,0.16 0.77,0.4 1.06,0.7 0.29,0.3 0.53,0.69 0.7,1.14 0.17,0.45 0.25,0.96 0.25,1.54 0,0.22 -0.02,0.37 -0.07,0.45 -0.05,0.07 -0.14,0.11 -0.27,0.11 h -5.39 c 0.01,0.51 0.08,0.96 0.21,1.34 0.13,0.38 0.3,0.69 0.53,0.95 0.22,0.25 0.49,0.44 0.8,0.57 0.31,0.12 0.66,0.19 1.04,0.19 0.36,0 0.67,-0.04 0.92,-0.12 0.26,-0.08 0.48,-0.17 0.67,-0.27 0.19,-0.1 0.34,-0.19 0.47,-0.27 0.12,-0.08 0.23,-0.12 0.32,-0.12 0.12,0 0.21,0.04 0.27,0.14 l 0.4,0.52 c -0.18,0.21 -0.39,0.4 -0.63,0.56 -0.25,0.16 -0.51,0.29 -0.79,0.39 -0.28,0.1 -0.57,0.18 -0.87,0.23 -0.3,0.05 -0.6,0.08 -0.89,0.08 -0.56,0 -1.08,-0.09 -1.55,-0.28 -0.47,-0.19 -0.88,-0.47 -1.22,-0.83 -0.34,-0.37 -0.61,-0.82 -0.8,-1.36 -0.19,-0.54 -0.29,-1.16 -0.29,-1.86 0,-0.57 0.09,-1.09 0.26,-1.58 0.17,-0.49 0.42,-0.92 0.75,-1.28 0.33,-0.36 0.72,-0.64 1.19,-0.85 0.47,-0.21 1,-0.31 1.58,-0.31 z m 0.03,1.05 c -0.69,0 -1.23,0.2 -1.62,0.6 -0.4,0.4 -0.64,0.95 -0.74,1.65 h 4.41 c 0,-0.33 -0.05,-0.63 -0.14,-0.91 -0.09,-0.27 -0.22,-0.51 -0.4,-0.71 -0.18,-0.2 -0.39,-0.35 -0.64,-0.46 -0.25,-0.11 -0.54,-0.16 -0.87,-0.16 z" + id="path311" /> + <path + class="cls-3" + d="m 1533.69,344.01 v -10.85 h 0.85 c 0.2,0 0.33,0.1 0.38,0.3 l 0.12,0.96 c 0.35,-0.42 0.74,-0.76 1.19,-1.02 0.45,-0.26 0.96,-0.38 1.54,-0.38 0.46,0 0.88,0.09 1.26,0.27 0.38,0.18 0.7,0.44 0.97,0.79 0.27,0.35 0.47,0.78 0.62,1.3 0.14,0.52 0.22,1.11 0.22,1.78 0,0.6 -0.08,1.15 -0.24,1.67 -0.16,0.52 -0.39,0.96 -0.69,1.34 -0.3,0.38 -0.67,0.67 -1.1,0.89 -0.43,0.22 -0.92,0.32 -1.47,0.32 -0.5,0 -0.93,-0.08 -1.28,-0.25 -0.35,-0.17 -0.67,-0.4 -0.94,-0.7 v 3.58 h -1.42 z m 3.61,-9.85 c -0.46,0 -0.87,0.11 -1.22,0.32 -0.35,0.21 -0.67,0.51 -0.96,0.9 v 3.92 c 0.26,0.35 0.55,0.6 0.86,0.74 0.31,0.14 0.66,0.22 1.04,0.22 0.75,0 1.33,-0.27 1.74,-0.81 0.4,-0.54 0.61,-1.31 0.61,-2.3 0,-0.53 -0.05,-0.98 -0.14,-1.36 -0.09,-0.38 -0.23,-0.69 -0.4,-0.93 -0.18,-0.24 -0.39,-0.42 -0.65,-0.53 -0.26,-0.11 -0.55,-0.17 -0.87,-0.17 z" + id="path313" /> + <path + class="cls-3" + d="m 1545.81,333.03 c 0.59,0 1.13,0.1 1.6,0.3 0.47,0.2 0.88,0.48 1.22,0.84 0.33,0.36 0.59,0.8 0.77,1.32 0.18,0.52 0.27,1.09 0.27,1.72 0,0.63 -0.09,1.22 -0.27,1.73 -0.18,0.51 -0.43,0.95 -0.77,1.31 -0.33,0.36 -0.74,0.64 -1.22,0.84 -0.48,0.2 -1.01,0.29 -1.6,0.29 -0.59,0 -1.13,-0.1 -1.6,-0.29 -0.48,-0.19 -0.88,-0.47 -1.22,-0.84 -0.34,-0.36 -0.59,-0.8 -0.78,-1.31 -0.19,-0.51 -0.27,-1.09 -0.27,-1.73 0,-0.64 0.09,-1.21 0.27,-1.72 0.18,-0.51 0.44,-0.95 0.78,-1.32 0.34,-0.36 0.74,-0.64 1.22,-0.84 0.48,-0.2 1.01,-0.3 1.6,-0.3 z m 0,7.23 c 0.8,0 1.4,-0.27 1.79,-0.8 0.39,-0.54 0.59,-1.28 0.59,-2.24 0,-0.96 -0.2,-1.72 -0.59,-2.26 -0.39,-0.54 -0.99,-0.81 -1.79,-0.81 -0.41,0 -0.76,0.07 -1.06,0.21 -0.3,0.14 -0.55,0.34 -0.75,0.6 -0.2,0.26 -0.35,0.58 -0.45,0.96 -0.1,0.38 -0.15,0.81 -0.15,1.29 0,0.48 0.05,0.91 0.15,1.29 0.1,0.38 0.25,0.7 0.45,0.96 0.2,0.26 0.45,0.46 0.75,0.6 0.3,0.14 0.65,0.21 1.06,0.21 z" + id="path315" /> + <path + class="cls-3" + d="m 1551.42,341.26 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.3 l 0.1,0.83 c 0.3,-0.37 0.63,-0.67 1,-0.9 0.37,-0.24 0.8,-0.35 1.29,-0.35 0.55,0 0.99,0.15 1.33,0.46 0.34,0.3 0.58,0.71 0.73,1.23 0.11,-0.29 0.26,-0.55 0.44,-0.76 0.18,-0.21 0.39,-0.39 0.62,-0.53 0.23,-0.14 0.47,-0.24 0.73,-0.3 0.26,-0.06 0.52,-0.1 0.79,-0.1 0.43,0 0.81,0.07 1.14,0.2 0.33,0.14 0.62,0.33 0.85,0.6 0.23,0.26 0.41,0.58 0.53,0.96 0.12,0.38 0.18,0.82 0.18,1.31 v 5.16 h -1.42 v -5.16 c 0,-0.63 -0.14,-1.12 -0.42,-1.44 -0.28,-0.32 -0.68,-0.49 -1.21,-0.49 -0.23,0 -0.46,0.04 -0.67,0.12 -0.21,0.08 -0.4,0.2 -0.56,0.36 -0.16,0.16 -0.29,0.36 -0.38,0.6 -0.09,0.24 -0.14,0.52 -0.14,0.84 v 5.16 h -1.42 v -5.16 c 0,-0.65 -0.13,-1.14 -0.39,-1.46 -0.26,-0.32 -0.64,-0.48 -1.14,-0.48 -0.35,0 -0.68,0.09 -0.98,0.28 -0.3,0.19 -0.58,0.45 -0.83,0.77 v 6.04 h -1.42 z" + id="path317" /> + <path + class="cls-3" + d="m 1565.79,333.16 v 5.17 c 0,0.61 0.14,1.09 0.42,1.42 0.28,0.34 0.71,0.5 1.28,0.5 0.42,0 0.81,-0.1 1.18,-0.3 0.37,-0.2 0.71,-0.47 1.02,-0.82 v -5.98 h 1.42 v 8.1 h -0.85 c -0.2,0 -0.33,-0.1 -0.38,-0.3 l -0.11,-0.87 c -0.35,0.39 -0.75,0.7 -1.18,0.94 -0.43,0.24 -0.94,0.36 -1.5,0.36 -0.44,0 -0.83,-0.07 -1.17,-0.22 -0.34,-0.15 -0.62,-0.35 -0.85,-0.62 -0.23,-0.27 -0.4,-0.59 -0.52,-0.97 -0.11,-0.38 -0.17,-0.8 -0.17,-1.26 v -5.17 h 1.42 z" + id="path319" /> + <path + class="cls-3" + d="m 1574.94,329.48 v 6.94 h 0.37 c 0.11,0 0.19,-0.01 0.26,-0.04 0.07,-0.03 0.15,-0.09 0.23,-0.18 l 2.56,-2.74 c 0.08,-0.08 0.16,-0.15 0.24,-0.21 0.08,-0.05 0.19,-0.08 0.32,-0.08 h 1.3 l -2.98,3.18 c -0.08,0.09 -0.15,0.17 -0.22,0.24 -0.07,0.07 -0.15,0.13 -0.24,0.18 0.1,0.06 0.18,0.14 0.26,0.22 0.08,0.08 0.15,0.18 0.22,0.28 l 3.17,4 h -1.28 c -0.12,0 -0.22,-0.02 -0.3,-0.07 -0.08,-0.04 -0.16,-0.12 -0.24,-0.21 l -2.66,-3.32 c -0.08,-0.11 -0.16,-0.18 -0.24,-0.22 -0.08,-0.03 -0.2,-0.05 -0.36,-0.05 h -0.4 v 3.87 h -1.43 v -11.78 h 1.43 z" + id="path321" /> + <polygon + class="cls-3" + points="1323.5,378.49 1323.5,386.7 1316.53,386.7 1316.53,388.7 1323.5,388.7 1323.5,410.99 1325.5,410.99 1325.5,388.7 1332.47,388.7 1332.47,386.7 1325.5,386.7 1325.5,378.49 " + id="polygon323" /> + </g> + <g + id="St._Antonius" + transform="matrix(1.7754174,0,0,1.7754174,-1207.9013,-992.65836)"> + <path + class="cls-1" + d="m 1717.11,1195.17 h -87.77 c -6.6,0 -12,5.4 -12,12 v 4.89 h -27.9 l -17.59,23.52 c -3.78,-2.44 -8.27,-3.86 -13.1,-3.86 -13.38,0 -24.22,10.84 -24.22,24.22 0,13.38 10.84,24.22 24.22,24.22 13.38,0 24.22,-10.84 24.22,-24.22 0,-6.69 -2.71,-12.74 -7.09,-17.12 -0.51,-0.51 -1.05,-1 -1.6,-1.46 l 16.67,-22.3 h 26.4 v 2.89 c 0,6.6 5.4,12 12,12 h 87.77 c 6.6,0 12,-5.4 12,-12 v -10.78 c 0,-6.6 -5.4,-12 -12,-12 z" + id="path326" /> + <path + class="cls-3" + d="m 1638.62,1208.82 c -0.05,0.08 -0.1,0.14 -0.15,0.18 -0.05,0.04 -0.12,0.06 -0.21,0.06 -0.09,0 -0.2,-0.04 -0.32,-0.14 -0.12,-0.1 -0.27,-0.19 -0.46,-0.3 -0.19,-0.11 -0.41,-0.21 -0.66,-0.3 -0.25,-0.09 -0.57,-0.14 -0.94,-0.14 -0.35,0 -0.65,0.05 -0.92,0.14 -0.27,0.09 -0.49,0.22 -0.67,0.38 -0.18,0.16 -0.31,0.35 -0.4,0.56 -0.09,0.22 -0.14,0.45 -0.14,0.7 0,0.32 0.08,0.59 0.24,0.8 0.16,0.21 0.37,0.39 0.62,0.54 0.26,0.15 0.55,0.28 0.88,0.39 0.33,0.11 0.66,0.22 1.01,0.34 0.34,0.12 0.68,0.25 1.01,0.4 0.33,0.15 0.62,0.33 0.88,0.56 0.26,0.22 0.47,0.5 0.62,0.82 0.16,0.33 0.24,0.73 0.24,1.2 0,0.5 -0.08,0.97 -0.26,1.41 -0.17,0.44 -0.42,0.82 -0.75,1.15 -0.33,0.33 -0.73,0.58 -1.21,0.77 -0.48,0.19 -1.02,0.28 -1.63,0.28 -0.74,0 -1.42,-0.13 -2.03,-0.4 -0.61,-0.27 -1.13,-0.63 -1.56,-1.09 l 0.45,-0.74 c 0.04,-0.06 0.09,-0.11 0.16,-0.15 0.06,-0.04 0.13,-0.06 0.2,-0.06 0.11,0 0.24,0.06 0.38,0.18 0.14,0.12 0.32,0.25 0.54,0.4 0.22,0.14 0.48,0.28 0.78,0.4 0.31,0.12 0.68,0.18 1.12,0.18 0.37,0 0.7,-0.05 0.98,-0.15 0.29,-0.1 0.53,-0.24 0.73,-0.43 0.2,-0.18 0.35,-0.4 0.46,-0.66 0.11,-0.26 0.16,-0.54 0.16,-0.86 0,-0.35 -0.08,-0.63 -0.24,-0.85 -0.16,-0.22 -0.36,-0.41 -0.62,-0.56 -0.26,-0.15 -0.55,-0.28 -0.88,-0.38 -0.33,-0.1 -0.66,-0.21 -1.01,-0.32 -0.34,-0.11 -0.68,-0.24 -1.01,-0.38 -0.33,-0.14 -0.62,-0.33 -0.88,-0.56 -0.26,-0.23 -0.46,-0.52 -0.62,-0.86 -0.16,-0.34 -0.24,-0.77 -0.24,-1.28 0,-0.41 0.08,-0.8 0.24,-1.18 0.16,-0.38 0.39,-0.71 0.68,-1.01 0.3,-0.29 0.67,-0.53 1.11,-0.7 0.44,-0.18 0.95,-0.26 1.52,-0.26 0.64,0 1.22,0.1 1.75,0.3 0.53,0.2 0.99,0.5 1.38,0.88 l -0.38,0.74 z" + id="path328" /> + <path + class="cls-3" + d="m 1643.46,1218.62 c -0.64,0 -1.13,-0.18 -1.48,-0.54 -0.35,-0.36 -0.52,-0.87 -0.52,-1.54 v -4.96 h -0.98 c -0.08,0 -0.16,-0.03 -0.22,-0.08 -0.06,-0.05 -0.09,-0.13 -0.09,-0.24 v -0.57 l 1.33,-0.17 0.33,-2.5 c 0.01,-0.08 0.05,-0.15 0.1,-0.2 0.05,-0.05 0.13,-0.08 0.22,-0.08 h 0.72 v 2.79 h 2.32 v 1.03 h -2.32 v 4.86 c 0,0.34 0.08,0.59 0.25,0.76 0.17,0.17 0.38,0.25 0.64,0.25 0.15,0 0.28,-0.02 0.39,-0.06 0.11,-0.04 0.2,-0.08 0.28,-0.13 0.08,-0.05 0.15,-0.09 0.2,-0.13 0.05,-0.04 0.11,-0.06 0.15,-0.06 0.08,0 0.14,0.04 0.2,0.14 l 0.42,0.68 c -0.25,0.23 -0.54,0.41 -0.89,0.54 -0.35,0.13 -0.7,0.2 -1.07,0.2 z" + id="path330" /> + <path + class="cls-3" + d="m 1646.51,1217.61 c 0,-0.14 0.03,-0.27 0.08,-0.39 0.05,-0.12 0.12,-0.23 0.21,-0.32 0.09,-0.09 0.19,-0.16 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.16,0.2 0.21,0.32 0.05,0.12 0.08,0.25 0.08,0.39 0,0.14 -0.03,0.28 -0.08,0.4 -0.05,0.12 -0.12,0.23 -0.21,0.32 -0.09,0.09 -0.2,0.16 -0.32,0.21 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.12 -0.32,-0.21 -0.09,-0.09 -0.16,-0.2 -0.21,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.4 z" + id="path332" /> + <path + class="cls-3" + d="m 1663.11,1218.49 h -1.2 c -0.14,0 -0.25,-0.04 -0.34,-0.1 -0.09,-0.06 -0.15,-0.16 -0.19,-0.26 l -1.07,-2.77 h -5.14 l -1.07,2.77 c -0.04,0.1 -0.1,0.18 -0.19,0.26 -0.09,0.08 -0.2,0.11 -0.34,0.11 h -1.2 l 4.58,-11.46 h 1.58 l 4.58,11.46 z m -7.51,-4.26 h 4.28 l -1.8,-4.66 c -0.12,-0.29 -0.23,-0.65 -0.34,-1.08 -0.06,0.22 -0.12,0.42 -0.17,0.6 -0.06,0.18 -0.11,0.35 -0.16,0.48 l -1.8,4.66 z" + id="path334" /> + <path + class="cls-3" + d="m 1664.33,1218.49 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.3 l 0.11,0.88 c 0.35,-0.39 0.75,-0.7 1.18,-0.94 0.43,-0.24 0.94,-0.36 1.51,-0.36 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.36 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 v -5.16 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.81,0.1 -1.18,0.3 -0.37,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" + id="path336" /> + <path + class="cls-3" + d="m 1675.68,1218.62 c -0.64,0 -1.13,-0.18 -1.48,-0.54 -0.34,-0.36 -0.52,-0.87 -0.52,-1.54 v -4.96 h -0.98 c -0.08,0 -0.16,-0.03 -0.22,-0.08 -0.06,-0.05 -0.09,-0.13 -0.09,-0.24 v -0.57 l 1.33,-0.17 0.33,-2.5 c 0.01,-0.08 0.04,-0.15 0.1,-0.2 0.06,-0.05 0.13,-0.08 0.22,-0.08 h 0.72 v 2.79 h 2.32 v 1.03 h -2.32 v 4.86 c 0,0.34 0.08,0.59 0.25,0.76 0.17,0.17 0.38,0.25 0.64,0.25 0.15,0 0.28,-0.02 0.39,-0.06 0.11,-0.04 0.2,-0.08 0.28,-0.13 0.08,-0.05 0.15,-0.09 0.2,-0.13 0.06,-0.04 0.11,-0.06 0.15,-0.06 0.07,0 0.14,0.04 0.2,0.14 l 0.42,0.68 c -0.25,0.23 -0.54,0.41 -0.89,0.54 -0.35,0.13 -0.7,0.2 -1.07,0.2 z" + id="path338" /> + <path + class="cls-3" + d="m 1682.48,1210.26 c 0.59,0 1.13,0.1 1.6,0.3 0.47,0.2 0.88,0.48 1.22,0.84 0.33,0.36 0.59,0.8 0.77,1.32 0.18,0.52 0.27,1.09 0.27,1.72 0,0.63 -0.09,1.22 -0.27,1.73 -0.18,0.51 -0.44,0.95 -0.77,1.31 -0.33,0.36 -0.74,0.64 -1.22,0.84 -0.48,0.2 -1.01,0.29 -1.6,0.29 -0.59,0 -1.13,-0.1 -1.6,-0.29 -0.48,-0.19 -0.88,-0.47 -1.22,-0.84 -0.34,-0.36 -0.59,-0.8 -0.78,-1.31 -0.19,-0.51 -0.27,-1.09 -0.27,-1.73 0,-0.64 0.09,-1.21 0.27,-1.72 0.18,-0.51 0.44,-0.95 0.78,-1.32 0.34,-0.36 0.74,-0.64 1.22,-0.84 0.48,-0.2 1.01,-0.3 1.6,-0.3 z m 0,7.23 c 0.8,0 1.4,-0.27 1.79,-0.8 0.39,-0.54 0.59,-1.28 0.59,-2.24 0,-0.96 -0.2,-1.72 -0.59,-2.26 -0.4,-0.54 -0.99,-0.81 -1.79,-0.81 -0.41,0 -0.76,0.07 -1.06,0.21 -0.3,0.14 -0.55,0.34 -0.75,0.6 -0.2,0.26 -0.35,0.58 -0.45,0.96 -0.1,0.38 -0.15,0.81 -0.15,1.29 0,0.48 0.05,0.91 0.15,1.29 0.1,0.38 0.25,0.7 0.45,0.96 0.2,0.26 0.45,0.46 0.75,0.6 0.3,0.14 0.65,0.21 1.06,0.21 z" + id="path340" /> + <path + class="cls-3" + d="m 1688.09,1218.49 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.3 l 0.11,0.88 c 0.35,-0.39 0.75,-0.7 1.18,-0.94 0.43,-0.24 0.94,-0.36 1.51,-0.36 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.36 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 v -5.16 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.81,0.1 -1.18,0.3 -0.37,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" + id="path342" /> + <path + class="cls-3" + d="m 1698.89,1207.84 c 0,0.14 -0.03,0.27 -0.08,0.39 -0.06,0.12 -0.13,0.23 -0.22,0.32 -0.09,0.09 -0.2,0.17 -0.32,0.22 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.13 -0.32,-0.22 -0.09,-0.09 -0.17,-0.2 -0.22,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.39 0,-0.14 0.03,-0.27 0.08,-0.4 0.05,-0.13 0.13,-0.24 0.22,-0.33 0.09,-0.09 0.2,-0.17 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.17,0.2 0.22,0.33 0.06,0.12 0.08,0.26 0.08,0.4 z m -0.32,2.54 v 8.1 h -1.42 v -8.1 z" + id="path344" /> + <path + class="cls-3" + d="m 1702.32,1210.38 v 5.17 c 0,0.61 0.14,1.09 0.42,1.42 0.28,0.34 0.71,0.5 1.28,0.5 0.42,0 0.81,-0.1 1.18,-0.3 0.37,-0.2 0.71,-0.47 1.02,-0.82 v -5.98 h 1.42 v 8.1 h -0.85 c -0.2,0 -0.33,-0.1 -0.38,-0.3 l -0.11,-0.87 c -0.35,0.39 -0.75,0.7 -1.18,0.94 -0.43,0.24 -0.94,0.36 -1.5,0.36 -0.44,0 -0.83,-0.07 -1.17,-0.22 -0.34,-0.15 -0.62,-0.35 -0.85,-0.62 -0.23,-0.27 -0.4,-0.59 -0.52,-0.97 -0.12,-0.38 -0.17,-0.8 -0.17,-1.26 v -5.17 h 1.42 z" + id="path346" /> + <path + class="cls-3" + d="m 1714.62,1211.72 c -0.06,0.12 -0.16,0.18 -0.3,0.18 -0.08,0 -0.17,-0.03 -0.27,-0.09 -0.1,-0.06 -0.23,-0.12 -0.37,-0.2 -0.15,-0.07 -0.32,-0.14 -0.52,-0.2 -0.2,-0.06 -0.44,-0.09 -0.72,-0.09 -0.24,0 -0.46,0.03 -0.65,0.09 -0.19,0.06 -0.36,0.15 -0.49,0.25 -0.14,0.11 -0.24,0.23 -0.31,0.37 -0.07,0.14 -0.11,0.29 -0.11,0.46 0,0.21 0.06,0.38 0.18,0.52 0.12,0.14 0.28,0.26 0.48,0.36 0.2,0.1 0.42,0.19 0.67,0.27 0.25,0.08 0.51,0.16 0.77,0.25 0.26,0.09 0.52,0.19 0.77,0.29 0.25,0.11 0.47,0.24 0.67,0.4 0.2,0.16 0.36,0.36 0.48,0.59 0.12,0.23 0.18,0.51 0.18,0.84 0,0.37 -0.07,0.72 -0.2,1.04 -0.13,0.32 -0.33,0.59 -0.59,0.82 -0.26,0.23 -0.58,0.42 -0.96,0.55 -0.38,0.13 -0.82,0.2 -1.31,0.2 -0.57,0 -1.08,-0.09 -1.54,-0.28 -0.46,-0.18 -0.85,-0.42 -1.17,-0.71 l 0.34,-0.54 c 0.04,-0.07 0.09,-0.12 0.15,-0.16 0.06,-0.04 0.14,-0.06 0.23,-0.06 0.09,0 0.2,0.04 0.3,0.11 0.11,0.07 0.24,0.16 0.39,0.25 0.15,0.09 0.34,0.17 0.55,0.25 0.22,0.07 0.49,0.11 0.81,0.11 0.28,0 0.52,-0.04 0.73,-0.11 0.21,-0.07 0.38,-0.17 0.52,-0.29 0.14,-0.12 0.24,-0.26 0.31,-0.42 0.07,-0.16 0.1,-0.33 0.1,-0.51 0,-0.22 -0.06,-0.41 -0.18,-0.56 -0.12,-0.15 -0.28,-0.27 -0.48,-0.38 -0.2,-0.1 -0.42,-0.19 -0.68,-0.27 -0.25,-0.08 -0.51,-0.16 -0.78,-0.24 -0.26,-0.08 -0.52,-0.18 -0.78,-0.29 -0.25,-0.11 -0.48,-0.25 -0.68,-0.41 -0.2,-0.17 -0.36,-0.37 -0.48,-0.61 -0.12,-0.24 -0.18,-0.54 -0.18,-0.88 0,-0.31 0.06,-0.61 0.19,-0.89 0.13,-0.29 0.32,-0.54 0.56,-0.75 0.24,-0.21 0.55,-0.39 0.9,-0.52 0.36,-0.13 0.76,-0.19 1.22,-0.19 0.53,0 1.01,0.08 1.44,0.25 0.42,0.17 0.79,0.4 1.1,0.69 l -0.32,0.52 z" + id="path348" /> + <polygon + class="cls-3" + points="1559.75,1252.73 1566.72,1252.73 1566.72,1250.73 1559.75,1250.73 1559.75,1242.52 1557.75,1242.52 1557.75,1250.73 1550.78,1250.73 1550.78,1252.73 1557.75,1252.73 1557.75,1275.02 1559.75,1275.02 " + id="polygon350" /> + </g> + <g + id="St._Franziskus" + transform="matrix(1.8077138,0,0,1.8077138,-683.72969,-887.97626)"> + <path + class="cls-1" + d="m 839.4,1058.03 c -4.38,-4.38 -10.44,-7.09 -17.12,-7.09 -7.07,0 -13.43,3.03 -17.86,7.87 l 0.4,-0.46 -20,-17.51 h -27.06 v -3.89 c 0,-6.6 -5.4,-12 -12,-12 h -96.68 c -6.6,0 -12,5.4 -12,12 v 10.78 c 0,6.6 5.4,12 12,12 h 96.68 c 6.6,0 12,-5.4 12,-12 v -3.89 h 25.93 l 19.15,16.76 0.98,-1.12 c -3.59,4.22 -5.76,9.69 -5.76,15.67 0,13.38 10.84,24.22 24.22,24.22 13.38,0 24.22,-10.84 24.22,-24.22 0,-6.69 -2.71,-12.74 -7.09,-17.12 z" + id="path353" /> + <path + class="cls-3" + d="m 655.76,1039.04 c -0.05,0.08 -0.1,0.14 -0.15,0.18 -0.05,0.04 -0.12,0.06 -0.21,0.06 -0.09,0 -0.2,-0.04 -0.32,-0.14 -0.12,-0.1 -0.27,-0.19 -0.46,-0.3 -0.18,-0.11 -0.41,-0.21 -0.66,-0.3 -0.26,-0.09 -0.57,-0.14 -0.94,-0.14 -0.35,0 -0.65,0.05 -0.92,0.14 -0.27,0.09 -0.49,0.22 -0.67,0.38 -0.18,0.16 -0.31,0.35 -0.4,0.56 -0.09,0.22 -0.14,0.45 -0.14,0.7 0,0.32 0.08,0.59 0.24,0.8 0.16,0.21 0.37,0.39 0.62,0.54 0.26,0.15 0.55,0.28 0.88,0.39 0.33,0.11 0.66,0.22 1.01,0.34 0.34,0.12 0.68,0.25 1.01,0.4 0.33,0.15 0.62,0.33 0.88,0.56 0.26,0.22 0.47,0.5 0.62,0.82 0.16,0.33 0.24,0.73 0.24,1.2 0,0.5 -0.09,0.97 -0.26,1.41 -0.17,0.44 -0.42,0.82 -0.75,1.15 -0.33,0.33 -0.73,0.58 -1.21,0.77 -0.48,0.19 -1.02,0.28 -1.63,0.28 -0.74,0 -1.42,-0.13 -2.03,-0.4 -0.61,-0.27 -1.13,-0.63 -1.56,-1.09 l 0.45,-0.74 c 0.04,-0.06 0.09,-0.11 0.16,-0.15 0.06,-0.04 0.13,-0.06 0.2,-0.06 0.11,0 0.24,0.06 0.38,0.18 0.14,0.12 0.32,0.25 0.54,0.4 0.22,0.14 0.48,0.28 0.78,0.4 0.31,0.12 0.68,0.18 1.12,0.18 0.37,0 0.7,-0.05 0.98,-0.15 0.29,-0.1 0.53,-0.24 0.73,-0.43 0.2,-0.18 0.35,-0.4 0.46,-0.66 0.11,-0.26 0.16,-0.54 0.16,-0.86 0,-0.35 -0.08,-0.63 -0.24,-0.85 -0.16,-0.22 -0.36,-0.41 -0.62,-0.56 -0.26,-0.15 -0.55,-0.28 -0.88,-0.38 -0.33,-0.1 -0.66,-0.21 -1.01,-0.32 -0.34,-0.11 -0.68,-0.24 -1.01,-0.38 -0.33,-0.14 -0.62,-0.33 -0.88,-0.56 -0.26,-0.23 -0.46,-0.52 -0.62,-0.86 -0.16,-0.34 -0.24,-0.77 -0.24,-1.28 0,-0.41 0.08,-0.8 0.24,-1.18 0.16,-0.38 0.39,-0.71 0.68,-1.01 0.3,-0.29 0.67,-0.53 1.11,-0.7 0.44,-0.18 0.95,-0.26 1.52,-0.26 0.64,0 1.22,0.1 1.75,0.3 0.53,0.2 0.99,0.5 1.38,0.88 l -0.38,0.74 z" + id="path355" /> + <path + class="cls-3" + d="m 660.6,1048.84 c -0.64,0 -1.13,-0.18 -1.48,-0.54 -0.34,-0.36 -0.52,-0.87 -0.52,-1.54 v -4.96 h -0.98 c -0.08,0 -0.16,-0.03 -0.22,-0.08 -0.06,-0.05 -0.09,-0.13 -0.09,-0.24 v -0.57 l 1.33,-0.17 0.33,-2.5 c 0.01,-0.08 0.05,-0.15 0.1,-0.2 0.05,-0.05 0.13,-0.08 0.22,-0.08 h 0.72 v 2.79 h 2.32 v 1.03 h -2.32 v 4.86 c 0,0.34 0.08,0.59 0.25,0.76 0.17,0.17 0.38,0.25 0.64,0.25 0.15,0 0.28,-0.02 0.39,-0.06 0.11,-0.04 0.2,-0.08 0.28,-0.13 0.08,-0.05 0.15,-0.09 0.2,-0.13 0.06,-0.04 0.11,-0.06 0.15,-0.06 0.07,0 0.14,0.04 0.2,0.14 l 0.42,0.68 c -0.25,0.23 -0.54,0.41 -0.89,0.54 -0.35,0.13 -0.7,0.2 -1.07,0.2 z" + id="path357" /> + <path + class="cls-3" + d="m 663.64,1047.83 c 0,-0.14 0.03,-0.27 0.08,-0.39 0.05,-0.12 0.12,-0.23 0.21,-0.32 0.09,-0.09 0.19,-0.16 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.16,0.2 0.21,0.32 0.05,0.12 0.08,0.25 0.08,0.39 0,0.14 -0.03,0.28 -0.08,0.4 -0.05,0.12 -0.12,0.23 -0.21,0.32 -0.09,0.09 -0.2,0.16 -0.32,0.21 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.12 -0.32,-0.21 -0.09,-0.09 -0.16,-0.2 -0.21,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.4 z" + id="path359" /> + <path + class="cls-3" + d="m 677.88,1037.24 v 1.26 h -5.5 v 4.01 h 4.7 v 1.26 h -4.7 v 4.93 h -1.56 v -11.46 z" + id="path361" /> + <path + class="cls-3" + d="m 679.16,1048.71 v -8.1 h 0.82 c 0.15,0 0.26,0.03 0.32,0.09 0.06,0.06 0.1,0.16 0.12,0.3 l 0.1,1.26 c 0.28,-0.57 0.62,-1.01 1.03,-1.32 0.41,-0.32 0.89,-0.48 1.44,-0.48 0.22,0 0.43,0.03 0.61,0.08 0.18,0.05 0.35,0.12 0.5,0.21 l -0.18,1.06 c -0.04,0.13 -0.12,0.2 -0.25,0.2 -0.07,0 -0.19,-0.03 -0.34,-0.08 -0.15,-0.05 -0.37,-0.08 -0.65,-0.08 -0.5,0 -0.91,0.14 -1.24,0.43 -0.33,0.29 -0.61,0.71 -0.84,1.26 v 5.16 h -1.42 z" + id="path363" /> + <path + class="cls-3" + d="m 691.26,1048.71 h -0.63 c -0.14,0 -0.25,-0.02 -0.34,-0.06 -0.09,-0.04 -0.14,-0.13 -0.17,-0.27 l -0.16,-0.75 c -0.21,0.19 -0.42,0.36 -0.62,0.52 -0.2,0.15 -0.42,0.28 -0.64,0.38 -0.22,0.1 -0.46,0.18 -0.72,0.24 -0.25,0.05 -0.54,0.08 -0.84,0.08 -0.3,0 -0.61,-0.04 -0.88,-0.13 -0.27,-0.09 -0.51,-0.22 -0.72,-0.4 -0.21,-0.18 -0.36,-0.4 -0.48,-0.67 -0.12,-0.27 -0.18,-0.59 -0.18,-0.96 0,-0.32 0.09,-0.63 0.26,-0.93 0.17,-0.3 0.46,-0.56 0.85,-0.79 0.39,-0.23 0.91,-0.42 1.54,-0.57 0.63,-0.15 1.41,-0.22 2.33,-0.22 v -0.64 c 0,-0.63 -0.13,-1.11 -0.4,-1.44 -0.27,-0.32 -0.67,-0.49 -1.2,-0.49 -0.35,0 -0.64,0.04 -0.88,0.13 -0.24,0.09 -0.44,0.19 -0.62,0.3 -0.18,0.11 -0.32,0.21 -0.45,0.3 -0.13,0.09 -0.25,0.13 -0.37,0.13 -0.1,0 -0.18,-0.03 -0.25,-0.08 -0.07,-0.05 -0.13,-0.11 -0.17,-0.19 l -0.26,-0.46 c 0.45,-0.43 0.93,-0.75 1.45,-0.97 0.52,-0.21 1.09,-0.32 1.72,-0.32 0.45,0 0.86,0.07 1.21,0.22 0.35,0.15 0.65,0.36 0.89,0.62 0.24,0.27 0.42,0.59 0.54,0.97 0.12,0.38 0.18,0.79 0.18,1.25 v 5.18 z m -3.7,-0.87 c 0.25,0 0.48,-0.03 0.69,-0.08 0.21,-0.05 0.4,-0.12 0.59,-0.22 0.18,-0.09 0.36,-0.21 0.53,-0.34 0.17,-0.13 0.33,-0.29 0.49,-0.46 v -1.67 c -0.66,0 -1.21,0.04 -1.67,0.12 -0.46,0.08 -0.83,0.19 -1.12,0.33 -0.29,0.13 -0.5,0.29 -0.63,0.47 -0.13,0.18 -0.2,0.39 -0.2,0.61 0,0.22 0.03,0.4 0.1,0.56 0.07,0.16 0.16,0.28 0.28,0.38 0.12,0.1 0.26,0.17 0.42,0.22 0.16,0.05 0.33,0.07 0.52,0.07 z" + id="path365" /> + <path + class="cls-3" + d="m 693.42,1048.71 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.3 l 0.11,0.88 c 0.35,-0.39 0.75,-0.7 1.18,-0.94 0.43,-0.24 0.94,-0.36 1.51,-0.36 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.36 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 v -5.16 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.81,0.1 -1.18,0.3 -0.37,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" + id="path367" /> + <path + class="cls-3" + d="m 707.97,1041.21 c 0,0.1 -0.02,0.2 -0.06,0.29 -0.04,0.09 -0.09,0.18 -0.14,0.25 l -4.38,5.84 h 4.42 v 1.11 h -6.1 v -0.59 c 0,-0.07 0.02,-0.15 0.05,-0.24 0.03,-0.09 0.08,-0.18 0.15,-0.27 l 4.41,-5.88 h -4.36 v -1.12 h 6.02 v 0.61 z" + id="path369" /> + <path + class="cls-3" + d="m 711.61,1038.06 c 0,0.14 -0.03,0.27 -0.08,0.39 -0.06,0.12 -0.13,0.23 -0.22,0.32 -0.09,0.09 -0.2,0.17 -0.32,0.22 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.13 -0.32,-0.22 -0.09,-0.09 -0.17,-0.2 -0.22,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.39 0,-0.14 0.03,-0.27 0.08,-0.4 0.05,-0.13 0.13,-0.24 0.22,-0.33 0.09,-0.09 0.2,-0.17 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.17,0.2 0.22,0.33 0.06,0.12 0.08,0.26 0.08,0.4 z m -0.32,2.54 v 8.1 h -1.42 v -8.1 z" + id="path371" /> + <path + class="cls-3" + d="m 718.44,1041.94 c -0.06,0.12 -0.16,0.18 -0.3,0.18 -0.08,0 -0.17,-0.03 -0.27,-0.09 -0.1,-0.06 -0.23,-0.12 -0.37,-0.2 -0.15,-0.07 -0.32,-0.14 -0.52,-0.2 -0.2,-0.06 -0.44,-0.09 -0.72,-0.09 -0.24,0 -0.46,0.03 -0.65,0.09 -0.19,0.06 -0.36,0.15 -0.49,0.25 -0.14,0.11 -0.24,0.23 -0.31,0.37 -0.07,0.14 -0.11,0.29 -0.11,0.46 0,0.21 0.06,0.38 0.18,0.52 0.12,0.14 0.28,0.26 0.48,0.36 0.2,0.1 0.42,0.19 0.67,0.27 0.25,0.08 0.51,0.16 0.77,0.25 0.26,0.09 0.52,0.19 0.77,0.29 0.25,0.11 0.47,0.24 0.67,0.4 0.2,0.16 0.36,0.36 0.48,0.59 0.12,0.23 0.18,0.51 0.18,0.84 0,0.37 -0.07,0.72 -0.2,1.04 -0.13,0.32 -0.33,0.59 -0.59,0.82 -0.26,0.23 -0.58,0.42 -0.96,0.55 -0.38,0.13 -0.82,0.2 -1.31,0.2 -0.57,0 -1.08,-0.09 -1.54,-0.28 -0.46,-0.18 -0.85,-0.42 -1.17,-0.71 l 0.34,-0.54 c 0.04,-0.07 0.09,-0.12 0.15,-0.16 0.06,-0.04 0.14,-0.06 0.23,-0.06 0.09,0 0.2,0.04 0.3,0.11 0.11,0.07 0.24,0.16 0.39,0.25 0.15,0.09 0.34,0.17 0.55,0.25 0.22,0.07 0.49,0.11 0.81,0.11 0.28,0 0.52,-0.04 0.73,-0.11 0.21,-0.07 0.38,-0.17 0.52,-0.29 0.14,-0.12 0.24,-0.26 0.31,-0.42 0.07,-0.16 0.1,-0.33 0.1,-0.51 0,-0.22 -0.06,-0.41 -0.18,-0.56 -0.12,-0.15 -0.28,-0.27 -0.48,-0.38 -0.2,-0.1 -0.42,-0.19 -0.68,-0.27 -0.25,-0.08 -0.51,-0.16 -0.78,-0.24 -0.26,-0.08 -0.52,-0.18 -0.78,-0.29 -0.25,-0.11 -0.48,-0.25 -0.68,-0.41 -0.2,-0.17 -0.36,-0.37 -0.48,-0.61 -0.12,-0.24 -0.18,-0.54 -0.18,-0.88 0,-0.31 0.06,-0.61 0.19,-0.89 0.13,-0.29 0.31,-0.54 0.56,-0.75 0.25,-0.22 0.55,-0.39 0.9,-0.52 0.36,-0.13 0.77,-0.19 1.22,-0.19 0.53,0 1.01,0.08 1.44,0.25 0.42,0.17 0.79,0.4 1.1,0.69 l -0.32,0.52 z" + id="path373" /> + <path + class="cls-3" + d="m 722.23,1036.92 v 6.94 h 0.37 c 0.11,0 0.19,-0.01 0.26,-0.04 0.07,-0.03 0.15,-0.09 0.23,-0.18 l 2.56,-2.74 c 0.08,-0.08 0.16,-0.15 0.24,-0.21 0.08,-0.05 0.19,-0.08 0.32,-0.08 h 1.3 l -2.98,3.18 c -0.07,0.09 -0.15,0.17 -0.22,0.24 -0.07,0.07 -0.15,0.13 -0.24,0.18 0.1,0.06 0.18,0.14 0.26,0.22 0.08,0.08 0.15,0.18 0.22,0.28 l 3.17,4 h -1.28 c -0.12,0 -0.22,-0.02 -0.3,-0.07 -0.08,-0.04 -0.16,-0.12 -0.24,-0.21 l -2.66,-3.32 c -0.08,-0.11 -0.16,-0.18 -0.24,-0.22 -0.08,-0.03 -0.2,-0.05 -0.36,-0.05 h -0.4 v 3.87 h -1.43 v -11.78 h 1.43 z" + id="path375" /> + <path + class="cls-3" + d="m 730.36,1040.6 v 5.17 c 0,0.61 0.14,1.09 0.42,1.42 0.28,0.34 0.71,0.5 1.28,0.5 0.42,0 0.81,-0.1 1.18,-0.3 0.37,-0.2 0.71,-0.47 1.02,-0.82 v -5.98 h 1.42 v 8.1 h -0.85 c -0.2,0 -0.33,-0.1 -0.38,-0.3 l -0.11,-0.87 c -0.35,0.39 -0.75,0.7 -1.18,0.94 -0.43,0.24 -0.94,0.36 -1.5,0.36 -0.44,0 -0.83,-0.07 -1.17,-0.22 -0.34,-0.15 -0.62,-0.35 -0.85,-0.62 -0.23,-0.27 -0.4,-0.59 -0.52,-0.97 -0.11,-0.38 -0.17,-0.8 -0.17,-1.26 v -5.17 h 1.42 z" + id="path377" /> + <path + class="cls-3" + d="m 742.67,1041.94 c -0.06,0.12 -0.16,0.18 -0.3,0.18 -0.08,0 -0.17,-0.03 -0.27,-0.09 -0.1,-0.06 -0.23,-0.12 -0.37,-0.2 -0.15,-0.07 -0.32,-0.14 -0.52,-0.2 -0.2,-0.06 -0.44,-0.09 -0.72,-0.09 -0.24,0 -0.46,0.03 -0.65,0.09 -0.19,0.06 -0.36,0.15 -0.49,0.25 -0.14,0.11 -0.24,0.23 -0.31,0.37 -0.07,0.14 -0.11,0.29 -0.11,0.46 0,0.21 0.06,0.38 0.18,0.52 0.12,0.14 0.28,0.26 0.48,0.36 0.2,0.1 0.42,0.19 0.67,0.27 0.25,0.08 0.51,0.16 0.77,0.25 0.26,0.09 0.52,0.19 0.77,0.29 0.25,0.11 0.47,0.24 0.67,0.4 0.2,0.16 0.36,0.36 0.48,0.59 0.12,0.23 0.18,0.51 0.18,0.84 0,0.37 -0.07,0.72 -0.2,1.04 -0.13,0.32 -0.33,0.59 -0.59,0.82 -0.26,0.23 -0.58,0.42 -0.96,0.55 -0.38,0.13 -0.82,0.2 -1.31,0.2 -0.57,0 -1.08,-0.09 -1.54,-0.28 -0.46,-0.18 -0.85,-0.42 -1.17,-0.71 l 0.34,-0.54 c 0.04,-0.07 0.09,-0.12 0.15,-0.16 0.06,-0.04 0.14,-0.06 0.23,-0.06 0.09,0 0.2,0.04 0.3,0.11 0.11,0.07 0.24,0.16 0.39,0.25 0.15,0.09 0.34,0.17 0.55,0.25 0.22,0.07 0.49,0.11 0.81,0.11 0.28,0 0.52,-0.04 0.73,-0.11 0.21,-0.07 0.38,-0.17 0.52,-0.29 0.14,-0.12 0.24,-0.26 0.31,-0.42 0.07,-0.16 0.1,-0.33 0.1,-0.51 0,-0.22 -0.06,-0.41 -0.18,-0.56 -0.12,-0.15 -0.28,-0.27 -0.48,-0.38 -0.2,-0.1 -0.42,-0.19 -0.68,-0.27 -0.25,-0.08 -0.51,-0.16 -0.78,-0.24 -0.26,-0.08 -0.52,-0.18 -0.78,-0.29 -0.25,-0.11 -0.48,-0.25 -0.68,-0.41 -0.2,-0.17 -0.36,-0.37 -0.48,-0.61 -0.12,-0.24 -0.18,-0.54 -0.18,-0.88 0,-0.31 0.06,-0.61 0.19,-0.89 0.13,-0.29 0.31,-0.54 0.56,-0.75 0.25,-0.22 0.55,-0.39 0.9,-0.52 0.36,-0.13 0.77,-0.19 1.22,-0.19 0.53,0 1.01,0.08 1.44,0.25 0.42,0.17 0.79,0.4 1.1,0.69 l -0.32,0.52 z" + id="path379" /> + <polygon + class="cls-3" + points="823.28,1059.9 821.28,1059.9 821.28,1068.11 814.31,1068.11 814.31,1070.11 821.28,1070.11 821.28,1092.4 823.28,1092.4 823.28,1070.11 830.25,1070.11 830.25,1068.11 823.28,1068.11 " + id="polygon381" /> + </g> + <g + id="Maria_Hilfe_der_Chrsiten" + transform="matrix(1.7080953,0,0,1.7080953,-27.764416,-581.14088)"> + <path + class="cls-1" + d="M 309.92,729.62 H 135.28 c -6.6,0 -12,5.4 -12,12 v 4.16 H 77.44 l -13.26,26.51 c -0.25,0 -0.5,-0.02 -0.75,-0.02 -13.38,0 -24.22,10.84 -24.22,24.22 0,13.38 10.84,24.22 24.22,24.22 13.38,0 24.22,-10.84 24.22,-24.22 0,-6.69 -2.71,-12.74 -7.09,-17.12 -3.5,-3.5 -8.07,-5.93 -13.18,-6.77 l 11.91,-23.81 h 43.99 v 3.63 c 0,6.6 5.4,12 12,12 h 174.64 c 6.6,0 12,-5.4 12,-12 v -10.78 c 0,-6.6 -5.4,-12 -12,-12 z" + id="path384" /> + <path + class="cls-3" + d="m 141.92,749.65 c 0.06,0.14 0.11,0.28 0.16,0.43 0.05,-0.15 0.11,-0.29 0.17,-0.43 0.06,-0.14 0.12,-0.27 0.2,-0.41 l 3.88,-7.05 c 0.07,-0.12 0.14,-0.2 0.22,-0.22 0.07,-0.03 0.18,-0.04 0.32,-0.04 h 1.14 v 11.46 h -1.36 v -8.42 c 0,-0.11 0,-0.23 0,-0.36 0,-0.13 0.01,-0.26 0.02,-0.39 l -3.93,7.17 c -0.13,0.24 -0.32,0.36 -0.56,0.36 h -0.22 c -0.24,0 -0.43,-0.12 -0.56,-0.36 l -4.02,-7.19 c 0.02,0.14 0.03,0.27 0.04,0.41 0,0.13 0.01,0.26 0.01,0.37 v 8.42 h -1.36 v -11.46 h 1.14 c 0.14,0 0.25,0.01 0.32,0.04 0.07,0.03 0.15,0.1 0.22,0.22 l 3.96,7.06 c 0.07,0.13 0.14,0.26 0.2,0.4 z" + id="path386" /> + <path + class="cls-3" + d="m 156.53,753.39 h -0.63 c -0.14,0 -0.25,-0.02 -0.34,-0.06 -0.09,-0.04 -0.14,-0.13 -0.17,-0.27 l -0.16,-0.75 c -0.21,0.19 -0.42,0.36 -0.62,0.52 -0.2,0.15 -0.42,0.28 -0.64,0.38 -0.22,0.1 -0.46,0.18 -0.72,0.24 -0.25,0.05 -0.54,0.08 -0.84,0.08 -0.3,0 -0.61,-0.04 -0.88,-0.13 -0.27,-0.09 -0.51,-0.22 -0.72,-0.4 -0.2,-0.18 -0.36,-0.4 -0.48,-0.67 -0.12,-0.27 -0.18,-0.59 -0.18,-0.96 0,-0.32 0.09,-0.63 0.26,-0.93 0.17,-0.3 0.46,-0.56 0.85,-0.79 0.39,-0.23 0.91,-0.42 1.54,-0.57 0.63,-0.15 1.41,-0.22 2.33,-0.22 v -0.64 c 0,-0.63 -0.13,-1.11 -0.4,-1.44 -0.27,-0.32 -0.67,-0.49 -1.2,-0.49 -0.35,0 -0.64,0.04 -0.88,0.13 -0.24,0.09 -0.44,0.19 -0.62,0.3 -0.18,0.11 -0.32,0.21 -0.45,0.3 -0.13,0.09 -0.25,0.13 -0.37,0.13 -0.1,0 -0.18,-0.03 -0.25,-0.08 -0.07,-0.05 -0.13,-0.11 -0.17,-0.19 l -0.26,-0.46 c 0.45,-0.43 0.93,-0.75 1.45,-0.97 0.52,-0.21 1.09,-0.32 1.72,-0.32 0.45,0 0.86,0.07 1.21,0.22 0.35,0.15 0.65,0.36 0.89,0.62 0.24,0.27 0.42,0.59 0.54,0.97 0.12,0.38 0.18,0.79 0.18,1.25 v 5.18 z m -3.69,-0.87 c 0.25,0 0.48,-0.03 0.69,-0.08 0.21,-0.05 0.4,-0.12 0.59,-0.22 0.18,-0.09 0.36,-0.21 0.53,-0.34 0.17,-0.13 0.33,-0.29 0.49,-0.46 v -1.67 c -0.66,0 -1.21,0.04 -1.67,0.12 -0.46,0.08 -0.83,0.19 -1.12,0.33 -0.29,0.13 -0.5,0.29 -0.63,0.47 -0.13,0.18 -0.2,0.39 -0.2,0.61 0,0.22 0.03,0.4 0.1,0.56 0.07,0.16 0.16,0.28 0.28,0.38 0.12,0.1 0.26,0.17 0.42,0.22 0.16,0.05 0.33,0.07 0.52,0.07 z" + id="path388" /> + <path + class="cls-3" + d="m 158.69,753.39 v -8.1 h 0.82 c 0.15,0 0.26,0.03 0.32,0.09 0.06,0.06 0.1,0.16 0.12,0.3 l 0.1,1.26 c 0.28,-0.57 0.62,-1.01 1.03,-1.32 0.41,-0.32 0.89,-0.48 1.44,-0.48 0.22,0 0.43,0.03 0.61,0.08 0.18,0.05 0.35,0.12 0.5,0.21 l -0.18,1.06 c -0.04,0.13 -0.12,0.2 -0.25,0.2 -0.07,0 -0.19,-0.03 -0.34,-0.08 -0.15,-0.05 -0.37,-0.08 -0.65,-0.08 -0.5,0 -0.91,0.14 -1.24,0.43 -0.33,0.29 -0.61,0.71 -0.84,1.26 v 5.16 h -1.42 z" + id="path390" /> + <path + class="cls-3" + d="m 167.04,742.74 c 0,0.14 -0.03,0.27 -0.08,0.39 -0.06,0.12 -0.13,0.23 -0.22,0.32 -0.09,0.09 -0.2,0.17 -0.32,0.22 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.13 -0.32,-0.22 -0.09,-0.09 -0.17,-0.2 -0.22,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.39 0,-0.14 0.03,-0.27 0.08,-0.4 0.05,-0.13 0.13,-0.24 0.22,-0.33 0.09,-0.09 0.2,-0.17 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.17,0.2 0.22,0.33 0.06,0.13 0.08,0.26 0.08,0.4 z m -0.32,2.54 v 8.1 h -1.42 v -8.1 z" + id="path392" /> + <path + class="cls-3" + d="m 175.19,753.39 h -0.63 c -0.14,0 -0.25,-0.02 -0.34,-0.06 -0.09,-0.04 -0.14,-0.13 -0.17,-0.27 l -0.16,-0.75 c -0.21,0.19 -0.42,0.36 -0.62,0.52 -0.2,0.15 -0.42,0.28 -0.64,0.38 -0.22,0.1 -0.46,0.18 -0.72,0.24 -0.25,0.05 -0.54,0.08 -0.84,0.08 -0.3,0 -0.61,-0.04 -0.88,-0.13 -0.27,-0.09 -0.51,-0.22 -0.72,-0.4 -0.2,-0.18 -0.36,-0.4 -0.48,-0.67 -0.12,-0.27 -0.18,-0.59 -0.18,-0.96 0,-0.32 0.09,-0.63 0.26,-0.93 0.17,-0.3 0.46,-0.56 0.85,-0.79 0.39,-0.23 0.91,-0.42 1.54,-0.57 0.63,-0.15 1.41,-0.22 2.33,-0.22 v -0.64 c 0,-0.63 -0.13,-1.11 -0.4,-1.44 -0.27,-0.32 -0.67,-0.49 -1.2,-0.49 -0.35,0 -0.64,0.04 -0.88,0.13 -0.24,0.09 -0.44,0.19 -0.62,0.3 -0.18,0.11 -0.32,0.21 -0.45,0.3 -0.13,0.09 -0.25,0.13 -0.37,0.13 -0.1,0 -0.18,-0.03 -0.25,-0.08 -0.07,-0.05 -0.13,-0.11 -0.17,-0.19 l -0.26,-0.46 c 0.45,-0.43 0.93,-0.75 1.45,-0.97 0.52,-0.21 1.09,-0.32 1.72,-0.32 0.45,0 0.86,0.07 1.21,0.22 0.35,0.15 0.65,0.36 0.89,0.62 0.24,0.27 0.42,0.59 0.54,0.97 0.12,0.38 0.18,0.79 0.18,1.25 v 5.18 z m -3.7,-0.87 c 0.25,0 0.48,-0.03 0.69,-0.08 0.21,-0.05 0.4,-0.12 0.59,-0.22 0.18,-0.09 0.36,-0.21 0.53,-0.34 0.17,-0.13 0.33,-0.29 0.49,-0.46 v -1.67 c -0.66,0 -1.21,0.04 -1.67,0.12 -0.46,0.08 -0.83,0.19 -1.12,0.33 -0.29,0.13 -0.5,0.29 -0.63,0.47 -0.13,0.18 -0.2,0.39 -0.2,0.61 0,0.22 0.03,0.4 0.1,0.56 0.07,0.16 0.16,0.28 0.28,0.38 0.12,0.1 0.26,0.17 0.42,0.22 0.16,0.05 0.33,0.07 0.52,0.07 z" + id="path394" /> + <path + class="cls-3" + d="m 176.93,752.4 c 0,-0.12 0.02,-0.24 0.07,-0.35 0.05,-0.11 0.11,-0.21 0.19,-0.29 0.08,-0.08 0.18,-0.15 0.3,-0.2 0.12,-0.05 0.25,-0.07 0.38,-0.07 0.16,0 0.3,0.03 0.43,0.09 0.12,0.06 0.23,0.14 0.31,0.24 0.08,0.1 0.15,0.22 0.19,0.36 0.04,0.13 0.06,0.28 0.06,0.44 0,0.24 -0.03,0.49 -0.1,0.75 -0.07,0.26 -0.17,0.51 -0.3,0.77 -0.13,0.25 -0.29,0.5 -0.48,0.74 -0.19,0.24 -0.4,0.46 -0.64,0.66 l -0.24,-0.23 c -0.07,-0.06 -0.1,-0.14 -0.1,-0.22 0,-0.07 0.04,-0.14 0.11,-0.22 0.05,-0.06 0.12,-0.14 0.2,-0.24 0.08,-0.1 0.17,-0.21 0.25,-0.34 0.08,-0.13 0.16,-0.27 0.24,-0.42 0.07,-0.15 0.12,-0.32 0.16,-0.5 h -0.1 c -0.14,0 -0.26,-0.02 -0.38,-0.07 -0.11,-0.05 -0.21,-0.12 -0.29,-0.2 -0.08,-0.09 -0.15,-0.19 -0.19,-0.31 -0.04,-0.12 -0.07,-0.25 -0.07,-0.4 z" + id="path396" /> + <path + class="cls-3" + d="m 193.35,753.39 h -1.56 v -5.22 h -6.18 v 5.22 h -1.56 v -11.46 h 1.56 v 5.11 h 6.18 v -5.11 h 1.56 z" + id="path398" /> + <path + class="cls-3" + d="m 197.83,742.74 c 0,0.14 -0.03,0.27 -0.08,0.39 -0.06,0.12 -0.13,0.23 -0.22,0.32 -0.09,0.09 -0.2,0.17 -0.32,0.22 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.13 -0.32,-0.22 -0.09,-0.09 -0.17,-0.2 -0.22,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.39 0,-0.14 0.03,-0.27 0.08,-0.4 0.05,-0.13 0.13,-0.24 0.22,-0.33 0.09,-0.09 0.2,-0.17 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.17,0.2 0.22,0.33 0.06,0.13 0.08,0.26 0.08,0.4 z m -0.32,2.54 v 8.1 h -1.42 v -8.1 z" + id="path400" /> + <path + class="cls-3" + d="m 201.6,741.6 v 11.78 h -1.42 V 741.6 Z" + id="path402" /> + <path + class="cls-3" + d="m 204.43,753.39 v -6.89 l -0.9,-0.1 c -0.11,-0.03 -0.2,-0.07 -0.28,-0.12 -0.07,-0.06 -0.11,-0.14 -0.11,-0.24 v -0.58 h 1.28 v -0.79 c 0,-0.46 0.07,-0.88 0.2,-1.24 0.13,-0.36 0.32,-0.66 0.56,-0.91 0.24,-0.25 0.53,-0.44 0.88,-0.56 0.34,-0.13 0.73,-0.19 1.15,-0.19 0.36,0 0.7,0.05 1.01,0.16 l -0.03,0.71 c 0,0.11 -0.05,0.17 -0.14,0.19 -0.08,0.02 -0.21,0.03 -0.36,0.03 h -0.25 c -0.25,0 -0.47,0.03 -0.67,0.1 -0.2,0.06 -0.37,0.17 -0.52,0.31 -0.15,0.14 -0.25,0.33 -0.33,0.57 -0.08,0.24 -0.12,0.53 -0.12,0.87 v 0.74 h 2.34 v 1.03 h -2.3 v 6.91 h -1.43 z" + id="path404" /> + <path + class="cls-3" + d="m 212.71,745.15 c 0.49,0 0.93,0.08 1.34,0.24 0.41,0.16 0.77,0.4 1.06,0.7 0.3,0.31 0.53,0.69 0.7,1.14 0.17,0.45 0.25,0.96 0.25,1.54 0,0.22 -0.02,0.37 -0.07,0.45 -0.05,0.08 -0.14,0.11 -0.27,0.11 h -5.39 c 0.01,0.51 0.08,0.96 0.21,1.34 0.13,0.38 0.3,0.69 0.53,0.95 0.22,0.25 0.49,0.44 0.8,0.57 0.31,0.12 0.66,0.19 1.04,0.19 0.36,0 0.67,-0.04 0.92,-0.12 0.25,-0.08 0.48,-0.17 0.67,-0.27 0.19,-0.1 0.34,-0.19 0.47,-0.27 0.12,-0.08 0.23,-0.12 0.32,-0.12 0.12,0 0.21,0.05 0.27,0.14 l 0.4,0.52 c -0.18,0.21 -0.39,0.4 -0.63,0.56 -0.25,0.16 -0.51,0.29 -0.79,0.39 -0.28,0.1 -0.57,0.18 -0.87,0.23 -0.3,0.05 -0.6,0.08 -0.89,0.08 -0.56,0 -1.08,-0.09 -1.55,-0.28 -0.47,-0.19 -0.88,-0.47 -1.22,-0.83 -0.34,-0.37 -0.61,-0.82 -0.8,-1.36 -0.19,-0.54 -0.29,-1.16 -0.29,-1.86 0,-0.57 0.09,-1.09 0.26,-1.58 0.17,-0.49 0.42,-0.92 0.75,-1.28 0.33,-0.36 0.72,-0.64 1.19,-0.85 0.47,-0.21 1,-0.31 1.58,-0.31 z m 0.04,1.05 c -0.69,0 -1.23,0.2 -1.62,0.6 -0.4,0.4 -0.64,0.95 -0.74,1.65 h 4.41 c 0,-0.33 -0.05,-0.63 -0.14,-0.91 -0.09,-0.28 -0.22,-0.51 -0.4,-0.71 -0.18,-0.2 -0.39,-0.35 -0.64,-0.46 -0.25,-0.11 -0.54,-0.16 -0.87,-0.16 z" + id="path406" /> + <path + class="cls-3" + d="m 226.68,753.39 c -0.2,0 -0.33,-0.1 -0.38,-0.3 l -0.13,-0.98 c -0.35,0.42 -0.74,0.76 -1.19,1.01 -0.45,0.25 -0.96,0.38 -1.53,0.38 -0.46,0 -0.89,-0.09 -1.26,-0.27 -0.38,-0.18 -0.7,-0.44 -0.97,-0.79 -0.27,-0.35 -0.47,-0.78 -0.62,-1.3 -0.15,-0.52 -0.22,-1.11 -0.22,-1.78 0,-0.6 0.08,-1.15 0.24,-1.67 0.16,-0.52 0.39,-0.96 0.69,-1.34 0.3,-0.38 0.67,-0.68 1.1,-0.89 0.43,-0.22 0.92,-0.32 1.47,-0.32 0.5,0 0.92,0.08 1.27,0.25 0.35,0.17 0.67,0.4 0.94,0.71 v -4.5 h 1.42 v 11.78 h -0.85 z m -2.76,-1.04 c 0.46,0 0.87,-0.11 1.22,-0.32 0.35,-0.21 0.67,-0.52 0.96,-0.9 v -3.92 c -0.26,-0.35 -0.55,-0.6 -0.86,-0.74 -0.31,-0.14 -0.66,-0.21 -1.04,-0.21 -0.76,0 -1.34,0.27 -1.74,0.81 -0.4,0.54 -0.61,1.31 -0.61,2.3 0,0.53 0.05,0.98 0.14,1.36 0.09,0.38 0.22,0.69 0.4,0.93 0.18,0.24 0.39,0.42 0.65,0.53 0.26,0.11 0.55,0.17 0.88,0.17 z" + id="path408" /> + <path + class="cls-3" + d="m 233.13,745.15 c 0.49,0 0.93,0.08 1.34,0.24 0.41,0.16 0.77,0.4 1.06,0.7 0.3,0.31 0.53,0.69 0.7,1.14 0.17,0.45 0.25,0.96 0.25,1.54 0,0.22 -0.02,0.37 -0.07,0.45 -0.05,0.08 -0.14,0.11 -0.27,0.11 h -5.39 c 0.01,0.51 0.08,0.96 0.21,1.34 0.13,0.38 0.3,0.69 0.53,0.95 0.22,0.25 0.49,0.44 0.8,0.57 0.31,0.12 0.66,0.19 1.04,0.19 0.36,0 0.67,-0.04 0.92,-0.12 0.25,-0.08 0.48,-0.17 0.67,-0.27 0.19,-0.1 0.34,-0.19 0.47,-0.27 0.12,-0.08 0.23,-0.12 0.32,-0.12 0.12,0 0.21,0.05 0.27,0.14 l 0.4,0.52 c -0.18,0.21 -0.39,0.4 -0.63,0.56 -0.25,0.16 -0.51,0.29 -0.79,0.39 -0.28,0.1 -0.57,0.18 -0.87,0.23 -0.3,0.05 -0.6,0.08 -0.89,0.08 -0.56,0 -1.08,-0.09 -1.55,-0.28 -0.47,-0.19 -0.88,-0.47 -1.22,-0.83 -0.34,-0.37 -0.61,-0.82 -0.8,-1.36 -0.19,-0.54 -0.29,-1.16 -0.29,-1.86 0,-0.57 0.09,-1.09 0.26,-1.58 0.17,-0.49 0.42,-0.92 0.75,-1.28 0.33,-0.36 0.72,-0.64 1.19,-0.85 0.47,-0.21 1,-0.31 1.58,-0.31 z m 0.03,1.05 c -0.69,0 -1.23,0.2 -1.62,0.6 -0.4,0.4 -0.64,0.95 -0.74,1.65 h 4.41 c 0,-0.33 -0.05,-0.63 -0.14,-0.91 -0.09,-0.28 -0.22,-0.51 -0.4,-0.71 -0.18,-0.2 -0.39,-0.35 -0.64,-0.46 -0.25,-0.11 -0.54,-0.16 -0.87,-0.16 z" + id="path410" /> + <path + class="cls-3" + d="m 238.3,753.39 v -8.1 h 0.82 c 0.15,0 0.26,0.03 0.32,0.09 0.06,0.06 0.1,0.16 0.12,0.3 l 0.1,1.26 c 0.28,-0.57 0.62,-1.01 1.03,-1.32 0.41,-0.32 0.89,-0.48 1.44,-0.48 0.22,0 0.43,0.03 0.61,0.08 0.18,0.05 0.35,0.12 0.5,0.21 l -0.18,1.06 c -0.04,0.13 -0.12,0.2 -0.25,0.2 -0.07,0 -0.19,-0.03 -0.34,-0.08 -0.15,-0.05 -0.37,-0.08 -0.65,-0.08 -0.5,0 -0.91,0.14 -1.24,0.43 -0.33,0.29 -0.61,0.71 -0.84,1.26 v 5.16 h -1.42 z" + id="path412" /> + <path + class="cls-3" + d="m 256.14,751.02 c 0.08,0 0.16,0.04 0.23,0.1 l 0.61,0.66 c -0.47,0.54 -1.04,0.97 -1.71,1.27 -0.67,0.3 -1.48,0.46 -2.42,0.46 -0.83,0 -1.58,-0.14 -2.25,-0.43 -0.67,-0.29 -1.25,-0.69 -1.72,-1.2 -0.47,-0.51 -0.84,-1.13 -1.1,-1.85 -0.26,-0.72 -0.39,-1.51 -0.39,-2.38 0,-0.87 0.14,-1.66 0.42,-2.38 0.28,-0.72 0.67,-1.34 1.18,-1.86 0.51,-0.52 1.11,-0.92 1.82,-1.2 0.71,-0.29 1.49,-0.43 2.34,-0.43 0.85,0 1.57,0.13 2.18,0.39 0.61,0.26 1.15,0.62 1.63,1.06 l -0.5,0.71 c -0.04,0.05 -0.08,0.1 -0.13,0.13 -0.05,0.03 -0.12,0.05 -0.21,0.05 -0.07,0 -0.14,-0.03 -0.22,-0.08 -0.08,-0.05 -0.17,-0.11 -0.28,-0.19 -0.11,-0.07 -0.23,-0.15 -0.38,-0.24 -0.14,-0.08 -0.31,-0.17 -0.51,-0.24 -0.2,-0.07 -0.43,-0.14 -0.69,-0.19 -0.26,-0.05 -0.56,-0.08 -0.9,-0.08 -0.61,0 -1.17,0.11 -1.68,0.32 -0.51,0.21 -0.95,0.51 -1.32,0.9 -0.37,0.39 -0.65,0.86 -0.86,1.42 -0.21,0.56 -0.31,1.19 -0.31,1.88 0,0.69 0.1,1.35 0.31,1.91 0.21,0.56 0.49,1.03 0.84,1.42 0.35,0.39 0.77,0.68 1.26,0.88 0.49,0.2 1.01,0.3 1.57,0.3 0.34,0 0.65,-0.02 0.92,-0.06 0.27,-0.04 0.52,-0.1 0.76,-0.19 0.24,-0.09 0.45,-0.19 0.65,-0.32 0.2,-0.13 0.4,-0.29 0.6,-0.47 0.09,-0.08 0.18,-0.12 0.26,-0.12 z" + id="path414" /> + <path + class="cls-3" + d="m 258.8,753.39 v -11.78 h 1.42 v 4.77 c 0.35,-0.37 0.73,-0.66 1.15,-0.88 0.42,-0.22 0.91,-0.33 1.46,-0.33 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.35 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 v -5.16 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.81,0.1 -1.18,0.3 -0.37,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" + id="path416" /> + <path + class="cls-3" + d="m 267.7,753.39 v -8.1 h 0.82 c 0.15,0 0.26,0.03 0.32,0.09 0.06,0.06 0.1,0.16 0.12,0.3 l 0.1,1.26 c 0.28,-0.57 0.62,-1.01 1.03,-1.32 0.41,-0.32 0.89,-0.48 1.44,-0.48 0.22,0 0.43,0.03 0.61,0.08 0.18,0.05 0.35,0.12 0.5,0.21 l -0.18,1.06 c -0.04,0.13 -0.12,0.2 -0.25,0.2 -0.07,0 -0.19,-0.03 -0.34,-0.08 -0.15,-0.05 -0.37,-0.08 -0.65,-0.08 -0.5,0 -0.91,0.14 -1.24,0.43 -0.33,0.29 -0.61,0.71 -0.84,1.26 v 5.16 h -1.42 z" + id="path418" /> + <path + class="cls-3" + d="m 276.05,742.74 c 0,0.14 -0.03,0.27 -0.08,0.39 -0.06,0.12 -0.13,0.23 -0.22,0.32 -0.09,0.09 -0.2,0.17 -0.32,0.22 -0.12,0.05 -0.25,0.08 -0.39,0.08 -0.14,0 -0.27,-0.03 -0.39,-0.08 -0.12,-0.05 -0.23,-0.13 -0.32,-0.22 -0.09,-0.09 -0.17,-0.2 -0.22,-0.32 -0.05,-0.12 -0.08,-0.25 -0.08,-0.39 0,-0.14 0.03,-0.27 0.08,-0.4 0.05,-0.13 0.13,-0.24 0.22,-0.33 0.09,-0.09 0.2,-0.17 0.32,-0.22 0.12,-0.05 0.25,-0.08 0.39,-0.08 0.14,0 0.27,0.03 0.39,0.08 0.12,0.05 0.23,0.13 0.32,0.22 0.09,0.09 0.17,0.2 0.22,0.33 0.06,0.13 0.08,0.26 0.08,0.4 z m -0.32,2.54 v 8.1 h -1.42 v -8.1 z" + id="path420" /> + <path + class="cls-3" + d="m 282.88,746.62 c -0.06,0.12 -0.16,0.18 -0.3,0.18 -0.08,0 -0.17,-0.03 -0.27,-0.09 -0.1,-0.06 -0.23,-0.12 -0.37,-0.2 -0.15,-0.07 -0.32,-0.14 -0.52,-0.2 -0.2,-0.06 -0.44,-0.09 -0.72,-0.09 -0.24,0 -0.46,0.03 -0.65,0.09 -0.19,0.06 -0.36,0.15 -0.49,0.25 -0.14,0.11 -0.24,0.23 -0.31,0.37 -0.07,0.14 -0.11,0.29 -0.11,0.46 0,0.21 0.06,0.38 0.18,0.52 0.12,0.14 0.28,0.26 0.48,0.36 0.2,0.1 0.42,0.19 0.67,0.27 0.25,0.08 0.51,0.16 0.77,0.25 0.26,0.09 0.52,0.19 0.77,0.29 0.25,0.11 0.47,0.24 0.67,0.4 0.2,0.16 0.36,0.36 0.48,0.59 0.12,0.23 0.18,0.51 0.18,0.84 0,0.37 -0.07,0.72 -0.2,1.04 -0.13,0.32 -0.33,0.59 -0.59,0.82 -0.26,0.23 -0.58,0.42 -0.96,0.55 -0.38,0.13 -0.82,0.2 -1.31,0.2 -0.57,0 -1.08,-0.09 -1.54,-0.28 -0.46,-0.18 -0.85,-0.42 -1.17,-0.71 l 0.34,-0.54 c 0.04,-0.07 0.09,-0.12 0.15,-0.16 0.06,-0.04 0.14,-0.06 0.23,-0.06 0.09,0 0.2,0.04 0.3,0.11 0.11,0.07 0.24,0.16 0.39,0.25 0.15,0.09 0.34,0.17 0.55,0.25 0.21,0.08 0.49,0.11 0.81,0.11 0.28,0 0.52,-0.04 0.73,-0.11 0.21,-0.07 0.38,-0.17 0.52,-0.29 0.14,-0.12 0.24,-0.26 0.31,-0.42 0.07,-0.16 0.1,-0.33 0.1,-0.51 0,-0.22 -0.06,-0.41 -0.18,-0.56 -0.12,-0.15 -0.28,-0.27 -0.48,-0.38 -0.2,-0.11 -0.42,-0.19 -0.68,-0.27 -0.25,-0.08 -0.51,-0.16 -0.78,-0.24 -0.26,-0.09 -0.52,-0.18 -0.78,-0.29 -0.25,-0.11 -0.48,-0.25 -0.68,-0.41 -0.2,-0.17 -0.36,-0.37 -0.48,-0.61 -0.12,-0.24 -0.18,-0.54 -0.18,-0.88 0,-0.31 0.06,-0.61 0.19,-0.89 0.13,-0.29 0.31,-0.54 0.56,-0.75 0.25,-0.22 0.55,-0.39 0.9,-0.52 0.36,-0.13 0.77,-0.19 1.22,-0.19 0.53,0 1.01,0.08 1.44,0.25 0.42,0.17 0.79,0.4 1.1,0.69 l -0.32,0.52 z" + id="path422" /> + <path + class="cls-3" + d="m 287.64,753.52 c -0.64,0 -1.13,-0.18 -1.48,-0.54 -0.34,-0.36 -0.52,-0.87 -0.52,-1.54 v -4.96 h -0.98 c -0.08,0 -0.16,-0.03 -0.22,-0.08 -0.06,-0.05 -0.09,-0.13 -0.09,-0.24 v -0.57 l 1.33,-0.17 0.33,-2.5 c 0.01,-0.08 0.05,-0.15 0.1,-0.2 0.05,-0.05 0.13,-0.08 0.22,-0.08 h 0.72 v 2.79 h 2.32 v 1.03 h -2.32 v 4.86 c 0,0.34 0.08,0.59 0.25,0.76 0.17,0.17 0.38,0.25 0.64,0.25 0.15,0 0.28,-0.02 0.39,-0.06 0.11,-0.04 0.2,-0.08 0.28,-0.13 0.08,-0.05 0.15,-0.09 0.2,-0.13 0.06,-0.04 0.11,-0.06 0.15,-0.06 0.07,0 0.14,0.04 0.2,0.14 l 0.42,0.68 c -0.25,0.23 -0.54,0.41 -0.89,0.54 -0.35,0.13 -0.7,0.2 -1.07,0.2 z" + id="path424" /> + <path + class="cls-3" + d="m 294.36,745.15 c 0.49,0 0.93,0.08 1.34,0.24 0.41,0.16 0.77,0.4 1.06,0.7 0.3,0.31 0.53,0.69 0.7,1.14 0.17,0.45 0.25,0.96 0.25,1.54 0,0.22 -0.02,0.37 -0.07,0.45 -0.05,0.08 -0.14,0.11 -0.27,0.11 h -5.39 c 0.01,0.51 0.08,0.96 0.21,1.34 0.13,0.38 0.3,0.69 0.53,0.95 0.22,0.25 0.49,0.44 0.8,0.57 0.31,0.12 0.66,0.19 1.04,0.19 0.36,0 0.67,-0.04 0.92,-0.12 0.25,-0.08 0.48,-0.17 0.67,-0.27 0.19,-0.1 0.34,-0.19 0.47,-0.27 0.12,-0.08 0.23,-0.12 0.32,-0.12 0.12,0 0.21,0.05 0.27,0.14 l 0.4,0.52 c -0.18,0.21 -0.39,0.4 -0.63,0.56 -0.25,0.16 -0.51,0.29 -0.79,0.39 -0.28,0.1 -0.57,0.18 -0.87,0.23 -0.3,0.05 -0.6,0.08 -0.89,0.08 -0.56,0 -1.08,-0.09 -1.55,-0.28 -0.47,-0.19 -0.88,-0.47 -1.22,-0.83 -0.34,-0.37 -0.61,-0.82 -0.8,-1.36 -0.19,-0.54 -0.29,-1.16 -0.29,-1.86 0,-0.57 0.09,-1.09 0.26,-1.58 0.17,-0.49 0.42,-0.92 0.75,-1.28 0.33,-0.36 0.72,-0.64 1.19,-0.85 0.47,-0.21 1,-0.31 1.58,-0.31 z m 0.03,1.05 c -0.69,0 -1.23,0.2 -1.62,0.6 -0.4,0.4 -0.64,0.95 -0.74,1.65 h 4.41 c 0,-0.33 -0.05,-0.63 -0.14,-0.91 -0.09,-0.28 -0.22,-0.51 -0.4,-0.71 -0.18,-0.2 -0.39,-0.35 -0.64,-0.46 -0.25,-0.11 -0.54,-0.16 -0.87,-0.16 z" + id="path426" /> + <path + class="cls-3" + d="m 299.54,753.39 v -8.1 h 0.85 c 0.2,0 0.33,0.1 0.38,0.29 l 0.11,0.88 c 0.35,-0.39 0.75,-0.7 1.18,-0.94 0.43,-0.24 0.94,-0.36 1.51,-0.36 0.44,0 0.83,0.07 1.17,0.22 0.34,0.15 0.62,0.35 0.85,0.62 0.23,0.27 0.4,0.59 0.52,0.97 0.12,0.38 0.18,0.8 0.18,1.26 v 5.16 h -1.42 v -5.16 c 0,-0.61 -0.14,-1.09 -0.42,-1.43 -0.28,-0.34 -0.71,-0.51 -1.28,-0.51 -0.42,0 -0.81,0.1 -1.18,0.3 -0.37,0.2 -0.7,0.48 -1.01,0.82 v 5.97 h -1.42 z" + id="path428" /> + <polygon + class="cls-3" + points="64.44,789.44 64.44,781.23 62.44,781.23 62.44,789.44 55.47,789.44 55.47,791.44 62.44,791.44 62.44,813.73 64.44,813.73 64.44,791.44 71.41,791.44 71.41,789.44 " + id="polygon430" /> + </g> + </g> +</svg> diff --git a/src/components/ChemnitzMap/styles.module.scss b/src/components/ChemnitzMap/styles.module.scss index 8380449..539a812 100644 --- a/src/components/ChemnitzMap/styles.module.scss +++ b/src/components/ChemnitzMap/styles.module.scss @@ -3,21 +3,12 @@ :global(svg) { width: 100%; - height: auto; + height: 100%; display: block; } } -.fill { - height: 100%; - - :global(svg) { - width: 100%; - height: 100%; - } -} - -.church { +.parish { cursor: pointer; transform-box: fill-box; transform-origin: center; @@ -27,15 +18,9 @@ transition: fill 0.3s ease; } - &:hover { - transform: scale(1.15); - - :global(path.cls-1) { - fill: #0f6898; - } - } - + &:hover, &:focus-visible { + transform: scale(1.15); outline: none; :global(path.cls-1) { diff --git a/src/compositions/Blocks/Blocks.tsx b/src/compositions/Blocks/Blocks.tsx index 1cfc0fd..3c49f8e 100644 --- a/src/compositions/Blocks/Blocks.tsx +++ b/src/compositions/Blocks/Blocks.tsx @@ -14,6 +14,7 @@ import { Banner } from '@/components/Banner/Banner' import { MainText } from '@/components/MainText/MainText' import { HR } from '@/components/HorizontalRule/HorizontalRule' import { CollapsibleImageWithText } from '@/compositions/CollapsibleImageWithText/CollapsibleImageWithText' +import { CollapsibleMapWithText } from '@/compositions/CollapsibleMapWithText/CollapsibleMapWithText' import { Collapsible } from '@/components/Collapsible/Collapsible' import { PublicationAndNewsletter } from '@/compositions/PublicationAndNewsletter/PublicationAndNewsletter' import { ContactPersonCard } from '@/components/ContactPersonCard/ContactPersonCard' @@ -229,6 +230,25 @@ export function Blocks({ content }: BlocksProps) { ) } + if (item.blockType === 'collapsibleMapWithText') { + const bg = item.backgroundColor === 'soft' || item.backgroundColor === 'off-white' + ? item.backgroundColor as 'soft' | 'off-white' + : undefined + return ( + <CollapsibleMapWithText + key={item.id} + title={item.title} + text={item.text} + backgroundColor={bg} + content={ + item.content + ? <HTMLText width={'3/4'} data={item.content} /> + : <></> + } + /> + ) + } + if (item.blockType === 'collapsibles') { return ( <Section key={item.id} padding={'small'}> diff --git a/src/compositions/CollapsibleMapWithText/CollapsibleMapWithText.stories.tsx b/src/compositions/CollapsibleMapWithText/CollapsibleMapWithText.stories.tsx index 69f2db3..505502a 100644 --- a/src/compositions/CollapsibleMapWithText/CollapsibleMapWithText.stories.tsx +++ b/src/compositions/CollapsibleMapWithText/CollapsibleMapWithText.stories.tsx @@ -13,16 +13,11 @@ export default meta export const OurParishes: Story = { args: { backgroundColor: 'soft', - schema: 'base', title: 'Unsere Gemeinden', text: 'Unsere Pfarrei umfasst sieben Kirchen in und um Chemnitz. Klicken Sie auf eine Kirche, um mehr über die jeweilige Gemeinde zu erfahren – von Gottesdienstzeiten über Gruppen und Kreise bis hin zu Kontaktmöglichkeiten.\n' + '\n' + 'Jede Gemeinde hat ihren eigenen Charakter und ihre eigene Geschichte, gemeinsam bilden sie ein lebendiges katholisches Netzwerk in der Region.', - onChurchClick: (church) => { - // eslint-disable-next-line no-alert - alert(`Klick: ${church.replace(/_/g, ' ')}`) - }, content: ( <> <Title title={'Über unsere Pfarrei'} size={'md'} /> @@ -36,3 +31,14 @@ export const OurParishes: Story = { ), }, } + +export const NoExtraContent: Story = { + args: { + backgroundColor: 'soft', + title: 'Unsere Gemeinden', + text: + 'Unsere Pfarrei umfasst sieben Kirchen in und um Chemnitz. Klicken Sie auf eine Kirche, um mehr über die jeweilige Gemeinde zu erfahren – von Gottesdienstzeiten über Gruppen und Kreise bis hin zu Kontaktmöglichkeiten.\n' + + '\n' + + 'Jede Gemeinde hat ihren eigenen Charakter und ihre eigene Geschichte, gemeinsam bilden sie ein lebendiges katholisches Netzwerk in der Region.', + }, +} diff --git a/src/compositions/CollapsibleMapWithText/CollapsibleMapWithText.tsx b/src/compositions/CollapsibleMapWithText/CollapsibleMapWithText.tsx index fce3a66..6bd5e05 100644 --- a/src/compositions/CollapsibleMapWithText/CollapsibleMapWithText.tsx +++ b/src/compositions/CollapsibleMapWithText/CollapsibleMapWithText.tsx @@ -1,24 +1,20 @@ 'use client' import { BackgroundColor, Section } from '@/components/Section/Section' +import { ChemnitzMap } from '@/components/ChemnitzMap/ChemnitzMap' import { Title } from '@/components/Title/Title' +import styles from './styles.module.scss' import { Container } from '@/components/Container/Container' -import { TextDiv } from '@/components/Text/TextDiv' -import { Row } from '@/components/Flex/Row' +import { P } from '@/components/Text/Paragraph' import { CollapsibleArrow } from '@/components/CollapsibleArrow/CollapsibleArrow' -import { ChemnitzMap, ChemnitzMapProps } from '@/components/ChemnitzMap/ChemnitzMap' import React, { useEffect, useRef, useState } from 'react' import classNames from 'classnames' -import styles from './styles.module.scss' type CollapsibleMapWithTextProps = { backgroundColor?: BackgroundColor title: string text: string - schema?: 'base' | 'contrast' - content: React.ReactNode - churchUrls?: ChemnitzMapProps['churchUrls'] - onChurchClick?: ChemnitzMapProps['onChurchClick'] + content?: React.ReactNode } type MoreInformationProps = { @@ -30,7 +26,7 @@ const MoreInformation = ({ isCollapsed, onClick }: MoreInformationProps) => { const [direction, setDirection] = useState<'UP' | 'DOWN'>(isCollapsed ? 'DOWN' : 'UP') const toggleDirection = () => { - setDirection(direction === 'UP' ? 'DOWN' : 'UP') + setDirection(direction == 'UP' ? 'DOWN' : 'UP') } const handleClick = () => { @@ -50,15 +46,12 @@ const MoreInformation = ({ isCollapsed, onClick }: MoreInformationProps) => { ) } -export const CollapsibleMapWithText = ({ - backgroundColor, +export function CollapsibleMapWithText({ title, text, - schema = 'base', content, - churchUrls, - onChurchClick, -}: CollapsibleMapWithTextProps) => { + backgroundColor, +}: CollapsibleMapWithTextProps) { const ref = useRef<HTMLDivElement>(null) const ref2 = useRef<HTMLDivElement>(null) const [contentHeight, setContentHeight] = useState(0) @@ -69,6 +62,18 @@ export const CollapsibleMapWithText = ({ ref.current?.scrollIntoView({ behavior: 'smooth' }) } + const toggle = () => { + if (isCollapsed) { + setIsCollapsed(false) + setTimeout(() => { + ref2.current?.scrollIntoView({ behavior: 'smooth'}) + }, 500) + + } else { + collapse() + } + } + useEffect(() => { if (ref2.current) { setContentHeight(ref2.current.scrollHeight) @@ -76,48 +81,38 @@ export const CollapsibleMapWithText = ({ }, [ref2]) return ( - <div ref={ref} className={styles.root}> + <div ref={ref}> <Section backgroundColor={backgroundColor}> <Container> - <Row alignItems={'center'}> - <div className={classNames(styles.col, styles.imageCol)} /> - <div className={styles.col}> - <Title title={title} size={'lg'} color={schema} /> - - <TextDiv text={text} /> - - <div className={styles.right}> - <MoreInformation - isCollapsed={isCollapsed} - onClick={() => setIsCollapsed(!isCollapsed)} - /> - </div> - </div> - </Row> + <Title title={title} size={'lg'} color={'base'} /> </Container> + + <div className={styles.mapContainer}> + <ChemnitzMap/> + </div> + + <Container> + <P width={'3/4'}>{text}</P> + {content && <MoreInformation isCollapsed={isCollapsed} onClick={toggle} />} + </Container> + </Section> - <div className={styles.mapCorner}> - <ChemnitzMap churchUrls={churchUrls} onChurchClick={onChurchClick} /> - </div> - - <div - ref={ref2} - className={styles.content} - style={{ maxHeight: isCollapsed ? undefined : contentHeight }} - > - <Section - backgroundColor={backgroundColor} - padding={'small'} - paddingBottom={'large'} + {content && ( + <div + ref={ref2} + className={classNames({ [styles.content]: true })} + style={{ maxHeight: isCollapsed ? undefined : contentHeight }} > - <Container>{content}</Container> + <Section backgroundColor={backgroundColor} padding={'small'} paddingBottom={'large'}> + <Container>{content}</Container> - <div className={styles.endButton}> - <CollapsibleArrow direction={'UP'} onClick={collapse} /> - </div> - </Section> - </div> + <div className={styles.endButton}> + <CollapsibleArrow direction={'UP'} onClick={collapse} /> + </div> + </Section> + </div> + )} </div> ) } diff --git a/src/compositions/CollapsibleMapWithText/styles.module.scss b/src/compositions/CollapsibleMapWithText/styles.module.scss index 6895506..d59acef 100644 --- a/src/compositions/CollapsibleMapWithText/styles.module.scss +++ b/src/compositions/CollapsibleMapWithText/styles.module.scss @@ -1,42 +1,15 @@ @import "template.scss"; -.root { - position: relative; +$maxWidth: 1100px; + +.mapContainer { + transition: background-color 0.2s ease-in-out; + max-width: $maxWidth; + margin: 0 auto 40px auto; } -.mapCorner { - position: absolute; - top: 0; - left: 0; - width: 100%; - z-index: 0; - pointer-events: none; - opacity: 0.5; - - :global(svg) { - pointer-events: auto; - } -} - -.right { - margin-top: 40px; - text-align: right; - z-index: 3; -} - -.image { - border-radius: 13px; - transition: opacity 3s; - width: 100%; - height: 100%; -} - -.col { - width: calc(50% - 40px); -} - -.imageCol { - /* Empty column — space reserved for the map positioned in the upper-left corner. */ +.mapContainer:hover { + background-color: #fbfdff; } .more { @@ -49,6 +22,8 @@ border: 0; background-color: inherit; align-items: center; + padding: 0; + margin-top: 20px; } .content { @@ -67,22 +42,6 @@ cursor: pointer; } -@media screen and (max-width: 750px) { - .imageCol { - display: none; - } - - .col { - width: 100%; - } - - .mapCorner { - position: static; - width: 70vw; - margin: 0 auto 40px; - } -} - @media screen and (max-width: 576px) { .endButton { top: 20px; diff --git a/src/migrations/20260429_121105_collapsible_map_with_text.json b/src/migrations/20260429_121105_collapsible_map_with_text.json new file mode 100644 index 0000000..549553b --- /dev/null +++ b/src/migrations/20260429_121105_collapsible_map_with_text.json @@ -0,0 +1,25177 @@ +{ + "version": "7", + "dialect": "postgresql", + "tables": { + "public.parish_contact_persons": { + "name": "parish_contact_persons", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "description": { + "name": "description", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "parish_contact_persons_order_idx": { + "name": "parish_contact_persons_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_contact_persons_parent_id_idx": { + "name": "parish_contact_persons_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "parish_contact_persons_parent_id_fk": { + "name": "parish_contact_persons_parent_id_fk", + "tableFrom": "parish_contact_persons", + "tableTo": "parish", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.parish_blocks_text": { + "name": "parish_blocks_text", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "content": { + "name": "content", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "width": { + "name": "width", + "type": "enum_parish_blocks_text_width", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'1/2'" + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "parish_blocks_text_order_idx": { + "name": "parish_blocks_text_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_blocks_text_parent_id_idx": { + "name": "parish_blocks_text_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_blocks_text_path_idx": { + "name": "parish_blocks_text_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "parish_blocks_text_parent_id_fk": { + "name": "parish_blocks_text_parent_id_fk", + "tableFrom": "parish_blocks_text", + "tableTo": "parish", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.parish_blocks_document": { + "name": "parish_blocks_document", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "file_id": { + "name": "file_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "button": { + "name": "button", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Download Flyer'" + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "parish_blocks_document_order_idx": { + "name": "parish_blocks_document_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_blocks_document_parent_id_idx": { + "name": "parish_blocks_document_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_blocks_document_path_idx": { + "name": "parish_blocks_document_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_blocks_document_file_idx": { + "name": "parish_blocks_document_file_idx", + "columns": [ + { + "expression": "file_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "parish_blocks_document_file_id_documents_id_fk": { + "name": "parish_blocks_document_file_id_documents_id_fk", + "tableFrom": "parish_blocks_document", + "tableTo": "documents", + "columnsFrom": [ + "file_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "parish_blocks_document_parent_id_fk": { + "name": "parish_blocks_document_parent_id_fk", + "tableFrom": "parish_blocks_document", + "tableTo": "parish", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.parish_blocks_donation": { + "name": "parish_blocks_donation", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "parish_blocks_donation_order_idx": { + "name": "parish_blocks_donation_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_blocks_donation_parent_id_idx": { + "name": "parish_blocks_donation_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_blocks_donation_path_idx": { + "name": "parish_blocks_donation_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "parish_blocks_donation_parent_id_fk": { + "name": "parish_blocks_donation_parent_id_fk", + "tableFrom": "parish_blocks_donation", + "tableTo": "parish", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.parish_blocks_youtube": { + "name": "parish_blocks_youtube", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "youtube_id": { + "name": "youtube_id", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "parish_blocks_youtube_order_idx": { + "name": "parish_blocks_youtube_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_blocks_youtube_parent_id_idx": { + "name": "parish_blocks_youtube_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_blocks_youtube_path_idx": { + "name": "parish_blocks_youtube_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "parish_blocks_youtube_parent_id_fk": { + "name": "parish_blocks_youtube_parent_id_fk", + "tableFrom": "parish_blocks_youtube", + "tableTo": "parish", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.parish_blocks_donation_appeal": { + "name": "parish_blocks_donation_appeal", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "parish_blocks_donation_appeal_order_idx": { + "name": "parish_blocks_donation_appeal_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_blocks_donation_appeal_parent_id_idx": { + "name": "parish_blocks_donation_appeal_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_blocks_donation_appeal_path_idx": { + "name": "parish_blocks_donation_appeal_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "parish_blocks_donation_appeal_parent_id_fk": { + "name": "parish_blocks_donation_appeal_parent_id_fk", + "tableFrom": "parish_blocks_donation_appeal", + "tableTo": "parish", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.parish_blocks_image_cards_items": { + "name": "parish_blocks_image_cards_items", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "image_id": { + "name": "image_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "custom_link": { + "name": "custom_link", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "parish_blocks_image_cards_items_order_idx": { + "name": "parish_blocks_image_cards_items_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_blocks_image_cards_items_parent_id_idx": { + "name": "parish_blocks_image_cards_items_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_blocks_image_cards_items_image_idx": { + "name": "parish_blocks_image_cards_items_image_idx", + "columns": [ + { + "expression": "image_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "parish_blocks_image_cards_items_image_id_media_id_fk": { + "name": "parish_blocks_image_cards_items_image_id_media_id_fk", + "tableFrom": "parish_blocks_image_cards_items", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "parish_blocks_image_cards_items_parent_id_fk": { + "name": "parish_blocks_image_cards_items_parent_id_fk", + "tableFrom": "parish_blocks_image_cards_items", + "tableTo": "parish_blocks_image_cards", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.parish_blocks_image_cards": { + "name": "parish_blocks_image_cards", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "parish_blocks_image_cards_order_idx": { + "name": "parish_blocks_image_cards_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_blocks_image_cards_parent_id_idx": { + "name": "parish_blocks_image_cards_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_blocks_image_cards_path_idx": { + "name": "parish_blocks_image_cards_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "parish_blocks_image_cards_parent_id_fk": { + "name": "parish_blocks_image_cards_parent_id_fk", + "tableFrom": "parish_blocks_image_cards", + "tableTo": "parish", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.parish_blocks_title": { + "name": "parish_blocks_title", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "subtitle": { + "name": "subtitle", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "size": { + "name": "size", + "type": "enum_parish_blocks_title_size", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'lg'" + }, + "align": { + "name": "align", + "type": "enum_parish_blocks_title_align", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'left'" + }, + "color": { + "name": "color", + "type": "enum_parish_blocks_title_color", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'base'" + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "parish_blocks_title_order_idx": { + "name": "parish_blocks_title_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_blocks_title_parent_id_idx": { + "name": "parish_blocks_title_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_blocks_title_path_idx": { + "name": "parish_blocks_title_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "parish_blocks_title_parent_id_fk": { + "name": "parish_blocks_title_parent_id_fk", + "tableFrom": "parish_blocks_title", + "tableTo": "parish", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.parish_blocks_collapsibles_items": { + "name": "parish_blocks_collapsibles_items", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "content": { + "name": "content", + "type": "jsonb", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "parish_blocks_collapsibles_items_order_idx": { + "name": "parish_blocks_collapsibles_items_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_blocks_collapsibles_items_parent_id_idx": { + "name": "parish_blocks_collapsibles_items_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "parish_blocks_collapsibles_items_parent_id_fk": { + "name": "parish_blocks_collapsibles_items_parent_id_fk", + "tableFrom": "parish_blocks_collapsibles_items", + "tableTo": "parish_blocks_collapsibles", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.parish_blocks_collapsibles": { + "name": "parish_blocks_collapsibles", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "parish_blocks_collapsibles_order_idx": { + "name": "parish_blocks_collapsibles_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_blocks_collapsibles_parent_id_idx": { + "name": "parish_blocks_collapsibles_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_blocks_collapsibles_path_idx": { + "name": "parish_blocks_collapsibles_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "parish_blocks_collapsibles_parent_id_fk": { + "name": "parish_blocks_collapsibles_parent_id_fk", + "tableFrom": "parish_blocks_collapsibles", + "tableTo": "parish", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.parish_gallery": { + "name": "parish_gallery", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "photo_id": { + "name": "photo_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "parish_gallery_order_idx": { + "name": "parish_gallery_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_gallery_parent_id_idx": { + "name": "parish_gallery_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_gallery_photo_idx": { + "name": "parish_gallery_photo_idx", + "columns": [ + { + "expression": "photo_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "parish_gallery_photo_id_media_id_fk": { + "name": "parish_gallery_photo_id_media_id_fk", + "tableFrom": "parish_gallery", + "tableTo": "media", + "columnsFrom": [ + "photo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "parish_gallery_parent_id_fk": { + "name": "parish_gallery_parent_id_fk", + "tableFrom": "parish_gallery", + "tableTo": "parish", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.parish": { + "name": "parish", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "slug": { + "name": "slug", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "description": { + "name": "description", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "history": { + "name": "history", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "contact": { + "name": "contact", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "photo_id": { + "name": "photo_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "_status": { + "name": "_status", + "type": "enum_parish_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'draft'" + } + }, + "indexes": { + "parish_photo_idx": { + "name": "parish_photo_idx", + "columns": [ + { + "expression": "photo_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_updated_at_idx": { + "name": "parish_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_created_at_idx": { + "name": "parish_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish__status_idx": { + "name": "parish__status_idx", + "columns": [ + { + "expression": "_status", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "parish_photo_id_media_id_fk": { + "name": "parish_photo_id_media_id_fk", + "tableFrom": "parish", + "tableTo": "media", + "columnsFrom": [ + "photo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.parish_rels": { + "name": "parish_rels", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "parent_id": { + "name": "parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "path": { + "name": "path", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "church_id": { + "name": "church_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "pages_id": { + "name": "pages_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "group_id": { + "name": "group_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "parish_rels_order_idx": { + "name": "parish_rels_order_idx", + "columns": [ + { + "expression": "order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_rels_parent_idx": { + "name": "parish_rels_parent_idx", + "columns": [ + { + "expression": "parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_rels_path_idx": { + "name": "parish_rels_path_idx", + "columns": [ + { + "expression": "path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_rels_church_id_idx": { + "name": "parish_rels_church_id_idx", + "columns": [ + { + "expression": "church_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_rels_pages_id_idx": { + "name": "parish_rels_pages_id_idx", + "columns": [ + { + "expression": "pages_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "parish_rels_group_id_idx": { + "name": "parish_rels_group_id_idx", + "columns": [ + { + "expression": "group_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "parish_rels_parent_fk": { + "name": "parish_rels_parent_fk", + "tableFrom": "parish_rels", + "tableTo": "parish", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "parish_rels_church_fk": { + "name": "parish_rels_church_fk", + "tableFrom": "parish_rels", + "tableTo": "church", + "columnsFrom": [ + "church_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "parish_rels_pages_fk": { + "name": "parish_rels_pages_fk", + "tableFrom": "parish_rels", + "tableTo": "pages", + "columnsFrom": [ + "pages_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "parish_rels_group_fk": { + "name": "parish_rels_group_fk", + "tableFrom": "parish_rels", + "tableTo": "group", + "columnsFrom": [ + "group_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._parish_v_version_contact_persons": { + "name": "_parish_v_version_contact_persons", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "description": { + "name": "description", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_parish_v_version_contact_persons_order_idx": { + "name": "_parish_v_version_contact_persons_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_version_contact_persons_parent_id_idx": { + "name": "_parish_v_version_contact_persons_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_parish_v_version_contact_persons_parent_id_fk": { + "name": "_parish_v_version_contact_persons_parent_id_fk", + "tableFrom": "_parish_v_version_contact_persons", + "tableTo": "_parish_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._parish_v_blocks_text": { + "name": "_parish_v_blocks_text", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "content": { + "name": "content", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "width": { + "name": "width", + "type": "enum__parish_v_blocks_text_width", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'1/2'" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_parish_v_blocks_text_order_idx": { + "name": "_parish_v_blocks_text_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_blocks_text_parent_id_idx": { + "name": "_parish_v_blocks_text_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_blocks_text_path_idx": { + "name": "_parish_v_blocks_text_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_parish_v_blocks_text_parent_id_fk": { + "name": "_parish_v_blocks_text_parent_id_fk", + "tableFrom": "_parish_v_blocks_text", + "tableTo": "_parish_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._parish_v_blocks_document": { + "name": "_parish_v_blocks_document", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "file_id": { + "name": "file_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "button": { + "name": "button", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Download Flyer'" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_parish_v_blocks_document_order_idx": { + "name": "_parish_v_blocks_document_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_blocks_document_parent_id_idx": { + "name": "_parish_v_blocks_document_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_blocks_document_path_idx": { + "name": "_parish_v_blocks_document_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_blocks_document_file_idx": { + "name": "_parish_v_blocks_document_file_idx", + "columns": [ + { + "expression": "file_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_parish_v_blocks_document_file_id_documents_id_fk": { + "name": "_parish_v_blocks_document_file_id_documents_id_fk", + "tableFrom": "_parish_v_blocks_document", + "tableTo": "documents", + "columnsFrom": [ + "file_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_parish_v_blocks_document_parent_id_fk": { + "name": "_parish_v_blocks_document_parent_id_fk", + "tableFrom": "_parish_v_blocks_document", + "tableTo": "_parish_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._parish_v_blocks_donation": { + "name": "_parish_v_blocks_donation", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_parish_v_blocks_donation_order_idx": { + "name": "_parish_v_blocks_donation_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_blocks_donation_parent_id_idx": { + "name": "_parish_v_blocks_donation_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_blocks_donation_path_idx": { + "name": "_parish_v_blocks_donation_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_parish_v_blocks_donation_parent_id_fk": { + "name": "_parish_v_blocks_donation_parent_id_fk", + "tableFrom": "_parish_v_blocks_donation", + "tableTo": "_parish_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._parish_v_blocks_youtube": { + "name": "_parish_v_blocks_youtube", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "youtube_id": { + "name": "youtube_id", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_parish_v_blocks_youtube_order_idx": { + "name": "_parish_v_blocks_youtube_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_blocks_youtube_parent_id_idx": { + "name": "_parish_v_blocks_youtube_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_blocks_youtube_path_idx": { + "name": "_parish_v_blocks_youtube_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_parish_v_blocks_youtube_parent_id_fk": { + "name": "_parish_v_blocks_youtube_parent_id_fk", + "tableFrom": "_parish_v_blocks_youtube", + "tableTo": "_parish_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._parish_v_blocks_donation_appeal": { + "name": "_parish_v_blocks_donation_appeal", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_parish_v_blocks_donation_appeal_order_idx": { + "name": "_parish_v_blocks_donation_appeal_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_blocks_donation_appeal_parent_id_idx": { + "name": "_parish_v_blocks_donation_appeal_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_blocks_donation_appeal_path_idx": { + "name": "_parish_v_blocks_donation_appeal_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_parish_v_blocks_donation_appeal_parent_id_fk": { + "name": "_parish_v_blocks_donation_appeal_parent_id_fk", + "tableFrom": "_parish_v_blocks_donation_appeal", + "tableTo": "_parish_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._parish_v_blocks_image_cards_items": { + "name": "_parish_v_blocks_image_cards_items", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "image_id": { + "name": "image_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "custom_link": { + "name": "custom_link", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_parish_v_blocks_image_cards_items_order_idx": { + "name": "_parish_v_blocks_image_cards_items_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_blocks_image_cards_items_parent_id_idx": { + "name": "_parish_v_blocks_image_cards_items_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_blocks_image_cards_items_image_idx": { + "name": "_parish_v_blocks_image_cards_items_image_idx", + "columns": [ + { + "expression": "image_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_parish_v_blocks_image_cards_items_image_id_media_id_fk": { + "name": "_parish_v_blocks_image_cards_items_image_id_media_id_fk", + "tableFrom": "_parish_v_blocks_image_cards_items", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_parish_v_blocks_image_cards_items_parent_id_fk": { + "name": "_parish_v_blocks_image_cards_items_parent_id_fk", + "tableFrom": "_parish_v_blocks_image_cards_items", + "tableTo": "_parish_v_blocks_image_cards", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._parish_v_blocks_image_cards": { + "name": "_parish_v_blocks_image_cards", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_parish_v_blocks_image_cards_order_idx": { + "name": "_parish_v_blocks_image_cards_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_blocks_image_cards_parent_id_idx": { + "name": "_parish_v_blocks_image_cards_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_blocks_image_cards_path_idx": { + "name": "_parish_v_blocks_image_cards_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_parish_v_blocks_image_cards_parent_id_fk": { + "name": "_parish_v_blocks_image_cards_parent_id_fk", + "tableFrom": "_parish_v_blocks_image_cards", + "tableTo": "_parish_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._parish_v_blocks_title": { + "name": "_parish_v_blocks_title", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "subtitle": { + "name": "subtitle", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "size": { + "name": "size", + "type": "enum__parish_v_blocks_title_size", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'lg'" + }, + "align": { + "name": "align", + "type": "enum__parish_v_blocks_title_align", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'left'" + }, + "color": { + "name": "color", + "type": "enum__parish_v_blocks_title_color", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'base'" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_parish_v_blocks_title_order_idx": { + "name": "_parish_v_blocks_title_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_blocks_title_parent_id_idx": { + "name": "_parish_v_blocks_title_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_blocks_title_path_idx": { + "name": "_parish_v_blocks_title_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_parish_v_blocks_title_parent_id_fk": { + "name": "_parish_v_blocks_title_parent_id_fk", + "tableFrom": "_parish_v_blocks_title", + "tableTo": "_parish_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._parish_v_blocks_collapsibles_items": { + "name": "_parish_v_blocks_collapsibles_items", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "content": { + "name": "content", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_parish_v_blocks_collapsibles_items_order_idx": { + "name": "_parish_v_blocks_collapsibles_items_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_blocks_collapsibles_items_parent_id_idx": { + "name": "_parish_v_blocks_collapsibles_items_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_parish_v_blocks_collapsibles_items_parent_id_fk": { + "name": "_parish_v_blocks_collapsibles_items_parent_id_fk", + "tableFrom": "_parish_v_blocks_collapsibles_items", + "tableTo": "_parish_v_blocks_collapsibles", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._parish_v_blocks_collapsibles": { + "name": "_parish_v_blocks_collapsibles", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_parish_v_blocks_collapsibles_order_idx": { + "name": "_parish_v_blocks_collapsibles_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_blocks_collapsibles_parent_id_idx": { + "name": "_parish_v_blocks_collapsibles_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_blocks_collapsibles_path_idx": { + "name": "_parish_v_blocks_collapsibles_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_parish_v_blocks_collapsibles_parent_id_fk": { + "name": "_parish_v_blocks_collapsibles_parent_id_fk", + "tableFrom": "_parish_v_blocks_collapsibles", + "tableTo": "_parish_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._parish_v_version_gallery": { + "name": "_parish_v_version_gallery", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "photo_id": { + "name": "photo_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_parish_v_version_gallery_order_idx": { + "name": "_parish_v_version_gallery_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_version_gallery_parent_id_idx": { + "name": "_parish_v_version_gallery_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_version_gallery_photo_idx": { + "name": "_parish_v_version_gallery_photo_idx", + "columns": [ + { + "expression": "photo_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_parish_v_version_gallery_photo_id_media_id_fk": { + "name": "_parish_v_version_gallery_photo_id_media_id_fk", + "tableFrom": "_parish_v_version_gallery", + "tableTo": "media", + "columnsFrom": [ + "photo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_parish_v_version_gallery_parent_id_fk": { + "name": "_parish_v_version_gallery_parent_id_fk", + "tableFrom": "_parish_v_version_gallery", + "tableTo": "_parish_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._parish_v": { + "name": "_parish_v", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "parent_id": { + "name": "parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "version_name": { + "name": "version_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "version_slug": { + "name": "version_slug", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "version_description": { + "name": "version_description", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "version_history": { + "name": "version_history", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "version_contact": { + "name": "version_contact", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "version_photo_id": { + "name": "version_photo_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "version_updated_at": { + "name": "version_updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "version_created_at": { + "name": "version_created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "version__status": { + "name": "version__status", + "type": "enum__parish_v_version_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'draft'" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "latest": { + "name": "latest", + "type": "boolean", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_parish_v_parent_idx": { + "name": "_parish_v_parent_idx", + "columns": [ + { + "expression": "parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_version_version_photo_idx": { + "name": "_parish_v_version_version_photo_idx", + "columns": [ + { + "expression": "version_photo_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_version_version_updated_at_idx": { + "name": "_parish_v_version_version_updated_at_idx", + "columns": [ + { + "expression": "version_updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_version_version_created_at_idx": { + "name": "_parish_v_version_version_created_at_idx", + "columns": [ + { + "expression": "version_created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_version_version__status_idx": { + "name": "_parish_v_version_version__status_idx", + "columns": [ + { + "expression": "version__status", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_created_at_idx": { + "name": "_parish_v_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_updated_at_idx": { + "name": "_parish_v_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_latest_idx": { + "name": "_parish_v_latest_idx", + "columns": [ + { + "expression": "latest", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_parish_v_parent_id_parish_id_fk": { + "name": "_parish_v_parent_id_parish_id_fk", + "tableFrom": "_parish_v", + "tableTo": "parish", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_parish_v_version_photo_id_media_id_fk": { + "name": "_parish_v_version_photo_id_media_id_fk", + "tableFrom": "_parish_v", + "tableTo": "media", + "columnsFrom": [ + "version_photo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._parish_v_rels": { + "name": "_parish_v_rels", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "parent_id": { + "name": "parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "path": { + "name": "path", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "church_id": { + "name": "church_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "pages_id": { + "name": "pages_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "group_id": { + "name": "group_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_parish_v_rels_order_idx": { + "name": "_parish_v_rels_order_idx", + "columns": [ + { + "expression": "order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_rels_parent_idx": { + "name": "_parish_v_rels_parent_idx", + "columns": [ + { + "expression": "parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_rels_path_idx": { + "name": "_parish_v_rels_path_idx", + "columns": [ + { + "expression": "path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_rels_church_id_idx": { + "name": "_parish_v_rels_church_id_idx", + "columns": [ + { + "expression": "church_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_rels_pages_id_idx": { + "name": "_parish_v_rels_pages_id_idx", + "columns": [ + { + "expression": "pages_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_parish_v_rels_group_id_idx": { + "name": "_parish_v_rels_group_id_idx", + "columns": [ + { + "expression": "group_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_parish_v_rels_parent_fk": { + "name": "_parish_v_rels_parent_fk", + "tableFrom": "_parish_v_rels", + "tableTo": "_parish_v", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_parish_v_rels_church_fk": { + "name": "_parish_v_rels_church_fk", + "tableFrom": "_parish_v_rels", + "tableTo": "church", + "columnsFrom": [ + "church_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_parish_v_rels_pages_fk": { + "name": "_parish_v_rels_pages_fk", + "tableFrom": "_parish_v_rels", + "tableTo": "pages", + "columnsFrom": [ + "pages_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_parish_v_rels_group_fk": { + "name": "_parish_v_rels_group_fk", + "tableFrom": "_parish_v_rels", + "tableTo": "group", + "columnsFrom": [ + "group_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.church_recurring_schedule": { + "name": "church_recurring_schedule", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "type": { + "name": "type", + "type": "enum_church_recurring_schedule_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "frequency": { + "name": "frequency", + "type": "enum_church_recurring_schedule_frequency", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'weekly'" + }, + "day": { + "name": "day", + "type": "enum_church_recurring_schedule_day", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "time": { + "name": "time", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true + }, + "week_of_month": { + "name": "week_of_month", + "type": "enum_church_recurring_schedule_week_of_month", + "typeSchema": "public", + "primaryKey": false, + "notNull": false + }, + "biweekly_anchor": { + "name": "biweekly_anchor", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "default_celebrant": { + "name": "default_celebrant", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "default_title": { + "name": "default_title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "default_description": { + "name": "default_description", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "notes": { + "name": "notes", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "church_recurring_schedule_order_idx": { + "name": "church_recurring_schedule_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "church_recurring_schedule_parent_id_idx": { + "name": "church_recurring_schedule_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "church_recurring_schedule_parent_id_fk": { + "name": "church_recurring_schedule_parent_id_fk", + "tableFrom": "church_recurring_schedule", + "tableTo": "church", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.church": { + "name": "church", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "address": { + "name": "address", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "church_updated_at_idx": { + "name": "church_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "church_created_at_idx": { + "name": "church_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.worship": { + "name": "worship", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "date": { + "name": "date", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true + }, + "location_id": { + "name": "location_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "enum_worship_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "cancelled": { + "name": "cancelled", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "liturgical_day": { + "name": "liturgical_day", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "celebrant": { + "name": "celebrant", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "description": { + "name": "description", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "generated": { + "name": "generated", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "worship_location_idx": { + "name": "worship_location_idx", + "columns": [ + { + "expression": "location_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "worship_updated_at_idx": { + "name": "worship_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "worship_created_at_idx": { + "name": "worship_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "worship_location_id_church_id_fk": { + "name": "worship_location_id_church_id_fk", + "tableFrom": "worship", + "tableTo": "church", + "columnsFrom": [ + "location_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pope_prayer_intentions": { + "name": "pope_prayer_intentions", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "year": { + "name": "year", + "type": "numeric", + "primaryKey": false, + "notNull": true, + "default": 2026 + }, + "month": { + "name": "month", + "type": "enum_pope_prayer_intentions_month", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'01'" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": true, + "default": "'Für '" + }, + "prayer": { + "name": "prayer", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "pope_prayer_intentions_updated_at_idx": { + "name": "pope_prayer_intentions_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pope_prayer_intentions_created_at_idx": { + "name": "pope_prayer_intentions_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.announcement": { + "name": "announcement", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "date": { + "name": "date", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "'2026-05-03T12:11:04.492Z'" + }, + "document_id": { + "name": "document_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "announcement_document_idx": { + "name": "announcement_document_idx", + "columns": [ + { + "expression": "document_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "announcement_updated_at_idx": { + "name": "announcement_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "announcement_created_at_idx": { + "name": "announcement_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "announcement_document_id_documents_id_fk": { + "name": "announcement_document_id_documents_id_fk", + "tableFrom": "announcement", + "tableTo": "documents", + "columnsFrom": [ + "document_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.announcement_rels": { + "name": "announcement_rels", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "parent_id": { + "name": "parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "path": { + "name": "path", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "parish_id": { + "name": "parish_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "announcement_rels_order_idx": { + "name": "announcement_rels_order_idx", + "columns": [ + { + "expression": "order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "announcement_rels_parent_idx": { + "name": "announcement_rels_parent_idx", + "columns": [ + { + "expression": "parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "announcement_rels_path_idx": { + "name": "announcement_rels_path_idx", + "columns": [ + { + "expression": "path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "announcement_rels_parish_id_idx": { + "name": "announcement_rels_parish_id_idx", + "columns": [ + { + "expression": "parish_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "announcement_rels_parent_fk": { + "name": "announcement_rels_parent_fk", + "tableFrom": "announcement_rels", + "tableTo": "announcement", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "announcement_rels_parish_fk": { + "name": "announcement_rels_parish_fk", + "tableFrom": "announcement_rels", + "tableTo": "parish", + "columnsFrom": [ + "parish_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.calendar": { + "name": "calendar", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "date": { + "name": "date", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "'2026-05-03T12:11:04.791Z'" + }, + "document_id": { + "name": "document_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "calendar_document_idx": { + "name": "calendar_document_idx", + "columns": [ + { + "expression": "document_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "calendar_updated_at_idx": { + "name": "calendar_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "calendar_created_at_idx": { + "name": "calendar_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "calendar_document_id_documents_id_fk": { + "name": "calendar_document_id_documents_id_fk", + "tableFrom": "calendar", + "tableTo": "documents", + "columnsFrom": [ + "document_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.calendar_rels": { + "name": "calendar_rels", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "parent_id": { + "name": "parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "path": { + "name": "path", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "parish_id": { + "name": "parish_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "calendar_rels_order_idx": { + "name": "calendar_rels_order_idx", + "columns": [ + { + "expression": "order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "calendar_rels_parent_idx": { + "name": "calendar_rels_parent_idx", + "columns": [ + { + "expression": "parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "calendar_rels_path_idx": { + "name": "calendar_rels_path_idx", + "columns": [ + { + "expression": "path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "calendar_rels_parish_id_idx": { + "name": "calendar_rels_parish_id_idx", + "columns": [ + { + "expression": "parish_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "calendar_rels_parent_fk": { + "name": "calendar_rels_parent_fk", + "tableFrom": "calendar_rels", + "tableTo": "calendar", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "calendar_rels_parish_fk": { + "name": "calendar_rels_parish_fk", + "tableFrom": "calendar_rels", + "tableTo": "parish", + "columnsFrom": [ + "parish_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.blog_blocks_text": { + "name": "blog_blocks_text", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "content": { + "name": "content", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "width": { + "name": "width", + "type": "enum_blog_blocks_text_width", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'1/2'" + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "blog_blocks_text_order_idx": { + "name": "blog_blocks_text_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_blocks_text_parent_id_idx": { + "name": "blog_blocks_text_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_blocks_text_path_idx": { + "name": "blog_blocks_text_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "blog_blocks_text_parent_id_fk": { + "name": "blog_blocks_text_parent_id_fk", + "tableFrom": "blog_blocks_text", + "tableTo": "blog", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.blog_blocks_document": { + "name": "blog_blocks_document", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "file_id": { + "name": "file_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "button": { + "name": "button", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Download Flyer'" + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "blog_blocks_document_order_idx": { + "name": "blog_blocks_document_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_blocks_document_parent_id_idx": { + "name": "blog_blocks_document_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_blocks_document_path_idx": { + "name": "blog_blocks_document_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_blocks_document_file_idx": { + "name": "blog_blocks_document_file_idx", + "columns": [ + { + "expression": "file_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "blog_blocks_document_file_id_documents_id_fk": { + "name": "blog_blocks_document_file_id_documents_id_fk", + "tableFrom": "blog_blocks_document", + "tableTo": "documents", + "columnsFrom": [ + "file_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "blog_blocks_document_parent_id_fk": { + "name": "blog_blocks_document_parent_id_fk", + "tableFrom": "blog_blocks_document", + "tableTo": "blog", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.blog_blocks_donation": { + "name": "blog_blocks_donation", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "blog_blocks_donation_order_idx": { + "name": "blog_blocks_donation_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_blocks_donation_parent_id_idx": { + "name": "blog_blocks_donation_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_blocks_donation_path_idx": { + "name": "blog_blocks_donation_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "blog_blocks_donation_parent_id_fk": { + "name": "blog_blocks_donation_parent_id_fk", + "tableFrom": "blog_blocks_donation", + "tableTo": "blog", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.blog_blocks_contactform": { + "name": "blog_blocks_contactform", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Ich bin dabei!'" + }, + "description": { + "name": "description", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Um dich anzumelden oder uns zu unterstützen, fülle bitte das Kontaktformular aus. Wir freuen uns sehr, dass du Teil unserer Gemeinschaft bist und mit deinem Engagement dazu beiträgst, unsere Ziele zu erreichen. Solltest du Fragen haben oder weitere Informationen benötigen, zögere nicht, uns zu kontaktieren – wir sind gerne für dich da!'" + }, + "email": { + "name": "email", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'kontakt@mutter-teresa-chemnitz.de'" + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "blog_blocks_contactform_order_idx": { + "name": "blog_blocks_contactform_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_blocks_contactform_parent_id_idx": { + "name": "blog_blocks_contactform_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_blocks_contactform_path_idx": { + "name": "blog_blocks_contactform_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "blog_blocks_contactform_parent_id_fk": { + "name": "blog_blocks_contactform_parent_id_fk", + "tableFrom": "blog_blocks_contactform", + "tableTo": "blog", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.blog_blocks_gallery_items": { + "name": "blog_blocks_gallery_items", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "photo_id": { + "name": "photo_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "blog_blocks_gallery_items_order_idx": { + "name": "blog_blocks_gallery_items_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_blocks_gallery_items_parent_id_idx": { + "name": "blog_blocks_gallery_items_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_blocks_gallery_items_photo_idx": { + "name": "blog_blocks_gallery_items_photo_idx", + "columns": [ + { + "expression": "photo_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "blog_blocks_gallery_items_photo_id_media_id_fk": { + "name": "blog_blocks_gallery_items_photo_id_media_id_fk", + "tableFrom": "blog_blocks_gallery_items", + "tableTo": "media", + "columnsFrom": [ + "photo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "blog_blocks_gallery_items_parent_id_fk": { + "name": "blog_blocks_gallery_items_parent_id_fk", + "tableFrom": "blog_blocks_gallery_items", + "tableTo": "blog_blocks_gallery", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.blog_blocks_gallery": { + "name": "blog_blocks_gallery", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "blog_blocks_gallery_order_idx": { + "name": "blog_blocks_gallery_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_blocks_gallery_parent_id_idx": { + "name": "blog_blocks_gallery_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_blocks_gallery_path_idx": { + "name": "blog_blocks_gallery_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "blog_blocks_gallery_parent_id_fk": { + "name": "blog_blocks_gallery_parent_id_fk", + "tableFrom": "blog_blocks_gallery", + "tableTo": "blog", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.blog_blocks_youtube": { + "name": "blog_blocks_youtube", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "youtube_id": { + "name": "youtube_id", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "blog_blocks_youtube_order_idx": { + "name": "blog_blocks_youtube_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_blocks_youtube_parent_id_idx": { + "name": "blog_blocks_youtube_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_blocks_youtube_path_idx": { + "name": "blog_blocks_youtube_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "blog_blocks_youtube_parent_id_fk": { + "name": "blog_blocks_youtube_parent_id_fk", + "tableFrom": "blog_blocks_youtube", + "tableTo": "blog", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.blog_blocks_button": { + "name": "blog_blocks_button", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "text": { + "name": "text", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "url": { + "name": "url", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "blog_blocks_button_order_idx": { + "name": "blog_blocks_button_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_blocks_button_parent_id_idx": { + "name": "blog_blocks_button_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_blocks_button_path_idx": { + "name": "blog_blocks_button_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "blog_blocks_button_parent_id_fk": { + "name": "blog_blocks_button_parent_id_fk", + "tableFrom": "blog_blocks_button", + "tableTo": "blog", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.blog_blocks_image_cards_items": { + "name": "blog_blocks_image_cards_items", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "image_id": { + "name": "image_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "custom_link": { + "name": "custom_link", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "blog_blocks_image_cards_items_order_idx": { + "name": "blog_blocks_image_cards_items_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_blocks_image_cards_items_parent_id_idx": { + "name": "blog_blocks_image_cards_items_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_blocks_image_cards_items_image_idx": { + "name": "blog_blocks_image_cards_items_image_idx", + "columns": [ + { + "expression": "image_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "blog_blocks_image_cards_items_image_id_media_id_fk": { + "name": "blog_blocks_image_cards_items_image_id_media_id_fk", + "tableFrom": "blog_blocks_image_cards_items", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "blog_blocks_image_cards_items_parent_id_fk": { + "name": "blog_blocks_image_cards_items_parent_id_fk", + "tableFrom": "blog_blocks_image_cards_items", + "tableTo": "blog_blocks_image_cards", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.blog_blocks_image_cards": { + "name": "blog_blocks_image_cards", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "blog_blocks_image_cards_order_idx": { + "name": "blog_blocks_image_cards_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_blocks_image_cards_parent_id_idx": { + "name": "blog_blocks_image_cards_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_blocks_image_cards_path_idx": { + "name": "blog_blocks_image_cards_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "blog_blocks_image_cards_parent_id_fk": { + "name": "blog_blocks_image_cards_parent_id_fk", + "tableFrom": "blog_blocks_image_cards", + "tableTo": "blog", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.blog": { + "name": "blog", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "photo_id": { + "name": "photo_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "content_excerpt": { + "name": "content_excerpt", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "configuration_show_on_frontpage": { + "name": "configuration_show_on_frontpage", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": true + }, + "configuration_display_from_date": { + "name": "configuration_display_from_date", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "configuration_display_till_date": { + "name": "configuration_display_till_date", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "_status": { + "name": "_status", + "type": "enum_blog_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'draft'" + } + }, + "indexes": { + "blog_photo_idx": { + "name": "blog_photo_idx", + "columns": [ + { + "expression": "photo_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_updated_at_idx": { + "name": "blog_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_created_at_idx": { + "name": "blog_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog__status_idx": { + "name": "blog__status_idx", + "columns": [ + { + "expression": "_status", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "blog_photo_id_media_id_fk": { + "name": "blog_photo_id_media_id_fk", + "tableFrom": "blog", + "tableTo": "media", + "columnsFrom": [ + "photo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.blog_rels": { + "name": "blog_rels", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "parent_id": { + "name": "parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "path": { + "name": "path", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "pages_id": { + "name": "pages_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "group_id": { + "name": "group_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "parish_id": { + "name": "parish_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "blog_rels_order_idx": { + "name": "blog_rels_order_idx", + "columns": [ + { + "expression": "order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_rels_parent_idx": { + "name": "blog_rels_parent_idx", + "columns": [ + { + "expression": "parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_rels_path_idx": { + "name": "blog_rels_path_idx", + "columns": [ + { + "expression": "path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_rels_pages_id_idx": { + "name": "blog_rels_pages_id_idx", + "columns": [ + { + "expression": "pages_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_rels_group_id_idx": { + "name": "blog_rels_group_id_idx", + "columns": [ + { + "expression": "group_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "blog_rels_parish_id_idx": { + "name": "blog_rels_parish_id_idx", + "columns": [ + { + "expression": "parish_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "blog_rels_parent_fk": { + "name": "blog_rels_parent_fk", + "tableFrom": "blog_rels", + "tableTo": "blog", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "blog_rels_pages_fk": { + "name": "blog_rels_pages_fk", + "tableFrom": "blog_rels", + "tableTo": "pages", + "columnsFrom": [ + "pages_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "blog_rels_group_fk": { + "name": "blog_rels_group_fk", + "tableFrom": "blog_rels", + "tableTo": "group", + "columnsFrom": [ + "group_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "blog_rels_parish_fk": { + "name": "blog_rels_parish_fk", + "tableFrom": "blog_rels", + "tableTo": "parish", + "columnsFrom": [ + "parish_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._blog_v_blocks_text": { + "name": "_blog_v_blocks_text", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "content": { + "name": "content", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "width": { + "name": "width", + "type": "enum__blog_v_blocks_text_width", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'1/2'" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_blog_v_blocks_text_order_idx": { + "name": "_blog_v_blocks_text_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_blocks_text_parent_id_idx": { + "name": "_blog_v_blocks_text_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_blocks_text_path_idx": { + "name": "_blog_v_blocks_text_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_blog_v_blocks_text_parent_id_fk": { + "name": "_blog_v_blocks_text_parent_id_fk", + "tableFrom": "_blog_v_blocks_text", + "tableTo": "_blog_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._blog_v_blocks_document": { + "name": "_blog_v_blocks_document", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "file_id": { + "name": "file_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "button": { + "name": "button", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Download Flyer'" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_blog_v_blocks_document_order_idx": { + "name": "_blog_v_blocks_document_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_blocks_document_parent_id_idx": { + "name": "_blog_v_blocks_document_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_blocks_document_path_idx": { + "name": "_blog_v_blocks_document_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_blocks_document_file_idx": { + "name": "_blog_v_blocks_document_file_idx", + "columns": [ + { + "expression": "file_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_blog_v_blocks_document_file_id_documents_id_fk": { + "name": "_blog_v_blocks_document_file_id_documents_id_fk", + "tableFrom": "_blog_v_blocks_document", + "tableTo": "documents", + "columnsFrom": [ + "file_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_blog_v_blocks_document_parent_id_fk": { + "name": "_blog_v_blocks_document_parent_id_fk", + "tableFrom": "_blog_v_blocks_document", + "tableTo": "_blog_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._blog_v_blocks_donation": { + "name": "_blog_v_blocks_donation", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_blog_v_blocks_donation_order_idx": { + "name": "_blog_v_blocks_donation_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_blocks_donation_parent_id_idx": { + "name": "_blog_v_blocks_donation_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_blocks_donation_path_idx": { + "name": "_blog_v_blocks_donation_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_blog_v_blocks_donation_parent_id_fk": { + "name": "_blog_v_blocks_donation_parent_id_fk", + "tableFrom": "_blog_v_blocks_donation", + "tableTo": "_blog_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._blog_v_blocks_contactform": { + "name": "_blog_v_blocks_contactform", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Ich bin dabei!'" + }, + "description": { + "name": "description", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Um dich anzumelden oder uns zu unterstützen, fülle bitte das Kontaktformular aus. Wir freuen uns sehr, dass du Teil unserer Gemeinschaft bist und mit deinem Engagement dazu beiträgst, unsere Ziele zu erreichen. Solltest du Fragen haben oder weitere Informationen benötigen, zögere nicht, uns zu kontaktieren – wir sind gerne für dich da!'" + }, + "email": { + "name": "email", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'kontakt@mutter-teresa-chemnitz.de'" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_blog_v_blocks_contactform_order_idx": { + "name": "_blog_v_blocks_contactform_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_blocks_contactform_parent_id_idx": { + "name": "_blog_v_blocks_contactform_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_blocks_contactform_path_idx": { + "name": "_blog_v_blocks_contactform_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_blog_v_blocks_contactform_parent_id_fk": { + "name": "_blog_v_blocks_contactform_parent_id_fk", + "tableFrom": "_blog_v_blocks_contactform", + "tableTo": "_blog_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._blog_v_blocks_gallery_items": { + "name": "_blog_v_blocks_gallery_items", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "photo_id": { + "name": "photo_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_blog_v_blocks_gallery_items_order_idx": { + "name": "_blog_v_blocks_gallery_items_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_blocks_gallery_items_parent_id_idx": { + "name": "_blog_v_blocks_gallery_items_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_blocks_gallery_items_photo_idx": { + "name": "_blog_v_blocks_gallery_items_photo_idx", + "columns": [ + { + "expression": "photo_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_blog_v_blocks_gallery_items_photo_id_media_id_fk": { + "name": "_blog_v_blocks_gallery_items_photo_id_media_id_fk", + "tableFrom": "_blog_v_blocks_gallery_items", + "tableTo": "media", + "columnsFrom": [ + "photo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_blog_v_blocks_gallery_items_parent_id_fk": { + "name": "_blog_v_blocks_gallery_items_parent_id_fk", + "tableFrom": "_blog_v_blocks_gallery_items", + "tableTo": "_blog_v_blocks_gallery", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._blog_v_blocks_gallery": { + "name": "_blog_v_blocks_gallery", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_blog_v_blocks_gallery_order_idx": { + "name": "_blog_v_blocks_gallery_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_blocks_gallery_parent_id_idx": { + "name": "_blog_v_blocks_gallery_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_blocks_gallery_path_idx": { + "name": "_blog_v_blocks_gallery_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_blog_v_blocks_gallery_parent_id_fk": { + "name": "_blog_v_blocks_gallery_parent_id_fk", + "tableFrom": "_blog_v_blocks_gallery", + "tableTo": "_blog_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._blog_v_blocks_youtube": { + "name": "_blog_v_blocks_youtube", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "youtube_id": { + "name": "youtube_id", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_blog_v_blocks_youtube_order_idx": { + "name": "_blog_v_blocks_youtube_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_blocks_youtube_parent_id_idx": { + "name": "_blog_v_blocks_youtube_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_blocks_youtube_path_idx": { + "name": "_blog_v_blocks_youtube_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_blog_v_blocks_youtube_parent_id_fk": { + "name": "_blog_v_blocks_youtube_parent_id_fk", + "tableFrom": "_blog_v_blocks_youtube", + "tableTo": "_blog_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._blog_v_blocks_button": { + "name": "_blog_v_blocks_button", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "text": { + "name": "text", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "url": { + "name": "url", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_blog_v_blocks_button_order_idx": { + "name": "_blog_v_blocks_button_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_blocks_button_parent_id_idx": { + "name": "_blog_v_blocks_button_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_blocks_button_path_idx": { + "name": "_blog_v_blocks_button_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_blog_v_blocks_button_parent_id_fk": { + "name": "_blog_v_blocks_button_parent_id_fk", + "tableFrom": "_blog_v_blocks_button", + "tableTo": "_blog_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._blog_v_blocks_image_cards_items": { + "name": "_blog_v_blocks_image_cards_items", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "image_id": { + "name": "image_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "custom_link": { + "name": "custom_link", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_blog_v_blocks_image_cards_items_order_idx": { + "name": "_blog_v_blocks_image_cards_items_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_blocks_image_cards_items_parent_id_idx": { + "name": "_blog_v_blocks_image_cards_items_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_blocks_image_cards_items_image_idx": { + "name": "_blog_v_blocks_image_cards_items_image_idx", + "columns": [ + { + "expression": "image_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_blog_v_blocks_image_cards_items_image_id_media_id_fk": { + "name": "_blog_v_blocks_image_cards_items_image_id_media_id_fk", + "tableFrom": "_blog_v_blocks_image_cards_items", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_blog_v_blocks_image_cards_items_parent_id_fk": { + "name": "_blog_v_blocks_image_cards_items_parent_id_fk", + "tableFrom": "_blog_v_blocks_image_cards_items", + "tableTo": "_blog_v_blocks_image_cards", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._blog_v_blocks_image_cards": { + "name": "_blog_v_blocks_image_cards", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_blog_v_blocks_image_cards_order_idx": { + "name": "_blog_v_blocks_image_cards_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_blocks_image_cards_parent_id_idx": { + "name": "_blog_v_blocks_image_cards_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_blocks_image_cards_path_idx": { + "name": "_blog_v_blocks_image_cards_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_blog_v_blocks_image_cards_parent_id_fk": { + "name": "_blog_v_blocks_image_cards_parent_id_fk", + "tableFrom": "_blog_v_blocks_image_cards", + "tableTo": "_blog_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._blog_v": { + "name": "_blog_v", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "parent_id": { + "name": "parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "version_photo_id": { + "name": "version_photo_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "version_title": { + "name": "version_title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "version_content_excerpt": { + "name": "version_content_excerpt", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "version_configuration_show_on_frontpage": { + "name": "version_configuration_show_on_frontpage", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": true + }, + "version_configuration_display_from_date": { + "name": "version_configuration_display_from_date", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "version_configuration_display_till_date": { + "name": "version_configuration_display_till_date", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "version_updated_at": { + "name": "version_updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "version_created_at": { + "name": "version_created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "version__status": { + "name": "version__status", + "type": "enum__blog_v_version_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'draft'" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "latest": { + "name": "latest", + "type": "boolean", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_blog_v_parent_idx": { + "name": "_blog_v_parent_idx", + "columns": [ + { + "expression": "parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_version_version_photo_idx": { + "name": "_blog_v_version_version_photo_idx", + "columns": [ + { + "expression": "version_photo_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_version_version_updated_at_idx": { + "name": "_blog_v_version_version_updated_at_idx", + "columns": [ + { + "expression": "version_updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_version_version_created_at_idx": { + "name": "_blog_v_version_version_created_at_idx", + "columns": [ + { + "expression": "version_created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_version_version__status_idx": { + "name": "_blog_v_version_version__status_idx", + "columns": [ + { + "expression": "version__status", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_created_at_idx": { + "name": "_blog_v_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_updated_at_idx": { + "name": "_blog_v_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_latest_idx": { + "name": "_blog_v_latest_idx", + "columns": [ + { + "expression": "latest", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_blog_v_parent_id_blog_id_fk": { + "name": "_blog_v_parent_id_blog_id_fk", + "tableFrom": "_blog_v", + "tableTo": "blog", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_blog_v_version_photo_id_media_id_fk": { + "name": "_blog_v_version_photo_id_media_id_fk", + "tableFrom": "_blog_v", + "tableTo": "media", + "columnsFrom": [ + "version_photo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._blog_v_rels": { + "name": "_blog_v_rels", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "parent_id": { + "name": "parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "path": { + "name": "path", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "pages_id": { + "name": "pages_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "group_id": { + "name": "group_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "parish_id": { + "name": "parish_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_blog_v_rels_order_idx": { + "name": "_blog_v_rels_order_idx", + "columns": [ + { + "expression": "order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_rels_parent_idx": { + "name": "_blog_v_rels_parent_idx", + "columns": [ + { + "expression": "parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_rels_path_idx": { + "name": "_blog_v_rels_path_idx", + "columns": [ + { + "expression": "path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_rels_pages_id_idx": { + "name": "_blog_v_rels_pages_id_idx", + "columns": [ + { + "expression": "pages_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_rels_group_id_idx": { + "name": "_blog_v_rels_group_id_idx", + "columns": [ + { + "expression": "group_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_blog_v_rels_parish_id_idx": { + "name": "_blog_v_rels_parish_id_idx", + "columns": [ + { + "expression": "parish_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_blog_v_rels_parent_fk": { + "name": "_blog_v_rels_parent_fk", + "tableFrom": "_blog_v_rels", + "tableTo": "_blog_v", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_blog_v_rels_pages_fk": { + "name": "_blog_v_rels_pages_fk", + "tableFrom": "_blog_v_rels", + "tableTo": "pages", + "columnsFrom": [ + "pages_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_blog_v_rels_group_fk": { + "name": "_blog_v_rels_group_fk", + "tableFrom": "_blog_v_rels", + "tableTo": "group", + "columnsFrom": [ + "group_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_blog_v_rels_parish_fk": { + "name": "_blog_v_rels_parish_fk", + "tableFrom": "_blog_v_rels", + "tableTo": "parish", + "columnsFrom": [ + "parish_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.highlight": { + "name": "highlight", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "from": { + "name": "from", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true + }, + "until": { + "name": "until", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true + }, + "date": { + "name": "date", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true + }, + "text": { + "name": "text", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "highlight_updated_at_idx": { + "name": "highlight_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "highlight_created_at_idx": { + "name": "highlight_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.highlight_rels": { + "name": "highlight_rels", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "parent_id": { + "name": "parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "path": { + "name": "path", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "blog_id": { + "name": "blog_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "worship_id": { + "name": "worship_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "highlight_rels_order_idx": { + "name": "highlight_rels_order_idx", + "columns": [ + { + "expression": "order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "highlight_rels_parent_idx": { + "name": "highlight_rels_parent_idx", + "columns": [ + { + "expression": "parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "highlight_rels_path_idx": { + "name": "highlight_rels_path_idx", + "columns": [ + { + "expression": "path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "highlight_rels_event_id_idx": { + "name": "highlight_rels_event_id_idx", + "columns": [ + { + "expression": "event_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "highlight_rels_blog_id_idx": { + "name": "highlight_rels_blog_id_idx", + "columns": [ + { + "expression": "blog_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "highlight_rels_worship_id_idx": { + "name": "highlight_rels_worship_id_idx", + "columns": [ + { + "expression": "worship_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "highlight_rels_parent_fk": { + "name": "highlight_rels_parent_fk", + "tableFrom": "highlight_rels", + "tableTo": "highlight", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "highlight_rels_event_fk": { + "name": "highlight_rels_event_fk", + "tableFrom": "highlight_rels", + "tableTo": "event", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "highlight_rels_blog_fk": { + "name": "highlight_rels_blog_fk", + "tableFrom": "highlight_rels", + "tableTo": "blog", + "columnsFrom": [ + "blog_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "highlight_rels_worship_fk": { + "name": "highlight_rels_worship_fk", + "tableFrom": "highlight_rels", + "tableTo": "worship", + "columnsFrom": [ + "worship_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.event_recurrence_rules": { + "name": "event_recurrence_rules", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "frequency": { + "name": "frequency", + "type": "enum_event_recurrence_rules_frequency", + "typeSchema": "public", + "primaryKey": false, + "notNull": false + }, + "weekday": { + "name": "weekday", + "type": "enum_event_recurrence_rules_weekday", + "typeSchema": "public", + "primaryKey": false, + "notNull": false + }, + "week_of_month": { + "name": "week_of_month", + "type": "enum_event_recurrence_rules_week_of_month", + "typeSchema": "public", + "primaryKey": false, + "notNull": false + }, + "day_of_month": { + "name": "day_of_month", + "type": "numeric", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "event_recurrence_rules_order_idx": { + "name": "event_recurrence_rules_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "event_recurrence_rules_parent_id_idx": { + "name": "event_recurrence_rules_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "event_recurrence_rules_parent_id_fk": { + "name": "event_recurrence_rules_parent_id_fk", + "tableFrom": "event_recurrence_rules", + "tableTo": "event", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.event": { + "name": "event", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "date": { + "name": "date", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "end_date_time": { + "name": "end_date_time", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "cancelled": { + "name": "cancelled", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": false + }, + "location_id": { + "name": "location_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "short_description": { + "name": "short_description", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "description": { + "name": "description", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "contact_id": { + "name": "contact_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "rsvp_link": { + "name": "rsvp_link", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "photo_id": { + "name": "photo_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "flyer_id": { + "name": "flyer_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "recurrence_type": { + "name": "recurrence_type", + "type": "enum_event_recurrence_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'none'" + }, + "end_date": { + "name": "end_date", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "_status": { + "name": "_status", + "type": "enum_event_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'draft'" + } + }, + "indexes": { + "event_location_idx": { + "name": "event_location_idx", + "columns": [ + { + "expression": "location_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "event_contact_idx": { + "name": "event_contact_idx", + "columns": [ + { + "expression": "contact_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "event_photo_idx": { + "name": "event_photo_idx", + "columns": [ + { + "expression": "photo_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "event_flyer_idx": { + "name": "event_flyer_idx", + "columns": [ + { + "expression": "flyer_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "event_updated_at_idx": { + "name": "event_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "event_created_at_idx": { + "name": "event_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "event__status_idx": { + "name": "event__status_idx", + "columns": [ + { + "expression": "_status", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "event_location_id_locations_id_fk": { + "name": "event_location_id_locations_id_fk", + "tableFrom": "event", + "tableTo": "locations", + "columnsFrom": [ + "location_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "event_contact_id_contact_person_id_fk": { + "name": "event_contact_id_contact_person_id_fk", + "tableFrom": "event", + "tableTo": "contact_person", + "columnsFrom": [ + "contact_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "event_photo_id_media_id_fk": { + "name": "event_photo_id_media_id_fk", + "tableFrom": "event", + "tableTo": "media", + "columnsFrom": [ + "photo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "event_flyer_id_documents_id_fk": { + "name": "event_flyer_id_documents_id_fk", + "tableFrom": "event", + "tableTo": "documents", + "columnsFrom": [ + "flyer_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.event_rels": { + "name": "event_rels", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "parent_id": { + "name": "parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "path": { + "name": "path", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "parish_id": { + "name": "parish_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "group_id": { + "name": "group_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "event_rels_order_idx": { + "name": "event_rels_order_idx", + "columns": [ + { + "expression": "order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "event_rels_parent_idx": { + "name": "event_rels_parent_idx", + "columns": [ + { + "expression": "parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "event_rels_path_idx": { + "name": "event_rels_path_idx", + "columns": [ + { + "expression": "path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "event_rels_parish_id_idx": { + "name": "event_rels_parish_id_idx", + "columns": [ + { + "expression": "parish_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "event_rels_group_id_idx": { + "name": "event_rels_group_id_idx", + "columns": [ + { + "expression": "group_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "event_rels_parent_fk": { + "name": "event_rels_parent_fk", + "tableFrom": "event_rels", + "tableTo": "event", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "event_rels_parish_fk": { + "name": "event_rels_parish_fk", + "tableFrom": "event_rels", + "tableTo": "parish", + "columnsFrom": [ + "parish_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "event_rels_group_fk": { + "name": "event_rels_group_fk", + "tableFrom": "event_rels", + "tableTo": "group", + "columnsFrom": [ + "group_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._event_v_version_recurrence_rules": { + "name": "_event_v_version_recurrence_rules", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "frequency": { + "name": "frequency", + "type": "enum__event_v_version_recurrence_rules_frequency", + "typeSchema": "public", + "primaryKey": false, + "notNull": false + }, + "weekday": { + "name": "weekday", + "type": "enum__event_v_version_recurrence_rules_weekday", + "typeSchema": "public", + "primaryKey": false, + "notNull": false + }, + "week_of_month": { + "name": "week_of_month", + "type": "enum__event_v_version_recurrence_rules_week_of_month", + "typeSchema": "public", + "primaryKey": false, + "notNull": false + }, + "day_of_month": { + "name": "day_of_month", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_event_v_version_recurrence_rules_order_idx": { + "name": "_event_v_version_recurrence_rules_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_event_v_version_recurrence_rules_parent_id_idx": { + "name": "_event_v_version_recurrence_rules_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_event_v_version_recurrence_rules_parent_id_fk": { + "name": "_event_v_version_recurrence_rules_parent_id_fk", + "tableFrom": "_event_v_version_recurrence_rules", + "tableTo": "_event_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._event_v": { + "name": "_event_v", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "parent_id": { + "name": "parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "version_title": { + "name": "version_title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "version_date": { + "name": "version_date", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "version_end_date_time": { + "name": "version_end_date_time", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "version_cancelled": { + "name": "version_cancelled", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": false + }, + "version_location_id": { + "name": "version_location_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "version_short_description": { + "name": "version_short_description", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "version_description": { + "name": "version_description", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "version_contact_id": { + "name": "version_contact_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "version_rsvp_link": { + "name": "version_rsvp_link", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "version_photo_id": { + "name": "version_photo_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "version_flyer_id": { + "name": "version_flyer_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "version_recurrence_type": { + "name": "version_recurrence_type", + "type": "enum__event_v_version_recurrence_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'none'" + }, + "version_end_date": { + "name": "version_end_date", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "version_updated_at": { + "name": "version_updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "version_created_at": { + "name": "version_created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "version__status": { + "name": "version__status", + "type": "enum__event_v_version_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'draft'" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "latest": { + "name": "latest", + "type": "boolean", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_event_v_parent_idx": { + "name": "_event_v_parent_idx", + "columns": [ + { + "expression": "parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_event_v_version_version_location_idx": { + "name": "_event_v_version_version_location_idx", + "columns": [ + { + "expression": "version_location_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_event_v_version_version_contact_idx": { + "name": "_event_v_version_version_contact_idx", + "columns": [ + { + "expression": "version_contact_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_event_v_version_version_photo_idx": { + "name": "_event_v_version_version_photo_idx", + "columns": [ + { + "expression": "version_photo_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_event_v_version_version_flyer_idx": { + "name": "_event_v_version_version_flyer_idx", + "columns": [ + { + "expression": "version_flyer_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_event_v_version_version_updated_at_idx": { + "name": "_event_v_version_version_updated_at_idx", + "columns": [ + { + "expression": "version_updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_event_v_version_version_created_at_idx": { + "name": "_event_v_version_version_created_at_idx", + "columns": [ + { + "expression": "version_created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_event_v_version_version__status_idx": { + "name": "_event_v_version_version__status_idx", + "columns": [ + { + "expression": "version__status", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_event_v_created_at_idx": { + "name": "_event_v_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_event_v_updated_at_idx": { + "name": "_event_v_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_event_v_latest_idx": { + "name": "_event_v_latest_idx", + "columns": [ + { + "expression": "latest", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_event_v_parent_id_event_id_fk": { + "name": "_event_v_parent_id_event_id_fk", + "tableFrom": "_event_v", + "tableTo": "event", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_event_v_version_location_id_locations_id_fk": { + "name": "_event_v_version_location_id_locations_id_fk", + "tableFrom": "_event_v", + "tableTo": "locations", + "columnsFrom": [ + "version_location_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_event_v_version_contact_id_contact_person_id_fk": { + "name": "_event_v_version_contact_id_contact_person_id_fk", + "tableFrom": "_event_v", + "tableTo": "contact_person", + "columnsFrom": [ + "version_contact_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_event_v_version_photo_id_media_id_fk": { + "name": "_event_v_version_photo_id_media_id_fk", + "tableFrom": "_event_v", + "tableTo": "media", + "columnsFrom": [ + "version_photo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_event_v_version_flyer_id_documents_id_fk": { + "name": "_event_v_version_flyer_id_documents_id_fk", + "tableFrom": "_event_v", + "tableTo": "documents", + "columnsFrom": [ + "version_flyer_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._event_v_rels": { + "name": "_event_v_rels", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "parent_id": { + "name": "parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "path": { + "name": "path", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "parish_id": { + "name": "parish_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "group_id": { + "name": "group_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_event_v_rels_order_idx": { + "name": "_event_v_rels_order_idx", + "columns": [ + { + "expression": "order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_event_v_rels_parent_idx": { + "name": "_event_v_rels_parent_idx", + "columns": [ + { + "expression": "parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_event_v_rels_path_idx": { + "name": "_event_v_rels_path_idx", + "columns": [ + { + "expression": "path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_event_v_rels_parish_id_idx": { + "name": "_event_v_rels_parish_id_idx", + "columns": [ + { + "expression": "parish_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_event_v_rels_group_id_idx": { + "name": "_event_v_rels_group_id_idx", + "columns": [ + { + "expression": "group_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_event_v_rels_parent_fk": { + "name": "_event_v_rels_parent_fk", + "tableFrom": "_event_v_rels", + "tableTo": "_event_v", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_event_v_rels_parish_fk": { + "name": "_event_v_rels_parish_fk", + "tableFrom": "_event_v_rels", + "tableTo": "parish", + "columnsFrom": [ + "parish_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_event_v_rels_group_fk": { + "name": "_event_v_rels_group_fk", + "tableFrom": "_event_v_rels", + "tableTo": "group", + "columnsFrom": [ + "group_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.event_occurrence": { + "name": "event_occurrence", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "date": { + "name": "date", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true + }, + "cancelled": { + "name": "cancelled", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "generated": { + "name": "generated", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "event_occurrence_event_idx": { + "name": "event_occurrence_event_idx", + "columns": [ + { + "expression": "event_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "event_occurrence_date_idx": { + "name": "event_occurrence_date_idx", + "columns": [ + { + "expression": "date", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "event_occurrence_updated_at_idx": { + "name": "event_occurrence_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "event_occurrence_created_at_idx": { + "name": "event_occurrence_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "event_occurrence_event_id_event_id_fk": { + "name": "event_occurrence_event_id_event_id_fk", + "tableFrom": "event_occurrence", + "tableTo": "event", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.classifieds": { + "name": "classifieds", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "until": { + "name": "until", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "'2026-05-29T12:11:04.854Z'" + }, + "text": { + "name": "text", + "type": "jsonb", + "primaryKey": false, + "notNull": true + }, + "email": { + "name": "email", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "classifieds_updated_at_idx": { + "name": "classifieds_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "classifieds_created_at_idx": { + "name": "classifieds_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.contact_person": { + "name": "contact_person", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "photo_id": { + "name": "photo_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "name": { + "name": "name", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "role": { + "name": "role", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "email": { + "name": "email", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "telephone": { + "name": "telephone", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "contact_person_photo_idx": { + "name": "contact_person_photo_idx", + "columns": [ + { + "expression": "photo_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "contact_person_updated_at_idx": { + "name": "contact_person_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "contact_person_created_at_idx": { + "name": "contact_person_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "contact_person_photo_id_media_id_fk": { + "name": "contact_person_photo_id_media_id_fk", + "tableFrom": "contact_person", + "tableTo": "media", + "columnsFrom": [ + "photo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.locations": { + "name": "locations", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "address": { + "name": "address", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "coordinates": { + "name": "coordinates", + "type": "geometry(Point)", + "primaryKey": false, + "notNull": false + }, + "notes": { + "name": "notes", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "barrier_free": { + "name": "barrier_free", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "locations_name_idx": { + "name": "locations_name_idx", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + }, + "locations_updated_at_idx": { + "name": "locations_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "locations_created_at_idx": { + "name": "locations_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.group_blocks_title": { + "name": "group_blocks_title", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "subtitle": { + "name": "subtitle", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "size": { + "name": "size", + "type": "enum_group_blocks_title_size", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'lg'" + }, + "align": { + "name": "align", + "type": "enum_group_blocks_title_align", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'left'" + }, + "color": { + "name": "color", + "type": "enum_group_blocks_title_color", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'base'" + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "group_blocks_title_order_idx": { + "name": "group_blocks_title_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_title_parent_id_idx": { + "name": "group_blocks_title_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_title_path_idx": { + "name": "group_blocks_title_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "group_blocks_title_parent_id_fk": { + "name": "group_blocks_title_parent_id_fk", + "tableFrom": "group_blocks_title", + "tableTo": "group", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.group_blocks_text": { + "name": "group_blocks_text", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "content": { + "name": "content", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "width": { + "name": "width", + "type": "enum_group_blocks_text_width", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'1/2'" + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "group_blocks_text_order_idx": { + "name": "group_blocks_text_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_text_parent_id_idx": { + "name": "group_blocks_text_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_text_path_idx": { + "name": "group_blocks_text_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "group_blocks_text_parent_id_fk": { + "name": "group_blocks_text_parent_id_fk", + "tableFrom": "group_blocks_text", + "tableTo": "group", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.group_blocks_gallery_items": { + "name": "group_blocks_gallery_items", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "photo_id": { + "name": "photo_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "group_blocks_gallery_items_order_idx": { + "name": "group_blocks_gallery_items_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_gallery_items_parent_id_idx": { + "name": "group_blocks_gallery_items_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_gallery_items_photo_idx": { + "name": "group_blocks_gallery_items_photo_idx", + "columns": [ + { + "expression": "photo_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "group_blocks_gallery_items_photo_id_media_id_fk": { + "name": "group_blocks_gallery_items_photo_id_media_id_fk", + "tableFrom": "group_blocks_gallery_items", + "tableTo": "media", + "columnsFrom": [ + "photo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "group_blocks_gallery_items_parent_id_fk": { + "name": "group_blocks_gallery_items_parent_id_fk", + "tableFrom": "group_blocks_gallery_items", + "tableTo": "group_blocks_gallery", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.group_blocks_gallery": { + "name": "group_blocks_gallery", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "group_blocks_gallery_order_idx": { + "name": "group_blocks_gallery_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_gallery_parent_id_idx": { + "name": "group_blocks_gallery_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_gallery_path_idx": { + "name": "group_blocks_gallery_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "group_blocks_gallery_parent_id_fk": { + "name": "group_blocks_gallery_parent_id_fk", + "tableFrom": "group_blocks_gallery", + "tableTo": "group", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.group_blocks_document": { + "name": "group_blocks_document", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "file_id": { + "name": "file_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "button": { + "name": "button", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Download Flyer'" + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "group_blocks_document_order_idx": { + "name": "group_blocks_document_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_document_parent_id_idx": { + "name": "group_blocks_document_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_document_path_idx": { + "name": "group_blocks_document_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_document_file_idx": { + "name": "group_blocks_document_file_idx", + "columns": [ + { + "expression": "file_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "group_blocks_document_file_id_documents_id_fk": { + "name": "group_blocks_document_file_id_documents_id_fk", + "tableFrom": "group_blocks_document", + "tableTo": "documents", + "columnsFrom": [ + "file_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "group_blocks_document_parent_id_fk": { + "name": "group_blocks_document_parent_id_fk", + "tableFrom": "group_blocks_document", + "tableTo": "group", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.group_blocks_donation": { + "name": "group_blocks_donation", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "group_blocks_donation_order_idx": { + "name": "group_blocks_donation_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_donation_parent_id_idx": { + "name": "group_blocks_donation_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_donation_path_idx": { + "name": "group_blocks_donation_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "group_blocks_donation_parent_id_fk": { + "name": "group_blocks_donation_parent_id_fk", + "tableFrom": "group_blocks_donation", + "tableTo": "group", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.group_blocks_youtube": { + "name": "group_blocks_youtube", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "youtube_id": { + "name": "youtube_id", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "group_blocks_youtube_order_idx": { + "name": "group_blocks_youtube_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_youtube_parent_id_idx": { + "name": "group_blocks_youtube_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_youtube_path_idx": { + "name": "group_blocks_youtube_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "group_blocks_youtube_parent_id_fk": { + "name": "group_blocks_youtube_parent_id_fk", + "tableFrom": "group_blocks_youtube", + "tableTo": "group", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.group_blocks_contactform": { + "name": "group_blocks_contactform", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Ich bin dabei!'" + }, + "description": { + "name": "description", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Um dich anzumelden oder uns zu unterstützen, fülle bitte das Kontaktformular aus. Wir freuen uns sehr, dass du Teil unserer Gemeinschaft bist und mit deinem Engagement dazu beiträgst, unsere Ziele zu erreichen. Solltest du Fragen haben oder weitere Informationen benötigen, zögere nicht, uns zu kontaktieren – wir sind gerne für dich da!'" + }, + "email": { + "name": "email", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'kontakt@mutter-teresa-chemnitz.de'" + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "group_blocks_contactform_order_idx": { + "name": "group_blocks_contactform_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_contactform_parent_id_idx": { + "name": "group_blocks_contactform_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_contactform_path_idx": { + "name": "group_blocks_contactform_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "group_blocks_contactform_parent_id_fk": { + "name": "group_blocks_contactform_parent_id_fk", + "tableFrom": "group_blocks_contactform", + "tableTo": "group", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.group_blocks_button": { + "name": "group_blocks_button", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "text": { + "name": "text", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "url": { + "name": "url", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "group_blocks_button_order_idx": { + "name": "group_blocks_button_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_button_parent_id_idx": { + "name": "group_blocks_button_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_button_path_idx": { + "name": "group_blocks_button_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "group_blocks_button_parent_id_fk": { + "name": "group_blocks_button_parent_id_fk", + "tableFrom": "group_blocks_button", + "tableTo": "group", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.group_blocks_image_cards_items": { + "name": "group_blocks_image_cards_items", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "image_id": { + "name": "image_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "custom_link": { + "name": "custom_link", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "group_blocks_image_cards_items_order_idx": { + "name": "group_blocks_image_cards_items_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_image_cards_items_parent_id_idx": { + "name": "group_blocks_image_cards_items_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_image_cards_items_image_idx": { + "name": "group_blocks_image_cards_items_image_idx", + "columns": [ + { + "expression": "image_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "group_blocks_image_cards_items_image_id_media_id_fk": { + "name": "group_blocks_image_cards_items_image_id_media_id_fk", + "tableFrom": "group_blocks_image_cards_items", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "group_blocks_image_cards_items_parent_id_fk": { + "name": "group_blocks_image_cards_items_parent_id_fk", + "tableFrom": "group_blocks_image_cards_items", + "tableTo": "group_blocks_image_cards", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.group_blocks_image_cards": { + "name": "group_blocks_image_cards", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "group_blocks_image_cards_order_idx": { + "name": "group_blocks_image_cards_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_image_cards_parent_id_idx": { + "name": "group_blocks_image_cards_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_image_cards_path_idx": { + "name": "group_blocks_image_cards_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "group_blocks_image_cards_parent_id_fk": { + "name": "group_blocks_image_cards_parent_id_fk", + "tableFrom": "group_blocks_image_cards", + "tableTo": "group", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.group_blocks_collapsibles_items": { + "name": "group_blocks_collapsibles_items", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "content": { + "name": "content", + "type": "jsonb", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "group_blocks_collapsibles_items_order_idx": { + "name": "group_blocks_collapsibles_items_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_collapsibles_items_parent_id_idx": { + "name": "group_blocks_collapsibles_items_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "group_blocks_collapsibles_items_parent_id_fk": { + "name": "group_blocks_collapsibles_items_parent_id_fk", + "tableFrom": "group_blocks_collapsibles_items", + "tableTo": "group_blocks_collapsibles", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.group_blocks_collapsibles": { + "name": "group_blocks_collapsibles", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "group_blocks_collapsibles_order_idx": { + "name": "group_blocks_collapsibles_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_collapsibles_parent_id_idx": { + "name": "group_blocks_collapsibles_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_blocks_collapsibles_path_idx": { + "name": "group_blocks_collapsibles_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "group_blocks_collapsibles_parent_id_fk": { + "name": "group_blocks_collapsibles_parent_id_fk", + "tableFrom": "group_blocks_collapsibles", + "tableTo": "group", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.group": { + "name": "group", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "photo_id": { + "name": "photo_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "name": { + "name": "name", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "slug": { + "name": "slug", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "short_description": { + "name": "short_description", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "text": { + "name": "text", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "_status": { + "name": "_status", + "type": "enum_group_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'draft'" + } + }, + "indexes": { + "group_photo_idx": { + "name": "group_photo_idx", + "columns": [ + { + "expression": "photo_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_slug_idx": { + "name": "group_slug_idx", + "columns": [ + { + "expression": "slug", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_updated_at_idx": { + "name": "group_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_created_at_idx": { + "name": "group_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group__status_idx": { + "name": "group__status_idx", + "columns": [ + { + "expression": "_status", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "group_photo_id_media_id_fk": { + "name": "group_photo_id_media_id_fk", + "tableFrom": "group", + "tableTo": "media", + "columnsFrom": [ + "photo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.group_rels": { + "name": "group_rels", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "parent_id": { + "name": "parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "path": { + "name": "path", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "pages_id": { + "name": "pages_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "group_id": { + "name": "group_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "group_rels_order_idx": { + "name": "group_rels_order_idx", + "columns": [ + { + "expression": "order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_rels_parent_idx": { + "name": "group_rels_parent_idx", + "columns": [ + { + "expression": "parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_rels_path_idx": { + "name": "group_rels_path_idx", + "columns": [ + { + "expression": "path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_rels_pages_id_idx": { + "name": "group_rels_pages_id_idx", + "columns": [ + { + "expression": "pages_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "group_rels_group_id_idx": { + "name": "group_rels_group_id_idx", + "columns": [ + { + "expression": "group_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "group_rels_parent_fk": { + "name": "group_rels_parent_fk", + "tableFrom": "group_rels", + "tableTo": "group", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "group_rels_pages_fk": { + "name": "group_rels_pages_fk", + "tableFrom": "group_rels", + "tableTo": "pages", + "columnsFrom": [ + "pages_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "group_rels_group_fk": { + "name": "group_rels_group_fk", + "tableFrom": "group_rels", + "tableTo": "group", + "columnsFrom": [ + "group_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._group_v_blocks_title": { + "name": "_group_v_blocks_title", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "subtitle": { + "name": "subtitle", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "size": { + "name": "size", + "type": "enum__group_v_blocks_title_size", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'lg'" + }, + "align": { + "name": "align", + "type": "enum__group_v_blocks_title_align", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'left'" + }, + "color": { + "name": "color", + "type": "enum__group_v_blocks_title_color", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'base'" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_group_v_blocks_title_order_idx": { + "name": "_group_v_blocks_title_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_title_parent_id_idx": { + "name": "_group_v_blocks_title_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_title_path_idx": { + "name": "_group_v_blocks_title_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_group_v_blocks_title_parent_id_fk": { + "name": "_group_v_blocks_title_parent_id_fk", + "tableFrom": "_group_v_blocks_title", + "tableTo": "_group_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._group_v_blocks_text": { + "name": "_group_v_blocks_text", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "content": { + "name": "content", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "width": { + "name": "width", + "type": "enum__group_v_blocks_text_width", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'1/2'" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_group_v_blocks_text_order_idx": { + "name": "_group_v_blocks_text_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_text_parent_id_idx": { + "name": "_group_v_blocks_text_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_text_path_idx": { + "name": "_group_v_blocks_text_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_group_v_blocks_text_parent_id_fk": { + "name": "_group_v_blocks_text_parent_id_fk", + "tableFrom": "_group_v_blocks_text", + "tableTo": "_group_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._group_v_blocks_gallery_items": { + "name": "_group_v_blocks_gallery_items", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "photo_id": { + "name": "photo_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_group_v_blocks_gallery_items_order_idx": { + "name": "_group_v_blocks_gallery_items_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_gallery_items_parent_id_idx": { + "name": "_group_v_blocks_gallery_items_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_gallery_items_photo_idx": { + "name": "_group_v_blocks_gallery_items_photo_idx", + "columns": [ + { + "expression": "photo_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_group_v_blocks_gallery_items_photo_id_media_id_fk": { + "name": "_group_v_blocks_gallery_items_photo_id_media_id_fk", + "tableFrom": "_group_v_blocks_gallery_items", + "tableTo": "media", + "columnsFrom": [ + "photo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_group_v_blocks_gallery_items_parent_id_fk": { + "name": "_group_v_blocks_gallery_items_parent_id_fk", + "tableFrom": "_group_v_blocks_gallery_items", + "tableTo": "_group_v_blocks_gallery", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._group_v_blocks_gallery": { + "name": "_group_v_blocks_gallery", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_group_v_blocks_gallery_order_idx": { + "name": "_group_v_blocks_gallery_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_gallery_parent_id_idx": { + "name": "_group_v_blocks_gallery_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_gallery_path_idx": { + "name": "_group_v_blocks_gallery_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_group_v_blocks_gallery_parent_id_fk": { + "name": "_group_v_blocks_gallery_parent_id_fk", + "tableFrom": "_group_v_blocks_gallery", + "tableTo": "_group_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._group_v_blocks_document": { + "name": "_group_v_blocks_document", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "file_id": { + "name": "file_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "button": { + "name": "button", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Download Flyer'" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_group_v_blocks_document_order_idx": { + "name": "_group_v_blocks_document_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_document_parent_id_idx": { + "name": "_group_v_blocks_document_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_document_path_idx": { + "name": "_group_v_blocks_document_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_document_file_idx": { + "name": "_group_v_blocks_document_file_idx", + "columns": [ + { + "expression": "file_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_group_v_blocks_document_file_id_documents_id_fk": { + "name": "_group_v_blocks_document_file_id_documents_id_fk", + "tableFrom": "_group_v_blocks_document", + "tableTo": "documents", + "columnsFrom": [ + "file_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_group_v_blocks_document_parent_id_fk": { + "name": "_group_v_blocks_document_parent_id_fk", + "tableFrom": "_group_v_blocks_document", + "tableTo": "_group_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._group_v_blocks_donation": { + "name": "_group_v_blocks_donation", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_group_v_blocks_donation_order_idx": { + "name": "_group_v_blocks_donation_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_donation_parent_id_idx": { + "name": "_group_v_blocks_donation_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_donation_path_idx": { + "name": "_group_v_blocks_donation_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_group_v_blocks_donation_parent_id_fk": { + "name": "_group_v_blocks_donation_parent_id_fk", + "tableFrom": "_group_v_blocks_donation", + "tableTo": "_group_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._group_v_blocks_youtube": { + "name": "_group_v_blocks_youtube", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "youtube_id": { + "name": "youtube_id", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_group_v_blocks_youtube_order_idx": { + "name": "_group_v_blocks_youtube_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_youtube_parent_id_idx": { + "name": "_group_v_blocks_youtube_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_youtube_path_idx": { + "name": "_group_v_blocks_youtube_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_group_v_blocks_youtube_parent_id_fk": { + "name": "_group_v_blocks_youtube_parent_id_fk", + "tableFrom": "_group_v_blocks_youtube", + "tableTo": "_group_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._group_v_blocks_contactform": { + "name": "_group_v_blocks_contactform", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Ich bin dabei!'" + }, + "description": { + "name": "description", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Um dich anzumelden oder uns zu unterstützen, fülle bitte das Kontaktformular aus. Wir freuen uns sehr, dass du Teil unserer Gemeinschaft bist und mit deinem Engagement dazu beiträgst, unsere Ziele zu erreichen. Solltest du Fragen haben oder weitere Informationen benötigen, zögere nicht, uns zu kontaktieren – wir sind gerne für dich da!'" + }, + "email": { + "name": "email", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'kontakt@mutter-teresa-chemnitz.de'" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_group_v_blocks_contactform_order_idx": { + "name": "_group_v_blocks_contactform_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_contactform_parent_id_idx": { + "name": "_group_v_blocks_contactform_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_contactform_path_idx": { + "name": "_group_v_blocks_contactform_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_group_v_blocks_contactform_parent_id_fk": { + "name": "_group_v_blocks_contactform_parent_id_fk", + "tableFrom": "_group_v_blocks_contactform", + "tableTo": "_group_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._group_v_blocks_button": { + "name": "_group_v_blocks_button", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "text": { + "name": "text", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "url": { + "name": "url", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_group_v_blocks_button_order_idx": { + "name": "_group_v_blocks_button_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_button_parent_id_idx": { + "name": "_group_v_blocks_button_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_button_path_idx": { + "name": "_group_v_blocks_button_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_group_v_blocks_button_parent_id_fk": { + "name": "_group_v_blocks_button_parent_id_fk", + "tableFrom": "_group_v_blocks_button", + "tableTo": "_group_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._group_v_blocks_image_cards_items": { + "name": "_group_v_blocks_image_cards_items", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "image_id": { + "name": "image_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "custom_link": { + "name": "custom_link", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_group_v_blocks_image_cards_items_order_idx": { + "name": "_group_v_blocks_image_cards_items_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_image_cards_items_parent_id_idx": { + "name": "_group_v_blocks_image_cards_items_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_image_cards_items_image_idx": { + "name": "_group_v_blocks_image_cards_items_image_idx", + "columns": [ + { + "expression": "image_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_group_v_blocks_image_cards_items_image_id_media_id_fk": { + "name": "_group_v_blocks_image_cards_items_image_id_media_id_fk", + "tableFrom": "_group_v_blocks_image_cards_items", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_group_v_blocks_image_cards_items_parent_id_fk": { + "name": "_group_v_blocks_image_cards_items_parent_id_fk", + "tableFrom": "_group_v_blocks_image_cards_items", + "tableTo": "_group_v_blocks_image_cards", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._group_v_blocks_image_cards": { + "name": "_group_v_blocks_image_cards", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_group_v_blocks_image_cards_order_idx": { + "name": "_group_v_blocks_image_cards_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_image_cards_parent_id_idx": { + "name": "_group_v_blocks_image_cards_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_image_cards_path_idx": { + "name": "_group_v_blocks_image_cards_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_group_v_blocks_image_cards_parent_id_fk": { + "name": "_group_v_blocks_image_cards_parent_id_fk", + "tableFrom": "_group_v_blocks_image_cards", + "tableTo": "_group_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._group_v_blocks_collapsibles_items": { + "name": "_group_v_blocks_collapsibles_items", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "content": { + "name": "content", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_group_v_blocks_collapsibles_items_order_idx": { + "name": "_group_v_blocks_collapsibles_items_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_collapsibles_items_parent_id_idx": { + "name": "_group_v_blocks_collapsibles_items_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_group_v_blocks_collapsibles_items_parent_id_fk": { + "name": "_group_v_blocks_collapsibles_items_parent_id_fk", + "tableFrom": "_group_v_blocks_collapsibles_items", + "tableTo": "_group_v_blocks_collapsibles", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._group_v_blocks_collapsibles": { + "name": "_group_v_blocks_collapsibles", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_group_v_blocks_collapsibles_order_idx": { + "name": "_group_v_blocks_collapsibles_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_collapsibles_parent_id_idx": { + "name": "_group_v_blocks_collapsibles_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_blocks_collapsibles_path_idx": { + "name": "_group_v_blocks_collapsibles_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_group_v_blocks_collapsibles_parent_id_fk": { + "name": "_group_v_blocks_collapsibles_parent_id_fk", + "tableFrom": "_group_v_blocks_collapsibles", + "tableTo": "_group_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._group_v": { + "name": "_group_v", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "parent_id": { + "name": "parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "version_photo_id": { + "name": "version_photo_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "version_name": { + "name": "version_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "version_slug": { + "name": "version_slug", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "version_short_description": { + "name": "version_short_description", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "version_text": { + "name": "version_text", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "version_updated_at": { + "name": "version_updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "version_created_at": { + "name": "version_created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "version__status": { + "name": "version__status", + "type": "enum__group_v_version_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'draft'" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "latest": { + "name": "latest", + "type": "boolean", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_group_v_parent_idx": { + "name": "_group_v_parent_idx", + "columns": [ + { + "expression": "parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_version_version_photo_idx": { + "name": "_group_v_version_version_photo_idx", + "columns": [ + { + "expression": "version_photo_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_version_version_slug_idx": { + "name": "_group_v_version_version_slug_idx", + "columns": [ + { + "expression": "version_slug", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_version_version_updated_at_idx": { + "name": "_group_v_version_version_updated_at_idx", + "columns": [ + { + "expression": "version_updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_version_version_created_at_idx": { + "name": "_group_v_version_version_created_at_idx", + "columns": [ + { + "expression": "version_created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_version_version__status_idx": { + "name": "_group_v_version_version__status_idx", + "columns": [ + { + "expression": "version__status", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_created_at_idx": { + "name": "_group_v_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_updated_at_idx": { + "name": "_group_v_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_latest_idx": { + "name": "_group_v_latest_idx", + "columns": [ + { + "expression": "latest", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_group_v_parent_id_group_id_fk": { + "name": "_group_v_parent_id_group_id_fk", + "tableFrom": "_group_v", + "tableTo": "group", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_group_v_version_photo_id_media_id_fk": { + "name": "_group_v_version_photo_id_media_id_fk", + "tableFrom": "_group_v", + "tableTo": "media", + "columnsFrom": [ + "version_photo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._group_v_rels": { + "name": "_group_v_rels", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "parent_id": { + "name": "parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "path": { + "name": "path", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "pages_id": { + "name": "pages_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "group_id": { + "name": "group_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_group_v_rels_order_idx": { + "name": "_group_v_rels_order_idx", + "columns": [ + { + "expression": "order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_rels_parent_idx": { + "name": "_group_v_rels_parent_idx", + "columns": [ + { + "expression": "parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_rels_path_idx": { + "name": "_group_v_rels_path_idx", + "columns": [ + { + "expression": "path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_rels_pages_id_idx": { + "name": "_group_v_rels_pages_id_idx", + "columns": [ + { + "expression": "pages_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_group_v_rels_group_id_idx": { + "name": "_group_v_rels_group_id_idx", + "columns": [ + { + "expression": "group_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_group_v_rels_parent_fk": { + "name": "_group_v_rels_parent_fk", + "tableFrom": "_group_v_rels", + "tableTo": "_group_v", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_group_v_rels_pages_fk": { + "name": "_group_v_rels_pages_fk", + "tableFrom": "_group_v_rels", + "tableTo": "pages", + "columnsFrom": [ + "pages_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_group_v_rels_group_fk": { + "name": "_group_v_rels_group_fk", + "tableFrom": "_group_v_rels", + "tableTo": "group", + "columnsFrom": [ + "group_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.donation_form": { + "name": "donation_form", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "photo_id": { + "name": "photo_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "text": { + "name": "text", + "type": "jsonb", + "primaryKey": false, + "notNull": true + }, + "url": { + "name": "url", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "donation_form_photo_idx": { + "name": "donation_form_photo_idx", + "columns": [ + { + "expression": "photo_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "donation_form_updated_at_idx": { + "name": "donation_form_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "donation_form_created_at_idx": { + "name": "donation_form_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "donation_form_photo_id_media_id_fk": { + "name": "donation_form_photo_id_media_id_fk", + "tableFrom": "donation_form", + "tableTo": "media", + "columnsFrom": [ + "photo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_page_header": { + "name": "pages_blocks_page_header", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "description": { + "name": "description", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "image_id": { + "name": "image_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_page_header_order_idx": { + "name": "pages_blocks_page_header_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_page_header_parent_id_idx": { + "name": "pages_blocks_page_header_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_page_header_path_idx": { + "name": "pages_blocks_page_header_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_page_header_image_idx": { + "name": "pages_blocks_page_header_image_idx", + "columns": [ + { + "expression": "image_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_page_header_image_id_media_id_fk": { + "name": "pages_blocks_page_header_image_id_media_id_fk", + "tableFrom": "pages_blocks_page_header", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_blocks_page_header_parent_id_fk": { + "name": "pages_blocks_page_header_parent_id_fk", + "tableFrom": "pages_blocks_page_header", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_text": { + "name": "pages_blocks_text", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "content": { + "name": "content", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "width": { + "name": "width", + "type": "enum_pages_blocks_text_width", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'1/2'" + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_text_order_idx": { + "name": "pages_blocks_text_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_text_parent_id_idx": { + "name": "pages_blocks_text_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_text_path_idx": { + "name": "pages_blocks_text_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_text_parent_id_fk": { + "name": "pages_blocks_text_parent_id_fk", + "tableFrom": "pages_blocks_text", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_title": { + "name": "pages_blocks_title", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "subtitle": { + "name": "subtitle", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "size": { + "name": "size", + "type": "enum_pages_blocks_title_size", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'lg'" + }, + "align": { + "name": "align", + "type": "enum_pages_blocks_title_align", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'left'" + }, + "color": { + "name": "color", + "type": "enum_pages_blocks_title_color", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'base'" + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_title_order_idx": { + "name": "pages_blocks_title_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_title_parent_id_idx": { + "name": "pages_blocks_title_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_title_path_idx": { + "name": "pages_blocks_title_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_title_parent_id_fk": { + "name": "pages_blocks_title_parent_id_fk", + "tableFrom": "pages_blocks_title", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_section": { + "name": "pages_blocks_section", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "background_color": { + "name": "background_color", + "type": "enum_pages_blocks_section_background_color", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'none'" + }, + "padding": { + "name": "padding", + "type": "enum_pages_blocks_section_padding", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'large'" + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_section_order_idx": { + "name": "pages_blocks_section_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_section_parent_id_idx": { + "name": "pages_blocks_section_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_section_path_idx": { + "name": "pages_blocks_section_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_section_parent_id_fk": { + "name": "pages_blocks_section_parent_id_fk", + "tableFrom": "pages_blocks_section", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_gallery_items": { + "name": "pages_blocks_gallery_items", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "photo_id": { + "name": "photo_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_gallery_items_order_idx": { + "name": "pages_blocks_gallery_items_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_gallery_items_parent_id_idx": { + "name": "pages_blocks_gallery_items_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_gallery_items_photo_idx": { + "name": "pages_blocks_gallery_items_photo_idx", + "columns": [ + { + "expression": "photo_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_gallery_items_photo_id_media_id_fk": { + "name": "pages_blocks_gallery_items_photo_id_media_id_fk", + "tableFrom": "pages_blocks_gallery_items", + "tableTo": "media", + "columnsFrom": [ + "photo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_blocks_gallery_items_parent_id_fk": { + "name": "pages_blocks_gallery_items_parent_id_fk", + "tableFrom": "pages_blocks_gallery_items", + "tableTo": "pages_blocks_gallery", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_gallery": { + "name": "pages_blocks_gallery", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_gallery_order_idx": { + "name": "pages_blocks_gallery_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_gallery_parent_id_idx": { + "name": "pages_blocks_gallery_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_gallery_path_idx": { + "name": "pages_blocks_gallery_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_gallery_parent_id_fk": { + "name": "pages_blocks_gallery_parent_id_fk", + "tableFrom": "pages_blocks_gallery", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_document": { + "name": "pages_blocks_document", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "file_id": { + "name": "file_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "button": { + "name": "button", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Download Flyer'" + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_document_order_idx": { + "name": "pages_blocks_document_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_document_parent_id_idx": { + "name": "pages_blocks_document_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_document_path_idx": { + "name": "pages_blocks_document_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_document_file_idx": { + "name": "pages_blocks_document_file_idx", + "columns": [ + { + "expression": "file_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_document_file_id_documents_id_fk": { + "name": "pages_blocks_document_file_id_documents_id_fk", + "tableFrom": "pages_blocks_document", + "tableTo": "documents", + "columnsFrom": [ + "file_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_blocks_document_parent_id_fk": { + "name": "pages_blocks_document_parent_id_fk", + "tableFrom": "pages_blocks_document", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_youtube": { + "name": "pages_blocks_youtube", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "youtube_id": { + "name": "youtube_id", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_youtube_order_idx": { + "name": "pages_blocks_youtube_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_youtube_parent_id_idx": { + "name": "pages_blocks_youtube_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_youtube_path_idx": { + "name": "pages_blocks_youtube_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_youtube_parent_id_fk": { + "name": "pages_blocks_youtube_parent_id_fk", + "tableFrom": "pages_blocks_youtube", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_button": { + "name": "pages_blocks_button", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "text": { + "name": "text", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "url": { + "name": "url", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_button_order_idx": { + "name": "pages_blocks_button_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_button_parent_id_idx": { + "name": "pages_blocks_button_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_button_path_idx": { + "name": "pages_blocks_button_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_button_parent_id_fk": { + "name": "pages_blocks_button_parent_id_fk", + "tableFrom": "pages_blocks_button", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_contactform": { + "name": "pages_blocks_contactform", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Ich bin dabei!'" + }, + "description": { + "name": "description", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Um dich anzumelden oder uns zu unterstützen, fülle bitte das Kontaktformular aus. Wir freuen uns sehr, dass du Teil unserer Gemeinschaft bist und mit deinem Engagement dazu beiträgst, unsere Ziele zu erreichen. Solltest du Fragen haben oder weitere Informationen benötigen, zögere nicht, uns zu kontaktieren – wir sind gerne für dich da!'" + }, + "email": { + "name": "email", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'kontakt@mutter-teresa-chemnitz.de'" + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_contactform_order_idx": { + "name": "pages_blocks_contactform_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_contactform_parent_id_idx": { + "name": "pages_blocks_contactform_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_contactform_path_idx": { + "name": "pages_blocks_contactform_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_contactform_parent_id_fk": { + "name": "pages_blocks_contactform_parent_id_fk", + "tableFrom": "pages_blocks_contactform", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_donation": { + "name": "pages_blocks_donation", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_donation_order_idx": { + "name": "pages_blocks_donation_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_donation_parent_id_idx": { + "name": "pages_blocks_donation_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_donation_path_idx": { + "name": "pages_blocks_donation_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_donation_parent_id_fk": { + "name": "pages_blocks_donation_parent_id_fk", + "tableFrom": "pages_blocks_donation", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_banner": { + "name": "pages_blocks_banner", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "text_line1": { + "name": "text_line1", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "text_line2": { + "name": "text_line2", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "text_line3": { + "name": "text_line3", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "background_color": { + "name": "background_color", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "background_image_id": { + "name": "background_image_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "background_position": { + "name": "background_position", + "type": "enum_pages_blocks_banner_background_position", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'center center'" + }, + "background_size": { + "name": "background_size", + "type": "enum_pages_blocks_banner_background_size", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'cover'" + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_banner_order_idx": { + "name": "pages_blocks_banner_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_banner_parent_id_idx": { + "name": "pages_blocks_banner_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_banner_path_idx": { + "name": "pages_blocks_banner_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_banner_background_image_idx": { + "name": "pages_blocks_banner_background_image_idx", + "columns": [ + { + "expression": "background_image_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_banner_background_image_id_media_id_fk": { + "name": "pages_blocks_banner_background_image_id_media_id_fk", + "tableFrom": "pages_blocks_banner", + "tableTo": "media", + "columnsFrom": [ + "background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_blocks_banner_parent_id_fk": { + "name": "pages_blocks_banner_parent_id_fk", + "tableFrom": "pages_blocks_banner", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_main_text": { + "name": "pages_blocks_main_text", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "text": { + "name": "text", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Jesus sagte zu ihm: Ich bin der Weg und die Wahrheit und das Leben; niemand kommt zum Vater außer durch mich. Wenn ihr mich erkannt habt, werdet ihr auch meinen Vater erkennen.'" + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_main_text_order_idx": { + "name": "pages_blocks_main_text_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_main_text_parent_id_idx": { + "name": "pages_blocks_main_text_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_main_text_path_idx": { + "name": "pages_blocks_main_text_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_main_text_parent_id_fk": { + "name": "pages_blocks_main_text_parent_id_fk", + "tableFrom": "pages_blocks_main_text", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_horizontal_rule": { + "name": "pages_blocks_horizontal_rule", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "color": { + "name": "color", + "type": "enum_pages_blocks_horizontal_rule_color", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'base'" + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_horizontal_rule_order_idx": { + "name": "pages_blocks_horizontal_rule_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_horizontal_rule_parent_id_idx": { + "name": "pages_blocks_horizontal_rule_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_horizontal_rule_path_idx": { + "name": "pages_blocks_horizontal_rule_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_horizontal_rule_parent_id_fk": { + "name": "pages_blocks_horizontal_rule_parent_id_fk", + "tableFrom": "pages_blocks_horizontal_rule", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_blog_slider": { + "name": "pages_blocks_blog_slider", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Aktuelles'" + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_blog_slider_order_idx": { + "name": "pages_blocks_blog_slider_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_blog_slider_parent_id_idx": { + "name": "pages_blocks_blog_slider_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_blog_slider_path_idx": { + "name": "pages_blocks_blog_slider_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_blog_slider_parent_id_fk": { + "name": "pages_blocks_blog_slider_parent_id_fk", + "tableFrom": "pages_blocks_blog_slider", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.collaps": { + "name": "collaps", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "text": { + "name": "text", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "image_id": { + "name": "image_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "content": { + "name": "content", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "color_style": { + "name": "color_style", + "type": "enum_collaps_color_style", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'default'" + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "collaps_order_idx": { + "name": "collaps_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "collaps_parent_id_idx": { + "name": "collaps_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "collaps_path_idx": { + "name": "collaps_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "collaps_image_idx": { + "name": "collaps_image_idx", + "columns": [ + { + "expression": "image_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "collaps_image_id_media_id_fk": { + "name": "collaps_image_id_media_id_fk", + "tableFrom": "collaps", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "collaps_parent_id_fk": { + "name": "collaps_parent_id_fk", + "tableFrom": "collaps", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.collaps_map": { + "name": "collaps_map", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "text": { + "name": "text", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "content": { + "name": "content", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "background_color": { + "name": "background_color", + "type": "enum_collaps_map_background_color", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'default'" + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "collaps_map_order_idx": { + "name": "collaps_map_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "collaps_map_parent_id_idx": { + "name": "collaps_map_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "collaps_map_path_idx": { + "name": "collaps_map_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "collaps_map_parent_id_fk": { + "name": "collaps_map_parent_id_fk", + "tableFrom": "collaps_map", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_collapsibles_items": { + "name": "pages_blocks_collapsibles_items", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "content": { + "name": "content", + "type": "jsonb", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_collapsibles_items_order_idx": { + "name": "pages_blocks_collapsibles_items_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_collapsibles_items_parent_id_idx": { + "name": "pages_blocks_collapsibles_items_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_collapsibles_items_parent_id_fk": { + "name": "pages_blocks_collapsibles_items_parent_id_fk", + "tableFrom": "pages_blocks_collapsibles_items", + "tableTo": "pages_blocks_collapsibles", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_collapsibles": { + "name": "pages_blocks_collapsibles", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_collapsibles_order_idx": { + "name": "pages_blocks_collapsibles_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_collapsibles_parent_id_idx": { + "name": "pages_blocks_collapsibles_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_collapsibles_path_idx": { + "name": "pages_blocks_collapsibles_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_collapsibles_parent_id_fk": { + "name": "pages_blocks_collapsibles_parent_id_fk", + "tableFrom": "pages_blocks_collapsibles", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_mass_times": { + "name": "pages_blocks_mass_times", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Nächste Gottesdienste'" + }, + "subtitle": { + "name": "subtitle", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_mass_times_order_idx": { + "name": "pages_blocks_mass_times_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_mass_times_parent_id_idx": { + "name": "pages_blocks_mass_times_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_mass_times_path_idx": { + "name": "pages_blocks_mass_times_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_mass_times_parent_id_fk": { + "name": "pages_blocks_mass_times_parent_id_fk", + "tableFrom": "pages_blocks_mass_times", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_events": { + "name": "pages_blocks_events", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Veranstaltungen'" + }, + "items_per_page": { + "name": "items_per_page", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "default": 6 + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_events_order_idx": { + "name": "pages_blocks_events_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_events_parent_id_idx": { + "name": "pages_blocks_events_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_events_path_idx": { + "name": "pages_blocks_events_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_events_parent_id_fk": { + "name": "pages_blocks_events_parent_id_fk", + "tableFrom": "pages_blocks_events", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_contact_person_block": { + "name": "pages_blocks_contact_person_block", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "contact_id": { + "name": "contact_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_contact_person_block_order_idx": { + "name": "pages_blocks_contact_person_block_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_contact_person_block_parent_id_idx": { + "name": "pages_blocks_contact_person_block_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_contact_person_block_path_idx": { + "name": "pages_blocks_contact_person_block_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_contact_person_block_contact_idx": { + "name": "pages_blocks_contact_person_block_contact_idx", + "columns": [ + { + "expression": "contact_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_contact_person_block_contact_id_contact_person_id_fk": { + "name": "pages_blocks_contact_person_block_contact_id_contact_person_id_fk", + "tableFrom": "pages_blocks_contact_person_block", + "tableTo": "contact_person", + "columnsFrom": [ + "contact_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_blocks_contact_person_block_parent_id_fk": { + "name": "pages_blocks_contact_person_block_parent_id_fk", + "tableFrom": "pages_blocks_contact_person_block", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_image_cards_items": { + "name": "pages_blocks_image_cards_items", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "image_id": { + "name": "image_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "custom_link": { + "name": "custom_link", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_image_cards_items_order_idx": { + "name": "pages_blocks_image_cards_items_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_image_cards_items_parent_id_idx": { + "name": "pages_blocks_image_cards_items_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_image_cards_items_image_idx": { + "name": "pages_blocks_image_cards_items_image_idx", + "columns": [ + { + "expression": "image_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_image_cards_items_image_id_media_id_fk": { + "name": "pages_blocks_image_cards_items_image_id_media_id_fk", + "tableFrom": "pages_blocks_image_cards_items", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pages_blocks_image_cards_items_parent_id_fk": { + "name": "pages_blocks_image_cards_items_parent_id_fk", + "tableFrom": "pages_blocks_image_cards_items", + "tableTo": "pages_blocks_image_cards", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_image_cards": { + "name": "pages_blocks_image_cards", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_image_cards_order_idx": { + "name": "pages_blocks_image_cards_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_image_cards_parent_id_idx": { + "name": "pages_blocks_image_cards_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_image_cards_path_idx": { + "name": "pages_blocks_image_cards_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_image_cards_parent_id_fk": { + "name": "pages_blocks_image_cards_parent_id_fk", + "tableFrom": "pages_blocks_image_cards", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_classifieds": { + "name": "pages_blocks_classifieds", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_classifieds_order_idx": { + "name": "pages_blocks_classifieds_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_classifieds_parent_id_idx": { + "name": "pages_blocks_classifieds_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_classifieds_path_idx": { + "name": "pages_blocks_classifieds_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_classifieds_parent_id_fk": { + "name": "pages_blocks_classifieds_parent_id_fk", + "tableFrom": "pages_blocks_classifieds", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_blocks_next_prev_buttons": { + "name": "pages_blocks_next_prev_buttons", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "prev_text": { + "name": "prev_text", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "prev_href": { + "name": "prev_href", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "next_text": { + "name": "next_text", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "next_href": { + "name": "next_href", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_blocks_next_prev_buttons_order_idx": { + "name": "pages_blocks_next_prev_buttons_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_next_prev_buttons_parent_id_idx": { + "name": "pages_blocks_next_prev_buttons_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_blocks_next_prev_buttons_path_idx": { + "name": "pages_blocks_next_prev_buttons_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_blocks_next_prev_buttons_parent_id_fk": { + "name": "pages_blocks_next_prev_buttons_parent_id_fk", + "tableFrom": "pages_blocks_next_prev_buttons", + "tableTo": "pages", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages": { + "name": "pages", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "description": { + "name": "description", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "slug": { + "name": "slug", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "''" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "_status": { + "name": "_status", + "type": "enum_pages_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'draft'" + } + }, + "indexes": { + "pages_slug_idx": { + "name": "pages_slug_idx", + "columns": [ + { + "expression": "slug", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_updated_at_idx": { + "name": "pages_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_created_at_idx": { + "name": "pages_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages__status_idx": { + "name": "pages__status_idx", + "columns": [ + { + "expression": "_status", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pages_rels": { + "name": "pages_rels", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "parent_id": { + "name": "parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "path": { + "name": "path", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "church_id": { + "name": "church_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "pages_id": { + "name": "pages_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "group_id": { + "name": "group_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "pages_rels_order_idx": { + "name": "pages_rels_order_idx", + "columns": [ + { + "expression": "order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_rels_parent_idx": { + "name": "pages_rels_parent_idx", + "columns": [ + { + "expression": "parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_rels_path_idx": { + "name": "pages_rels_path_idx", + "columns": [ + { + "expression": "path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_rels_church_id_idx": { + "name": "pages_rels_church_id_idx", + "columns": [ + { + "expression": "church_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_rels_pages_id_idx": { + "name": "pages_rels_pages_id_idx", + "columns": [ + { + "expression": "pages_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "pages_rels_group_id_idx": { + "name": "pages_rels_group_id_idx", + "columns": [ + { + "expression": "group_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "pages_rels_parent_fk": { + "name": "pages_rels_parent_fk", + "tableFrom": "pages_rels", + "tableTo": "pages", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "pages_rels_church_fk": { + "name": "pages_rels_church_fk", + "tableFrom": "pages_rels", + "tableTo": "church", + "columnsFrom": [ + "church_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "pages_rels_pages_fk": { + "name": "pages_rels_pages_fk", + "tableFrom": "pages_rels", + "tableTo": "pages", + "columnsFrom": [ + "pages_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "pages_rels_group_fk": { + "name": "pages_rels_group_fk", + "tableFrom": "pages_rels", + "tableTo": "group", + "columnsFrom": [ + "group_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_page_header": { + "name": "_pages_v_blocks_page_header", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "description": { + "name": "description", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "image_id": { + "name": "image_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_page_header_order_idx": { + "name": "_pages_v_blocks_page_header_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_page_header_parent_id_idx": { + "name": "_pages_v_blocks_page_header_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_page_header_path_idx": { + "name": "_pages_v_blocks_page_header_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_page_header_image_idx": { + "name": "_pages_v_blocks_page_header_image_idx", + "columns": [ + { + "expression": "image_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_page_header_image_id_media_id_fk": { + "name": "_pages_v_blocks_page_header_image_id_media_id_fk", + "tableFrom": "_pages_v_blocks_page_header", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_blocks_page_header_parent_id_fk": { + "name": "_pages_v_blocks_page_header_parent_id_fk", + "tableFrom": "_pages_v_blocks_page_header", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_text": { + "name": "_pages_v_blocks_text", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "content": { + "name": "content", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "width": { + "name": "width", + "type": "enum__pages_v_blocks_text_width", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'1/2'" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_text_order_idx": { + "name": "_pages_v_blocks_text_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_text_parent_id_idx": { + "name": "_pages_v_blocks_text_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_text_path_idx": { + "name": "_pages_v_blocks_text_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_text_parent_id_fk": { + "name": "_pages_v_blocks_text_parent_id_fk", + "tableFrom": "_pages_v_blocks_text", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_title": { + "name": "_pages_v_blocks_title", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "subtitle": { + "name": "subtitle", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "size": { + "name": "size", + "type": "enum__pages_v_blocks_title_size", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'lg'" + }, + "align": { + "name": "align", + "type": "enum__pages_v_blocks_title_align", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'left'" + }, + "color": { + "name": "color", + "type": "enum__pages_v_blocks_title_color", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'base'" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_title_order_idx": { + "name": "_pages_v_blocks_title_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_title_parent_id_idx": { + "name": "_pages_v_blocks_title_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_title_path_idx": { + "name": "_pages_v_blocks_title_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_title_parent_id_fk": { + "name": "_pages_v_blocks_title_parent_id_fk", + "tableFrom": "_pages_v_blocks_title", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_section": { + "name": "_pages_v_blocks_section", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "background_color": { + "name": "background_color", + "type": "enum__pages_v_blocks_section_background_color", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'none'" + }, + "padding": { + "name": "padding", + "type": "enum__pages_v_blocks_section_padding", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'large'" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_section_order_idx": { + "name": "_pages_v_blocks_section_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_section_parent_id_idx": { + "name": "_pages_v_blocks_section_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_section_path_idx": { + "name": "_pages_v_blocks_section_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_section_parent_id_fk": { + "name": "_pages_v_blocks_section_parent_id_fk", + "tableFrom": "_pages_v_blocks_section", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_gallery_items": { + "name": "_pages_v_blocks_gallery_items", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "photo_id": { + "name": "photo_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_gallery_items_order_idx": { + "name": "_pages_v_blocks_gallery_items_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_gallery_items_parent_id_idx": { + "name": "_pages_v_blocks_gallery_items_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_gallery_items_photo_idx": { + "name": "_pages_v_blocks_gallery_items_photo_idx", + "columns": [ + { + "expression": "photo_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_gallery_items_photo_id_media_id_fk": { + "name": "_pages_v_blocks_gallery_items_photo_id_media_id_fk", + "tableFrom": "_pages_v_blocks_gallery_items", + "tableTo": "media", + "columnsFrom": [ + "photo_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_blocks_gallery_items_parent_id_fk": { + "name": "_pages_v_blocks_gallery_items_parent_id_fk", + "tableFrom": "_pages_v_blocks_gallery_items", + "tableTo": "_pages_v_blocks_gallery", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_gallery": { + "name": "_pages_v_blocks_gallery", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_gallery_order_idx": { + "name": "_pages_v_blocks_gallery_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_gallery_parent_id_idx": { + "name": "_pages_v_blocks_gallery_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_gallery_path_idx": { + "name": "_pages_v_blocks_gallery_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_gallery_parent_id_fk": { + "name": "_pages_v_blocks_gallery_parent_id_fk", + "tableFrom": "_pages_v_blocks_gallery", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_document": { + "name": "_pages_v_blocks_document", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "file_id": { + "name": "file_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "button": { + "name": "button", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Download Flyer'" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_document_order_idx": { + "name": "_pages_v_blocks_document_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_document_parent_id_idx": { + "name": "_pages_v_blocks_document_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_document_path_idx": { + "name": "_pages_v_blocks_document_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_document_file_idx": { + "name": "_pages_v_blocks_document_file_idx", + "columns": [ + { + "expression": "file_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_document_file_id_documents_id_fk": { + "name": "_pages_v_blocks_document_file_id_documents_id_fk", + "tableFrom": "_pages_v_blocks_document", + "tableTo": "documents", + "columnsFrom": [ + "file_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_blocks_document_parent_id_fk": { + "name": "_pages_v_blocks_document_parent_id_fk", + "tableFrom": "_pages_v_blocks_document", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_youtube": { + "name": "_pages_v_blocks_youtube", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "youtube_id": { + "name": "youtube_id", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_youtube_order_idx": { + "name": "_pages_v_blocks_youtube_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_youtube_parent_id_idx": { + "name": "_pages_v_blocks_youtube_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_youtube_path_idx": { + "name": "_pages_v_blocks_youtube_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_youtube_parent_id_fk": { + "name": "_pages_v_blocks_youtube_parent_id_fk", + "tableFrom": "_pages_v_blocks_youtube", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_button": { + "name": "_pages_v_blocks_button", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "text": { + "name": "text", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "url": { + "name": "url", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_button_order_idx": { + "name": "_pages_v_blocks_button_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_button_parent_id_idx": { + "name": "_pages_v_blocks_button_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_button_path_idx": { + "name": "_pages_v_blocks_button_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_button_parent_id_fk": { + "name": "_pages_v_blocks_button_parent_id_fk", + "tableFrom": "_pages_v_blocks_button", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_contactform": { + "name": "_pages_v_blocks_contactform", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Ich bin dabei!'" + }, + "description": { + "name": "description", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Um dich anzumelden oder uns zu unterstützen, fülle bitte das Kontaktformular aus. Wir freuen uns sehr, dass du Teil unserer Gemeinschaft bist und mit deinem Engagement dazu beiträgst, unsere Ziele zu erreichen. Solltest du Fragen haben oder weitere Informationen benötigen, zögere nicht, uns zu kontaktieren – wir sind gerne für dich da!'" + }, + "email": { + "name": "email", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'kontakt@mutter-teresa-chemnitz.de'" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_contactform_order_idx": { + "name": "_pages_v_blocks_contactform_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_contactform_parent_id_idx": { + "name": "_pages_v_blocks_contactform_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_contactform_path_idx": { + "name": "_pages_v_blocks_contactform_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_contactform_parent_id_fk": { + "name": "_pages_v_blocks_contactform_parent_id_fk", + "tableFrom": "_pages_v_blocks_contactform", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_donation": { + "name": "_pages_v_blocks_donation", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_donation_order_idx": { + "name": "_pages_v_blocks_donation_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_donation_parent_id_idx": { + "name": "_pages_v_blocks_donation_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_donation_path_idx": { + "name": "_pages_v_blocks_donation_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_donation_parent_id_fk": { + "name": "_pages_v_blocks_donation_parent_id_fk", + "tableFrom": "_pages_v_blocks_donation", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_banner": { + "name": "_pages_v_blocks_banner", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "text_line1": { + "name": "text_line1", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "text_line2": { + "name": "text_line2", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "text_line3": { + "name": "text_line3", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "background_color": { + "name": "background_color", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "background_image_id": { + "name": "background_image_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "background_position": { + "name": "background_position", + "type": "enum__pages_v_blocks_banner_background_position", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'center center'" + }, + "background_size": { + "name": "background_size", + "type": "enum__pages_v_blocks_banner_background_size", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'cover'" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_banner_order_idx": { + "name": "_pages_v_blocks_banner_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_banner_parent_id_idx": { + "name": "_pages_v_blocks_banner_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_banner_path_idx": { + "name": "_pages_v_blocks_banner_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_banner_background_image_idx": { + "name": "_pages_v_blocks_banner_background_image_idx", + "columns": [ + { + "expression": "background_image_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_banner_background_image_id_media_id_fk": { + "name": "_pages_v_blocks_banner_background_image_id_media_id_fk", + "tableFrom": "_pages_v_blocks_banner", + "tableTo": "media", + "columnsFrom": [ + "background_image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_blocks_banner_parent_id_fk": { + "name": "_pages_v_blocks_banner_parent_id_fk", + "tableFrom": "_pages_v_blocks_banner", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_main_text": { + "name": "_pages_v_blocks_main_text", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "text": { + "name": "text", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Jesus sagte zu ihm: Ich bin der Weg und die Wahrheit und das Leben; niemand kommt zum Vater außer durch mich. Wenn ihr mich erkannt habt, werdet ihr auch meinen Vater erkennen.'" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_main_text_order_idx": { + "name": "_pages_v_blocks_main_text_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_main_text_parent_id_idx": { + "name": "_pages_v_blocks_main_text_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_main_text_path_idx": { + "name": "_pages_v_blocks_main_text_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_main_text_parent_id_fk": { + "name": "_pages_v_blocks_main_text_parent_id_fk", + "tableFrom": "_pages_v_blocks_main_text", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_horizontal_rule": { + "name": "_pages_v_blocks_horizontal_rule", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "color": { + "name": "color", + "type": "enum__pages_v_blocks_horizontal_rule_color", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'base'" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_horizontal_rule_order_idx": { + "name": "_pages_v_blocks_horizontal_rule_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_horizontal_rule_parent_id_idx": { + "name": "_pages_v_blocks_horizontal_rule_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_horizontal_rule_path_idx": { + "name": "_pages_v_blocks_horizontal_rule_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_horizontal_rule_parent_id_fk": { + "name": "_pages_v_blocks_horizontal_rule_parent_id_fk", + "tableFrom": "_pages_v_blocks_horizontal_rule", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_blog_slider": { + "name": "_pages_v_blocks_blog_slider", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Aktuelles'" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_blog_slider_order_idx": { + "name": "_pages_v_blocks_blog_slider_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_blog_slider_parent_id_idx": { + "name": "_pages_v_blocks_blog_slider_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_blog_slider_path_idx": { + "name": "_pages_v_blocks_blog_slider_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_blog_slider_parent_id_fk": { + "name": "_pages_v_blocks_blog_slider_parent_id_fk", + "tableFrom": "_pages_v_blocks_blog_slider", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._collaps_v": { + "name": "_collaps_v", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "text": { + "name": "text", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "image_id": { + "name": "image_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "content": { + "name": "content", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "color_style": { + "name": "color_style", + "type": "enum__collaps_v_color_style", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'default'" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_collaps_v_order_idx": { + "name": "_collaps_v_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_collaps_v_parent_id_idx": { + "name": "_collaps_v_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_collaps_v_path_idx": { + "name": "_collaps_v_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_collaps_v_image_idx": { + "name": "_collaps_v_image_idx", + "columns": [ + { + "expression": "image_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_collaps_v_image_id_media_id_fk": { + "name": "_collaps_v_image_id_media_id_fk", + "tableFrom": "_collaps_v", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_collaps_v_parent_id_fk": { + "name": "_collaps_v_parent_id_fk", + "tableFrom": "_collaps_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._collaps_map_v": { + "name": "_collaps_map_v", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "text": { + "name": "text", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "content": { + "name": "content", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "background_color": { + "name": "background_color", + "type": "enum__collaps_map_v_background_color", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'default'" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_collaps_map_v_order_idx": { + "name": "_collaps_map_v_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_collaps_map_v_parent_id_idx": { + "name": "_collaps_map_v_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_collaps_map_v_path_idx": { + "name": "_collaps_map_v_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_collaps_map_v_parent_id_fk": { + "name": "_collaps_map_v_parent_id_fk", + "tableFrom": "_collaps_map_v", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_collapsibles_items": { + "name": "_pages_v_blocks_collapsibles_items", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "content": { + "name": "content", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_collapsibles_items_order_idx": { + "name": "_pages_v_blocks_collapsibles_items_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_collapsibles_items_parent_id_idx": { + "name": "_pages_v_blocks_collapsibles_items_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_collapsibles_items_parent_id_fk": { + "name": "_pages_v_blocks_collapsibles_items_parent_id_fk", + "tableFrom": "_pages_v_blocks_collapsibles_items", + "tableTo": "_pages_v_blocks_collapsibles", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_collapsibles": { + "name": "_pages_v_blocks_collapsibles", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_collapsibles_order_idx": { + "name": "_pages_v_blocks_collapsibles_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_collapsibles_parent_id_idx": { + "name": "_pages_v_blocks_collapsibles_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_collapsibles_path_idx": { + "name": "_pages_v_blocks_collapsibles_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_collapsibles_parent_id_fk": { + "name": "_pages_v_blocks_collapsibles_parent_id_fk", + "tableFrom": "_pages_v_blocks_collapsibles", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_mass_times": { + "name": "_pages_v_blocks_mass_times", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Nächste Gottesdienste'" + }, + "subtitle": { + "name": "subtitle", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_mass_times_order_idx": { + "name": "_pages_v_blocks_mass_times_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_mass_times_parent_id_idx": { + "name": "_pages_v_blocks_mass_times_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_mass_times_path_idx": { + "name": "_pages_v_blocks_mass_times_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_mass_times_parent_id_fk": { + "name": "_pages_v_blocks_mass_times_parent_id_fk", + "tableFrom": "_pages_v_blocks_mass_times", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_events": { + "name": "_pages_v_blocks_events", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'Veranstaltungen'" + }, + "items_per_page": { + "name": "items_per_page", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "default": 6 + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_events_order_idx": { + "name": "_pages_v_blocks_events_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_events_parent_id_idx": { + "name": "_pages_v_blocks_events_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_events_path_idx": { + "name": "_pages_v_blocks_events_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_events_parent_id_fk": { + "name": "_pages_v_blocks_events_parent_id_fk", + "tableFrom": "_pages_v_blocks_events", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_contact_person_block": { + "name": "_pages_v_blocks_contact_person_block", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "contact_id": { + "name": "contact_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_contact_person_block_order_idx": { + "name": "_pages_v_blocks_contact_person_block_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_contact_person_block_parent_id_idx": { + "name": "_pages_v_blocks_contact_person_block_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_contact_person_block_path_idx": { + "name": "_pages_v_blocks_contact_person_block_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_contact_person_block_contact_idx": { + "name": "_pages_v_blocks_contact_person_block_contact_idx", + "columns": [ + { + "expression": "contact_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_contact_person_block_contact_id_contact_person_id_fk": { + "name": "_pages_v_blocks_contact_person_block_contact_id_contact_person_id_fk", + "tableFrom": "_pages_v_blocks_contact_person_block", + "tableTo": "contact_person", + "columnsFrom": [ + "contact_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_blocks_contact_person_block_parent_id_fk": { + "name": "_pages_v_blocks_contact_person_block_parent_id_fk", + "tableFrom": "_pages_v_blocks_contact_person_block", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_image_cards_items": { + "name": "_pages_v_blocks_image_cards_items", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "image_id": { + "name": "image_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "custom_link": { + "name": "custom_link", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_image_cards_items_order_idx": { + "name": "_pages_v_blocks_image_cards_items_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_image_cards_items_parent_id_idx": { + "name": "_pages_v_blocks_image_cards_items_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_image_cards_items_image_idx": { + "name": "_pages_v_blocks_image_cards_items_image_idx", + "columns": [ + { + "expression": "image_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_image_cards_items_image_id_media_id_fk": { + "name": "_pages_v_blocks_image_cards_items_image_id_media_id_fk", + "tableFrom": "_pages_v_blocks_image_cards_items", + "tableTo": "media", + "columnsFrom": [ + "image_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "_pages_v_blocks_image_cards_items_parent_id_fk": { + "name": "_pages_v_blocks_image_cards_items_parent_id_fk", + "tableFrom": "_pages_v_blocks_image_cards_items", + "tableTo": "_pages_v_blocks_image_cards", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_image_cards": { + "name": "_pages_v_blocks_image_cards", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_image_cards_order_idx": { + "name": "_pages_v_blocks_image_cards_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_image_cards_parent_id_idx": { + "name": "_pages_v_blocks_image_cards_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_image_cards_path_idx": { + "name": "_pages_v_blocks_image_cards_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_image_cards_parent_id_fk": { + "name": "_pages_v_blocks_image_cards_parent_id_fk", + "tableFrom": "_pages_v_blocks_image_cards", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_classifieds": { + "name": "_pages_v_blocks_classifieds", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_classifieds_order_idx": { + "name": "_pages_v_blocks_classifieds_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_classifieds_parent_id_idx": { + "name": "_pages_v_blocks_classifieds_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_classifieds_path_idx": { + "name": "_pages_v_blocks_classifieds_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_classifieds_parent_id_fk": { + "name": "_pages_v_blocks_classifieds_parent_id_fk", + "tableFrom": "_pages_v_blocks_classifieds", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_blocks_next_prev_buttons": { + "name": "_pages_v_blocks_next_prev_buttons", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "prev_text": { + "name": "prev_text", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "prev_href": { + "name": "prev_href", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "next_text": { + "name": "next_text", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "next_href": { + "name": "next_href", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "_uuid": { + "name": "_uuid", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_blocks_next_prev_buttons_order_idx": { + "name": "_pages_v_blocks_next_prev_buttons_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_next_prev_buttons_parent_id_idx": { + "name": "_pages_v_blocks_next_prev_buttons_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_blocks_next_prev_buttons_path_idx": { + "name": "_pages_v_blocks_next_prev_buttons_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_blocks_next_prev_buttons_parent_id_fk": { + "name": "_pages_v_blocks_next_prev_buttons_parent_id_fk", + "tableFrom": "_pages_v_blocks_next_prev_buttons", + "tableTo": "_pages_v", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v": { + "name": "_pages_v", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "parent_id": { + "name": "parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "version_title": { + "name": "version_title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "version_description": { + "name": "version_description", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "version_slug": { + "name": "version_slug", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "''" + }, + "version_updated_at": { + "name": "version_updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "version_created_at": { + "name": "version_created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "version__status": { + "name": "version__status", + "type": "enum__pages_v_version_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": false, + "default": "'draft'" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "latest": { + "name": "latest", + "type": "boolean", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_parent_idx": { + "name": "_pages_v_parent_idx", + "columns": [ + { + "expression": "parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_version_version_slug_idx": { + "name": "_pages_v_version_version_slug_idx", + "columns": [ + { + "expression": "version_slug", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_version_version_updated_at_idx": { + "name": "_pages_v_version_version_updated_at_idx", + "columns": [ + { + "expression": "version_updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_version_version_created_at_idx": { + "name": "_pages_v_version_version_created_at_idx", + "columns": [ + { + "expression": "version_created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_version_version__status_idx": { + "name": "_pages_v_version_version__status_idx", + "columns": [ + { + "expression": "version__status", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_created_at_idx": { + "name": "_pages_v_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_updated_at_idx": { + "name": "_pages_v_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_latest_idx": { + "name": "_pages_v_latest_idx", + "columns": [ + { + "expression": "latest", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_parent_id_pages_id_fk": { + "name": "_pages_v_parent_id_pages_id_fk", + "tableFrom": "_pages_v", + "tableTo": "pages", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public._pages_v_rels": { + "name": "_pages_v_rels", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "parent_id": { + "name": "parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "path": { + "name": "path", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "church_id": { + "name": "church_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "pages_id": { + "name": "pages_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "group_id": { + "name": "group_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "_pages_v_rels_order_idx": { + "name": "_pages_v_rels_order_idx", + "columns": [ + { + "expression": "order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_rels_parent_idx": { + "name": "_pages_v_rels_parent_idx", + "columns": [ + { + "expression": "parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_rels_path_idx": { + "name": "_pages_v_rels_path_idx", + "columns": [ + { + "expression": "path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_rels_church_id_idx": { + "name": "_pages_v_rels_church_id_idx", + "columns": [ + { + "expression": "church_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_rels_pages_id_idx": { + "name": "_pages_v_rels_pages_id_idx", + "columns": [ + { + "expression": "pages_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "_pages_v_rels_group_id_idx": { + "name": "_pages_v_rels_group_id_idx", + "columns": [ + { + "expression": "group_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "_pages_v_rels_parent_fk": { + "name": "_pages_v_rels_parent_fk", + "tableFrom": "_pages_v_rels", + "tableTo": "_pages_v", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_pages_v_rels_church_fk": { + "name": "_pages_v_rels_church_fk", + "tableFrom": "_pages_v_rels", + "tableTo": "church", + "columnsFrom": [ + "church_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_pages_v_rels_pages_fk": { + "name": "_pages_v_rels_pages_fk", + "tableFrom": "_pages_v_rels", + "tableTo": "pages", + "columnsFrom": [ + "pages_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_pages_v_rels_group_fk": { + "name": "_pages_v_rels_group_fk", + "tableFrom": "_pages_v_rels", + "tableTo": "group", + "columnsFrom": [ + "group_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.prayers": { + "name": "prayers", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "text": { + "name": "text", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "prayers_updated_at_idx": { + "name": "prayers_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "prayers_created_at_idx": { + "name": "prayers_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.magazine": { + "name": "magazine", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "cover_id": { + "name": "cover_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "document_id": { + "name": "document_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "date": { + "name": "date", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "magazine_cover_idx": { + "name": "magazine_cover_idx", + "columns": [ + { + "expression": "cover_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "magazine_document_idx": { + "name": "magazine_document_idx", + "columns": [ + { + "expression": "document_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "magazine_updated_at_idx": { + "name": "magazine_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "magazine_created_at_idx": { + "name": "magazine_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "magazine_cover_id_media_id_fk": { + "name": "magazine_cover_id_media_id_fk", + "tableFrom": "magazine", + "tableTo": "media", + "columnsFrom": [ + "cover_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "magazine_document_id_documents_id_fk": { + "name": "magazine_document_id_documents_id_fk", + "tableFrom": "magazine", + "tableTo": "documents", + "columnsFrom": [ + "document_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.documents": { + "name": "documents", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "url": { + "name": "url", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "thumbnail_u_r_l": { + "name": "thumbnail_u_r_l", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "filename": { + "name": "filename", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "mime_type": { + "name": "mime_type", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "filesize": { + "name": "filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "width": { + "name": "width", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "height": { + "name": "height", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "focal_x": { + "name": "focal_x", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "focal_y": { + "name": "focal_y", + "type": "numeric", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "documents_updated_at_idx": { + "name": "documents_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "documents_created_at_idx": { + "name": "documents_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "documents_filename_idx": { + "name": "documents_filename_idx", + "columns": [ + { + "expression": "filename", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.media": { + "name": "media", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "alt": { + "name": "alt", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "search": { + "name": "search", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "copyrights_source": { + "name": "copyrights_source", + "type": "varchar", + "primaryKey": false, + "notNull": true, + "default": "''" + }, + "copyrights_public_without_name": { + "name": "copyrights_public_without_name", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "copyrights_consent": { + "name": "copyrights_consent", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "url": { + "name": "url", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "thumbnail_u_r_l": { + "name": "thumbnail_u_r_l", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "filename": { + "name": "filename", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "mime_type": { + "name": "mime_type", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "filesize": { + "name": "filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "width": { + "name": "width", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "height": { + "name": "height", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "focal_x": { + "name": "focal_x", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "focal_y": { + "name": "focal_y", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "sizes_thumbnail_url": { + "name": "sizes_thumbnail_url", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "sizes_thumbnail_width": { + "name": "sizes_thumbnail_width", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "sizes_thumbnail_height": { + "name": "sizes_thumbnail_height", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "sizes_thumbnail_mime_type": { + "name": "sizes_thumbnail_mime_type", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "sizes_thumbnail_filesize": { + "name": "sizes_thumbnail_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "sizes_thumbnail_filename": { + "name": "sizes_thumbnail_filename", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "sizes_banner_url": { + "name": "sizes_banner_url", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "sizes_banner_width": { + "name": "sizes_banner_width", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "sizes_banner_height": { + "name": "sizes_banner_height", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "sizes_banner_mime_type": { + "name": "sizes_banner_mime_type", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "sizes_banner_filesize": { + "name": "sizes_banner_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "sizes_banner_filename": { + "name": "sizes_banner_filename", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "sizes_gallery_url": { + "name": "sizes_gallery_url", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "sizes_gallery_width": { + "name": "sizes_gallery_width", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "sizes_gallery_height": { + "name": "sizes_gallery_height", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "sizes_gallery_mime_type": { + "name": "sizes_gallery_mime_type", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "sizes_gallery_filesize": { + "name": "sizes_gallery_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "sizes_gallery_filename": { + "name": "sizes_gallery_filename", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "sizes_tablet_url": { + "name": "sizes_tablet_url", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "sizes_tablet_width": { + "name": "sizes_tablet_width", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "sizes_tablet_height": { + "name": "sizes_tablet_height", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "sizes_tablet_mime_type": { + "name": "sizes_tablet_mime_type", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "sizes_tablet_filesize": { + "name": "sizes_tablet_filesize", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "sizes_tablet_filename": { + "name": "sizes_tablet_filename", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "media_updated_at_idx": { + "name": "media_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "media_created_at_idx": { + "name": "media_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "media_filename_idx": { + "name": "media_filename_idx", + "columns": [ + { + "expression": "filename", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + }, + "media_sizes_thumbnail_sizes_thumbnail_filename_idx": { + "name": "media_sizes_thumbnail_sizes_thumbnail_filename_idx", + "columns": [ + { + "expression": "sizes_thumbnail_filename", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "media_sizes_banner_sizes_banner_filename_idx": { + "name": "media_sizes_banner_sizes_banner_filename_idx", + "columns": [ + { + "expression": "sizes_banner_filename", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "media_sizes_gallery_sizes_gallery_filename_idx": { + "name": "media_sizes_gallery_sizes_gallery_filename_idx", + "columns": [ + { + "expression": "sizes_gallery_filename", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "media_sizes_tablet_sizes_tablet_filename_idx": { + "name": "media_sizes_tablet_sizes_tablet_filename_idx", + "columns": [ + { + "expression": "sizes_tablet_filename", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.users_sessions": { + "name": "users_sessions", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "expires_at": { + "name": "expires_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true + } + }, + "indexes": { + "users_sessions_order_idx": { + "name": "users_sessions_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "users_sessions_parent_id_idx": { + "name": "users_sessions_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "users_sessions_parent_id_fk": { + "name": "users_sessions_parent_id_fk", + "tableFrom": "users_sessions", + "tableTo": "users", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.users": { + "name": "users", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "varchar", + "primaryKey": false, + "notNull": true, + "default": "''" + }, + "roles": { + "name": "roles", + "type": "enum_users_roles", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'user'" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "email": { + "name": "email", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "reset_password_token": { + "name": "reset_password_token", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "reset_password_expiration": { + "name": "reset_password_expiration", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "salt": { + "name": "salt", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "hash": { + "name": "hash", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "login_attempts": { + "name": "login_attempts", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "lock_until": { + "name": "lock_until", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "users_updated_at_idx": { + "name": "users_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "users_created_at_idx": { + "name": "users_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "users_email_idx": { + "name": "users_email_idx", + "columns": [ + { + "expression": "email", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.users_rels": { + "name": "users_rels", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "parent_id": { + "name": "parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "path": { + "name": "path", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "group_id": { + "name": "group_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "users_rels_order_idx": { + "name": "users_rels_order_idx", + "columns": [ + { + "expression": "order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "users_rels_parent_idx": { + "name": "users_rels_parent_idx", + "columns": [ + { + "expression": "parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "users_rels_path_idx": { + "name": "users_rels_path_idx", + "columns": [ + { + "expression": "path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "users_rels_group_id_idx": { + "name": "users_rels_group_id_idx", + "columns": [ + { + "expression": "group_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "users_rels_parent_fk": { + "name": "users_rels_parent_fk", + "tableFrom": "users_rels", + "tableTo": "users", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "users_rels_group_fk": { + "name": "users_rels_group_fk", + "tableFrom": "users_rels", + "tableTo": "group", + "columnsFrom": [ + "group_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.search": { + "name": "search", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "priority": { + "name": "priority", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "search_updated_at_idx": { + "name": "search_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "search_created_at_idx": { + "name": "search_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.search_rels": { + "name": "search_rels", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "parent_id": { + "name": "parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "path": { + "name": "path", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "parish_id": { + "name": "parish_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "pages_id": { + "name": "pages_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "blog_id": { + "name": "blog_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "group_id": { + "name": "group_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "search_rels_order_idx": { + "name": "search_rels_order_idx", + "columns": [ + { + "expression": "order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "search_rels_parent_idx": { + "name": "search_rels_parent_idx", + "columns": [ + { + "expression": "parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "search_rels_path_idx": { + "name": "search_rels_path_idx", + "columns": [ + { + "expression": "path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "search_rels_parish_id_idx": { + "name": "search_rels_parish_id_idx", + "columns": [ + { + "expression": "parish_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "search_rels_pages_id_idx": { + "name": "search_rels_pages_id_idx", + "columns": [ + { + "expression": "pages_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "search_rels_blog_id_idx": { + "name": "search_rels_blog_id_idx", + "columns": [ + { + "expression": "blog_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "search_rels_event_id_idx": { + "name": "search_rels_event_id_idx", + "columns": [ + { + "expression": "event_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "search_rels_group_id_idx": { + "name": "search_rels_group_id_idx", + "columns": [ + { + "expression": "group_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "search_rels_parent_fk": { + "name": "search_rels_parent_fk", + "tableFrom": "search_rels", + "tableTo": "search", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "search_rels_parish_fk": { + "name": "search_rels_parish_fk", + "tableFrom": "search_rels", + "tableTo": "parish", + "columnsFrom": [ + "parish_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "search_rels_pages_fk": { + "name": "search_rels_pages_fk", + "tableFrom": "search_rels", + "tableTo": "pages", + "columnsFrom": [ + "pages_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "search_rels_blog_fk": { + "name": "search_rels_blog_fk", + "tableFrom": "search_rels", + "tableTo": "blog", + "columnsFrom": [ + "blog_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "search_rels_event_fk": { + "name": "search_rels_event_fk", + "tableFrom": "search_rels", + "tableTo": "event", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "search_rels_group_fk": { + "name": "search_rels_group_fk", + "tableFrom": "search_rels", + "tableTo": "group", + "columnsFrom": [ + "group_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.payload_kv": { + "name": "payload_kv", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "key": { + "name": "key", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "data": { + "name": "data", + "type": "jsonb", + "primaryKey": false, + "notNull": true + } + }, + "indexes": { + "payload_kv_key_idx": { + "name": "payload_kv_key_idx", + "columns": [ + { + "expression": "key", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.payload_jobs_log": { + "name": "payload_jobs_log", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "executed_at": { + "name": "executed_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true + }, + "completed_at": { + "name": "completed_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true + }, + "task_slug": { + "name": "task_slug", + "type": "enum_payload_jobs_log_task_slug", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "task_i_d": { + "name": "task_i_d", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "input": { + "name": "input", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "output": { + "name": "output", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "state": { + "name": "state", + "type": "enum_payload_jobs_log_state", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "error": { + "name": "error", + "type": "jsonb", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "payload_jobs_log_order_idx": { + "name": "payload_jobs_log_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_jobs_log_parent_id_idx": { + "name": "payload_jobs_log_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "payload_jobs_log_parent_id_fk": { + "name": "payload_jobs_log_parent_id_fk", + "tableFrom": "payload_jobs_log", + "tableTo": "payload_jobs", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.payload_jobs": { + "name": "payload_jobs", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "input": { + "name": "input", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "completed_at": { + "name": "completed_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "total_tried": { + "name": "total_tried", + "type": "numeric", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "has_error": { + "name": "has_error", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": false + }, + "error": { + "name": "error", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "task_slug": { + "name": "task_slug", + "type": "enum_payload_jobs_task_slug", + "typeSchema": "public", + "primaryKey": false, + "notNull": false + }, + "queue": { + "name": "queue", + "type": "varchar", + "primaryKey": false, + "notNull": false, + "default": "'default'" + }, + "wait_until": { + "name": "wait_until", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "processing": { + "name": "processing", + "type": "boolean", + "primaryKey": false, + "notNull": false, + "default": false + }, + "meta": { + "name": "meta", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "payload_jobs_completed_at_idx": { + "name": "payload_jobs_completed_at_idx", + "columns": [ + { + "expression": "completed_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_jobs_total_tried_idx": { + "name": "payload_jobs_total_tried_idx", + "columns": [ + { + "expression": "total_tried", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_jobs_has_error_idx": { + "name": "payload_jobs_has_error_idx", + "columns": [ + { + "expression": "has_error", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_jobs_task_slug_idx": { + "name": "payload_jobs_task_slug_idx", + "columns": [ + { + "expression": "task_slug", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_jobs_queue_idx": { + "name": "payload_jobs_queue_idx", + "columns": [ + { + "expression": "queue", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_jobs_wait_until_idx": { + "name": "payload_jobs_wait_until_idx", + "columns": [ + { + "expression": "wait_until", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_jobs_processing_idx": { + "name": "payload_jobs_processing_idx", + "columns": [ + { + "expression": "processing", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_jobs_updated_at_idx": { + "name": "payload_jobs_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_jobs_created_at_idx": { + "name": "payload_jobs_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.payload_locked_documents": { + "name": "payload_locked_documents", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "global_slug": { + "name": "global_slug", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "payload_locked_documents_global_slug_idx": { + "name": "payload_locked_documents_global_slug_idx", + "columns": [ + { + "expression": "global_slug", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_updated_at_idx": { + "name": "payload_locked_documents_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_created_at_idx": { + "name": "payload_locked_documents_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.payload_locked_documents_rels": { + "name": "payload_locked_documents_rels", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "parent_id": { + "name": "parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "path": { + "name": "path", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "parish_id": { + "name": "parish_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "church_id": { + "name": "church_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "worship_id": { + "name": "worship_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "pope_prayer_intentions_id": { + "name": "pope_prayer_intentions_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "announcement_id": { + "name": "announcement_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "calendar_id": { + "name": "calendar_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "blog_id": { + "name": "blog_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "highlight_id": { + "name": "highlight_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "event_occurrence_id": { + "name": "event_occurrence_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "classifieds_id": { + "name": "classifieds_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "contact_person_id": { + "name": "contact_person_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "locations_id": { + "name": "locations_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "group_id": { + "name": "group_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "donation_form_id": { + "name": "donation_form_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "pages_id": { + "name": "pages_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "prayers_id": { + "name": "prayers_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "magazine_id": { + "name": "magazine_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "documents_id": { + "name": "documents_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "media_id": { + "name": "media_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "users_id": { + "name": "users_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "search_id": { + "name": "search_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "payload_locked_documents_rels_order_idx": { + "name": "payload_locked_documents_rels_order_idx", + "columns": [ + { + "expression": "order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_parent_idx": { + "name": "payload_locked_documents_rels_parent_idx", + "columns": [ + { + "expression": "parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_path_idx": { + "name": "payload_locked_documents_rels_path_idx", + "columns": [ + { + "expression": "path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_parish_id_idx": { + "name": "payload_locked_documents_rels_parish_id_idx", + "columns": [ + { + "expression": "parish_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_church_id_idx": { + "name": "payload_locked_documents_rels_church_id_idx", + "columns": [ + { + "expression": "church_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_worship_id_idx": { + "name": "payload_locked_documents_rels_worship_id_idx", + "columns": [ + { + "expression": "worship_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_pope_prayer_intentions_id_idx": { + "name": "payload_locked_documents_rels_pope_prayer_intentions_id_idx", + "columns": [ + { + "expression": "pope_prayer_intentions_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_announcement_id_idx": { + "name": "payload_locked_documents_rels_announcement_id_idx", + "columns": [ + { + "expression": "announcement_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_calendar_id_idx": { + "name": "payload_locked_documents_rels_calendar_id_idx", + "columns": [ + { + "expression": "calendar_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_blog_id_idx": { + "name": "payload_locked_documents_rels_blog_id_idx", + "columns": [ + { + "expression": "blog_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_highlight_id_idx": { + "name": "payload_locked_documents_rels_highlight_id_idx", + "columns": [ + { + "expression": "highlight_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_event_id_idx": { + "name": "payload_locked_documents_rels_event_id_idx", + "columns": [ + { + "expression": "event_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_event_occurrence_id_idx": { + "name": "payload_locked_documents_rels_event_occurrence_id_idx", + "columns": [ + { + "expression": "event_occurrence_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_classifieds_id_idx": { + "name": "payload_locked_documents_rels_classifieds_id_idx", + "columns": [ + { + "expression": "classifieds_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_contact_person_id_idx": { + "name": "payload_locked_documents_rels_contact_person_id_idx", + "columns": [ + { + "expression": "contact_person_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_locations_id_idx": { + "name": "payload_locked_documents_rels_locations_id_idx", + "columns": [ + { + "expression": "locations_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_group_id_idx": { + "name": "payload_locked_documents_rels_group_id_idx", + "columns": [ + { + "expression": "group_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_donation_form_id_idx": { + "name": "payload_locked_documents_rels_donation_form_id_idx", + "columns": [ + { + "expression": "donation_form_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_pages_id_idx": { + "name": "payload_locked_documents_rels_pages_id_idx", + "columns": [ + { + "expression": "pages_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_prayers_id_idx": { + "name": "payload_locked_documents_rels_prayers_id_idx", + "columns": [ + { + "expression": "prayers_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_magazine_id_idx": { + "name": "payload_locked_documents_rels_magazine_id_idx", + "columns": [ + { + "expression": "magazine_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_documents_id_idx": { + "name": "payload_locked_documents_rels_documents_id_idx", + "columns": [ + { + "expression": "documents_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_media_id_idx": { + "name": "payload_locked_documents_rels_media_id_idx", + "columns": [ + { + "expression": "media_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_users_id_idx": { + "name": "payload_locked_documents_rels_users_id_idx", + "columns": [ + { + "expression": "users_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_locked_documents_rels_search_id_idx": { + "name": "payload_locked_documents_rels_search_id_idx", + "columns": [ + { + "expression": "search_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "payload_locked_documents_rels_parent_fk": { + "name": "payload_locked_documents_rels_parent_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "payload_locked_documents", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_parish_fk": { + "name": "payload_locked_documents_rels_parish_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "parish", + "columnsFrom": [ + "parish_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_church_fk": { + "name": "payload_locked_documents_rels_church_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "church", + "columnsFrom": [ + "church_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_worship_fk": { + "name": "payload_locked_documents_rels_worship_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "worship", + "columnsFrom": [ + "worship_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_pope_prayer_intentions_fk": { + "name": "payload_locked_documents_rels_pope_prayer_intentions_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "pope_prayer_intentions", + "columnsFrom": [ + "pope_prayer_intentions_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_announcement_fk": { + "name": "payload_locked_documents_rels_announcement_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "announcement", + "columnsFrom": [ + "announcement_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_calendar_fk": { + "name": "payload_locked_documents_rels_calendar_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "calendar", + "columnsFrom": [ + "calendar_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_blog_fk": { + "name": "payload_locked_documents_rels_blog_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "blog", + "columnsFrom": [ + "blog_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_highlight_fk": { + "name": "payload_locked_documents_rels_highlight_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "highlight", + "columnsFrom": [ + "highlight_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_event_fk": { + "name": "payload_locked_documents_rels_event_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "event", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_event_occurrence_fk": { + "name": "payload_locked_documents_rels_event_occurrence_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "event_occurrence", + "columnsFrom": [ + "event_occurrence_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_classifieds_fk": { + "name": "payload_locked_documents_rels_classifieds_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "classifieds", + "columnsFrom": [ + "classifieds_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_contact_person_fk": { + "name": "payload_locked_documents_rels_contact_person_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "contact_person", + "columnsFrom": [ + "contact_person_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_locations_fk": { + "name": "payload_locked_documents_rels_locations_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "locations", + "columnsFrom": [ + "locations_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_group_fk": { + "name": "payload_locked_documents_rels_group_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "group", + "columnsFrom": [ + "group_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_donation_form_fk": { + "name": "payload_locked_documents_rels_donation_form_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "donation_form", + "columnsFrom": [ + "donation_form_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_pages_fk": { + "name": "payload_locked_documents_rels_pages_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "pages", + "columnsFrom": [ + "pages_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_prayers_fk": { + "name": "payload_locked_documents_rels_prayers_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "prayers", + "columnsFrom": [ + "prayers_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_magazine_fk": { + "name": "payload_locked_documents_rels_magazine_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "magazine", + "columnsFrom": [ + "magazine_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_documents_fk": { + "name": "payload_locked_documents_rels_documents_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "documents", + "columnsFrom": [ + "documents_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_media_fk": { + "name": "payload_locked_documents_rels_media_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "media", + "columnsFrom": [ + "media_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_users_fk": { + "name": "payload_locked_documents_rels_users_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "users", + "columnsFrom": [ + "users_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_locked_documents_rels_search_fk": { + "name": "payload_locked_documents_rels_search_fk", + "tableFrom": "payload_locked_documents_rels", + "tableTo": "search", + "columnsFrom": [ + "search_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.payload_preferences": { + "name": "payload_preferences", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "key": { + "name": "key", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "value": { + "name": "value", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "payload_preferences_key_idx": { + "name": "payload_preferences_key_idx", + "columns": [ + { + "expression": "key", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_preferences_updated_at_idx": { + "name": "payload_preferences_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_preferences_created_at_idx": { + "name": "payload_preferences_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.payload_preferences_rels": { + "name": "payload_preferences_rels", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "order": { + "name": "order", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "parent_id": { + "name": "parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "path": { + "name": "path", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "users_id": { + "name": "users_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "payload_preferences_rels_order_idx": { + "name": "payload_preferences_rels_order_idx", + "columns": [ + { + "expression": "order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_preferences_rels_parent_idx": { + "name": "payload_preferences_rels_parent_idx", + "columns": [ + { + "expression": "parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_preferences_rels_path_idx": { + "name": "payload_preferences_rels_path_idx", + "columns": [ + { + "expression": "path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_preferences_rels_users_id_idx": { + "name": "payload_preferences_rels_users_id_idx", + "columns": [ + { + "expression": "users_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "payload_preferences_rels_parent_fk": { + "name": "payload_preferences_rels_parent_fk", + "tableFrom": "payload_preferences_rels", + "tableTo": "payload_preferences", + "columnsFrom": [ + "parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "payload_preferences_rels_users_fk": { + "name": "payload_preferences_rels_users_fk", + "tableFrom": "payload_preferences_rels", + "tableTo": "users", + "columnsFrom": [ + "users_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.payload_migrations": { + "name": "payload_migrations", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "varchar", + "primaryKey": false, + "notNull": false + }, + "batch": { + "name": "batch", + "type": "numeric", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "payload_migrations_updated_at_idx": { + "name": "payload_migrations_updated_at_idx", + "columns": [ + { + "expression": "updated_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "payload_migrations_created_at_idx": { + "name": "payload_migrations_created_at_idx", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.menu_blocks_simple_item": { + "name": "menu_blocks_simple_item", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "text": { + "name": "text", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "href": { + "name": "href", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "enum_menu_blocks_simple_item_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'default'" + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "menu_blocks_simple_item_order_idx": { + "name": "menu_blocks_simple_item_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "menu_blocks_simple_item_parent_id_idx": { + "name": "menu_blocks_simple_item_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "menu_blocks_simple_item_path_idx": { + "name": "menu_blocks_simple_item_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "menu_blocks_simple_item_parent_id_fk": { + "name": "menu_blocks_simple_item_parent_id_fk", + "tableFrom": "menu_blocks_simple_item", + "tableTo": "menu", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.menu_blocks_mega_menu_groups_items": { + "name": "menu_blocks_mega_menu_groups_items", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "description": { + "name": "description", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "href": { + "name": "href", + "type": "varchar", + "primaryKey": false, + "notNull": true + } + }, + "indexes": { + "menu_blocks_mega_menu_groups_items_order_idx": { + "name": "menu_blocks_mega_menu_groups_items_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "menu_blocks_mega_menu_groups_items_parent_id_idx": { + "name": "menu_blocks_mega_menu_groups_items_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "menu_blocks_mega_menu_groups_items_parent_id_fk": { + "name": "menu_blocks_mega_menu_groups_items_parent_id_fk", + "tableFrom": "menu_blocks_mega_menu_groups_items", + "tableTo": "menu_blocks_mega_menu_groups", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.menu_blocks_mega_menu_groups": { + "name": "menu_blocks_mega_menu_groups", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": true + } + }, + "indexes": { + "menu_blocks_mega_menu_groups_order_idx": { + "name": "menu_blocks_mega_menu_groups_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "menu_blocks_mega_menu_groups_parent_id_idx": { + "name": "menu_blocks_mega_menu_groups_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "menu_blocks_mega_menu_groups_parent_id_fk": { + "name": "menu_blocks_mega_menu_groups_parent_id_fk", + "tableFrom": "menu_blocks_mega_menu_groups", + "tableTo": "menu_blocks_mega_menu", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.menu_blocks_mega_menu": { + "name": "menu_blocks_mega_menu", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "_path": { + "name": "_path", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "text": { + "name": "text", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "quote": { + "name": "quote", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "source": { + "name": "source", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "block_name": { + "name": "block_name", + "type": "varchar", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "menu_blocks_mega_menu_order_idx": { + "name": "menu_blocks_mega_menu_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "menu_blocks_mega_menu_parent_id_idx": { + "name": "menu_blocks_mega_menu_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "menu_blocks_mega_menu_path_idx": { + "name": "menu_blocks_mega_menu_path_idx", + "columns": [ + { + "expression": "_path", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "menu_blocks_mega_menu_parent_id_fk": { + "name": "menu_blocks_mega_menu_parent_id_fk", + "tableFrom": "menu_blocks_mega_menu", + "tableTo": "menu", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.menu": { + "name": "menu", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.footer_groups_links": { + "name": "footer_groups_links", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "label": { + "name": "label", + "type": "varchar", + "primaryKey": false, + "notNull": true + }, + "href": { + "name": "href", + "type": "varchar", + "primaryKey": false, + "notNull": true + } + }, + "indexes": { + "footer_groups_links_order_idx": { + "name": "footer_groups_links_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "footer_groups_links_parent_id_idx": { + "name": "footer_groups_links_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "footer_groups_links_parent_id_fk": { + "name": "footer_groups_links_parent_id_fk", + "tableFrom": "footer_groups_links", + "tableTo": "footer_groups", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.footer_groups": { + "name": "footer_groups", + "schema": "", + "columns": { + "_order": { + "name": "_order", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "_parent_id": { + "name": "_parent_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "id": { + "name": "id", + "type": "varchar", + "primaryKey": true, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar", + "primaryKey": false, + "notNull": true + } + }, + "indexes": { + "footer_groups_order_idx": { + "name": "footer_groups_order_idx", + "columns": [ + { + "expression": "_order", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "footer_groups_parent_id_idx": { + "name": "footer_groups_parent_id_idx", + "columns": [ + { + "expression": "_parent_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "footer_groups_parent_id_fk": { + "name": "footer_groups_parent_id_fk", + "tableFrom": "footer_groups", + "tableTo": "footer", + "columnsFrom": [ + "_parent_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.footer": { + "name": "footer", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.payload_jobs_stats": { + "name": "payload_jobs_stats", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "stats": { + "name": "stats", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp(3) with time zone", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + } + }, + "enums": { + "public.enum_parish_blocks_text_width": { + "name": "enum_parish_blocks_text_width", + "schema": "public", + "values": [ + "1/2", + "3/4" + ] + }, + "public.enum_parish_blocks_title_size": { + "name": "enum_parish_blocks_title_size", + "schema": "public", + "values": [ + "xl", + "lg", + "md", + "sm" + ] + }, + "public.enum_parish_blocks_title_align": { + "name": "enum_parish_blocks_title_align", + "schema": "public", + "values": [ + "left", + "center" + ] + }, + "public.enum_parish_blocks_title_color": { + "name": "enum_parish_blocks_title_color", + "schema": "public", + "values": [ + "base", + "shade1", + "shade2", + "shade3", + "contrast", + "contrastShade1" + ] + }, + "public.enum_parish_status": { + "name": "enum_parish_status", + "schema": "public", + "values": [ + "draft", + "published" + ] + }, + "public.enum__parish_v_blocks_text_width": { + "name": "enum__parish_v_blocks_text_width", + "schema": "public", + "values": [ + "1/2", + "3/4" + ] + }, + "public.enum__parish_v_blocks_title_size": { + "name": "enum__parish_v_blocks_title_size", + "schema": "public", + "values": [ + "xl", + "lg", + "md", + "sm" + ] + }, + "public.enum__parish_v_blocks_title_align": { + "name": "enum__parish_v_blocks_title_align", + "schema": "public", + "values": [ + "left", + "center" + ] + }, + "public.enum__parish_v_blocks_title_color": { + "name": "enum__parish_v_blocks_title_color", + "schema": "public", + "values": [ + "base", + "shade1", + "shade2", + "shade3", + "contrast", + "contrastShade1" + ] + }, + "public.enum__parish_v_version_status": { + "name": "enum__parish_v_version_status", + "schema": "public", + "values": [ + "draft", + "published" + ] + }, + "public.enum_church_recurring_schedule_type": { + "name": "enum_church_recurring_schedule_type", + "schema": "public", + "values": [ + "MASS", + "FAMILY", + "WORD" + ] + }, + "public.enum_church_recurring_schedule_frequency": { + "name": "enum_church_recurring_schedule_frequency", + "schema": "public", + "values": [ + "weekly", + "biweekly", + "monthlyByWeekday" + ] + }, + "public.enum_church_recurring_schedule_day": { + "name": "enum_church_recurring_schedule_day", + "schema": "public", + "values": [ + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday", + "sunday" + ] + }, + "public.enum_church_recurring_schedule_week_of_month": { + "name": "enum_church_recurring_schedule_week_of_month", + "schema": "public", + "values": [ + "first", + "second", + "third", + "fourth", + "last" + ] + }, + "public.enum_worship_type": { + "name": "enum_worship_type", + "schema": "public", + "values": [ + "MASS", + "FAMILY", + "WORD" + ] + }, + "public.enum_pope_prayer_intentions_month": { + "name": "enum_pope_prayer_intentions_month", + "schema": "public", + "values": [ + "01", + "02", + "03", + "04", + "05", + "06", + "07", + "08", + "09", + "10", + "11", + "12" + ] + }, + "public.enum_blog_blocks_text_width": { + "name": "enum_blog_blocks_text_width", + "schema": "public", + "values": [ + "1/2", + "3/4" + ] + }, + "public.enum_blog_status": { + "name": "enum_blog_status", + "schema": "public", + "values": [ + "draft", + "published" + ] + }, + "public.enum__blog_v_blocks_text_width": { + "name": "enum__blog_v_blocks_text_width", + "schema": "public", + "values": [ + "1/2", + "3/4" + ] + }, + "public.enum__blog_v_version_status": { + "name": "enum__blog_v_version_status", + "schema": "public", + "values": [ + "draft", + "published" + ] + }, + "public.enum_event_recurrence_rules_frequency": { + "name": "enum_event_recurrence_rules_frequency", + "schema": "public", + "values": [ + "daily", + "weekly", + "monthlyByDate", + "monthlyByWeekday" + ] + }, + "public.enum_event_recurrence_rules_weekday": { + "name": "enum_event_recurrence_rules_weekday", + "schema": "public", + "values": [ + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday", + "sunday" + ] + }, + "public.enum_event_recurrence_rules_week_of_month": { + "name": "enum_event_recurrence_rules_week_of_month", + "schema": "public", + "values": [ + "first", + "second", + "third", + "fourth", + "last" + ] + }, + "public.enum_event_recurrence_type": { + "name": "enum_event_recurrence_type", + "schema": "public", + "values": [ + "none", + "daily", + "weekly", + "biweekly", + "monthlyByDate", + "monthlyByWeekday", + "custom" + ] + }, + "public.enum_event_status": { + "name": "enum_event_status", + "schema": "public", + "values": [ + "draft", + "published" + ] + }, + "public.enum__event_v_version_recurrence_rules_frequency": { + "name": "enum__event_v_version_recurrence_rules_frequency", + "schema": "public", + "values": [ + "daily", + "weekly", + "monthlyByDate", + "monthlyByWeekday" + ] + }, + "public.enum__event_v_version_recurrence_rules_weekday": { + "name": "enum__event_v_version_recurrence_rules_weekday", + "schema": "public", + "values": [ + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday", + "sunday" + ] + }, + "public.enum__event_v_version_recurrence_rules_week_of_month": { + "name": "enum__event_v_version_recurrence_rules_week_of_month", + "schema": "public", + "values": [ + "first", + "second", + "third", + "fourth", + "last" + ] + }, + "public.enum__event_v_version_recurrence_type": { + "name": "enum__event_v_version_recurrence_type", + "schema": "public", + "values": [ + "none", + "daily", + "weekly", + "biweekly", + "monthlyByDate", + "monthlyByWeekday", + "custom" + ] + }, + "public.enum__event_v_version_status": { + "name": "enum__event_v_version_status", + "schema": "public", + "values": [ + "draft", + "published" + ] + }, + "public.enum_group_blocks_title_size": { + "name": "enum_group_blocks_title_size", + "schema": "public", + "values": [ + "xl", + "lg", + "md", + "sm" + ] + }, + "public.enum_group_blocks_title_align": { + "name": "enum_group_blocks_title_align", + "schema": "public", + "values": [ + "left", + "center" + ] + }, + "public.enum_group_blocks_title_color": { + "name": "enum_group_blocks_title_color", + "schema": "public", + "values": [ + "base", + "shade1", + "shade2", + "shade3", + "contrast", + "contrastShade1" + ] + }, + "public.enum_group_blocks_text_width": { + "name": "enum_group_blocks_text_width", + "schema": "public", + "values": [ + "1/2", + "3/4" + ] + }, + "public.enum_group_status": { + "name": "enum_group_status", + "schema": "public", + "values": [ + "draft", + "published" + ] + }, + "public.enum__group_v_blocks_title_size": { + "name": "enum__group_v_blocks_title_size", + "schema": "public", + "values": [ + "xl", + "lg", + "md", + "sm" + ] + }, + "public.enum__group_v_blocks_title_align": { + "name": "enum__group_v_blocks_title_align", + "schema": "public", + "values": [ + "left", + "center" + ] + }, + "public.enum__group_v_blocks_title_color": { + "name": "enum__group_v_blocks_title_color", + "schema": "public", + "values": [ + "base", + "shade1", + "shade2", + "shade3", + "contrast", + "contrastShade1" + ] + }, + "public.enum__group_v_blocks_text_width": { + "name": "enum__group_v_blocks_text_width", + "schema": "public", + "values": [ + "1/2", + "3/4" + ] + }, + "public.enum__group_v_version_status": { + "name": "enum__group_v_version_status", + "schema": "public", + "values": [ + "draft", + "published" + ] + }, + "public.enum_pages_blocks_text_width": { + "name": "enum_pages_blocks_text_width", + "schema": "public", + "values": [ + "1/2", + "3/4" + ] + }, + "public.enum_pages_blocks_title_size": { + "name": "enum_pages_blocks_title_size", + "schema": "public", + "values": [ + "xl", + "lg", + "md", + "sm" + ] + }, + "public.enum_pages_blocks_title_align": { + "name": "enum_pages_blocks_title_align", + "schema": "public", + "values": [ + "left", + "center" + ] + }, + "public.enum_pages_blocks_title_color": { + "name": "enum_pages_blocks_title_color", + "schema": "public", + "values": [ + "base", + "shade1", + "shade2", + "shade3", + "contrast", + "contrastShade1" + ] + }, + "public.enum_pages_blocks_section_background_color": { + "name": "enum_pages_blocks_section_background_color", + "schema": "public", + "values": [ + "none", + "soft", + "off-white" + ] + }, + "public.enum_pages_blocks_section_padding": { + "name": "enum_pages_blocks_section_padding", + "schema": "public", + "values": [ + "small", + "medium", + "large" + ] + }, + "public.enum_pages_blocks_banner_background_position": { + "name": "enum_pages_blocks_banner_background_position", + "schema": "public", + "values": [ + "center center", + "top center", + "bottom center", + "center left", + "center right", + "top left", + "top right", + "bottom left", + "bottom right" + ] + }, + "public.enum_pages_blocks_banner_background_size": { + "name": "enum_pages_blocks_banner_background_size", + "schema": "public", + "values": [ + "cover", + "contain", + "auto" + ] + }, + "public.enum_pages_blocks_horizontal_rule_color": { + "name": "enum_pages_blocks_horizontal_rule_color", + "schema": "public", + "values": [ + "base", + "shade1", + "shade2", + "shade3", + "contrast", + "contrastShade1" + ] + }, + "public.enum_collaps_color_style": { + "name": "enum_collaps_color_style", + "schema": "public", + "values": [ + "default", + "soft", + "off-white", + "contrast" + ] + }, + "public.enum_collaps_map_background_color": { + "name": "enum_collaps_map_background_color", + "schema": "public", + "values": [ + "default", + "soft", + "off-white" + ] + }, + "public.enum_pages_status": { + "name": "enum_pages_status", + "schema": "public", + "values": [ + "draft", + "published" + ] + }, + "public.enum__pages_v_blocks_text_width": { + "name": "enum__pages_v_blocks_text_width", + "schema": "public", + "values": [ + "1/2", + "3/4" + ] + }, + "public.enum__pages_v_blocks_title_size": { + "name": "enum__pages_v_blocks_title_size", + "schema": "public", + "values": [ + "xl", + "lg", + "md", + "sm" + ] + }, + "public.enum__pages_v_blocks_title_align": { + "name": "enum__pages_v_blocks_title_align", + "schema": "public", + "values": [ + "left", + "center" + ] + }, + "public.enum__pages_v_blocks_title_color": { + "name": "enum__pages_v_blocks_title_color", + "schema": "public", + "values": [ + "base", + "shade1", + "shade2", + "shade3", + "contrast", + "contrastShade1" + ] + }, + "public.enum__pages_v_blocks_section_background_color": { + "name": "enum__pages_v_blocks_section_background_color", + "schema": "public", + "values": [ + "none", + "soft", + "off-white" + ] + }, + "public.enum__pages_v_blocks_section_padding": { + "name": "enum__pages_v_blocks_section_padding", + "schema": "public", + "values": [ + "small", + "medium", + "large" + ] + }, + "public.enum__pages_v_blocks_banner_background_position": { + "name": "enum__pages_v_blocks_banner_background_position", + "schema": "public", + "values": [ + "center center", + "top center", + "bottom center", + "center left", + "center right", + "top left", + "top right", + "bottom left", + "bottom right" + ] + }, + "public.enum__pages_v_blocks_banner_background_size": { + "name": "enum__pages_v_blocks_banner_background_size", + "schema": "public", + "values": [ + "cover", + "contain", + "auto" + ] + }, + "public.enum__pages_v_blocks_horizontal_rule_color": { + "name": "enum__pages_v_blocks_horizontal_rule_color", + "schema": "public", + "values": [ + "base", + "shade1", + "shade2", + "shade3", + "contrast", + "contrastShade1" + ] + }, + "public.enum__collaps_v_color_style": { + "name": "enum__collaps_v_color_style", + "schema": "public", + "values": [ + "default", + "soft", + "off-white", + "contrast" + ] + }, + "public.enum__collaps_map_v_background_color": { + "name": "enum__collaps_map_v_background_color", + "schema": "public", + "values": [ + "default", + "soft", + "off-white" + ] + }, + "public.enum__pages_v_version_status": { + "name": "enum__pages_v_version_status", + "schema": "public", + "values": [ + "draft", + "published" + ] + }, + "public.enum_users_roles": { + "name": "enum_users_roles", + "schema": "public", + "values": [ + "user", + "employee", + "admin" + ] + }, + "public.enum_payload_jobs_log_task_slug": { + "name": "enum_payload_jobs_log_task_slug", + "schema": "public", + "values": [ + "inline", + "generateRecurringMasses", + "generateEventOccurrences" + ] + }, + "public.enum_payload_jobs_log_state": { + "name": "enum_payload_jobs_log_state", + "schema": "public", + "values": [ + "failed", + "succeeded" + ] + }, + "public.enum_payload_jobs_task_slug": { + "name": "enum_payload_jobs_task_slug", + "schema": "public", + "values": [ + "inline", + "generateRecurringMasses", + "generateEventOccurrences" + ] + }, + "public.enum_menu_blocks_simple_item_type": { + "name": "enum_menu_blocks_simple_item_type", + "schema": "public", + "values": [ + "default", + "button" + ] + } + }, + "schemas": {}, + "sequences": {}, + "roles": {}, + "policies": {}, + "views": {}, + "_meta": { + "schemas": {}, + "tables": {}, + "columns": {} + }, + "id": "7c205e9a-dbc6-451c-866f-c2b03039f426", + "prevId": "00000000-0000-0000-0000-000000000000" +} \ No newline at end of file diff --git a/src/migrations/20260429_121105_collapsible_map_with_text.ts b/src/migrations/20260429_121105_collapsible_map_with_text.ts new file mode 100644 index 0000000..0f276af --- /dev/null +++ b/src/migrations/20260429_121105_collapsible_map_with_text.ts @@ -0,0 +1,56 @@ +import { MigrateUpArgs, MigrateDownArgs, sql } from '@payloadcms/db-postgres' + +export async function up({ db, payload, req }: MigrateUpArgs): Promise<void> { + await db.execute(sql` + CREATE TYPE "public"."enum_collaps_map_background_color" AS ENUM('default', 'soft', 'off-white'); + CREATE TYPE "public"."enum__collaps_map_v_background_color" AS ENUM('default', 'soft', 'off-white'); + CREATE TABLE "collaps_map" ( + "_order" integer NOT NULL, + "_parent_id" uuid NOT NULL, + "_path" text NOT NULL, + "id" varchar PRIMARY KEY NOT NULL, + "title" varchar, + "text" varchar, + "content" jsonb, + "background_color" "enum_collaps_map_background_color" DEFAULT 'default', + "block_name" varchar + ); + + CREATE TABLE "_collaps_map_v" ( + "_order" integer NOT NULL, + "_parent_id" uuid NOT NULL, + "_path" text NOT NULL, + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "title" varchar, + "text" varchar, + "content" jsonb, + "background_color" "enum__collaps_map_v_background_color" DEFAULT 'default', + "_uuid" varchar, + "block_name" varchar + ); + + ALTER TABLE "announcement" ALTER COLUMN "date" SET DEFAULT '2026-05-03T12:11:04.492Z'; + ALTER TABLE "calendar" ALTER COLUMN "date" SET DEFAULT '2026-05-03T12:11:04.791Z'; + ALTER TABLE "classifieds" ALTER COLUMN "until" SET DEFAULT '2026-05-29T12:11:04.854Z'; + ALTER TABLE "collaps_map" ADD CONSTRAINT "collaps_map_parent_id_fk" FOREIGN KEY ("_parent_id") REFERENCES "public"."pages"("id") ON DELETE cascade ON UPDATE no action; + ALTER TABLE "_collaps_map_v" ADD CONSTRAINT "_collaps_map_v_parent_id_fk" FOREIGN KEY ("_parent_id") REFERENCES "public"."_pages_v"("id") ON DELETE cascade ON UPDATE no action; + CREATE INDEX "collaps_map_order_idx" ON "collaps_map" USING btree ("_order"); + CREATE INDEX "collaps_map_parent_id_idx" ON "collaps_map" USING btree ("_parent_id"); + CREATE INDEX "collaps_map_path_idx" ON "collaps_map" USING btree ("_path"); + CREATE INDEX "_collaps_map_v_order_idx" ON "_collaps_map_v" USING btree ("_order"); + CREATE INDEX "_collaps_map_v_parent_id_idx" ON "_collaps_map_v" USING btree ("_parent_id"); + CREATE INDEX "_collaps_map_v_path_idx" ON "_collaps_map_v" USING btree ("_path");`) +} + +export async function down({ db, payload, req }: MigrateDownArgs): Promise<void> { + await db.execute(sql` + ALTER TABLE "collaps_map" DISABLE ROW LEVEL SECURITY; + ALTER TABLE "_collaps_map_v" DISABLE ROW LEVEL SECURITY; + DROP TABLE "collaps_map" CASCADE; + DROP TABLE "_collaps_map_v" CASCADE; + ALTER TABLE "announcement" ALTER COLUMN "date" SET DEFAULT '2026-04-26T13:12:25.662Z'; + ALTER TABLE "calendar" ALTER COLUMN "date" SET DEFAULT '2026-04-26T13:12:25.946Z'; + ALTER TABLE "classifieds" ALTER COLUMN "until" SET DEFAULT '2026-05-23T13:12:26.003Z'; + DROP TYPE "public"."enum_collaps_map_background_color"; + DROP TYPE "public"."enum__collaps_map_v_background_color";`) +} diff --git a/src/migrations/index.ts b/src/migrations/index.ts index b6f904d..c9c94e5 100644 --- a/src/migrations/index.ts +++ b/src/migrations/index.ts @@ -42,6 +42,7 @@ import * as migration_20260417_111855_event_occurrences from './20260417_111855_ import * as migration_20260417_114727_simplify_recurring_events from './20260417_114727_simplify_recurring_events'; import * as migration_20260423_115311 from './20260423_115311'; import * as migration_20260423_131226_add_event_end_date_time from './20260423_131226_add_event_end_date_time'; +import * as migration_20260429_121105_collapsible_map_with_text from './20260429_121105_collapsible_map_with_text'; export const migrations = [ { @@ -262,6 +263,11 @@ export const migrations = [ { up: migration_20260423_131226_add_event_end_date_time.up, down: migration_20260423_131226_add_event_end_date_time.down, - name: '20260423_131226_add_event_end_date_time' + name: '20260423_131226_add_event_end_date_time', + }, + { + up: migration_20260429_121105_collapsible_map_with_text.up, + down: migration_20260429_121105_collapsible_map_with_text.down, + name: '20260429_121105_collapsible_map_with_text' }, ]; diff --git a/src/payload-types.ts b/src/payload-types.ts index 257845b..e6c48af 100644 --- a/src/payload-types.ts +++ b/src/payload-types.ts @@ -597,6 +597,29 @@ export interface Page { blockName?: string | null; blockType: 'collapsibleImageWithText'; } + | { + title: string; + text: string; + content: { + root: { + type: string; + children: { + type: any; + version: number; + [k: string]: unknown; + }[]; + direction: ('ltr' | 'rtl') | null; + format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | ''; + indent: number; + version: number; + }; + [k: string]: unknown; + }; + backgroundColor?: ('default' | 'soft' | 'off-white') | null; + id?: string | null; + blockName?: string | null; + blockType: 'collapsibleMapWithText'; + } | { items: { title: string; @@ -2169,6 +2192,16 @@ export interface PagesSelect<T extends boolean = true> { id?: T; blockName?: T; }; + collapsibleMapWithText?: + | T + | { + title?: T; + text?: T; + content?: T; + backgroundColor?: T; + id?: T; + blockName?: T; + }; collapsibles?: | T | {