@utrecht/web-component-library-stencil 1.0.0-alpha.333 → 1.0.0-alpha.335

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/dist/cjs/loader.cjs.js +1 -1
  2. package/dist/cjs/utrecht-icon-glijbaan.cjs.entry.js +19 -0
  3. package/dist/cjs/utrecht-icon-parkeren-betaalautomaat.cjs.entry.js +19 -0
  4. package/dist/cjs/utrecht-icon-schild-gemeente-utrecht.cjs.entry.js +19 -0
  5. package/dist/cjs/utrecht-icon-verkeerslicht.cjs.entry.js +19 -0
  6. package/dist/cjs/utrecht.cjs.js +1 -1
  7. package/dist/collection/collection-manifest.json +4 -0
  8. package/dist/collection/generated/utrecht-icon-glijbaan/utrecht-icon-glijbaan.stencil.js +17 -0
  9. package/dist/collection/generated/utrecht-icon-parkeren-betaalautomaat/utrecht-icon-parkeren-betaalautomaat.stencil.js +17 -0
  10. package/dist/collection/generated/utrecht-icon-schild-gemeente-utrecht/utrecht-icon-schild-gemeente-utrecht.stencil.js +15 -0
  11. package/dist/collection/generated/utrecht-icon-verkeerslicht/utrecht-icon-verkeerslicht.stencil.js +15 -0
  12. package/dist/components/index.d.ts +4 -0
  13. package/dist/components/index.js +4 -0
  14. package/dist/components/utrecht-icon-glijbaan.d.ts +11 -0
  15. package/dist/components/utrecht-icon-glijbaan.js +33 -0
  16. package/dist/components/utrecht-icon-parkeren-betaalautomaat.d.ts +11 -0
  17. package/dist/components/utrecht-icon-parkeren-betaalautomaat.js +33 -0
  18. package/dist/components/utrecht-icon-schild-gemeente-utrecht.d.ts +11 -0
  19. package/dist/components/utrecht-icon-schild-gemeente-utrecht.js +33 -0
  20. package/dist/components/utrecht-icon-verkeerslicht.d.ts +11 -0
  21. package/dist/components/utrecht-icon-verkeerslicht.js +33 -0
  22. package/dist/esm/loader.js +1 -1
  23. package/dist/esm/utrecht-icon-glijbaan.entry.js +15 -0
  24. package/dist/esm/utrecht-icon-parkeren-betaalautomaat.entry.js +15 -0
  25. package/dist/esm/utrecht-icon-schild-gemeente-utrecht.entry.js +15 -0
  26. package/dist/esm/utrecht-icon-verkeerslicht.entry.js +15 -0
  27. package/dist/esm/utrecht.js +1 -1
  28. package/dist/types/components.d.ts +52 -0
  29. package/dist/types/generated/utrecht-icon-glijbaan/utrecht-icon-glijbaan.stencil.d.ts +3 -0
  30. package/dist/types/generated/utrecht-icon-parkeren-betaalautomaat/utrecht-icon-parkeren-betaalautomaat.stencil.d.ts +3 -0
  31. package/dist/types/generated/utrecht-icon-schild-gemeente-utrecht/utrecht-icon-schild-gemeente-utrecht.stencil.d.ts +3 -0
  32. package/dist/types/generated/utrecht-icon-verkeerslicht/utrecht-icon-verkeerslicht.stencil.d.ts +3 -0
  33. package/dist/utrecht/p-22788160.entry.js +1 -0
  34. package/dist/utrecht/p-24676c2a.entry.js +1 -0
  35. package/dist/utrecht/p-2c3abb65.entry.js +1 -0
  36. package/dist/utrecht/p-4ed3f8c2.entry.js +1 -0
  37. package/dist/utrecht/utrecht.esm.js +1 -1
  38. package/package.json +4 -4
@@ -0,0 +1,33 @@
1
+ import { proxyCustomElement, HTMLElement, h } from '@stencil/core/internal/client';
2
+
3
+ const indexCss = ":host{color:var(--utrecht-icon-color);display:inline-block;height:var(--utrecht-icon-size);inset-block-start:var(--utrecht-icon-inset-block-start, 0);position:relative;width:var(--utrecht-icon-size)}";
4
+
5
+ const UtrechtIconVerkeerslicht$1 = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
6
+ constructor() {
7
+ super();
8
+ this.__registerHost();
9
+ this.__attachShadow();
10
+ }
11
+ render() {
12
+ return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" }, h("path", { d: "M29.36 17.5h.25c2.42 0 4.37-1.96 4.37-4.37V4.87c0-2.42-1.96-4.37-4.37-4.37h-.25c-2.42 0-4.37 1.96-4.37 4.37v8.26c0 2.42 1.96 4.37 4.37 4.37Zm.13-14c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5Zm0 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5Zm0 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5Zm6.5 23v2h-36v-2h27v-5h5v5h4Zm-5.07-15 .04 3h-2.97v-3h2.93Zm-2.93 5h3c.56 0 1.01.45 1.01 1.01v1.99h-5v-2c0-.55.45-1 1-1Z" })));
13
+ }
14
+ static get style() { return indexCss; }
15
+ }, [1, "utrecht-icon-verkeerslicht"]);
16
+ function defineCustomElement$1() {
17
+ if (typeof customElements === "undefined") {
18
+ return;
19
+ }
20
+ const components = ["utrecht-icon-verkeerslicht"];
21
+ components.forEach(tagName => { switch (tagName) {
22
+ case "utrecht-icon-verkeerslicht":
23
+ if (!customElements.get(tagName)) {
24
+ customElements.define(tagName, UtrechtIconVerkeerslicht$1);
25
+ }
26
+ break;
27
+ } });
28
+ }
29
+
30
+ const UtrechtIconVerkeerslicht = UtrechtIconVerkeerslicht$1;
31
+ const defineCustomElement = defineCustomElement$1;
32
+
33
+ export { UtrechtIconVerkeerslicht, defineCustomElement };
@@ -10,7 +10,7 @@ const patchEsm = () => {
10
10
  const defineCustomElements = (win, options) => {
11
11
  if (typeof window === 'undefined') return Promise.resolve();
12
12
  return patchEsm().then(() => {
13
- return bootstrapLazy(JSON.parse("[[\"utrecht-contact-card-template\",[[1,\"utrecht-contact-card-template\"]]],[\"utrecht-logo-button\",[[1,\"utrecht-logo-button\",{\"type\":[1]}]]],[\"utrecht-digid-button\",[[1,\"utrecht-digid-button\",{\"type\":[1]}]]],[\"utrecht-article\",[[1,\"utrecht-article\"]]],[\"utrecht-backdrop\",[[1,\"utrecht-backdrop\",{\"viewport\":[4]}]]],[\"utrecht-badge-counter\",[[1,\"utrecht-badge-counter\",{\"value\":[2],\"max\":[2],\"locale\":[1]}]]],[\"utrecht-badge-data\",[[1,\"utrecht-badge-data\"]]],[\"utrecht-badge-status\",[[1,\"utrecht-badge-status\",{\"status\":[1]}]]],[\"utrecht-breadcrumb\",[[1,\"utrecht-breadcrumb\",{\"json\":[1],\"variant\":[1]}]]],[\"utrecht-checkbox\",[[1,\"utrecht-checkbox\",{\"disabled\":[516],\"readOnly\":[516,\"readonly\"],\"checked\":[4],\"value\":[1]}]]],[\"utrecht-custom-checkbox\",[[1,\"utrecht-custom-checkbox\",{\"disabled\":[4],\"checked\":[4],\"indeterminate\":[4],\"invalid\":[4],\"required\":[4]}]]],[\"utrecht-document\",[[1,\"utrecht-document\"]]],[\"utrecht-eherkenning-logo\",[[1,\"utrecht-eherkenning-logo\"]]],[\"utrecht-eidas-logo\",[[1,\"utrecht-eidas-logo\"]]],[\"utrecht-form-field-checkbox\",[[1,\"utrecht-form-field-checkbox\",{\"label\":[4],\"disabled\":[516],\"checked\":[516],\"invalid\":[516],\"required\":[516],\"value\":[32]}]]],[\"utrecht-form-field-description\",[[1,\"utrecht-form-field-description\",{\"status\":[513]}]]],[\"utrecht-form-field-textarea\",[[1,\"utrecht-form-field-textarea\",{\"disabled\":[516],\"invalid\":[516],\"readOnly\":[516,\"readonly\"],\"placeholder\":[1],\"required\":[516],\"value\":[1]}]]],[\"utrecht-form-field-textbox\",[[1,\"utrecht-form-field-textbox\",{\"autoComplete\":[513,\"autocomplete\"],\"disabled\":[516],\"invalid\":[516],\"min\":[1],\"max\":[1],\"pattern\":[1],\"placeholder\":[1],\"readOnly\":[516,\"readonly\"],\"required\":[516],\"type\":[513],\"value\":[1]}]]],[\"utrecht-form-toggle\",[[1,\"utrecht-form-toggle\",{\"disabled\":[516],\"checked\":[516]}]]],[\"utrecht-heading\",[[1,\"utrecht-heading\",{\"level\":[2]}]]],[\"utrecht-heading-1\",[[1,\"utrecht-heading-1\"]]],[\"utrecht-heading-4\",[[1,\"utrecht-heading-4\"]]],[\"utrecht-heading-5\",[[1,\"utrecht-heading-5\"]]],[\"utrecht-heading-6\",[[1,\"utrecht-heading-6\"]]],[\"utrecht-html-content\",[[4,\"utrecht-html-content\"]]],[\"utrecht-icon\",[[1,\"utrecht-icon\"]]],[\"utrecht-icon-afspraak-maken\",[[1,\"utrecht-icon-afspraak-maken\"]]],[\"utrecht-icon-afval\",[[1,\"utrecht-icon-afval\"]]],[\"utrecht-icon-afval-container\",[[1,\"utrecht-icon-afval-container\"]]],[\"utrecht-icon-afval-containerpas\",[[1,\"utrecht-icon-afval-containerpas\"]]],[\"utrecht-icon-afval-kalender\",[[1,\"utrecht-icon-afval-kalender\"]]],[\"utrecht-icon-afval-scheiden\",[[1,\"utrecht-icon-afval-scheiden\"]]],[\"utrecht-icon-afvalkalender\",[[1,\"utrecht-icon-afvalkalender\"]]],[\"utrecht-icon-alleen\",[[1,\"utrecht-icon-alleen\"]]],[\"utrecht-icon-arrow\",[[1,\"utrecht-icon-arrow\"]]],[\"utrecht-icon-bestemmingsplan\",[[1,\"utrecht-icon-bestemmingsplan\"]]],[\"utrecht-icon-betaaldatum\",[[1,\"utrecht-icon-betaaldatum\"]]],[\"utrecht-icon-bewijsstukken\",[[1,\"utrecht-icon-bewijsstukken\"]]],[\"utrecht-icon-bijstand\",[[1,\"utrecht-icon-bijstand\"]]],[\"utrecht-icon-blad\",[[1,\"utrecht-icon-blad\"]]],[\"utrecht-icon-bouwproject\",[[1,\"utrecht-icon-bouwproject\"]]],[\"utrecht-icon-brandgevaar\",[[1,\"utrecht-icon-brandgevaar\"]]],[\"utrecht-icon-brief-betalen\",[[1,\"utrecht-icon-brief-betalen\"]]],[\"utrecht-icon-checkmark\",[[1,\"utrecht-icon-checkmark\"]]],[\"utrecht-icon-college-b-w\",[[1,\"utrecht-icon-college-b-w\"]]],[\"utrecht-icon-container\",[[1,\"utrecht-icon-container\"]]],[\"utrecht-icon-container-bio\",[[1,\"utrecht-icon-container-bio\"]]],[\"utrecht-icon-cross\",[[1,\"utrecht-icon-cross\"]]],[\"utrecht-icon-dakloos\",[[1,\"utrecht-icon-dakloos\"]]],[\"utrecht-icon-dementie\",[[1,\"utrecht-icon-dementie\"]]],[\"utrecht-icon-documenten\",[[1,\"utrecht-icon-documenten\"]]],[\"utrecht-icon-duurzaam\",[[1,\"utrecht-icon-duurzaam\"]]],[\"utrecht-icon-eenzaamheid\",[[1,\"utrecht-icon-eenzaamheid\"]]],[\"utrecht-icon-eikenprocessie\",[[1,\"utrecht-icon-eikenprocessie\"]]],[\"utrecht-icon-elektrisch-rijden\",[[1,\"utrecht-icon-elektrisch-rijden\"]]],[\"utrecht-icon-energie-vergoeding\",[[1,\"utrecht-icon-energie-vergoeding\"]]],[\"utrecht-icon-energietransitie\",[[1,\"utrecht-icon-energietransitie\"]]],[\"utrecht-icon-error\",[[1,\"utrecht-icon-error\"]]],[\"utrecht-icon-evenementen\",[[1,\"utrecht-icon-evenementen\"]]],[\"utrecht-icon-facebook\",[[1,\"utrecht-icon-facebook\"]]],[\"utrecht-icon-fiets\",[[1,\"utrecht-icon-fiets\"]]],[\"utrecht-icon-filter\",[[1,\"utrecht-icon-filter\"]]],[\"utrecht-icon-gebruiker-centraal\",[[1,\"utrecht-icon-gebruiker-centraal\"]]],[\"utrecht-icon-gebruiker-ingelogd\",[[1,\"utrecht-icon-gebruiker-ingelogd\"]]],[\"utrecht-icon-gegevenswoordenboek\",[[1,\"utrecht-icon-gegevenswoordenboek\"]]],[\"utrecht-icon-geluid\",[[1,\"utrecht-icon-geluid\"]]],[\"utrecht-icon-gemeente-locatie\",[[1,\"utrecht-icon-gemeente-locatie\"]]],[\"utrecht-icon-gemeenteraad\",[[1,\"utrecht-icon-gemeenteraad\"]]],[\"utrecht-icon-gezicht\",[[1,\"utrecht-icon-gezicht\"]]],[\"utrecht-icon-grafiek\",[[1,\"utrecht-icon-grafiek\"]]],[\"utrecht-icon-grofvuil\",[[1,\"utrecht-icon-grofvuil\"]]],[\"utrecht-icon-grofvuil-ophalen\",[[1,\"utrecht-icon-grofvuil-ophalen\"]]],[\"utrecht-icon-herdenking\",[[1,\"utrecht-icon-herdenking\"]]],[\"utrecht-icon-hondenbelasting\",[[1,\"utrecht-icon-hondenbelasting\"]]],[\"utrecht-icon-horeca\",[[1,\"utrecht-icon-horeca\"]]],[\"utrecht-icon-horecavergunning\",[[1,\"utrecht-icon-horecavergunning\"]]],[\"utrecht-icon-huishoudelijk-geweld\",[[1,\"utrecht-icon-huishoudelijk-geweld\"]]],[\"utrecht-icon-hulp-huishouden\",[[1,\"utrecht-icon-hulp-huishouden\"]]],[\"utrecht-icon-hulp-vervoer\",[[1,\"utrecht-icon-hulp-vervoer\"]]],[\"utrecht-icon-hulp-zorg\",[[1,\"utrecht-icon-hulp-zorg\"]]],[\"utrecht-icon-hulpmiddelen-gezin\",[[1,\"utrecht-icon-hulpmiddelen-gezin\"]]],[\"utrecht-icon-hulpverlening\",[[1,\"utrecht-icon-hulpverlening\"]]],[\"utrecht-icon-idee\",[[1,\"utrecht-icon-idee\"]]],[\"utrecht-icon-information\",[[1,\"utrecht-icon-information\"]]],[\"utrecht-icon-innovatie\",[[1,\"utrecht-icon-innovatie\"]]],[\"utrecht-icon-inspraak-inwoners\",[[1,\"utrecht-icon-inspraak-inwoners\"]]],[\"utrecht-icon-instagram\",[[1,\"utrecht-icon-instagram\"]]],[\"utrecht-icon-kalender\",[[1,\"utrecht-icon-kalender\"]]],[\"utrecht-icon-kennis\",[[1,\"utrecht-icon-kennis\"]]],[\"utrecht-icon-kerstbomen\",[[1,\"utrecht-icon-kerstbomen\"]]],[\"utrecht-icon-klachten\",[[1,\"utrecht-icon-klachten\"]]],[\"utrecht-icon-kroon\",[[1,\"utrecht-icon-kroon\"]]],[\"utrecht-icon-laadpaal\",[[1,\"utrecht-icon-laadpaal\"]]],[\"utrecht-icon-lantaarnpaal\",[[1,\"utrecht-icon-lantaarnpaal\"]]],[\"utrecht-icon-lantaarnpaal-oud\",[[1,\"utrecht-icon-lantaarnpaal-oud\"]]],[\"utrecht-icon-leren\",[[1,\"utrecht-icon-leren\"]]],[\"utrecht-icon-let-op\",[[1,\"utrecht-icon-let-op\"]]],[\"utrecht-icon-linkedin\",[[1,\"utrecht-icon-linkedin\"]]],[\"utrecht-icon-list\",[[1,\"utrecht-icon-list\"]]],[\"utrecht-icon-loupe\",[[1,\"utrecht-icon-loupe\"]]],[\"utrecht-icon-markt\",[[1,\"utrecht-icon-markt\"]]],[\"utrecht-icon-melding\",[[1,\"utrecht-icon-melding\"]]],[\"utrecht-icon-melding-boom\",[[1,\"utrecht-icon-melding-boom\"]]],[\"utrecht-icon-melding-klacht\",[[1,\"utrecht-icon-melding-klacht\"]]],[\"utrecht-icon-melding-openbareruimte\",[[1,\"utrecht-icon-melding-openbareruimte\"]]],[\"utrecht-icon-melding-verlichting\",[[1,\"utrecht-icon-melding-verlichting\"]]],[\"utrecht-icon-menselijk\",[[1,\"utrecht-icon-menselijk\"]]],[\"utrecht-icon-milieu-ontheffing\",[[1,\"utrecht-icon-milieu-ontheffing\"]]],[\"utrecht-icon-natuur\",[[1,\"utrecht-icon-natuur\"]]],[\"utrecht-icon-nieuw-huis\",[[1,\"utrecht-icon-nieuw-huis\"]]],[\"utrecht-icon-nummerbord\",[[1,\"utrecht-icon-nummerbord\"]]],[\"utrecht-icon-om-het-huis\",[[1,\"utrecht-icon-om-het-huis\"]]],[\"utrecht-icon-omgeving\",[[1,\"utrecht-icon-omgeving\"]]],[\"utrecht-icon-omgevingsvisie\",[[1,\"utrecht-icon-omgevingsvisie\"]]],[\"utrecht-icon-omgevingswet\",[[1,\"utrecht-icon-omgevingswet\"]]],[\"utrecht-icon-onderhoud\",[[1,\"utrecht-icon-onderhoud\"]]],[\"utrecht-icon-ondernemen\",[[1,\"utrecht-icon-ondernemen\"]]],[\"utrecht-icon-openingstijden\",[[1,\"utrecht-icon-openingstijden\"]]],[\"utrecht-icon-over-de-stad\",[[1,\"utrecht-icon-over-de-stad\"]]],[\"utrecht-icon-overlijden\",[[1,\"utrecht-icon-overlijden\"]]],[\"utrecht-icon-panden\",[[1,\"utrecht-icon-panden\"]]],[\"utrecht-icon-park\",[[1,\"utrecht-icon-park\"]]],[\"utrecht-icon-parkeerkaart\",[[1,\"utrecht-icon-parkeerkaart\"]]],[\"utrecht-icon-parkeervergunning\",[[1,\"utrecht-icon-parkeervergunning\"]]],[\"utrecht-icon-parken\",[[1,\"utrecht-icon-parken\"]]],[\"utrecht-icon-parkeren-bedrijven\",[[1,\"utrecht-icon-parkeren-bedrijven\"]]],[\"utrecht-icon-parkeren-betalen\",[[1,\"utrecht-icon-parkeren-betalen\"]]],[\"utrecht-icon-participatie-campagne\",[[1,\"utrecht-icon-participatie-campagne\"]]],[\"utrecht-icon-participatie-like\",[[1,\"utrecht-icon-participatie-like\"]]],[\"utrecht-icon-participatie-pitch\",[[1,\"utrecht-icon-participatie-pitch\"]]],[\"utrecht-icon-paspoort\",[[1,\"utrecht-icon-paspoort\"]]],[\"utrecht-icon-rijbewijs\",[[1,\"utrecht-icon-rijbewijs\"]]],[\"utrecht-icon-rolstoel\",[[1,\"utrecht-icon-rolstoel\"]]],[\"utrecht-icon-shoppen\",[[1,\"utrecht-icon-shoppen\"]]],[\"utrecht-icon-sinterklaas\",[[1,\"utrecht-icon-sinterklaas\"]]],[\"utrecht-icon-slechtziende-hoordende\",[[1,\"utrecht-icon-slechtziende-hoordende\"]]],[\"utrecht-icon-sport\",[[1,\"utrecht-icon-sport\"]]],[\"utrecht-icon-sport-en-cultuur\",[[1,\"utrecht-icon-sport-en-cultuur\"]]],[\"utrecht-icon-stookverbod\",[[1,\"utrecht-icon-stookverbod\"]]],[\"utrecht-icon-strand\",[[1,\"utrecht-icon-strand\"]]],[\"utrecht-icon-strooien\",[[1,\"utrecht-icon-strooien\"]]],[\"utrecht-icon-subsidie\",[[1,\"utrecht-icon-subsidie\"]]],[\"utrecht-icon-subsidie-gezin\",[[1,\"utrecht-icon-subsidie-gezin\"]]],[\"utrecht-icon-toeslag\",[[1,\"utrecht-icon-toeslag\"]]],[\"utrecht-icon-trein\",[[1,\"utrecht-icon-trein\"]]],[\"utrecht-icon-trouwen\",[[1,\"utrecht-icon-trouwen\"]]],[\"utrecht-icon-twitter\",[[1,\"utrecht-icon-twitter\"]]],[\"utrecht-icon-uw-wijk\",[[1,\"utrecht-icon-uw-wijk\"]]],[\"utrecht-icon-vaccinatie\",[[1,\"utrecht-icon-vaccinatie\"]]],[\"utrecht-icon-veilige-wijk\",[[1,\"utrecht-icon-veilige-wijk\"]]],[\"utrecht-icon-vergaderen\",[[1,\"utrecht-icon-vergaderen\"]]],[\"utrecht-icon-vergoeding\",[[1,\"utrecht-icon-vergoeding\"]]],[\"utrecht-icon-verhuizen\",[[1,\"utrecht-icon-verhuizen\"]]],[\"utrecht-icon-verkiezingen\",[[1,\"utrecht-icon-verkiezingen\"]]],[\"utrecht-icon-verslaving\",[[1,\"utrecht-icon-verslaving\"]]],[\"utrecht-icon-vervoersvoorziening\",[[1,\"utrecht-icon-vervoersvoorziening\"]]],[\"utrecht-icon-virus\",[[1,\"utrecht-icon-virus\"]]],[\"utrecht-icon-vluchtelingen\",[[1,\"utrecht-icon-vluchtelingen\"]]],[\"utrecht-icon-voorzieningen-vervoer\",[[1,\"utrecht-icon-voorzieningen-vervoer\"]]],[\"utrecht-icon-vrijwilligerswerk\",[[1,\"utrecht-icon-vrijwilligerswerk\"]]],[\"utrecht-icon-vuurwerk\",[[1,\"utrecht-icon-vuurwerk\"]]],[\"utrecht-icon-wandelstok\",[[1,\"utrecht-icon-wandelstok\"]]],[\"utrecht-icon-warm\",[[1,\"utrecht-icon-warm\"]]],[\"utrecht-icon-warning\",[[1,\"utrecht-icon-warning\"]]],[\"utrecht-icon-werken\",[[1,\"utrecht-icon-werken\"]]],[\"utrecht-icon-werkzaamheden\",[[1,\"utrecht-icon-werkzaamheden\"]]],[\"utrecht-icon-whatsapp\",[[1,\"utrecht-icon-whatsapp\"]]],[\"utrecht-icon-wonen-kosten\",[[1,\"utrecht-icon-wonen-kosten\"]]],[\"utrecht-icon-woning-zoeken\",[[1,\"utrecht-icon-woning-zoeken\"]]],[\"utrecht-icon-youtube\",[[1,\"utrecht-icon-youtube\"]]],[\"utrecht-icon-zelfstandig-wonen\",[[1,\"utrecht-icon-zelfstandig-wonen\"]]],[\"utrecht-icon-zoomin\",[[1,\"utrecht-icon-zoomin\"]]],[\"utrecht-icon-zoomout\",[[1,\"utrecht-icon-zoomout\"]]],[\"utrecht-icon-zorg-huis\",[[1,\"utrecht-icon-zorg-huis\"]]],[\"utrecht-icon-zwemmen\",[[1,\"utrecht-icon-zwemmen\"]]],[\"utrecht-logo\",[[1,\"utrecht-logo\"]]],[\"utrecht-page\",[[1,\"utrecht-page\"]]],[\"utrecht-page-content\",[[1,\"utrecht-page-content\"]]],[\"utrecht-page-footer\",[[1,\"utrecht-page-footer\"]]],[\"utrecht-page-header\",[[1,\"utrecht-page-header\"]]],[\"utrecht-pagination\",[[1,\"utrecht-pagination\",{\"links\":[1],\"next\":[1],\"prev\":[1],\"currentIndex\":[2,\"current-index\"]}]]],[\"utrecht-separator\",[[1,\"utrecht-separator\"]]],[\"utrecht-sidenav\",[[1,\"utrecht-sidenav\",{\"json\":[1]}]]],[\"utrecht-table\",[[1,\"utrecht-table\"]]],[\"utrecht-table-body\",[[1,\"utrecht-table-body\"]]],[\"utrecht-table-caption\",[[1,\"utrecht-table-caption\"]]],[\"utrecht-table-cell\",[[1,\"utrecht-table-cell\"]]],[\"utrecht-table-footer\",[[1,\"utrecht-table-footer\"]]],[\"utrecht-table-header\",[[1,\"utrecht-table-header\"]]],[\"utrecht-table-header-cell\",[[1,\"utrecht-table-header-cell\",{\"scope\":[1]}]]],[\"utrecht-table-row\",[[1,\"utrecht-table-row\"]]],[\"utrecht-textbox\",[[1,\"utrecht-textbox\",{\"autoComplete\":[513,\"autocomplete\"],\"disabled\":[516],\"invalid\":[516],\"min\":[1],\"max\":[1],\"pattern\":[1],\"placeholder\":[1],\"readOnly\":[516,\"readonly\"],\"required\":[516],\"type\":[513],\"value\":[1]}]]],[\"utrecht-button\",[[1,\"utrecht-button\",{\"appearance\":[1],\"busy\":[4],\"disabled\":[4],\"type\":[1]}]]],[\"utrecht-digid-logo\",[[1,\"utrecht-digid-logo\"]]],[\"utrecht-heading-2_3\",[[1,\"utrecht-heading-2\"],[1,\"utrecht-heading-3\"],[1,\"utrecht-paragraph\",{\"lead\":[4]}]]]]"), options);
13
+ return bootstrapLazy(JSON.parse("[[\"utrecht-contact-card-template\",[[1,\"utrecht-contact-card-template\"]]],[\"utrecht-logo-button\",[[1,\"utrecht-logo-button\",{\"type\":[1]}]]],[\"utrecht-digid-button\",[[1,\"utrecht-digid-button\",{\"type\":[1]}]]],[\"utrecht-article\",[[1,\"utrecht-article\"]]],[\"utrecht-backdrop\",[[1,\"utrecht-backdrop\",{\"viewport\":[4]}]]],[\"utrecht-badge-counter\",[[1,\"utrecht-badge-counter\",{\"value\":[2],\"max\":[2],\"locale\":[1]}]]],[\"utrecht-badge-data\",[[1,\"utrecht-badge-data\"]]],[\"utrecht-badge-status\",[[1,\"utrecht-badge-status\",{\"status\":[1]}]]],[\"utrecht-breadcrumb\",[[1,\"utrecht-breadcrumb\",{\"json\":[1],\"variant\":[1]}]]],[\"utrecht-checkbox\",[[1,\"utrecht-checkbox\",{\"disabled\":[516],\"readOnly\":[516,\"readonly\"],\"checked\":[4],\"value\":[1]}]]],[\"utrecht-custom-checkbox\",[[1,\"utrecht-custom-checkbox\",{\"disabled\":[4],\"checked\":[4],\"indeterminate\":[4],\"invalid\":[4],\"required\":[4]}]]],[\"utrecht-document\",[[1,\"utrecht-document\"]]],[\"utrecht-eherkenning-logo\",[[1,\"utrecht-eherkenning-logo\"]]],[\"utrecht-eidas-logo\",[[1,\"utrecht-eidas-logo\"]]],[\"utrecht-form-field-checkbox\",[[1,\"utrecht-form-field-checkbox\",{\"label\":[4],\"disabled\":[516],\"checked\":[516],\"invalid\":[516],\"required\":[516],\"value\":[32]}]]],[\"utrecht-form-field-description\",[[1,\"utrecht-form-field-description\",{\"status\":[513]}]]],[\"utrecht-form-field-textarea\",[[1,\"utrecht-form-field-textarea\",{\"disabled\":[516],\"invalid\":[516],\"readOnly\":[516,\"readonly\"],\"placeholder\":[1],\"required\":[516],\"value\":[1]}]]],[\"utrecht-form-field-textbox\",[[1,\"utrecht-form-field-textbox\",{\"autoComplete\":[513,\"autocomplete\"],\"disabled\":[516],\"invalid\":[516],\"min\":[1],\"max\":[1],\"pattern\":[1],\"placeholder\":[1],\"readOnly\":[516,\"readonly\"],\"required\":[516],\"type\":[513],\"value\":[1]}]]],[\"utrecht-form-toggle\",[[1,\"utrecht-form-toggle\",{\"disabled\":[516],\"checked\":[516]}]]],[\"utrecht-heading\",[[1,\"utrecht-heading\",{\"level\":[2]}]]],[\"utrecht-heading-1\",[[1,\"utrecht-heading-1\"]]],[\"utrecht-heading-4\",[[1,\"utrecht-heading-4\"]]],[\"utrecht-heading-5\",[[1,\"utrecht-heading-5\"]]],[\"utrecht-heading-6\",[[1,\"utrecht-heading-6\"]]],[\"utrecht-html-content\",[[4,\"utrecht-html-content\"]]],[\"utrecht-icon\",[[1,\"utrecht-icon\"]]],[\"utrecht-icon-afspraak-maken\",[[1,\"utrecht-icon-afspraak-maken\"]]],[\"utrecht-icon-afval\",[[1,\"utrecht-icon-afval\"]]],[\"utrecht-icon-afval-container\",[[1,\"utrecht-icon-afval-container\"]]],[\"utrecht-icon-afval-containerpas\",[[1,\"utrecht-icon-afval-containerpas\"]]],[\"utrecht-icon-afval-kalender\",[[1,\"utrecht-icon-afval-kalender\"]]],[\"utrecht-icon-afval-scheiden\",[[1,\"utrecht-icon-afval-scheiden\"]]],[\"utrecht-icon-afvalkalender\",[[1,\"utrecht-icon-afvalkalender\"]]],[\"utrecht-icon-alleen\",[[1,\"utrecht-icon-alleen\"]]],[\"utrecht-icon-arrow\",[[1,\"utrecht-icon-arrow\"]]],[\"utrecht-icon-bestemmingsplan\",[[1,\"utrecht-icon-bestemmingsplan\"]]],[\"utrecht-icon-betaaldatum\",[[1,\"utrecht-icon-betaaldatum\"]]],[\"utrecht-icon-bewijsstukken\",[[1,\"utrecht-icon-bewijsstukken\"]]],[\"utrecht-icon-bijstand\",[[1,\"utrecht-icon-bijstand\"]]],[\"utrecht-icon-blad\",[[1,\"utrecht-icon-blad\"]]],[\"utrecht-icon-bouwproject\",[[1,\"utrecht-icon-bouwproject\"]]],[\"utrecht-icon-brandgevaar\",[[1,\"utrecht-icon-brandgevaar\"]]],[\"utrecht-icon-brief-betalen\",[[1,\"utrecht-icon-brief-betalen\"]]],[\"utrecht-icon-checkmark\",[[1,\"utrecht-icon-checkmark\"]]],[\"utrecht-icon-college-b-w\",[[1,\"utrecht-icon-college-b-w\"]]],[\"utrecht-icon-container\",[[1,\"utrecht-icon-container\"]]],[\"utrecht-icon-container-bio\",[[1,\"utrecht-icon-container-bio\"]]],[\"utrecht-icon-cross\",[[1,\"utrecht-icon-cross\"]]],[\"utrecht-icon-dakloos\",[[1,\"utrecht-icon-dakloos\"]]],[\"utrecht-icon-dementie\",[[1,\"utrecht-icon-dementie\"]]],[\"utrecht-icon-documenten\",[[1,\"utrecht-icon-documenten\"]]],[\"utrecht-icon-duurzaam\",[[1,\"utrecht-icon-duurzaam\"]]],[\"utrecht-icon-eenzaamheid\",[[1,\"utrecht-icon-eenzaamheid\"]]],[\"utrecht-icon-eikenprocessie\",[[1,\"utrecht-icon-eikenprocessie\"]]],[\"utrecht-icon-elektrisch-rijden\",[[1,\"utrecht-icon-elektrisch-rijden\"]]],[\"utrecht-icon-energie-vergoeding\",[[1,\"utrecht-icon-energie-vergoeding\"]]],[\"utrecht-icon-energietransitie\",[[1,\"utrecht-icon-energietransitie\"]]],[\"utrecht-icon-error\",[[1,\"utrecht-icon-error\"]]],[\"utrecht-icon-evenementen\",[[1,\"utrecht-icon-evenementen\"]]],[\"utrecht-icon-facebook\",[[1,\"utrecht-icon-facebook\"]]],[\"utrecht-icon-fiets\",[[1,\"utrecht-icon-fiets\"]]],[\"utrecht-icon-filter\",[[1,\"utrecht-icon-filter\"]]],[\"utrecht-icon-gebruiker-centraal\",[[1,\"utrecht-icon-gebruiker-centraal\"]]],[\"utrecht-icon-gebruiker-ingelogd\",[[1,\"utrecht-icon-gebruiker-ingelogd\"]]],[\"utrecht-icon-gegevenswoordenboek\",[[1,\"utrecht-icon-gegevenswoordenboek\"]]],[\"utrecht-icon-geluid\",[[1,\"utrecht-icon-geluid\"]]],[\"utrecht-icon-gemeente-locatie\",[[1,\"utrecht-icon-gemeente-locatie\"]]],[\"utrecht-icon-gemeenteraad\",[[1,\"utrecht-icon-gemeenteraad\"]]],[\"utrecht-icon-gezicht\",[[1,\"utrecht-icon-gezicht\"]]],[\"utrecht-icon-glijbaan\",[[1,\"utrecht-icon-glijbaan\"]]],[\"utrecht-icon-grafiek\",[[1,\"utrecht-icon-grafiek\"]]],[\"utrecht-icon-grofvuil\",[[1,\"utrecht-icon-grofvuil\"]]],[\"utrecht-icon-grofvuil-ophalen\",[[1,\"utrecht-icon-grofvuil-ophalen\"]]],[\"utrecht-icon-herdenking\",[[1,\"utrecht-icon-herdenking\"]]],[\"utrecht-icon-hondenbelasting\",[[1,\"utrecht-icon-hondenbelasting\"]]],[\"utrecht-icon-horeca\",[[1,\"utrecht-icon-horeca\"]]],[\"utrecht-icon-horecavergunning\",[[1,\"utrecht-icon-horecavergunning\"]]],[\"utrecht-icon-huishoudelijk-geweld\",[[1,\"utrecht-icon-huishoudelijk-geweld\"]]],[\"utrecht-icon-hulp-huishouden\",[[1,\"utrecht-icon-hulp-huishouden\"]]],[\"utrecht-icon-hulp-vervoer\",[[1,\"utrecht-icon-hulp-vervoer\"]]],[\"utrecht-icon-hulp-zorg\",[[1,\"utrecht-icon-hulp-zorg\"]]],[\"utrecht-icon-hulpmiddelen-gezin\",[[1,\"utrecht-icon-hulpmiddelen-gezin\"]]],[\"utrecht-icon-hulpverlening\",[[1,\"utrecht-icon-hulpverlening\"]]],[\"utrecht-icon-idee\",[[1,\"utrecht-icon-idee\"]]],[\"utrecht-icon-information\",[[1,\"utrecht-icon-information\"]]],[\"utrecht-icon-innovatie\",[[1,\"utrecht-icon-innovatie\"]]],[\"utrecht-icon-inspraak-inwoners\",[[1,\"utrecht-icon-inspraak-inwoners\"]]],[\"utrecht-icon-instagram\",[[1,\"utrecht-icon-instagram\"]]],[\"utrecht-icon-kalender\",[[1,\"utrecht-icon-kalender\"]]],[\"utrecht-icon-kennis\",[[1,\"utrecht-icon-kennis\"]]],[\"utrecht-icon-kerstbomen\",[[1,\"utrecht-icon-kerstbomen\"]]],[\"utrecht-icon-klachten\",[[1,\"utrecht-icon-klachten\"]]],[\"utrecht-icon-kroon\",[[1,\"utrecht-icon-kroon\"]]],[\"utrecht-icon-laadpaal\",[[1,\"utrecht-icon-laadpaal\"]]],[\"utrecht-icon-lantaarnpaal\",[[1,\"utrecht-icon-lantaarnpaal\"]]],[\"utrecht-icon-lantaarnpaal-oud\",[[1,\"utrecht-icon-lantaarnpaal-oud\"]]],[\"utrecht-icon-leren\",[[1,\"utrecht-icon-leren\"]]],[\"utrecht-icon-let-op\",[[1,\"utrecht-icon-let-op\"]]],[\"utrecht-icon-linkedin\",[[1,\"utrecht-icon-linkedin\"]]],[\"utrecht-icon-list\",[[1,\"utrecht-icon-list\"]]],[\"utrecht-icon-loupe\",[[1,\"utrecht-icon-loupe\"]]],[\"utrecht-icon-markt\",[[1,\"utrecht-icon-markt\"]]],[\"utrecht-icon-melding\",[[1,\"utrecht-icon-melding\"]]],[\"utrecht-icon-melding-boom\",[[1,\"utrecht-icon-melding-boom\"]]],[\"utrecht-icon-melding-klacht\",[[1,\"utrecht-icon-melding-klacht\"]]],[\"utrecht-icon-melding-openbareruimte\",[[1,\"utrecht-icon-melding-openbareruimte\"]]],[\"utrecht-icon-melding-verlichting\",[[1,\"utrecht-icon-melding-verlichting\"]]],[\"utrecht-icon-menselijk\",[[1,\"utrecht-icon-menselijk\"]]],[\"utrecht-icon-milieu-ontheffing\",[[1,\"utrecht-icon-milieu-ontheffing\"]]],[\"utrecht-icon-natuur\",[[1,\"utrecht-icon-natuur\"]]],[\"utrecht-icon-nieuw-huis\",[[1,\"utrecht-icon-nieuw-huis\"]]],[\"utrecht-icon-nummerbord\",[[1,\"utrecht-icon-nummerbord\"]]],[\"utrecht-icon-om-het-huis\",[[1,\"utrecht-icon-om-het-huis\"]]],[\"utrecht-icon-omgeving\",[[1,\"utrecht-icon-omgeving\"]]],[\"utrecht-icon-omgevingsvisie\",[[1,\"utrecht-icon-omgevingsvisie\"]]],[\"utrecht-icon-omgevingswet\",[[1,\"utrecht-icon-omgevingswet\"]]],[\"utrecht-icon-onderhoud\",[[1,\"utrecht-icon-onderhoud\"]]],[\"utrecht-icon-ondernemen\",[[1,\"utrecht-icon-ondernemen\"]]],[\"utrecht-icon-openingstijden\",[[1,\"utrecht-icon-openingstijden\"]]],[\"utrecht-icon-over-de-stad\",[[1,\"utrecht-icon-over-de-stad\"]]],[\"utrecht-icon-overlijden\",[[1,\"utrecht-icon-overlijden\"]]],[\"utrecht-icon-panden\",[[1,\"utrecht-icon-panden\"]]],[\"utrecht-icon-park\",[[1,\"utrecht-icon-park\"]]],[\"utrecht-icon-parkeerkaart\",[[1,\"utrecht-icon-parkeerkaart\"]]],[\"utrecht-icon-parkeervergunning\",[[1,\"utrecht-icon-parkeervergunning\"]]],[\"utrecht-icon-parken\",[[1,\"utrecht-icon-parken\"]]],[\"utrecht-icon-parkeren-bedrijven\",[[1,\"utrecht-icon-parkeren-bedrijven\"]]],[\"utrecht-icon-parkeren-betaalautomaat\",[[1,\"utrecht-icon-parkeren-betaalautomaat\"]]],[\"utrecht-icon-parkeren-betalen\",[[1,\"utrecht-icon-parkeren-betalen\"]]],[\"utrecht-icon-participatie-campagne\",[[1,\"utrecht-icon-participatie-campagne\"]]],[\"utrecht-icon-participatie-like\",[[1,\"utrecht-icon-participatie-like\"]]],[\"utrecht-icon-participatie-pitch\",[[1,\"utrecht-icon-participatie-pitch\"]]],[\"utrecht-icon-paspoort\",[[1,\"utrecht-icon-paspoort\"]]],[\"utrecht-icon-rijbewijs\",[[1,\"utrecht-icon-rijbewijs\"]]],[\"utrecht-icon-rolstoel\",[[1,\"utrecht-icon-rolstoel\"]]],[\"utrecht-icon-schild-gemeente-utrecht\",[[1,\"utrecht-icon-schild-gemeente-utrecht\"]]],[\"utrecht-icon-shoppen\",[[1,\"utrecht-icon-shoppen\"]]],[\"utrecht-icon-sinterklaas\",[[1,\"utrecht-icon-sinterklaas\"]]],[\"utrecht-icon-slechtziende-hoordende\",[[1,\"utrecht-icon-slechtziende-hoordende\"]]],[\"utrecht-icon-sport\",[[1,\"utrecht-icon-sport\"]]],[\"utrecht-icon-sport-en-cultuur\",[[1,\"utrecht-icon-sport-en-cultuur\"]]],[\"utrecht-icon-stookverbod\",[[1,\"utrecht-icon-stookverbod\"]]],[\"utrecht-icon-strand\",[[1,\"utrecht-icon-strand\"]]],[\"utrecht-icon-strooien\",[[1,\"utrecht-icon-strooien\"]]],[\"utrecht-icon-subsidie\",[[1,\"utrecht-icon-subsidie\"]]],[\"utrecht-icon-subsidie-gezin\",[[1,\"utrecht-icon-subsidie-gezin\"]]],[\"utrecht-icon-toeslag\",[[1,\"utrecht-icon-toeslag\"]]],[\"utrecht-icon-trein\",[[1,\"utrecht-icon-trein\"]]],[\"utrecht-icon-trouwen\",[[1,\"utrecht-icon-trouwen\"]]],[\"utrecht-icon-twitter\",[[1,\"utrecht-icon-twitter\"]]],[\"utrecht-icon-uw-wijk\",[[1,\"utrecht-icon-uw-wijk\"]]],[\"utrecht-icon-vaccinatie\",[[1,\"utrecht-icon-vaccinatie\"]]],[\"utrecht-icon-veilige-wijk\",[[1,\"utrecht-icon-veilige-wijk\"]]],[\"utrecht-icon-vergaderen\",[[1,\"utrecht-icon-vergaderen\"]]],[\"utrecht-icon-vergoeding\",[[1,\"utrecht-icon-vergoeding\"]]],[\"utrecht-icon-verhuizen\",[[1,\"utrecht-icon-verhuizen\"]]],[\"utrecht-icon-verkeerslicht\",[[1,\"utrecht-icon-verkeerslicht\"]]],[\"utrecht-icon-verkiezingen\",[[1,\"utrecht-icon-verkiezingen\"]]],[\"utrecht-icon-verslaving\",[[1,\"utrecht-icon-verslaving\"]]],[\"utrecht-icon-vervoersvoorziening\",[[1,\"utrecht-icon-vervoersvoorziening\"]]],[\"utrecht-icon-virus\",[[1,\"utrecht-icon-virus\"]]],[\"utrecht-icon-vluchtelingen\",[[1,\"utrecht-icon-vluchtelingen\"]]],[\"utrecht-icon-voorzieningen-vervoer\",[[1,\"utrecht-icon-voorzieningen-vervoer\"]]],[\"utrecht-icon-vrijwilligerswerk\",[[1,\"utrecht-icon-vrijwilligerswerk\"]]],[\"utrecht-icon-vuurwerk\",[[1,\"utrecht-icon-vuurwerk\"]]],[\"utrecht-icon-wandelstok\",[[1,\"utrecht-icon-wandelstok\"]]],[\"utrecht-icon-warm\",[[1,\"utrecht-icon-warm\"]]],[\"utrecht-icon-warning\",[[1,\"utrecht-icon-warning\"]]],[\"utrecht-icon-werken\",[[1,\"utrecht-icon-werken\"]]],[\"utrecht-icon-werkzaamheden\",[[1,\"utrecht-icon-werkzaamheden\"]]],[\"utrecht-icon-whatsapp\",[[1,\"utrecht-icon-whatsapp\"]]],[\"utrecht-icon-wonen-kosten\",[[1,\"utrecht-icon-wonen-kosten\"]]],[\"utrecht-icon-woning-zoeken\",[[1,\"utrecht-icon-woning-zoeken\"]]],[\"utrecht-icon-youtube\",[[1,\"utrecht-icon-youtube\"]]],[\"utrecht-icon-zelfstandig-wonen\",[[1,\"utrecht-icon-zelfstandig-wonen\"]]],[\"utrecht-icon-zoomin\",[[1,\"utrecht-icon-zoomin\"]]],[\"utrecht-icon-zoomout\",[[1,\"utrecht-icon-zoomout\"]]],[\"utrecht-icon-zorg-huis\",[[1,\"utrecht-icon-zorg-huis\"]]],[\"utrecht-icon-zwemmen\",[[1,\"utrecht-icon-zwemmen\"]]],[\"utrecht-logo\",[[1,\"utrecht-logo\"]]],[\"utrecht-page\",[[1,\"utrecht-page\"]]],[\"utrecht-page-content\",[[1,\"utrecht-page-content\"]]],[\"utrecht-page-footer\",[[1,\"utrecht-page-footer\"]]],[\"utrecht-page-header\",[[1,\"utrecht-page-header\"]]],[\"utrecht-pagination\",[[1,\"utrecht-pagination\",{\"links\":[1],\"next\":[1],\"prev\":[1],\"currentIndex\":[2,\"current-index\"]}]]],[\"utrecht-separator\",[[1,\"utrecht-separator\"]]],[\"utrecht-sidenav\",[[1,\"utrecht-sidenav\",{\"json\":[1]}]]],[\"utrecht-table\",[[1,\"utrecht-table\"]]],[\"utrecht-table-body\",[[1,\"utrecht-table-body\"]]],[\"utrecht-table-caption\",[[1,\"utrecht-table-caption\"]]],[\"utrecht-table-cell\",[[1,\"utrecht-table-cell\"]]],[\"utrecht-table-footer\",[[1,\"utrecht-table-footer\"]]],[\"utrecht-table-header\",[[1,\"utrecht-table-header\"]]],[\"utrecht-table-header-cell\",[[1,\"utrecht-table-header-cell\",{\"scope\":[1]}]]],[\"utrecht-table-row\",[[1,\"utrecht-table-row\"]]],[\"utrecht-textbox\",[[1,\"utrecht-textbox\",{\"autoComplete\":[513,\"autocomplete\"],\"disabled\":[516],\"invalid\":[516],\"min\":[1],\"max\":[1],\"pattern\":[1],\"placeholder\":[1],\"readOnly\":[516,\"readonly\"],\"required\":[516],\"type\":[513],\"value\":[1]}]]],[\"utrecht-button\",[[1,\"utrecht-button\",{\"appearance\":[1],\"busy\":[4],\"disabled\":[4],\"type\":[1]}]]],[\"utrecht-digid-logo\",[[1,\"utrecht-digid-logo\"]]],[\"utrecht-heading-2_3\",[[1,\"utrecht-heading-2\"],[1,\"utrecht-heading-3\"],[1,\"utrecht-paragraph\",{\"lead\":[4]}]]]]"), options);
14
14
  });
15
15
  };
16
16
 
@@ -0,0 +1,15 @@
1
+ import { r as registerInstance, h } from './index-ca475e47.js';
2
+
3
+ const indexCss = ":host{color:var(--utrecht-icon-color);display:inline-block;height:var(--utrecht-icon-size);inset-block-start:var(--utrecht-icon-inset-block-start, 0);position:relative;width:var(--utrecht-icon-size)}";
4
+
5
+ const UtrechtIconGlijbaan = class {
6
+ constructor(hostRef) {
7
+ registerInstance(this, hostRef);
8
+ }
9
+ render() {
10
+ return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" }, h("path", { d: "M32.9 32.83c-.74 0-1.45-.27-1.94-.71L15 15.88V6L7.52 0 0 6v30h3V20h9v16h3V20.16l13.88 14.12c1.1 1 2.53 1.55 4.02 1.55H36v-3h-3.1ZM7.5 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3Z" }), h("circle", { cx: "24", cy: "10", r: "3" }), h("path", { d: "M25.48 14.38h-1.61c-1.61.1-2.84 1.37-2.84 3.01L21.01 19l5.96 6v-8.42c3.09-.67 4.98-3.41 4.98-7.08V9h-2.99v.5c0 3.1-1.83 4.88-5.02 4.88h1.54Z" })));
11
+ }
12
+ };
13
+ UtrechtIconGlijbaan.style = indexCss;
14
+
15
+ export { UtrechtIconGlijbaan as utrecht_icon_glijbaan };
@@ -0,0 +1,15 @@
1
+ import { r as registerInstance, h } from './index-ca475e47.js';
2
+
3
+ const indexCss = ":host{color:var(--utrecht-icon-color);display:inline-block;height:var(--utrecht-icon-size);inset-block-start:var(--utrecht-icon-inset-block-start, 0);position:relative;width:var(--utrecht-icon-size)}";
4
+
5
+ const UtrechtIconParkerenBetaalautomaat = class {
6
+ constructor(hostRef) {
7
+ registerInstance(this, hostRef);
8
+ }
9
+ render() {
10
+ return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" }, h("path", { d: "M16.57 8.01h-4.61v8h4.61c1.89 0 3.43-1.79 3.43-4s-1.54-4-3.43-4Z" }), h("path", { d: "M29 20c.34 0 .67.02.99.06V4.5c0-2.48-2.01-4.5-4.49-4.5h-21C2.02 0 0 2.02 0 4.5v21C0 27.98 2.02 30 4.5 30h15.56c-.04-.33-.06-.66-.06-1a9 9 0 0 1 9-9Zm-17.04-2.02v6.01H10V6.02h6.48C19.52 6.02 22 8.7 22 12s-2.48 5.98-5.52 5.98h-4.52Z" }), h("path", { d: "M29.02 22.03c-3.86 0-6.98 3.13-6.98 6.98s3.13 6.98 6.98 6.98S36 32.86 36 29.01s-3.13-6.98-6.98-6.98Zm.54 11.3c-1.69 0-3.28-.95-3.88-2.68s-1.19 0-1.19 0v-1.1h.96a4.91 4.91 0 0 1 0-.9h-.96v-1.09h1.18c.6-1.75 2.22-2.71 3.9-2.71.88 0 1.58.19 2.14.57l-.58 1.16c-.41-.3-.95-.44-1.56-.44-.96 0-1.88.45-2.34 1.41h3.44l-.53 1.09h-3.2c-.01.1-.03.24-.03.44 0 .23.01.38.03.46h2.83l-.51 1.1h-2.01c.46.91 1.34 1.35 2.31 1.35.7 0 1.31-.2 1.74-.6l.7 1.08c-.59.5-1.44.85-2.44.85Z" })));
11
+ }
12
+ };
13
+ UtrechtIconParkerenBetaalautomaat.style = indexCss;
14
+
15
+ export { UtrechtIconParkerenBetaalautomaat as utrecht_icon_parkeren_betaalautomaat };
@@ -0,0 +1,15 @@
1
+ import { r as registerInstance, h } from './index-ca475e47.js';
2
+
3
+ const indexCss = ":host{color:var(--utrecht-icon-color);display:inline-block;height:var(--utrecht-icon-size);inset-block-start:var(--utrecht-icon-inset-block-start, 0);position:relative;width:var(--utrecht-icon-size)}";
4
+
5
+ const UtrechtIconSchildGemeenteUtrecht = class {
6
+ constructor(hostRef) {
7
+ registerInstance(this, hostRef);
8
+ }
9
+ render() {
10
+ return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" }, h("path", { d: "M0 0v23.63c0 2.6.9 5.07 2.44 6.56s2.7 2.6 5.14 3.71c2.06.87 5.01 2.1 10.29 2.1s8.23-1.11 10.29-2.1c2.19-.99 3.34-1.98 4.5-2.97 1.93-1.61 3.34-4.33 3.34-7.3V0H0Zm32.79 22.98c0 2.47-.96 4.74-2.57 6.08L3 3.29h30l-.21 19.69Z" })));
11
+ }
12
+ };
13
+ UtrechtIconSchildGemeenteUtrecht.style = indexCss;
14
+
15
+ export { UtrechtIconSchildGemeenteUtrecht as utrecht_icon_schild_gemeente_utrecht };
@@ -0,0 +1,15 @@
1
+ import { r as registerInstance, h } from './index-ca475e47.js';
2
+
3
+ const indexCss = ":host{color:var(--utrecht-icon-color);display:inline-block;height:var(--utrecht-icon-size);inset-block-start:var(--utrecht-icon-inset-block-start, 0);position:relative;width:var(--utrecht-icon-size)}";
4
+
5
+ const UtrechtIconVerkeerslicht = class {
6
+ constructor(hostRef) {
7
+ registerInstance(this, hostRef);
8
+ }
9
+ render() {
10
+ return (h("svg", { viewBox: "0 0 36 36", xmlns: "http://www.w3.org/2000/svg", fill: "CurrentColor" }, h("path", { d: "M29.36 17.5h.25c2.42 0 4.37-1.96 4.37-4.37V4.87c0-2.42-1.96-4.37-4.37-4.37h-.25c-2.42 0-4.37 1.96-4.37 4.37v8.26c0 2.42 1.96 4.37 4.37 4.37Zm.13-14c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5Zm0 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5Zm0 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5Zm6.5 23v2h-36v-2h27v-5h5v5h4Zm-5.07-15 .04 3h-2.97v-3h2.93Zm-2.93 5h3c.56 0 1.01.45 1.01 1.01v1.99h-5v-2c0-.55.45-1 1-1Z" })));
11
+ }
12
+ };
13
+ UtrechtIconVerkeerslicht.style = indexCss;
14
+
15
+ export { UtrechtIconVerkeerslicht as utrecht_icon_verkeerslicht };
@@ -13,5 +13,5 @@ const patchBrowser = () => {
13
13
  };
14
14
 
15
15
  patchBrowser().then(options => {
16
- return bootstrapLazy(JSON.parse("[[\"utrecht-contact-card-template\",[[1,\"utrecht-contact-card-template\"]]],[\"utrecht-logo-button\",[[1,\"utrecht-logo-button\",{\"type\":[1]}]]],[\"utrecht-digid-button\",[[1,\"utrecht-digid-button\",{\"type\":[1]}]]],[\"utrecht-article\",[[1,\"utrecht-article\"]]],[\"utrecht-backdrop\",[[1,\"utrecht-backdrop\",{\"viewport\":[4]}]]],[\"utrecht-badge-counter\",[[1,\"utrecht-badge-counter\",{\"value\":[2],\"max\":[2],\"locale\":[1]}]]],[\"utrecht-badge-data\",[[1,\"utrecht-badge-data\"]]],[\"utrecht-badge-status\",[[1,\"utrecht-badge-status\",{\"status\":[1]}]]],[\"utrecht-breadcrumb\",[[1,\"utrecht-breadcrumb\",{\"json\":[1],\"variant\":[1]}]]],[\"utrecht-checkbox\",[[1,\"utrecht-checkbox\",{\"disabled\":[516],\"readOnly\":[516,\"readonly\"],\"checked\":[4],\"value\":[1]}]]],[\"utrecht-custom-checkbox\",[[1,\"utrecht-custom-checkbox\",{\"disabled\":[4],\"checked\":[4],\"indeterminate\":[4],\"invalid\":[4],\"required\":[4]}]]],[\"utrecht-document\",[[1,\"utrecht-document\"]]],[\"utrecht-eherkenning-logo\",[[1,\"utrecht-eherkenning-logo\"]]],[\"utrecht-eidas-logo\",[[1,\"utrecht-eidas-logo\"]]],[\"utrecht-form-field-checkbox\",[[1,\"utrecht-form-field-checkbox\",{\"label\":[4],\"disabled\":[516],\"checked\":[516],\"invalid\":[516],\"required\":[516],\"value\":[32]}]]],[\"utrecht-form-field-description\",[[1,\"utrecht-form-field-description\",{\"status\":[513]}]]],[\"utrecht-form-field-textarea\",[[1,\"utrecht-form-field-textarea\",{\"disabled\":[516],\"invalid\":[516],\"readOnly\":[516,\"readonly\"],\"placeholder\":[1],\"required\":[516],\"value\":[1]}]]],[\"utrecht-form-field-textbox\",[[1,\"utrecht-form-field-textbox\",{\"autoComplete\":[513,\"autocomplete\"],\"disabled\":[516],\"invalid\":[516],\"min\":[1],\"max\":[1],\"pattern\":[1],\"placeholder\":[1],\"readOnly\":[516,\"readonly\"],\"required\":[516],\"type\":[513],\"value\":[1]}]]],[\"utrecht-form-toggle\",[[1,\"utrecht-form-toggle\",{\"disabled\":[516],\"checked\":[516]}]]],[\"utrecht-heading\",[[1,\"utrecht-heading\",{\"level\":[2]}]]],[\"utrecht-heading-1\",[[1,\"utrecht-heading-1\"]]],[\"utrecht-heading-4\",[[1,\"utrecht-heading-4\"]]],[\"utrecht-heading-5\",[[1,\"utrecht-heading-5\"]]],[\"utrecht-heading-6\",[[1,\"utrecht-heading-6\"]]],[\"utrecht-html-content\",[[4,\"utrecht-html-content\"]]],[\"utrecht-icon\",[[1,\"utrecht-icon\"]]],[\"utrecht-icon-afspraak-maken\",[[1,\"utrecht-icon-afspraak-maken\"]]],[\"utrecht-icon-afval\",[[1,\"utrecht-icon-afval\"]]],[\"utrecht-icon-afval-container\",[[1,\"utrecht-icon-afval-container\"]]],[\"utrecht-icon-afval-containerpas\",[[1,\"utrecht-icon-afval-containerpas\"]]],[\"utrecht-icon-afval-kalender\",[[1,\"utrecht-icon-afval-kalender\"]]],[\"utrecht-icon-afval-scheiden\",[[1,\"utrecht-icon-afval-scheiden\"]]],[\"utrecht-icon-afvalkalender\",[[1,\"utrecht-icon-afvalkalender\"]]],[\"utrecht-icon-alleen\",[[1,\"utrecht-icon-alleen\"]]],[\"utrecht-icon-arrow\",[[1,\"utrecht-icon-arrow\"]]],[\"utrecht-icon-bestemmingsplan\",[[1,\"utrecht-icon-bestemmingsplan\"]]],[\"utrecht-icon-betaaldatum\",[[1,\"utrecht-icon-betaaldatum\"]]],[\"utrecht-icon-bewijsstukken\",[[1,\"utrecht-icon-bewijsstukken\"]]],[\"utrecht-icon-bijstand\",[[1,\"utrecht-icon-bijstand\"]]],[\"utrecht-icon-blad\",[[1,\"utrecht-icon-blad\"]]],[\"utrecht-icon-bouwproject\",[[1,\"utrecht-icon-bouwproject\"]]],[\"utrecht-icon-brandgevaar\",[[1,\"utrecht-icon-brandgevaar\"]]],[\"utrecht-icon-brief-betalen\",[[1,\"utrecht-icon-brief-betalen\"]]],[\"utrecht-icon-checkmark\",[[1,\"utrecht-icon-checkmark\"]]],[\"utrecht-icon-college-b-w\",[[1,\"utrecht-icon-college-b-w\"]]],[\"utrecht-icon-container\",[[1,\"utrecht-icon-container\"]]],[\"utrecht-icon-container-bio\",[[1,\"utrecht-icon-container-bio\"]]],[\"utrecht-icon-cross\",[[1,\"utrecht-icon-cross\"]]],[\"utrecht-icon-dakloos\",[[1,\"utrecht-icon-dakloos\"]]],[\"utrecht-icon-dementie\",[[1,\"utrecht-icon-dementie\"]]],[\"utrecht-icon-documenten\",[[1,\"utrecht-icon-documenten\"]]],[\"utrecht-icon-duurzaam\",[[1,\"utrecht-icon-duurzaam\"]]],[\"utrecht-icon-eenzaamheid\",[[1,\"utrecht-icon-eenzaamheid\"]]],[\"utrecht-icon-eikenprocessie\",[[1,\"utrecht-icon-eikenprocessie\"]]],[\"utrecht-icon-elektrisch-rijden\",[[1,\"utrecht-icon-elektrisch-rijden\"]]],[\"utrecht-icon-energie-vergoeding\",[[1,\"utrecht-icon-energie-vergoeding\"]]],[\"utrecht-icon-energietransitie\",[[1,\"utrecht-icon-energietransitie\"]]],[\"utrecht-icon-error\",[[1,\"utrecht-icon-error\"]]],[\"utrecht-icon-evenementen\",[[1,\"utrecht-icon-evenementen\"]]],[\"utrecht-icon-facebook\",[[1,\"utrecht-icon-facebook\"]]],[\"utrecht-icon-fiets\",[[1,\"utrecht-icon-fiets\"]]],[\"utrecht-icon-filter\",[[1,\"utrecht-icon-filter\"]]],[\"utrecht-icon-gebruiker-centraal\",[[1,\"utrecht-icon-gebruiker-centraal\"]]],[\"utrecht-icon-gebruiker-ingelogd\",[[1,\"utrecht-icon-gebruiker-ingelogd\"]]],[\"utrecht-icon-gegevenswoordenboek\",[[1,\"utrecht-icon-gegevenswoordenboek\"]]],[\"utrecht-icon-geluid\",[[1,\"utrecht-icon-geluid\"]]],[\"utrecht-icon-gemeente-locatie\",[[1,\"utrecht-icon-gemeente-locatie\"]]],[\"utrecht-icon-gemeenteraad\",[[1,\"utrecht-icon-gemeenteraad\"]]],[\"utrecht-icon-gezicht\",[[1,\"utrecht-icon-gezicht\"]]],[\"utrecht-icon-grafiek\",[[1,\"utrecht-icon-grafiek\"]]],[\"utrecht-icon-grofvuil\",[[1,\"utrecht-icon-grofvuil\"]]],[\"utrecht-icon-grofvuil-ophalen\",[[1,\"utrecht-icon-grofvuil-ophalen\"]]],[\"utrecht-icon-herdenking\",[[1,\"utrecht-icon-herdenking\"]]],[\"utrecht-icon-hondenbelasting\",[[1,\"utrecht-icon-hondenbelasting\"]]],[\"utrecht-icon-horeca\",[[1,\"utrecht-icon-horeca\"]]],[\"utrecht-icon-horecavergunning\",[[1,\"utrecht-icon-horecavergunning\"]]],[\"utrecht-icon-huishoudelijk-geweld\",[[1,\"utrecht-icon-huishoudelijk-geweld\"]]],[\"utrecht-icon-hulp-huishouden\",[[1,\"utrecht-icon-hulp-huishouden\"]]],[\"utrecht-icon-hulp-vervoer\",[[1,\"utrecht-icon-hulp-vervoer\"]]],[\"utrecht-icon-hulp-zorg\",[[1,\"utrecht-icon-hulp-zorg\"]]],[\"utrecht-icon-hulpmiddelen-gezin\",[[1,\"utrecht-icon-hulpmiddelen-gezin\"]]],[\"utrecht-icon-hulpverlening\",[[1,\"utrecht-icon-hulpverlening\"]]],[\"utrecht-icon-idee\",[[1,\"utrecht-icon-idee\"]]],[\"utrecht-icon-information\",[[1,\"utrecht-icon-information\"]]],[\"utrecht-icon-innovatie\",[[1,\"utrecht-icon-innovatie\"]]],[\"utrecht-icon-inspraak-inwoners\",[[1,\"utrecht-icon-inspraak-inwoners\"]]],[\"utrecht-icon-instagram\",[[1,\"utrecht-icon-instagram\"]]],[\"utrecht-icon-kalender\",[[1,\"utrecht-icon-kalender\"]]],[\"utrecht-icon-kennis\",[[1,\"utrecht-icon-kennis\"]]],[\"utrecht-icon-kerstbomen\",[[1,\"utrecht-icon-kerstbomen\"]]],[\"utrecht-icon-klachten\",[[1,\"utrecht-icon-klachten\"]]],[\"utrecht-icon-kroon\",[[1,\"utrecht-icon-kroon\"]]],[\"utrecht-icon-laadpaal\",[[1,\"utrecht-icon-laadpaal\"]]],[\"utrecht-icon-lantaarnpaal\",[[1,\"utrecht-icon-lantaarnpaal\"]]],[\"utrecht-icon-lantaarnpaal-oud\",[[1,\"utrecht-icon-lantaarnpaal-oud\"]]],[\"utrecht-icon-leren\",[[1,\"utrecht-icon-leren\"]]],[\"utrecht-icon-let-op\",[[1,\"utrecht-icon-let-op\"]]],[\"utrecht-icon-linkedin\",[[1,\"utrecht-icon-linkedin\"]]],[\"utrecht-icon-list\",[[1,\"utrecht-icon-list\"]]],[\"utrecht-icon-loupe\",[[1,\"utrecht-icon-loupe\"]]],[\"utrecht-icon-markt\",[[1,\"utrecht-icon-markt\"]]],[\"utrecht-icon-melding\",[[1,\"utrecht-icon-melding\"]]],[\"utrecht-icon-melding-boom\",[[1,\"utrecht-icon-melding-boom\"]]],[\"utrecht-icon-melding-klacht\",[[1,\"utrecht-icon-melding-klacht\"]]],[\"utrecht-icon-melding-openbareruimte\",[[1,\"utrecht-icon-melding-openbareruimte\"]]],[\"utrecht-icon-melding-verlichting\",[[1,\"utrecht-icon-melding-verlichting\"]]],[\"utrecht-icon-menselijk\",[[1,\"utrecht-icon-menselijk\"]]],[\"utrecht-icon-milieu-ontheffing\",[[1,\"utrecht-icon-milieu-ontheffing\"]]],[\"utrecht-icon-natuur\",[[1,\"utrecht-icon-natuur\"]]],[\"utrecht-icon-nieuw-huis\",[[1,\"utrecht-icon-nieuw-huis\"]]],[\"utrecht-icon-nummerbord\",[[1,\"utrecht-icon-nummerbord\"]]],[\"utrecht-icon-om-het-huis\",[[1,\"utrecht-icon-om-het-huis\"]]],[\"utrecht-icon-omgeving\",[[1,\"utrecht-icon-omgeving\"]]],[\"utrecht-icon-omgevingsvisie\",[[1,\"utrecht-icon-omgevingsvisie\"]]],[\"utrecht-icon-omgevingswet\",[[1,\"utrecht-icon-omgevingswet\"]]],[\"utrecht-icon-onderhoud\",[[1,\"utrecht-icon-onderhoud\"]]],[\"utrecht-icon-ondernemen\",[[1,\"utrecht-icon-ondernemen\"]]],[\"utrecht-icon-openingstijden\",[[1,\"utrecht-icon-openingstijden\"]]],[\"utrecht-icon-over-de-stad\",[[1,\"utrecht-icon-over-de-stad\"]]],[\"utrecht-icon-overlijden\",[[1,\"utrecht-icon-overlijden\"]]],[\"utrecht-icon-panden\",[[1,\"utrecht-icon-panden\"]]],[\"utrecht-icon-park\",[[1,\"utrecht-icon-park\"]]],[\"utrecht-icon-parkeerkaart\",[[1,\"utrecht-icon-parkeerkaart\"]]],[\"utrecht-icon-parkeervergunning\",[[1,\"utrecht-icon-parkeervergunning\"]]],[\"utrecht-icon-parken\",[[1,\"utrecht-icon-parken\"]]],[\"utrecht-icon-parkeren-bedrijven\",[[1,\"utrecht-icon-parkeren-bedrijven\"]]],[\"utrecht-icon-parkeren-betalen\",[[1,\"utrecht-icon-parkeren-betalen\"]]],[\"utrecht-icon-participatie-campagne\",[[1,\"utrecht-icon-participatie-campagne\"]]],[\"utrecht-icon-participatie-like\",[[1,\"utrecht-icon-participatie-like\"]]],[\"utrecht-icon-participatie-pitch\",[[1,\"utrecht-icon-participatie-pitch\"]]],[\"utrecht-icon-paspoort\",[[1,\"utrecht-icon-paspoort\"]]],[\"utrecht-icon-rijbewijs\",[[1,\"utrecht-icon-rijbewijs\"]]],[\"utrecht-icon-rolstoel\",[[1,\"utrecht-icon-rolstoel\"]]],[\"utrecht-icon-shoppen\",[[1,\"utrecht-icon-shoppen\"]]],[\"utrecht-icon-sinterklaas\",[[1,\"utrecht-icon-sinterklaas\"]]],[\"utrecht-icon-slechtziende-hoordende\",[[1,\"utrecht-icon-slechtziende-hoordende\"]]],[\"utrecht-icon-sport\",[[1,\"utrecht-icon-sport\"]]],[\"utrecht-icon-sport-en-cultuur\",[[1,\"utrecht-icon-sport-en-cultuur\"]]],[\"utrecht-icon-stookverbod\",[[1,\"utrecht-icon-stookverbod\"]]],[\"utrecht-icon-strand\",[[1,\"utrecht-icon-strand\"]]],[\"utrecht-icon-strooien\",[[1,\"utrecht-icon-strooien\"]]],[\"utrecht-icon-subsidie\",[[1,\"utrecht-icon-subsidie\"]]],[\"utrecht-icon-subsidie-gezin\",[[1,\"utrecht-icon-subsidie-gezin\"]]],[\"utrecht-icon-toeslag\",[[1,\"utrecht-icon-toeslag\"]]],[\"utrecht-icon-trein\",[[1,\"utrecht-icon-trein\"]]],[\"utrecht-icon-trouwen\",[[1,\"utrecht-icon-trouwen\"]]],[\"utrecht-icon-twitter\",[[1,\"utrecht-icon-twitter\"]]],[\"utrecht-icon-uw-wijk\",[[1,\"utrecht-icon-uw-wijk\"]]],[\"utrecht-icon-vaccinatie\",[[1,\"utrecht-icon-vaccinatie\"]]],[\"utrecht-icon-veilige-wijk\",[[1,\"utrecht-icon-veilige-wijk\"]]],[\"utrecht-icon-vergaderen\",[[1,\"utrecht-icon-vergaderen\"]]],[\"utrecht-icon-vergoeding\",[[1,\"utrecht-icon-vergoeding\"]]],[\"utrecht-icon-verhuizen\",[[1,\"utrecht-icon-verhuizen\"]]],[\"utrecht-icon-verkiezingen\",[[1,\"utrecht-icon-verkiezingen\"]]],[\"utrecht-icon-verslaving\",[[1,\"utrecht-icon-verslaving\"]]],[\"utrecht-icon-vervoersvoorziening\",[[1,\"utrecht-icon-vervoersvoorziening\"]]],[\"utrecht-icon-virus\",[[1,\"utrecht-icon-virus\"]]],[\"utrecht-icon-vluchtelingen\",[[1,\"utrecht-icon-vluchtelingen\"]]],[\"utrecht-icon-voorzieningen-vervoer\",[[1,\"utrecht-icon-voorzieningen-vervoer\"]]],[\"utrecht-icon-vrijwilligerswerk\",[[1,\"utrecht-icon-vrijwilligerswerk\"]]],[\"utrecht-icon-vuurwerk\",[[1,\"utrecht-icon-vuurwerk\"]]],[\"utrecht-icon-wandelstok\",[[1,\"utrecht-icon-wandelstok\"]]],[\"utrecht-icon-warm\",[[1,\"utrecht-icon-warm\"]]],[\"utrecht-icon-warning\",[[1,\"utrecht-icon-warning\"]]],[\"utrecht-icon-werken\",[[1,\"utrecht-icon-werken\"]]],[\"utrecht-icon-werkzaamheden\",[[1,\"utrecht-icon-werkzaamheden\"]]],[\"utrecht-icon-whatsapp\",[[1,\"utrecht-icon-whatsapp\"]]],[\"utrecht-icon-wonen-kosten\",[[1,\"utrecht-icon-wonen-kosten\"]]],[\"utrecht-icon-woning-zoeken\",[[1,\"utrecht-icon-woning-zoeken\"]]],[\"utrecht-icon-youtube\",[[1,\"utrecht-icon-youtube\"]]],[\"utrecht-icon-zelfstandig-wonen\",[[1,\"utrecht-icon-zelfstandig-wonen\"]]],[\"utrecht-icon-zoomin\",[[1,\"utrecht-icon-zoomin\"]]],[\"utrecht-icon-zoomout\",[[1,\"utrecht-icon-zoomout\"]]],[\"utrecht-icon-zorg-huis\",[[1,\"utrecht-icon-zorg-huis\"]]],[\"utrecht-icon-zwemmen\",[[1,\"utrecht-icon-zwemmen\"]]],[\"utrecht-logo\",[[1,\"utrecht-logo\"]]],[\"utrecht-page\",[[1,\"utrecht-page\"]]],[\"utrecht-page-content\",[[1,\"utrecht-page-content\"]]],[\"utrecht-page-footer\",[[1,\"utrecht-page-footer\"]]],[\"utrecht-page-header\",[[1,\"utrecht-page-header\"]]],[\"utrecht-pagination\",[[1,\"utrecht-pagination\",{\"links\":[1],\"next\":[1],\"prev\":[1],\"currentIndex\":[2,\"current-index\"]}]]],[\"utrecht-separator\",[[1,\"utrecht-separator\"]]],[\"utrecht-sidenav\",[[1,\"utrecht-sidenav\",{\"json\":[1]}]]],[\"utrecht-table\",[[1,\"utrecht-table\"]]],[\"utrecht-table-body\",[[1,\"utrecht-table-body\"]]],[\"utrecht-table-caption\",[[1,\"utrecht-table-caption\"]]],[\"utrecht-table-cell\",[[1,\"utrecht-table-cell\"]]],[\"utrecht-table-footer\",[[1,\"utrecht-table-footer\"]]],[\"utrecht-table-header\",[[1,\"utrecht-table-header\"]]],[\"utrecht-table-header-cell\",[[1,\"utrecht-table-header-cell\",{\"scope\":[1]}]]],[\"utrecht-table-row\",[[1,\"utrecht-table-row\"]]],[\"utrecht-textbox\",[[1,\"utrecht-textbox\",{\"autoComplete\":[513,\"autocomplete\"],\"disabled\":[516],\"invalid\":[516],\"min\":[1],\"max\":[1],\"pattern\":[1],\"placeholder\":[1],\"readOnly\":[516,\"readonly\"],\"required\":[516],\"type\":[513],\"value\":[1]}]]],[\"utrecht-button\",[[1,\"utrecht-button\",{\"appearance\":[1],\"busy\":[4],\"disabled\":[4],\"type\":[1]}]]],[\"utrecht-digid-logo\",[[1,\"utrecht-digid-logo\"]]],[\"utrecht-heading-2_3\",[[1,\"utrecht-heading-2\"],[1,\"utrecht-heading-3\"],[1,\"utrecht-paragraph\",{\"lead\":[4]}]]]]"), options);
16
+ return bootstrapLazy(JSON.parse("[[\"utrecht-contact-card-template\",[[1,\"utrecht-contact-card-template\"]]],[\"utrecht-logo-button\",[[1,\"utrecht-logo-button\",{\"type\":[1]}]]],[\"utrecht-digid-button\",[[1,\"utrecht-digid-button\",{\"type\":[1]}]]],[\"utrecht-article\",[[1,\"utrecht-article\"]]],[\"utrecht-backdrop\",[[1,\"utrecht-backdrop\",{\"viewport\":[4]}]]],[\"utrecht-badge-counter\",[[1,\"utrecht-badge-counter\",{\"value\":[2],\"max\":[2],\"locale\":[1]}]]],[\"utrecht-badge-data\",[[1,\"utrecht-badge-data\"]]],[\"utrecht-badge-status\",[[1,\"utrecht-badge-status\",{\"status\":[1]}]]],[\"utrecht-breadcrumb\",[[1,\"utrecht-breadcrumb\",{\"json\":[1],\"variant\":[1]}]]],[\"utrecht-checkbox\",[[1,\"utrecht-checkbox\",{\"disabled\":[516],\"readOnly\":[516,\"readonly\"],\"checked\":[4],\"value\":[1]}]]],[\"utrecht-custom-checkbox\",[[1,\"utrecht-custom-checkbox\",{\"disabled\":[4],\"checked\":[4],\"indeterminate\":[4],\"invalid\":[4],\"required\":[4]}]]],[\"utrecht-document\",[[1,\"utrecht-document\"]]],[\"utrecht-eherkenning-logo\",[[1,\"utrecht-eherkenning-logo\"]]],[\"utrecht-eidas-logo\",[[1,\"utrecht-eidas-logo\"]]],[\"utrecht-form-field-checkbox\",[[1,\"utrecht-form-field-checkbox\",{\"label\":[4],\"disabled\":[516],\"checked\":[516],\"invalid\":[516],\"required\":[516],\"value\":[32]}]]],[\"utrecht-form-field-description\",[[1,\"utrecht-form-field-description\",{\"status\":[513]}]]],[\"utrecht-form-field-textarea\",[[1,\"utrecht-form-field-textarea\",{\"disabled\":[516],\"invalid\":[516],\"readOnly\":[516,\"readonly\"],\"placeholder\":[1],\"required\":[516],\"value\":[1]}]]],[\"utrecht-form-field-textbox\",[[1,\"utrecht-form-field-textbox\",{\"autoComplete\":[513,\"autocomplete\"],\"disabled\":[516],\"invalid\":[516],\"min\":[1],\"max\":[1],\"pattern\":[1],\"placeholder\":[1],\"readOnly\":[516,\"readonly\"],\"required\":[516],\"type\":[513],\"value\":[1]}]]],[\"utrecht-form-toggle\",[[1,\"utrecht-form-toggle\",{\"disabled\":[516],\"checked\":[516]}]]],[\"utrecht-heading\",[[1,\"utrecht-heading\",{\"level\":[2]}]]],[\"utrecht-heading-1\",[[1,\"utrecht-heading-1\"]]],[\"utrecht-heading-4\",[[1,\"utrecht-heading-4\"]]],[\"utrecht-heading-5\",[[1,\"utrecht-heading-5\"]]],[\"utrecht-heading-6\",[[1,\"utrecht-heading-6\"]]],[\"utrecht-html-content\",[[4,\"utrecht-html-content\"]]],[\"utrecht-icon\",[[1,\"utrecht-icon\"]]],[\"utrecht-icon-afspraak-maken\",[[1,\"utrecht-icon-afspraak-maken\"]]],[\"utrecht-icon-afval\",[[1,\"utrecht-icon-afval\"]]],[\"utrecht-icon-afval-container\",[[1,\"utrecht-icon-afval-container\"]]],[\"utrecht-icon-afval-containerpas\",[[1,\"utrecht-icon-afval-containerpas\"]]],[\"utrecht-icon-afval-kalender\",[[1,\"utrecht-icon-afval-kalender\"]]],[\"utrecht-icon-afval-scheiden\",[[1,\"utrecht-icon-afval-scheiden\"]]],[\"utrecht-icon-afvalkalender\",[[1,\"utrecht-icon-afvalkalender\"]]],[\"utrecht-icon-alleen\",[[1,\"utrecht-icon-alleen\"]]],[\"utrecht-icon-arrow\",[[1,\"utrecht-icon-arrow\"]]],[\"utrecht-icon-bestemmingsplan\",[[1,\"utrecht-icon-bestemmingsplan\"]]],[\"utrecht-icon-betaaldatum\",[[1,\"utrecht-icon-betaaldatum\"]]],[\"utrecht-icon-bewijsstukken\",[[1,\"utrecht-icon-bewijsstukken\"]]],[\"utrecht-icon-bijstand\",[[1,\"utrecht-icon-bijstand\"]]],[\"utrecht-icon-blad\",[[1,\"utrecht-icon-blad\"]]],[\"utrecht-icon-bouwproject\",[[1,\"utrecht-icon-bouwproject\"]]],[\"utrecht-icon-brandgevaar\",[[1,\"utrecht-icon-brandgevaar\"]]],[\"utrecht-icon-brief-betalen\",[[1,\"utrecht-icon-brief-betalen\"]]],[\"utrecht-icon-checkmark\",[[1,\"utrecht-icon-checkmark\"]]],[\"utrecht-icon-college-b-w\",[[1,\"utrecht-icon-college-b-w\"]]],[\"utrecht-icon-container\",[[1,\"utrecht-icon-container\"]]],[\"utrecht-icon-container-bio\",[[1,\"utrecht-icon-container-bio\"]]],[\"utrecht-icon-cross\",[[1,\"utrecht-icon-cross\"]]],[\"utrecht-icon-dakloos\",[[1,\"utrecht-icon-dakloos\"]]],[\"utrecht-icon-dementie\",[[1,\"utrecht-icon-dementie\"]]],[\"utrecht-icon-documenten\",[[1,\"utrecht-icon-documenten\"]]],[\"utrecht-icon-duurzaam\",[[1,\"utrecht-icon-duurzaam\"]]],[\"utrecht-icon-eenzaamheid\",[[1,\"utrecht-icon-eenzaamheid\"]]],[\"utrecht-icon-eikenprocessie\",[[1,\"utrecht-icon-eikenprocessie\"]]],[\"utrecht-icon-elektrisch-rijden\",[[1,\"utrecht-icon-elektrisch-rijden\"]]],[\"utrecht-icon-energie-vergoeding\",[[1,\"utrecht-icon-energie-vergoeding\"]]],[\"utrecht-icon-energietransitie\",[[1,\"utrecht-icon-energietransitie\"]]],[\"utrecht-icon-error\",[[1,\"utrecht-icon-error\"]]],[\"utrecht-icon-evenementen\",[[1,\"utrecht-icon-evenementen\"]]],[\"utrecht-icon-facebook\",[[1,\"utrecht-icon-facebook\"]]],[\"utrecht-icon-fiets\",[[1,\"utrecht-icon-fiets\"]]],[\"utrecht-icon-filter\",[[1,\"utrecht-icon-filter\"]]],[\"utrecht-icon-gebruiker-centraal\",[[1,\"utrecht-icon-gebruiker-centraal\"]]],[\"utrecht-icon-gebruiker-ingelogd\",[[1,\"utrecht-icon-gebruiker-ingelogd\"]]],[\"utrecht-icon-gegevenswoordenboek\",[[1,\"utrecht-icon-gegevenswoordenboek\"]]],[\"utrecht-icon-geluid\",[[1,\"utrecht-icon-geluid\"]]],[\"utrecht-icon-gemeente-locatie\",[[1,\"utrecht-icon-gemeente-locatie\"]]],[\"utrecht-icon-gemeenteraad\",[[1,\"utrecht-icon-gemeenteraad\"]]],[\"utrecht-icon-gezicht\",[[1,\"utrecht-icon-gezicht\"]]],[\"utrecht-icon-glijbaan\",[[1,\"utrecht-icon-glijbaan\"]]],[\"utrecht-icon-grafiek\",[[1,\"utrecht-icon-grafiek\"]]],[\"utrecht-icon-grofvuil\",[[1,\"utrecht-icon-grofvuil\"]]],[\"utrecht-icon-grofvuil-ophalen\",[[1,\"utrecht-icon-grofvuil-ophalen\"]]],[\"utrecht-icon-herdenking\",[[1,\"utrecht-icon-herdenking\"]]],[\"utrecht-icon-hondenbelasting\",[[1,\"utrecht-icon-hondenbelasting\"]]],[\"utrecht-icon-horeca\",[[1,\"utrecht-icon-horeca\"]]],[\"utrecht-icon-horecavergunning\",[[1,\"utrecht-icon-horecavergunning\"]]],[\"utrecht-icon-huishoudelijk-geweld\",[[1,\"utrecht-icon-huishoudelijk-geweld\"]]],[\"utrecht-icon-hulp-huishouden\",[[1,\"utrecht-icon-hulp-huishouden\"]]],[\"utrecht-icon-hulp-vervoer\",[[1,\"utrecht-icon-hulp-vervoer\"]]],[\"utrecht-icon-hulp-zorg\",[[1,\"utrecht-icon-hulp-zorg\"]]],[\"utrecht-icon-hulpmiddelen-gezin\",[[1,\"utrecht-icon-hulpmiddelen-gezin\"]]],[\"utrecht-icon-hulpverlening\",[[1,\"utrecht-icon-hulpverlening\"]]],[\"utrecht-icon-idee\",[[1,\"utrecht-icon-idee\"]]],[\"utrecht-icon-information\",[[1,\"utrecht-icon-information\"]]],[\"utrecht-icon-innovatie\",[[1,\"utrecht-icon-innovatie\"]]],[\"utrecht-icon-inspraak-inwoners\",[[1,\"utrecht-icon-inspraak-inwoners\"]]],[\"utrecht-icon-instagram\",[[1,\"utrecht-icon-instagram\"]]],[\"utrecht-icon-kalender\",[[1,\"utrecht-icon-kalender\"]]],[\"utrecht-icon-kennis\",[[1,\"utrecht-icon-kennis\"]]],[\"utrecht-icon-kerstbomen\",[[1,\"utrecht-icon-kerstbomen\"]]],[\"utrecht-icon-klachten\",[[1,\"utrecht-icon-klachten\"]]],[\"utrecht-icon-kroon\",[[1,\"utrecht-icon-kroon\"]]],[\"utrecht-icon-laadpaal\",[[1,\"utrecht-icon-laadpaal\"]]],[\"utrecht-icon-lantaarnpaal\",[[1,\"utrecht-icon-lantaarnpaal\"]]],[\"utrecht-icon-lantaarnpaal-oud\",[[1,\"utrecht-icon-lantaarnpaal-oud\"]]],[\"utrecht-icon-leren\",[[1,\"utrecht-icon-leren\"]]],[\"utrecht-icon-let-op\",[[1,\"utrecht-icon-let-op\"]]],[\"utrecht-icon-linkedin\",[[1,\"utrecht-icon-linkedin\"]]],[\"utrecht-icon-list\",[[1,\"utrecht-icon-list\"]]],[\"utrecht-icon-loupe\",[[1,\"utrecht-icon-loupe\"]]],[\"utrecht-icon-markt\",[[1,\"utrecht-icon-markt\"]]],[\"utrecht-icon-melding\",[[1,\"utrecht-icon-melding\"]]],[\"utrecht-icon-melding-boom\",[[1,\"utrecht-icon-melding-boom\"]]],[\"utrecht-icon-melding-klacht\",[[1,\"utrecht-icon-melding-klacht\"]]],[\"utrecht-icon-melding-openbareruimte\",[[1,\"utrecht-icon-melding-openbareruimte\"]]],[\"utrecht-icon-melding-verlichting\",[[1,\"utrecht-icon-melding-verlichting\"]]],[\"utrecht-icon-menselijk\",[[1,\"utrecht-icon-menselijk\"]]],[\"utrecht-icon-milieu-ontheffing\",[[1,\"utrecht-icon-milieu-ontheffing\"]]],[\"utrecht-icon-natuur\",[[1,\"utrecht-icon-natuur\"]]],[\"utrecht-icon-nieuw-huis\",[[1,\"utrecht-icon-nieuw-huis\"]]],[\"utrecht-icon-nummerbord\",[[1,\"utrecht-icon-nummerbord\"]]],[\"utrecht-icon-om-het-huis\",[[1,\"utrecht-icon-om-het-huis\"]]],[\"utrecht-icon-omgeving\",[[1,\"utrecht-icon-omgeving\"]]],[\"utrecht-icon-omgevingsvisie\",[[1,\"utrecht-icon-omgevingsvisie\"]]],[\"utrecht-icon-omgevingswet\",[[1,\"utrecht-icon-omgevingswet\"]]],[\"utrecht-icon-onderhoud\",[[1,\"utrecht-icon-onderhoud\"]]],[\"utrecht-icon-ondernemen\",[[1,\"utrecht-icon-ondernemen\"]]],[\"utrecht-icon-openingstijden\",[[1,\"utrecht-icon-openingstijden\"]]],[\"utrecht-icon-over-de-stad\",[[1,\"utrecht-icon-over-de-stad\"]]],[\"utrecht-icon-overlijden\",[[1,\"utrecht-icon-overlijden\"]]],[\"utrecht-icon-panden\",[[1,\"utrecht-icon-panden\"]]],[\"utrecht-icon-park\",[[1,\"utrecht-icon-park\"]]],[\"utrecht-icon-parkeerkaart\",[[1,\"utrecht-icon-parkeerkaart\"]]],[\"utrecht-icon-parkeervergunning\",[[1,\"utrecht-icon-parkeervergunning\"]]],[\"utrecht-icon-parken\",[[1,\"utrecht-icon-parken\"]]],[\"utrecht-icon-parkeren-bedrijven\",[[1,\"utrecht-icon-parkeren-bedrijven\"]]],[\"utrecht-icon-parkeren-betaalautomaat\",[[1,\"utrecht-icon-parkeren-betaalautomaat\"]]],[\"utrecht-icon-parkeren-betalen\",[[1,\"utrecht-icon-parkeren-betalen\"]]],[\"utrecht-icon-participatie-campagne\",[[1,\"utrecht-icon-participatie-campagne\"]]],[\"utrecht-icon-participatie-like\",[[1,\"utrecht-icon-participatie-like\"]]],[\"utrecht-icon-participatie-pitch\",[[1,\"utrecht-icon-participatie-pitch\"]]],[\"utrecht-icon-paspoort\",[[1,\"utrecht-icon-paspoort\"]]],[\"utrecht-icon-rijbewijs\",[[1,\"utrecht-icon-rijbewijs\"]]],[\"utrecht-icon-rolstoel\",[[1,\"utrecht-icon-rolstoel\"]]],[\"utrecht-icon-schild-gemeente-utrecht\",[[1,\"utrecht-icon-schild-gemeente-utrecht\"]]],[\"utrecht-icon-shoppen\",[[1,\"utrecht-icon-shoppen\"]]],[\"utrecht-icon-sinterklaas\",[[1,\"utrecht-icon-sinterklaas\"]]],[\"utrecht-icon-slechtziende-hoordende\",[[1,\"utrecht-icon-slechtziende-hoordende\"]]],[\"utrecht-icon-sport\",[[1,\"utrecht-icon-sport\"]]],[\"utrecht-icon-sport-en-cultuur\",[[1,\"utrecht-icon-sport-en-cultuur\"]]],[\"utrecht-icon-stookverbod\",[[1,\"utrecht-icon-stookverbod\"]]],[\"utrecht-icon-strand\",[[1,\"utrecht-icon-strand\"]]],[\"utrecht-icon-strooien\",[[1,\"utrecht-icon-strooien\"]]],[\"utrecht-icon-subsidie\",[[1,\"utrecht-icon-subsidie\"]]],[\"utrecht-icon-subsidie-gezin\",[[1,\"utrecht-icon-subsidie-gezin\"]]],[\"utrecht-icon-toeslag\",[[1,\"utrecht-icon-toeslag\"]]],[\"utrecht-icon-trein\",[[1,\"utrecht-icon-trein\"]]],[\"utrecht-icon-trouwen\",[[1,\"utrecht-icon-trouwen\"]]],[\"utrecht-icon-twitter\",[[1,\"utrecht-icon-twitter\"]]],[\"utrecht-icon-uw-wijk\",[[1,\"utrecht-icon-uw-wijk\"]]],[\"utrecht-icon-vaccinatie\",[[1,\"utrecht-icon-vaccinatie\"]]],[\"utrecht-icon-veilige-wijk\",[[1,\"utrecht-icon-veilige-wijk\"]]],[\"utrecht-icon-vergaderen\",[[1,\"utrecht-icon-vergaderen\"]]],[\"utrecht-icon-vergoeding\",[[1,\"utrecht-icon-vergoeding\"]]],[\"utrecht-icon-verhuizen\",[[1,\"utrecht-icon-verhuizen\"]]],[\"utrecht-icon-verkeerslicht\",[[1,\"utrecht-icon-verkeerslicht\"]]],[\"utrecht-icon-verkiezingen\",[[1,\"utrecht-icon-verkiezingen\"]]],[\"utrecht-icon-verslaving\",[[1,\"utrecht-icon-verslaving\"]]],[\"utrecht-icon-vervoersvoorziening\",[[1,\"utrecht-icon-vervoersvoorziening\"]]],[\"utrecht-icon-virus\",[[1,\"utrecht-icon-virus\"]]],[\"utrecht-icon-vluchtelingen\",[[1,\"utrecht-icon-vluchtelingen\"]]],[\"utrecht-icon-voorzieningen-vervoer\",[[1,\"utrecht-icon-voorzieningen-vervoer\"]]],[\"utrecht-icon-vrijwilligerswerk\",[[1,\"utrecht-icon-vrijwilligerswerk\"]]],[\"utrecht-icon-vuurwerk\",[[1,\"utrecht-icon-vuurwerk\"]]],[\"utrecht-icon-wandelstok\",[[1,\"utrecht-icon-wandelstok\"]]],[\"utrecht-icon-warm\",[[1,\"utrecht-icon-warm\"]]],[\"utrecht-icon-warning\",[[1,\"utrecht-icon-warning\"]]],[\"utrecht-icon-werken\",[[1,\"utrecht-icon-werken\"]]],[\"utrecht-icon-werkzaamheden\",[[1,\"utrecht-icon-werkzaamheden\"]]],[\"utrecht-icon-whatsapp\",[[1,\"utrecht-icon-whatsapp\"]]],[\"utrecht-icon-wonen-kosten\",[[1,\"utrecht-icon-wonen-kosten\"]]],[\"utrecht-icon-woning-zoeken\",[[1,\"utrecht-icon-woning-zoeken\"]]],[\"utrecht-icon-youtube\",[[1,\"utrecht-icon-youtube\"]]],[\"utrecht-icon-zelfstandig-wonen\",[[1,\"utrecht-icon-zelfstandig-wonen\"]]],[\"utrecht-icon-zoomin\",[[1,\"utrecht-icon-zoomin\"]]],[\"utrecht-icon-zoomout\",[[1,\"utrecht-icon-zoomout\"]]],[\"utrecht-icon-zorg-huis\",[[1,\"utrecht-icon-zorg-huis\"]]],[\"utrecht-icon-zwemmen\",[[1,\"utrecht-icon-zwemmen\"]]],[\"utrecht-logo\",[[1,\"utrecht-logo\"]]],[\"utrecht-page\",[[1,\"utrecht-page\"]]],[\"utrecht-page-content\",[[1,\"utrecht-page-content\"]]],[\"utrecht-page-footer\",[[1,\"utrecht-page-footer\"]]],[\"utrecht-page-header\",[[1,\"utrecht-page-header\"]]],[\"utrecht-pagination\",[[1,\"utrecht-pagination\",{\"links\":[1],\"next\":[1],\"prev\":[1],\"currentIndex\":[2,\"current-index\"]}]]],[\"utrecht-separator\",[[1,\"utrecht-separator\"]]],[\"utrecht-sidenav\",[[1,\"utrecht-sidenav\",{\"json\":[1]}]]],[\"utrecht-table\",[[1,\"utrecht-table\"]]],[\"utrecht-table-body\",[[1,\"utrecht-table-body\"]]],[\"utrecht-table-caption\",[[1,\"utrecht-table-caption\"]]],[\"utrecht-table-cell\",[[1,\"utrecht-table-cell\"]]],[\"utrecht-table-footer\",[[1,\"utrecht-table-footer\"]]],[\"utrecht-table-header\",[[1,\"utrecht-table-header\"]]],[\"utrecht-table-header-cell\",[[1,\"utrecht-table-header-cell\",{\"scope\":[1]}]]],[\"utrecht-table-row\",[[1,\"utrecht-table-row\"]]],[\"utrecht-textbox\",[[1,\"utrecht-textbox\",{\"autoComplete\":[513,\"autocomplete\"],\"disabled\":[516],\"invalid\":[516],\"min\":[1],\"max\":[1],\"pattern\":[1],\"placeholder\":[1],\"readOnly\":[516,\"readonly\"],\"required\":[516],\"type\":[513],\"value\":[1]}]]],[\"utrecht-button\",[[1,\"utrecht-button\",{\"appearance\":[1],\"busy\":[4],\"disabled\":[4],\"type\":[1]}]]],[\"utrecht-digid-logo\",[[1,\"utrecht-digid-logo\"]]],[\"utrecht-heading-2_3\",[[1,\"utrecht-heading-2\"],[1,\"utrecht-heading-3\"],[1,\"utrecht-paragraph\",{\"lead\":[4]}]]]]"), options);
17
17
  });
@@ -200,6 +200,8 @@ export namespace Components {
200
200
  }
201
201
  interface UtrechtIconGezicht {
202
202
  }
203
+ interface UtrechtIconGlijbaan {
204
+ }
203
205
  interface UtrechtIconGrafiek {
204
206
  }
205
207
  interface UtrechtIconGrofvuil {
@@ -314,6 +316,8 @@ export namespace Components {
314
316
  }
315
317
  interface UtrechtIconParkerenBedrijven {
316
318
  }
319
+ interface UtrechtIconParkerenBetaalautomaat {
320
+ }
317
321
  interface UtrechtIconParkerenBetalen {
318
322
  }
319
323
  interface UtrechtIconParticipatieCampagne {
@@ -328,6 +332,8 @@ export namespace Components {
328
332
  }
329
333
  interface UtrechtIconRolstoel {
330
334
  }
335
+ interface UtrechtIconSchildGemeenteUtrecht {
336
+ }
331
337
  interface UtrechtIconShoppen {
332
338
  }
333
339
  interface UtrechtIconSinterklaas {
@@ -368,6 +374,8 @@ export namespace Components {
368
374
  }
369
375
  interface UtrechtIconVerhuizen {
370
376
  }
377
+ interface UtrechtIconVerkeerslicht {
378
+ }
371
379
  interface UtrechtIconVerkiezingen {
372
380
  }
373
381
  interface UtrechtIconVerslaving {
@@ -934,6 +942,12 @@ declare global {
934
942
  prototype: HTMLUtrechtIconGezichtElement;
935
943
  new (): HTMLUtrechtIconGezichtElement;
936
944
  };
945
+ interface HTMLUtrechtIconGlijbaanElement extends Components.UtrechtIconGlijbaan, HTMLStencilElement {
946
+ }
947
+ var HTMLUtrechtIconGlijbaanElement: {
948
+ prototype: HTMLUtrechtIconGlijbaanElement;
949
+ new (): HTMLUtrechtIconGlijbaanElement;
950
+ };
937
951
  interface HTMLUtrechtIconGrafiekElement extends Components.UtrechtIconGrafiek, HTMLStencilElement {
938
952
  }
939
953
  var HTMLUtrechtIconGrafiekElement: {
@@ -1276,6 +1290,12 @@ declare global {
1276
1290
  prototype: HTMLUtrechtIconParkerenBedrijvenElement;
1277
1291
  new (): HTMLUtrechtIconParkerenBedrijvenElement;
1278
1292
  };
1293
+ interface HTMLUtrechtIconParkerenBetaalautomaatElement extends Components.UtrechtIconParkerenBetaalautomaat, HTMLStencilElement {
1294
+ }
1295
+ var HTMLUtrechtIconParkerenBetaalautomaatElement: {
1296
+ prototype: HTMLUtrechtIconParkerenBetaalautomaatElement;
1297
+ new (): HTMLUtrechtIconParkerenBetaalautomaatElement;
1298
+ };
1279
1299
  interface HTMLUtrechtIconParkerenBetalenElement extends Components.UtrechtIconParkerenBetalen, HTMLStencilElement {
1280
1300
  }
1281
1301
  var HTMLUtrechtIconParkerenBetalenElement: {
@@ -1318,6 +1338,12 @@ declare global {
1318
1338
  prototype: HTMLUtrechtIconRolstoelElement;
1319
1339
  new (): HTMLUtrechtIconRolstoelElement;
1320
1340
  };
1341
+ interface HTMLUtrechtIconSchildGemeenteUtrechtElement extends Components.UtrechtIconSchildGemeenteUtrecht, HTMLStencilElement {
1342
+ }
1343
+ var HTMLUtrechtIconSchildGemeenteUtrechtElement: {
1344
+ prototype: HTMLUtrechtIconSchildGemeenteUtrechtElement;
1345
+ new (): HTMLUtrechtIconSchildGemeenteUtrechtElement;
1346
+ };
1321
1347
  interface HTMLUtrechtIconShoppenElement extends Components.UtrechtIconShoppen, HTMLStencilElement {
1322
1348
  }
1323
1349
  var HTMLUtrechtIconShoppenElement: {
@@ -1438,6 +1464,12 @@ declare global {
1438
1464
  prototype: HTMLUtrechtIconVerhuizenElement;
1439
1465
  new (): HTMLUtrechtIconVerhuizenElement;
1440
1466
  };
1467
+ interface HTMLUtrechtIconVerkeerslichtElement extends Components.UtrechtIconVerkeerslicht, HTMLStencilElement {
1468
+ }
1469
+ var HTMLUtrechtIconVerkeerslichtElement: {
1470
+ prototype: HTMLUtrechtIconVerkeerslichtElement;
1471
+ new (): HTMLUtrechtIconVerkeerslichtElement;
1472
+ };
1441
1473
  interface HTMLUtrechtIconVerkiezingenElement extends Components.UtrechtIconVerkiezingen, HTMLStencilElement {
1442
1474
  }
1443
1475
  var HTMLUtrechtIconVerkiezingenElement: {
@@ -1757,6 +1789,7 @@ declare global {
1757
1789
  "utrecht-icon-gemeente-locatie": HTMLUtrechtIconGemeenteLocatieElement;
1758
1790
  "utrecht-icon-gemeenteraad": HTMLUtrechtIconGemeenteraadElement;
1759
1791
  "utrecht-icon-gezicht": HTMLUtrechtIconGezichtElement;
1792
+ "utrecht-icon-glijbaan": HTMLUtrechtIconGlijbaanElement;
1760
1793
  "utrecht-icon-grafiek": HTMLUtrechtIconGrafiekElement;
1761
1794
  "utrecht-icon-grofvuil": HTMLUtrechtIconGrofvuilElement;
1762
1795
  "utrecht-icon-grofvuil-ophalen": HTMLUtrechtIconGrofvuilOphalenElement;
@@ -1814,6 +1847,7 @@ declare global {
1814
1847
  "utrecht-icon-parkeervergunning": HTMLUtrechtIconParkeervergunningElement;
1815
1848
  "utrecht-icon-parken": HTMLUtrechtIconParkenElement;
1816
1849
  "utrecht-icon-parkeren-bedrijven": HTMLUtrechtIconParkerenBedrijvenElement;
1850
+ "utrecht-icon-parkeren-betaalautomaat": HTMLUtrechtIconParkerenBetaalautomaatElement;
1817
1851
  "utrecht-icon-parkeren-betalen": HTMLUtrechtIconParkerenBetalenElement;
1818
1852
  "utrecht-icon-participatie-campagne": HTMLUtrechtIconParticipatieCampagneElement;
1819
1853
  "utrecht-icon-participatie-like": HTMLUtrechtIconParticipatieLikeElement;
@@ -1821,6 +1855,7 @@ declare global {
1821
1855
  "utrecht-icon-paspoort": HTMLUtrechtIconPaspoortElement;
1822
1856
  "utrecht-icon-rijbewijs": HTMLUtrechtIconRijbewijsElement;
1823
1857
  "utrecht-icon-rolstoel": HTMLUtrechtIconRolstoelElement;
1858
+ "utrecht-icon-schild-gemeente-utrecht": HTMLUtrechtIconSchildGemeenteUtrechtElement;
1824
1859
  "utrecht-icon-shoppen": HTMLUtrechtIconShoppenElement;
1825
1860
  "utrecht-icon-sinterklaas": HTMLUtrechtIconSinterklaasElement;
1826
1861
  "utrecht-icon-slechtziende-hoordende": HTMLUtrechtIconSlechtziendeHoordendeElement;
@@ -1841,6 +1876,7 @@ declare global {
1841
1876
  "utrecht-icon-vergaderen": HTMLUtrechtIconVergaderenElement;
1842
1877
  "utrecht-icon-vergoeding": HTMLUtrechtIconVergoedingElement;
1843
1878
  "utrecht-icon-verhuizen": HTMLUtrechtIconVerhuizenElement;
1879
+ "utrecht-icon-verkeerslicht": HTMLUtrechtIconVerkeerslichtElement;
1844
1880
  "utrecht-icon-verkiezingen": HTMLUtrechtIconVerkiezingenElement;
1845
1881
  "utrecht-icon-verslaving": HTMLUtrechtIconVerslavingElement;
1846
1882
  "utrecht-icon-vervoersvoorziening": HTMLUtrechtIconVervoersvoorzieningElement;
@@ -2101,6 +2137,8 @@ declare namespace LocalJSX {
2101
2137
  }
2102
2138
  interface UtrechtIconGezicht {
2103
2139
  }
2140
+ interface UtrechtIconGlijbaan {
2141
+ }
2104
2142
  interface UtrechtIconGrafiek {
2105
2143
  }
2106
2144
  interface UtrechtIconGrofvuil {
@@ -2215,6 +2253,8 @@ declare namespace LocalJSX {
2215
2253
  }
2216
2254
  interface UtrechtIconParkerenBedrijven {
2217
2255
  }
2256
+ interface UtrechtIconParkerenBetaalautomaat {
2257
+ }
2218
2258
  interface UtrechtIconParkerenBetalen {
2219
2259
  }
2220
2260
  interface UtrechtIconParticipatieCampagne {
@@ -2229,6 +2269,8 @@ declare namespace LocalJSX {
2229
2269
  }
2230
2270
  interface UtrechtIconRolstoel {
2231
2271
  }
2272
+ interface UtrechtIconSchildGemeenteUtrecht {
2273
+ }
2232
2274
  interface UtrechtIconShoppen {
2233
2275
  }
2234
2276
  interface UtrechtIconSinterklaas {
@@ -2269,6 +2311,8 @@ declare namespace LocalJSX {
2269
2311
  }
2270
2312
  interface UtrechtIconVerhuizen {
2271
2313
  }
2314
+ interface UtrechtIconVerkeerslicht {
2315
+ }
2272
2316
  interface UtrechtIconVerkiezingen {
2273
2317
  }
2274
2318
  interface UtrechtIconVerslaving {
@@ -2450,6 +2494,7 @@ declare namespace LocalJSX {
2450
2494
  "utrecht-icon-gemeente-locatie": UtrechtIconGemeenteLocatie;
2451
2495
  "utrecht-icon-gemeenteraad": UtrechtIconGemeenteraad;
2452
2496
  "utrecht-icon-gezicht": UtrechtIconGezicht;
2497
+ "utrecht-icon-glijbaan": UtrechtIconGlijbaan;
2453
2498
  "utrecht-icon-grafiek": UtrechtIconGrafiek;
2454
2499
  "utrecht-icon-grofvuil": UtrechtIconGrofvuil;
2455
2500
  "utrecht-icon-grofvuil-ophalen": UtrechtIconGrofvuilOphalen;
@@ -2507,6 +2552,7 @@ declare namespace LocalJSX {
2507
2552
  "utrecht-icon-parkeervergunning": UtrechtIconParkeervergunning;
2508
2553
  "utrecht-icon-parken": UtrechtIconParken;
2509
2554
  "utrecht-icon-parkeren-bedrijven": UtrechtIconParkerenBedrijven;
2555
+ "utrecht-icon-parkeren-betaalautomaat": UtrechtIconParkerenBetaalautomaat;
2510
2556
  "utrecht-icon-parkeren-betalen": UtrechtIconParkerenBetalen;
2511
2557
  "utrecht-icon-participatie-campagne": UtrechtIconParticipatieCampagne;
2512
2558
  "utrecht-icon-participatie-like": UtrechtIconParticipatieLike;
@@ -2514,6 +2560,7 @@ declare namespace LocalJSX {
2514
2560
  "utrecht-icon-paspoort": UtrechtIconPaspoort;
2515
2561
  "utrecht-icon-rijbewijs": UtrechtIconRijbewijs;
2516
2562
  "utrecht-icon-rolstoel": UtrechtIconRolstoel;
2563
+ "utrecht-icon-schild-gemeente-utrecht": UtrechtIconSchildGemeenteUtrecht;
2517
2564
  "utrecht-icon-shoppen": UtrechtIconShoppen;
2518
2565
  "utrecht-icon-sinterklaas": UtrechtIconSinterklaas;
2519
2566
  "utrecht-icon-slechtziende-hoordende": UtrechtIconSlechtziendeHoordende;
@@ -2534,6 +2581,7 @@ declare namespace LocalJSX {
2534
2581
  "utrecht-icon-vergaderen": UtrechtIconVergaderen;
2535
2582
  "utrecht-icon-vergoeding": UtrechtIconVergoeding;
2536
2583
  "utrecht-icon-verhuizen": UtrechtIconVerhuizen;
2584
+ "utrecht-icon-verkeerslicht": UtrechtIconVerkeerslicht;
2537
2585
  "utrecht-icon-verkiezingen": UtrechtIconVerkiezingen;
2538
2586
  "utrecht-icon-verslaving": UtrechtIconVerslaving;
2539
2587
  "utrecht-icon-vervoersvoorziening": UtrechtIconVervoersvoorziening;
@@ -2653,6 +2701,7 @@ declare module "@stencil/core" {
2653
2701
  "utrecht-icon-gemeente-locatie": LocalJSX.UtrechtIconGemeenteLocatie & JSXBase.HTMLAttributes<HTMLUtrechtIconGemeenteLocatieElement>;
2654
2702
  "utrecht-icon-gemeenteraad": LocalJSX.UtrechtIconGemeenteraad & JSXBase.HTMLAttributes<HTMLUtrechtIconGemeenteraadElement>;
2655
2703
  "utrecht-icon-gezicht": LocalJSX.UtrechtIconGezicht & JSXBase.HTMLAttributes<HTMLUtrechtIconGezichtElement>;
2704
+ "utrecht-icon-glijbaan": LocalJSX.UtrechtIconGlijbaan & JSXBase.HTMLAttributes<HTMLUtrechtIconGlijbaanElement>;
2656
2705
  "utrecht-icon-grafiek": LocalJSX.UtrechtIconGrafiek & JSXBase.HTMLAttributes<HTMLUtrechtIconGrafiekElement>;
2657
2706
  "utrecht-icon-grofvuil": LocalJSX.UtrechtIconGrofvuil & JSXBase.HTMLAttributes<HTMLUtrechtIconGrofvuilElement>;
2658
2707
  "utrecht-icon-grofvuil-ophalen": LocalJSX.UtrechtIconGrofvuilOphalen & JSXBase.HTMLAttributes<HTMLUtrechtIconGrofvuilOphalenElement>;
@@ -2710,6 +2759,7 @@ declare module "@stencil/core" {
2710
2759
  "utrecht-icon-parkeervergunning": LocalJSX.UtrechtIconParkeervergunning & JSXBase.HTMLAttributes<HTMLUtrechtIconParkeervergunningElement>;
2711
2760
  "utrecht-icon-parken": LocalJSX.UtrechtIconParken & JSXBase.HTMLAttributes<HTMLUtrechtIconParkenElement>;
2712
2761
  "utrecht-icon-parkeren-bedrijven": LocalJSX.UtrechtIconParkerenBedrijven & JSXBase.HTMLAttributes<HTMLUtrechtIconParkerenBedrijvenElement>;
2762
+ "utrecht-icon-parkeren-betaalautomaat": LocalJSX.UtrechtIconParkerenBetaalautomaat & JSXBase.HTMLAttributes<HTMLUtrechtIconParkerenBetaalautomaatElement>;
2713
2763
  "utrecht-icon-parkeren-betalen": LocalJSX.UtrechtIconParkerenBetalen & JSXBase.HTMLAttributes<HTMLUtrechtIconParkerenBetalenElement>;
2714
2764
  "utrecht-icon-participatie-campagne": LocalJSX.UtrechtIconParticipatieCampagne & JSXBase.HTMLAttributes<HTMLUtrechtIconParticipatieCampagneElement>;
2715
2765
  "utrecht-icon-participatie-like": LocalJSX.UtrechtIconParticipatieLike & JSXBase.HTMLAttributes<HTMLUtrechtIconParticipatieLikeElement>;
@@ -2717,6 +2767,7 @@ declare module "@stencil/core" {
2717
2767
  "utrecht-icon-paspoort": LocalJSX.UtrechtIconPaspoort & JSXBase.HTMLAttributes<HTMLUtrechtIconPaspoortElement>;
2718
2768
  "utrecht-icon-rijbewijs": LocalJSX.UtrechtIconRijbewijs & JSXBase.HTMLAttributes<HTMLUtrechtIconRijbewijsElement>;
2719
2769
  "utrecht-icon-rolstoel": LocalJSX.UtrechtIconRolstoel & JSXBase.HTMLAttributes<HTMLUtrechtIconRolstoelElement>;
2770
+ "utrecht-icon-schild-gemeente-utrecht": LocalJSX.UtrechtIconSchildGemeenteUtrecht & JSXBase.HTMLAttributes<HTMLUtrechtIconSchildGemeenteUtrechtElement>;
2720
2771
  "utrecht-icon-shoppen": LocalJSX.UtrechtIconShoppen & JSXBase.HTMLAttributes<HTMLUtrechtIconShoppenElement>;
2721
2772
  "utrecht-icon-sinterklaas": LocalJSX.UtrechtIconSinterklaas & JSXBase.HTMLAttributes<HTMLUtrechtIconSinterklaasElement>;
2722
2773
  "utrecht-icon-slechtziende-hoordende": LocalJSX.UtrechtIconSlechtziendeHoordende & JSXBase.HTMLAttributes<HTMLUtrechtIconSlechtziendeHoordendeElement>;
@@ -2737,6 +2788,7 @@ declare module "@stencil/core" {
2737
2788
  "utrecht-icon-vergaderen": LocalJSX.UtrechtIconVergaderen & JSXBase.HTMLAttributes<HTMLUtrechtIconVergaderenElement>;
2738
2789
  "utrecht-icon-vergoeding": LocalJSX.UtrechtIconVergoeding & JSXBase.HTMLAttributes<HTMLUtrechtIconVergoedingElement>;
2739
2790
  "utrecht-icon-verhuizen": LocalJSX.UtrechtIconVerhuizen & JSXBase.HTMLAttributes<HTMLUtrechtIconVerhuizenElement>;
2791
+ "utrecht-icon-verkeerslicht": LocalJSX.UtrechtIconVerkeerslicht & JSXBase.HTMLAttributes<HTMLUtrechtIconVerkeerslichtElement>;
2740
2792
  "utrecht-icon-verkiezingen": LocalJSX.UtrechtIconVerkiezingen & JSXBase.HTMLAttributes<HTMLUtrechtIconVerkiezingenElement>;
2741
2793
  "utrecht-icon-verslaving": LocalJSX.UtrechtIconVerslaving & JSXBase.HTMLAttributes<HTMLUtrechtIconVerslavingElement>;
2742
2794
  "utrecht-icon-vervoersvoorziening": LocalJSX.UtrechtIconVervoersvoorziening & JSXBase.HTMLAttributes<HTMLUtrechtIconVervoersvoorzieningElement>;
@@ -0,0 +1,3 @@
1
+ export declare class UtrechtIconGlijbaan {
2
+ render(): any;
3
+ }
@@ -0,0 +1,3 @@
1
+ export declare class UtrechtIconParkerenBetaalautomaat {
2
+ render(): any;
3
+ }
@@ -0,0 +1,3 @@
1
+ export declare class UtrechtIconSchildGemeenteUtrecht {
2
+ render(): any;
3
+ }
@@ -0,0 +1,3 @@
1
+ export declare class UtrechtIconVerkeerslicht {
2
+ render(): any;
3
+ }
@@ -0,0 +1 @@
1
+ import{r as t,h as c}from"./p-61cfc384.js";const r=class{constructor(c){t(this,c)}render(){return c("svg",{viewBox:"0 0 36 36",xmlns:"http://www.w3.org/2000/svg",fill:"CurrentColor"},c("path",{d:"M32.9 32.83c-.74 0-1.45-.27-1.94-.71L15 15.88V6L7.52 0 0 6v30h3V20h9v16h3V20.16l13.88 14.12c1.1 1 2.53 1.55 4.02 1.55H36v-3h-3.1ZM7.5 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3Z"}),c("circle",{cx:"24",cy:"10",r:"3"}),c("path",{d:"M25.48 14.38h-1.61c-1.61.1-2.84 1.37-2.84 3.01L21.01 19l5.96 6v-8.42c3.09-.67 4.98-3.41 4.98-7.08V9h-2.99v.5c0 3.1-1.83 4.88-5.02 4.88h1.54Z"}))}};r.style=":host{color:var(--utrecht-icon-color);display:inline-block;height:var(--utrecht-icon-size);inset-block-start:var(--utrecht-icon-inset-block-start, 0);position:relative;width:var(--utrecht-icon-size)}";export{r as utrecht_icon_glijbaan}
@@ -0,0 +1 @@
1
+ import{r as t,h as c}from"./p-61cfc384.js";const r=class{constructor(c){t(this,c)}render(){return c("svg",{viewBox:"0 0 36 36",xmlns:"http://www.w3.org/2000/svg",fill:"CurrentColor"},c("path",{d:"M29.36 17.5h.25c2.42 0 4.37-1.96 4.37-4.37V4.87c0-2.42-1.96-4.37-4.37-4.37h-.25c-2.42 0-4.37 1.96-4.37 4.37v8.26c0 2.42 1.96 4.37 4.37 4.37Zm.13-14c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5Zm0 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5Zm0 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5Zm6.5 23v2h-36v-2h27v-5h5v5h4Zm-5.07-15 .04 3h-2.97v-3h2.93Zm-2.93 5h3c.56 0 1.01.45 1.01 1.01v1.99h-5v-2c0-.55.45-1 1-1Z"}))}};r.style=":host{color:var(--utrecht-icon-color);display:inline-block;height:var(--utrecht-icon-size);inset-block-start:var(--utrecht-icon-inset-block-start, 0);position:relative;width:var(--utrecht-icon-size)}";export{r as utrecht_icon_verkeerslicht}
@@ -0,0 +1 @@
1
+ import{r as t,h as c}from"./p-61cfc384.js";const r=class{constructor(c){t(this,c)}render(){return c("svg",{viewBox:"0 0 36 36",xmlns:"http://www.w3.org/2000/svg",fill:"CurrentColor"},c("path",{d:"M16.57 8.01h-4.61v8h4.61c1.89 0 3.43-1.79 3.43-4s-1.54-4-3.43-4Z"}),c("path",{d:"M29 20c.34 0 .67.02.99.06V4.5c0-2.48-2.01-4.5-4.49-4.5h-21C2.02 0 0 2.02 0 4.5v21C0 27.98 2.02 30 4.5 30h15.56c-.04-.33-.06-.66-.06-1a9 9 0 0 1 9-9Zm-17.04-2.02v6.01H10V6.02h6.48C19.52 6.02 22 8.7 22 12s-2.48 5.98-5.52 5.98h-4.52Z"}),c("path",{d:"M29.02 22.03c-3.86 0-6.98 3.13-6.98 6.98s3.13 6.98 6.98 6.98S36 32.86 36 29.01s-3.13-6.98-6.98-6.98Zm.54 11.3c-1.69 0-3.28-.95-3.88-2.68s-1.19 0-1.19 0v-1.1h.96a4.91 4.91 0 0 1 0-.9h-.96v-1.09h1.18c.6-1.75 2.22-2.71 3.9-2.71.88 0 1.58.19 2.14.57l-.58 1.16c-.41-.3-.95-.44-1.56-.44-.96 0-1.88.45-2.34 1.41h3.44l-.53 1.09h-3.2c-.01.1-.03.24-.03.44 0 .23.01.38.03.46h2.83l-.51 1.1h-2.01c.46.91 1.34 1.35 2.31 1.35.7 0 1.31-.2 1.74-.6l.7 1.08c-.59.5-1.44.85-2.44.85Z"}))}};r.style=":host{color:var(--utrecht-icon-color);display:inline-block;height:var(--utrecht-icon-size);inset-block-start:var(--utrecht-icon-inset-block-start, 0);position:relative;width:var(--utrecht-icon-size)}";export{r as utrecht_icon_parkeren_betaalautomaat}
@@ -0,0 +1 @@
1
+ import{r as t,h as r}from"./p-61cfc384.js";const c=class{constructor(r){t(this,r)}render(){return r("svg",{viewBox:"0 0 36 36",xmlns:"http://www.w3.org/2000/svg",fill:"CurrentColor"},r("path",{d:"M0 0v23.63c0 2.6.9 5.07 2.44 6.56s2.7 2.6 5.14 3.71c2.06.87 5.01 2.1 10.29 2.1s8.23-1.11 10.29-2.1c2.19-.99 3.34-1.98 4.5-2.97 1.93-1.61 3.34-4.33 3.34-7.3V0H0Zm32.79 22.98c0 2.47-.96 4.74-2.57 6.08L3 3.29h30l-.21 19.69Z"}))}};c.style=":host{color:var(--utrecht-icon-color);display:inline-block;height:var(--utrecht-icon-size);inset-block-start:var(--utrecht-icon-inset-block-start, 0);position:relative;width:var(--utrecht-icon-size)}";export{c as utrecht_icon_schild_gemeente_utrecht}
@@ -1 +1 @@
1
- import{p as e,b as t}from"./p-61cfc384.js";(()=>{const t=import.meta.url,c={};return""!==t&&(c.resourcesUrl=new URL(".",t).href),e(c)})().then((e=>t(JSON.parse('[["p-dc2eed61",[[1,"utrecht-contact-card-template"]]],["p-22fbbced",[[1,"utrecht-logo-button",{"type":[1]}]]],["p-f996067e",[[1,"utrecht-digid-button",{"type":[1]}]]],["p-de72df8d",[[1,"utrecht-article"]]],["p-01e42c3f",[[1,"utrecht-backdrop",{"viewport":[4]}]]],["p-cc62aaef",[[1,"utrecht-badge-counter",{"value":[2],"max":[2],"locale":[1]}]]],["p-42b7a00a",[[1,"utrecht-badge-data"]]],["p-d2ca8d44",[[1,"utrecht-badge-status",{"status":[1]}]]],["p-4eb96b2e",[[1,"utrecht-breadcrumb",{"json":[1],"variant":[1]}]]],["p-5868e3f7",[[1,"utrecht-checkbox",{"disabled":[516],"readOnly":[516,"readonly"],"checked":[4],"value":[1]}]]],["p-dfcb7fc3",[[1,"utrecht-custom-checkbox",{"disabled":[4],"checked":[4],"indeterminate":[4],"invalid":[4],"required":[4]}]]],["p-7c69094b",[[1,"utrecht-document"]]],["p-0d7734c2",[[1,"utrecht-eherkenning-logo"]]],["p-8e555a51",[[1,"utrecht-eidas-logo"]]],["p-80373e29",[[1,"utrecht-form-field-checkbox",{"label":[4],"disabled":[516],"checked":[516],"invalid":[516],"required":[516],"value":[32]}]]],["p-713477c6",[[1,"utrecht-form-field-description",{"status":[513]}]]],["p-cd399013",[[1,"utrecht-form-field-textarea",{"disabled":[516],"invalid":[516],"readOnly":[516,"readonly"],"placeholder":[1],"required":[516],"value":[1]}]]],["p-525c5cae",[[1,"utrecht-form-field-textbox",{"autoComplete":[513,"autocomplete"],"disabled":[516],"invalid":[516],"min":[1],"max":[1],"pattern":[1],"placeholder":[1],"readOnly":[516,"readonly"],"required":[516],"type":[513],"value":[1]}]]],["p-db6f0727",[[1,"utrecht-form-toggle",{"disabled":[516],"checked":[516]}]]],["p-0c7df6e0",[[1,"utrecht-heading",{"level":[2]}]]],["p-700dad72",[[1,"utrecht-heading-1"]]],["p-86f222ee",[[1,"utrecht-heading-4"]]],["p-2637f69c",[[1,"utrecht-heading-5"]]],["p-0a9be5ec",[[1,"utrecht-heading-6"]]],["p-8c129a75",[[4,"utrecht-html-content"]]],["p-de564651",[[1,"utrecht-icon"]]],["p-d66a404f",[[1,"utrecht-icon-afspraak-maken"]]],["p-b2f55a87",[[1,"utrecht-icon-afval"]]],["p-54432330",[[1,"utrecht-icon-afval-container"]]],["p-6cfe570b",[[1,"utrecht-icon-afval-containerpas"]]],["p-3fdf18b7",[[1,"utrecht-icon-afval-kalender"]]],["p-a20a60bc",[[1,"utrecht-icon-afval-scheiden"]]],["p-eee97cfa",[[1,"utrecht-icon-afvalkalender"]]],["p-a0d42249",[[1,"utrecht-icon-alleen"]]],["p-37d2493b",[[1,"utrecht-icon-arrow"]]],["p-07ab9a4a",[[1,"utrecht-icon-bestemmingsplan"]]],["p-ab9f1679",[[1,"utrecht-icon-betaaldatum"]]],["p-a824f056",[[1,"utrecht-icon-bewijsstukken"]]],["p-a2924b9a",[[1,"utrecht-icon-bijstand"]]],["p-0147b768",[[1,"utrecht-icon-blad"]]],["p-1e320ba8",[[1,"utrecht-icon-bouwproject"]]],["p-59f28bc2",[[1,"utrecht-icon-brandgevaar"]]],["p-625ce2e8",[[1,"utrecht-icon-brief-betalen"]]],["p-93c9a579",[[1,"utrecht-icon-checkmark"]]],["p-3e88156a",[[1,"utrecht-icon-college-b-w"]]],["p-c446bb31",[[1,"utrecht-icon-container"]]],["p-098f2a6c",[[1,"utrecht-icon-container-bio"]]],["p-48ab1072",[[1,"utrecht-icon-cross"]]],["p-1a0cbac5",[[1,"utrecht-icon-dakloos"]]],["p-47dd6372",[[1,"utrecht-icon-dementie"]]],["p-3a68c114",[[1,"utrecht-icon-documenten"]]],["p-8f23be2d",[[1,"utrecht-icon-duurzaam"]]],["p-dcd065a6",[[1,"utrecht-icon-eenzaamheid"]]],["p-95376af4",[[1,"utrecht-icon-eikenprocessie"]]],["p-fecd3b31",[[1,"utrecht-icon-elektrisch-rijden"]]],["p-19676f90",[[1,"utrecht-icon-energie-vergoeding"]]],["p-7432d159",[[1,"utrecht-icon-energietransitie"]]],["p-5ad2beee",[[1,"utrecht-icon-error"]]],["p-421d5f2c",[[1,"utrecht-icon-evenementen"]]],["p-976f9ce3",[[1,"utrecht-icon-facebook"]]],["p-968091b8",[[1,"utrecht-icon-fiets"]]],["p-384cbd75",[[1,"utrecht-icon-filter"]]],["p-c66462f7",[[1,"utrecht-icon-gebruiker-centraal"]]],["p-c241e178",[[1,"utrecht-icon-gebruiker-ingelogd"]]],["p-7ce19413",[[1,"utrecht-icon-gegevenswoordenboek"]]],["p-d7c64685",[[1,"utrecht-icon-geluid"]]],["p-52e4bcce",[[1,"utrecht-icon-gemeente-locatie"]]],["p-27d379fc",[[1,"utrecht-icon-gemeenteraad"]]],["p-df27bec1",[[1,"utrecht-icon-gezicht"]]],["p-6a10f7bc",[[1,"utrecht-icon-grafiek"]]],["p-e309442e",[[1,"utrecht-icon-grofvuil"]]],["p-ace68320",[[1,"utrecht-icon-grofvuil-ophalen"]]],["p-6df4e09f",[[1,"utrecht-icon-herdenking"]]],["p-a90bed78",[[1,"utrecht-icon-hondenbelasting"]]],["p-8f6098c5",[[1,"utrecht-icon-horeca"]]],["p-c7aa98af",[[1,"utrecht-icon-horecavergunning"]]],["p-bc83b6e5",[[1,"utrecht-icon-huishoudelijk-geweld"]]],["p-473b7bf5",[[1,"utrecht-icon-hulp-huishouden"]]],["p-850ecac4",[[1,"utrecht-icon-hulp-vervoer"]]],["p-7525b49d",[[1,"utrecht-icon-hulp-zorg"]]],["p-91874b18",[[1,"utrecht-icon-hulpmiddelen-gezin"]]],["p-9a00a33c",[[1,"utrecht-icon-hulpverlening"]]],["p-867f9eac",[[1,"utrecht-icon-idee"]]],["p-dc1b5896",[[1,"utrecht-icon-information"]]],["p-72fa7794",[[1,"utrecht-icon-innovatie"]]],["p-f45957fb",[[1,"utrecht-icon-inspraak-inwoners"]]],["p-c9d6a627",[[1,"utrecht-icon-instagram"]]],["p-420e5d5f",[[1,"utrecht-icon-kalender"]]],["p-47d9b9b0",[[1,"utrecht-icon-kennis"]]],["p-251d5cf7",[[1,"utrecht-icon-kerstbomen"]]],["p-9eb4517c",[[1,"utrecht-icon-klachten"]]],["p-49111835",[[1,"utrecht-icon-kroon"]]],["p-806de3b0",[[1,"utrecht-icon-laadpaal"]]],["p-47ff8a1c",[[1,"utrecht-icon-lantaarnpaal"]]],["p-a423ba17",[[1,"utrecht-icon-lantaarnpaal-oud"]]],["p-c54ec707",[[1,"utrecht-icon-leren"]]],["p-8143857e",[[1,"utrecht-icon-let-op"]]],["p-293206d7",[[1,"utrecht-icon-linkedin"]]],["p-b6a831c8",[[1,"utrecht-icon-list"]]],["p-4338a087",[[1,"utrecht-icon-loupe"]]],["p-69e4731a",[[1,"utrecht-icon-markt"]]],["p-cfbaffb3",[[1,"utrecht-icon-melding"]]],["p-a45cee05",[[1,"utrecht-icon-melding-boom"]]],["p-18c6a7ee",[[1,"utrecht-icon-melding-klacht"]]],["p-fb60c46d",[[1,"utrecht-icon-melding-openbareruimte"]]],["p-438fa76a",[[1,"utrecht-icon-melding-verlichting"]]],["p-9a122e42",[[1,"utrecht-icon-menselijk"]]],["p-48afb32c",[[1,"utrecht-icon-milieu-ontheffing"]]],["p-5ba5731f",[[1,"utrecht-icon-natuur"]]],["p-b57b353e",[[1,"utrecht-icon-nieuw-huis"]]],["p-3926735f",[[1,"utrecht-icon-nummerbord"]]],["p-8fdb7d87",[[1,"utrecht-icon-om-het-huis"]]],["p-bf1005cb",[[1,"utrecht-icon-omgeving"]]],["p-80577cff",[[1,"utrecht-icon-omgevingsvisie"]]],["p-710a6db7",[[1,"utrecht-icon-omgevingswet"]]],["p-c10f3275",[[1,"utrecht-icon-onderhoud"]]],["p-75710f6d",[[1,"utrecht-icon-ondernemen"]]],["p-9477b570",[[1,"utrecht-icon-openingstijden"]]],["p-fef0a811",[[1,"utrecht-icon-over-de-stad"]]],["p-2f43701c",[[1,"utrecht-icon-overlijden"]]],["p-e3f32c40",[[1,"utrecht-icon-panden"]]],["p-61197a6c",[[1,"utrecht-icon-park"]]],["p-09658591",[[1,"utrecht-icon-parkeerkaart"]]],["p-01c69249",[[1,"utrecht-icon-parkeervergunning"]]],["p-9c48ccff",[[1,"utrecht-icon-parken"]]],["p-2613bb23",[[1,"utrecht-icon-parkeren-bedrijven"]]],["p-b8820870",[[1,"utrecht-icon-parkeren-betalen"]]],["p-5819bf58",[[1,"utrecht-icon-participatie-campagne"]]],["p-4c38331d",[[1,"utrecht-icon-participatie-like"]]],["p-10c3cbca",[[1,"utrecht-icon-participatie-pitch"]]],["p-6cb0e6d9",[[1,"utrecht-icon-paspoort"]]],["p-fadb654e",[[1,"utrecht-icon-rijbewijs"]]],["p-4f637d43",[[1,"utrecht-icon-rolstoel"]]],["p-30e0bbd8",[[1,"utrecht-icon-shoppen"]]],["p-b99992a8",[[1,"utrecht-icon-sinterklaas"]]],["p-981b1077",[[1,"utrecht-icon-slechtziende-hoordende"]]],["p-3d89acbf",[[1,"utrecht-icon-sport"]]],["p-be78c8da",[[1,"utrecht-icon-sport-en-cultuur"]]],["p-05bb71be",[[1,"utrecht-icon-stookverbod"]]],["p-cd0b3597",[[1,"utrecht-icon-strand"]]],["p-e8b1d2c6",[[1,"utrecht-icon-strooien"]]],["p-23b2bc47",[[1,"utrecht-icon-subsidie"]]],["p-d304e423",[[1,"utrecht-icon-subsidie-gezin"]]],["p-15b936ff",[[1,"utrecht-icon-toeslag"]]],["p-ee4d6116",[[1,"utrecht-icon-trein"]]],["p-4c335ff9",[[1,"utrecht-icon-trouwen"]]],["p-ada30c1d",[[1,"utrecht-icon-twitter"]]],["p-8c895b93",[[1,"utrecht-icon-uw-wijk"]]],["p-4c8818f0",[[1,"utrecht-icon-vaccinatie"]]],["p-0e682937",[[1,"utrecht-icon-veilige-wijk"]]],["p-05155b1e",[[1,"utrecht-icon-vergaderen"]]],["p-68937e88",[[1,"utrecht-icon-vergoeding"]]],["p-a1aa07a0",[[1,"utrecht-icon-verhuizen"]]],["p-5d3e64bc",[[1,"utrecht-icon-verkiezingen"]]],["p-ec97a629",[[1,"utrecht-icon-verslaving"]]],["p-bdb8e0ab",[[1,"utrecht-icon-vervoersvoorziening"]]],["p-9be8ebea",[[1,"utrecht-icon-virus"]]],["p-d9371346",[[1,"utrecht-icon-vluchtelingen"]]],["p-8964351f",[[1,"utrecht-icon-voorzieningen-vervoer"]]],["p-ba2ff7b7",[[1,"utrecht-icon-vrijwilligerswerk"]]],["p-d042d943",[[1,"utrecht-icon-vuurwerk"]]],["p-cab70a89",[[1,"utrecht-icon-wandelstok"]]],["p-7a9ca08e",[[1,"utrecht-icon-warm"]]],["p-4e76b7f5",[[1,"utrecht-icon-warning"]]],["p-a95cffb3",[[1,"utrecht-icon-werken"]]],["p-bf0afa65",[[1,"utrecht-icon-werkzaamheden"]]],["p-17a46aea",[[1,"utrecht-icon-whatsapp"]]],["p-446b3179",[[1,"utrecht-icon-wonen-kosten"]]],["p-baffff49",[[1,"utrecht-icon-woning-zoeken"]]],["p-1087c4b7",[[1,"utrecht-icon-youtube"]]],["p-50f71026",[[1,"utrecht-icon-zelfstandig-wonen"]]],["p-c064168e",[[1,"utrecht-icon-zoomin"]]],["p-3e989e5d",[[1,"utrecht-icon-zoomout"]]],["p-42aea3c3",[[1,"utrecht-icon-zorg-huis"]]],["p-a4e6bea5",[[1,"utrecht-icon-zwemmen"]]],["p-2b8f0651",[[1,"utrecht-logo"]]],["p-ef44eb87",[[1,"utrecht-page"]]],["p-fc2cefba",[[1,"utrecht-page-content"]]],["p-4812b1f1",[[1,"utrecht-page-footer"]]],["p-64d22158",[[1,"utrecht-page-header"]]],["p-38ca9ccc",[[1,"utrecht-pagination",{"links":[1],"next":[1],"prev":[1],"currentIndex":[2,"current-index"]}]]],["p-e0761870",[[1,"utrecht-separator"]]],["p-1496cbbd",[[1,"utrecht-sidenav",{"json":[1]}]]],["p-b0b7324a",[[1,"utrecht-table"]]],["p-82ea28a7",[[1,"utrecht-table-body"]]],["p-15506bef",[[1,"utrecht-table-caption"]]],["p-d29b0f51",[[1,"utrecht-table-cell"]]],["p-d3dc6cd5",[[1,"utrecht-table-footer"]]],["p-3e96e168",[[1,"utrecht-table-header"]]],["p-0a4d417d",[[1,"utrecht-table-header-cell",{"scope":[1]}]]],["p-ff806677",[[1,"utrecht-table-row"]]],["p-f6cf04b1",[[1,"utrecht-textbox",{"autoComplete":[513,"autocomplete"],"disabled":[516],"invalid":[516],"min":[1],"max":[1],"pattern":[1],"placeholder":[1],"readOnly":[516,"readonly"],"required":[516],"type":[513],"value":[1]}]]],["p-8a83a7a9",[[1,"utrecht-button",{"appearance":[1],"busy":[4],"disabled":[4],"type":[1]}]]],["p-c19faecc",[[1,"utrecht-digid-logo"]]],["p-6f6dd548",[[1,"utrecht-heading-2"],[1,"utrecht-heading-3"],[1,"utrecht-paragraph",{"lead":[4]}]]]]'),e)));
1
+ import{p as e,b as t}from"./p-61cfc384.js";(()=>{const t=import.meta.url,c={};return""!==t&&(c.resourcesUrl=new URL(".",t).href),e(c)})().then((e=>t(JSON.parse('[["p-dc2eed61",[[1,"utrecht-contact-card-template"]]],["p-22fbbced",[[1,"utrecht-logo-button",{"type":[1]}]]],["p-f996067e",[[1,"utrecht-digid-button",{"type":[1]}]]],["p-de72df8d",[[1,"utrecht-article"]]],["p-01e42c3f",[[1,"utrecht-backdrop",{"viewport":[4]}]]],["p-cc62aaef",[[1,"utrecht-badge-counter",{"value":[2],"max":[2],"locale":[1]}]]],["p-42b7a00a",[[1,"utrecht-badge-data"]]],["p-d2ca8d44",[[1,"utrecht-badge-status",{"status":[1]}]]],["p-4eb96b2e",[[1,"utrecht-breadcrumb",{"json":[1],"variant":[1]}]]],["p-5868e3f7",[[1,"utrecht-checkbox",{"disabled":[516],"readOnly":[516,"readonly"],"checked":[4],"value":[1]}]]],["p-dfcb7fc3",[[1,"utrecht-custom-checkbox",{"disabled":[4],"checked":[4],"indeterminate":[4],"invalid":[4],"required":[4]}]]],["p-7c69094b",[[1,"utrecht-document"]]],["p-0d7734c2",[[1,"utrecht-eherkenning-logo"]]],["p-8e555a51",[[1,"utrecht-eidas-logo"]]],["p-80373e29",[[1,"utrecht-form-field-checkbox",{"label":[4],"disabled":[516],"checked":[516],"invalid":[516],"required":[516],"value":[32]}]]],["p-713477c6",[[1,"utrecht-form-field-description",{"status":[513]}]]],["p-cd399013",[[1,"utrecht-form-field-textarea",{"disabled":[516],"invalid":[516],"readOnly":[516,"readonly"],"placeholder":[1],"required":[516],"value":[1]}]]],["p-525c5cae",[[1,"utrecht-form-field-textbox",{"autoComplete":[513,"autocomplete"],"disabled":[516],"invalid":[516],"min":[1],"max":[1],"pattern":[1],"placeholder":[1],"readOnly":[516,"readonly"],"required":[516],"type":[513],"value":[1]}]]],["p-db6f0727",[[1,"utrecht-form-toggle",{"disabled":[516],"checked":[516]}]]],["p-0c7df6e0",[[1,"utrecht-heading",{"level":[2]}]]],["p-700dad72",[[1,"utrecht-heading-1"]]],["p-86f222ee",[[1,"utrecht-heading-4"]]],["p-2637f69c",[[1,"utrecht-heading-5"]]],["p-0a9be5ec",[[1,"utrecht-heading-6"]]],["p-8c129a75",[[4,"utrecht-html-content"]]],["p-de564651",[[1,"utrecht-icon"]]],["p-d66a404f",[[1,"utrecht-icon-afspraak-maken"]]],["p-b2f55a87",[[1,"utrecht-icon-afval"]]],["p-54432330",[[1,"utrecht-icon-afval-container"]]],["p-6cfe570b",[[1,"utrecht-icon-afval-containerpas"]]],["p-3fdf18b7",[[1,"utrecht-icon-afval-kalender"]]],["p-a20a60bc",[[1,"utrecht-icon-afval-scheiden"]]],["p-eee97cfa",[[1,"utrecht-icon-afvalkalender"]]],["p-a0d42249",[[1,"utrecht-icon-alleen"]]],["p-37d2493b",[[1,"utrecht-icon-arrow"]]],["p-07ab9a4a",[[1,"utrecht-icon-bestemmingsplan"]]],["p-ab9f1679",[[1,"utrecht-icon-betaaldatum"]]],["p-a824f056",[[1,"utrecht-icon-bewijsstukken"]]],["p-a2924b9a",[[1,"utrecht-icon-bijstand"]]],["p-0147b768",[[1,"utrecht-icon-blad"]]],["p-1e320ba8",[[1,"utrecht-icon-bouwproject"]]],["p-59f28bc2",[[1,"utrecht-icon-brandgevaar"]]],["p-625ce2e8",[[1,"utrecht-icon-brief-betalen"]]],["p-93c9a579",[[1,"utrecht-icon-checkmark"]]],["p-3e88156a",[[1,"utrecht-icon-college-b-w"]]],["p-c446bb31",[[1,"utrecht-icon-container"]]],["p-098f2a6c",[[1,"utrecht-icon-container-bio"]]],["p-48ab1072",[[1,"utrecht-icon-cross"]]],["p-1a0cbac5",[[1,"utrecht-icon-dakloos"]]],["p-47dd6372",[[1,"utrecht-icon-dementie"]]],["p-3a68c114",[[1,"utrecht-icon-documenten"]]],["p-8f23be2d",[[1,"utrecht-icon-duurzaam"]]],["p-dcd065a6",[[1,"utrecht-icon-eenzaamheid"]]],["p-95376af4",[[1,"utrecht-icon-eikenprocessie"]]],["p-fecd3b31",[[1,"utrecht-icon-elektrisch-rijden"]]],["p-19676f90",[[1,"utrecht-icon-energie-vergoeding"]]],["p-7432d159",[[1,"utrecht-icon-energietransitie"]]],["p-5ad2beee",[[1,"utrecht-icon-error"]]],["p-421d5f2c",[[1,"utrecht-icon-evenementen"]]],["p-976f9ce3",[[1,"utrecht-icon-facebook"]]],["p-968091b8",[[1,"utrecht-icon-fiets"]]],["p-384cbd75",[[1,"utrecht-icon-filter"]]],["p-c66462f7",[[1,"utrecht-icon-gebruiker-centraal"]]],["p-c241e178",[[1,"utrecht-icon-gebruiker-ingelogd"]]],["p-7ce19413",[[1,"utrecht-icon-gegevenswoordenboek"]]],["p-d7c64685",[[1,"utrecht-icon-geluid"]]],["p-52e4bcce",[[1,"utrecht-icon-gemeente-locatie"]]],["p-27d379fc",[[1,"utrecht-icon-gemeenteraad"]]],["p-df27bec1",[[1,"utrecht-icon-gezicht"]]],["p-22788160",[[1,"utrecht-icon-glijbaan"]]],["p-6a10f7bc",[[1,"utrecht-icon-grafiek"]]],["p-e309442e",[[1,"utrecht-icon-grofvuil"]]],["p-ace68320",[[1,"utrecht-icon-grofvuil-ophalen"]]],["p-6df4e09f",[[1,"utrecht-icon-herdenking"]]],["p-a90bed78",[[1,"utrecht-icon-hondenbelasting"]]],["p-8f6098c5",[[1,"utrecht-icon-horeca"]]],["p-c7aa98af",[[1,"utrecht-icon-horecavergunning"]]],["p-bc83b6e5",[[1,"utrecht-icon-huishoudelijk-geweld"]]],["p-473b7bf5",[[1,"utrecht-icon-hulp-huishouden"]]],["p-850ecac4",[[1,"utrecht-icon-hulp-vervoer"]]],["p-7525b49d",[[1,"utrecht-icon-hulp-zorg"]]],["p-91874b18",[[1,"utrecht-icon-hulpmiddelen-gezin"]]],["p-9a00a33c",[[1,"utrecht-icon-hulpverlening"]]],["p-867f9eac",[[1,"utrecht-icon-idee"]]],["p-dc1b5896",[[1,"utrecht-icon-information"]]],["p-72fa7794",[[1,"utrecht-icon-innovatie"]]],["p-f45957fb",[[1,"utrecht-icon-inspraak-inwoners"]]],["p-c9d6a627",[[1,"utrecht-icon-instagram"]]],["p-420e5d5f",[[1,"utrecht-icon-kalender"]]],["p-47d9b9b0",[[1,"utrecht-icon-kennis"]]],["p-251d5cf7",[[1,"utrecht-icon-kerstbomen"]]],["p-9eb4517c",[[1,"utrecht-icon-klachten"]]],["p-49111835",[[1,"utrecht-icon-kroon"]]],["p-806de3b0",[[1,"utrecht-icon-laadpaal"]]],["p-47ff8a1c",[[1,"utrecht-icon-lantaarnpaal"]]],["p-a423ba17",[[1,"utrecht-icon-lantaarnpaal-oud"]]],["p-c54ec707",[[1,"utrecht-icon-leren"]]],["p-8143857e",[[1,"utrecht-icon-let-op"]]],["p-293206d7",[[1,"utrecht-icon-linkedin"]]],["p-b6a831c8",[[1,"utrecht-icon-list"]]],["p-4338a087",[[1,"utrecht-icon-loupe"]]],["p-69e4731a",[[1,"utrecht-icon-markt"]]],["p-cfbaffb3",[[1,"utrecht-icon-melding"]]],["p-a45cee05",[[1,"utrecht-icon-melding-boom"]]],["p-18c6a7ee",[[1,"utrecht-icon-melding-klacht"]]],["p-fb60c46d",[[1,"utrecht-icon-melding-openbareruimte"]]],["p-438fa76a",[[1,"utrecht-icon-melding-verlichting"]]],["p-9a122e42",[[1,"utrecht-icon-menselijk"]]],["p-48afb32c",[[1,"utrecht-icon-milieu-ontheffing"]]],["p-5ba5731f",[[1,"utrecht-icon-natuur"]]],["p-b57b353e",[[1,"utrecht-icon-nieuw-huis"]]],["p-3926735f",[[1,"utrecht-icon-nummerbord"]]],["p-8fdb7d87",[[1,"utrecht-icon-om-het-huis"]]],["p-bf1005cb",[[1,"utrecht-icon-omgeving"]]],["p-80577cff",[[1,"utrecht-icon-omgevingsvisie"]]],["p-710a6db7",[[1,"utrecht-icon-omgevingswet"]]],["p-c10f3275",[[1,"utrecht-icon-onderhoud"]]],["p-75710f6d",[[1,"utrecht-icon-ondernemen"]]],["p-9477b570",[[1,"utrecht-icon-openingstijden"]]],["p-fef0a811",[[1,"utrecht-icon-over-de-stad"]]],["p-2f43701c",[[1,"utrecht-icon-overlijden"]]],["p-e3f32c40",[[1,"utrecht-icon-panden"]]],["p-61197a6c",[[1,"utrecht-icon-park"]]],["p-09658591",[[1,"utrecht-icon-parkeerkaart"]]],["p-01c69249",[[1,"utrecht-icon-parkeervergunning"]]],["p-9c48ccff",[[1,"utrecht-icon-parken"]]],["p-2613bb23",[[1,"utrecht-icon-parkeren-bedrijven"]]],["p-2c3abb65",[[1,"utrecht-icon-parkeren-betaalautomaat"]]],["p-b8820870",[[1,"utrecht-icon-parkeren-betalen"]]],["p-5819bf58",[[1,"utrecht-icon-participatie-campagne"]]],["p-4c38331d",[[1,"utrecht-icon-participatie-like"]]],["p-10c3cbca",[[1,"utrecht-icon-participatie-pitch"]]],["p-6cb0e6d9",[[1,"utrecht-icon-paspoort"]]],["p-fadb654e",[[1,"utrecht-icon-rijbewijs"]]],["p-4f637d43",[[1,"utrecht-icon-rolstoel"]]],["p-4ed3f8c2",[[1,"utrecht-icon-schild-gemeente-utrecht"]]],["p-30e0bbd8",[[1,"utrecht-icon-shoppen"]]],["p-b99992a8",[[1,"utrecht-icon-sinterklaas"]]],["p-981b1077",[[1,"utrecht-icon-slechtziende-hoordende"]]],["p-3d89acbf",[[1,"utrecht-icon-sport"]]],["p-be78c8da",[[1,"utrecht-icon-sport-en-cultuur"]]],["p-05bb71be",[[1,"utrecht-icon-stookverbod"]]],["p-cd0b3597",[[1,"utrecht-icon-strand"]]],["p-e8b1d2c6",[[1,"utrecht-icon-strooien"]]],["p-23b2bc47",[[1,"utrecht-icon-subsidie"]]],["p-d304e423",[[1,"utrecht-icon-subsidie-gezin"]]],["p-15b936ff",[[1,"utrecht-icon-toeslag"]]],["p-ee4d6116",[[1,"utrecht-icon-trein"]]],["p-4c335ff9",[[1,"utrecht-icon-trouwen"]]],["p-ada30c1d",[[1,"utrecht-icon-twitter"]]],["p-8c895b93",[[1,"utrecht-icon-uw-wijk"]]],["p-4c8818f0",[[1,"utrecht-icon-vaccinatie"]]],["p-0e682937",[[1,"utrecht-icon-veilige-wijk"]]],["p-05155b1e",[[1,"utrecht-icon-vergaderen"]]],["p-68937e88",[[1,"utrecht-icon-vergoeding"]]],["p-a1aa07a0",[[1,"utrecht-icon-verhuizen"]]],["p-24676c2a",[[1,"utrecht-icon-verkeerslicht"]]],["p-5d3e64bc",[[1,"utrecht-icon-verkiezingen"]]],["p-ec97a629",[[1,"utrecht-icon-verslaving"]]],["p-bdb8e0ab",[[1,"utrecht-icon-vervoersvoorziening"]]],["p-9be8ebea",[[1,"utrecht-icon-virus"]]],["p-d9371346",[[1,"utrecht-icon-vluchtelingen"]]],["p-8964351f",[[1,"utrecht-icon-voorzieningen-vervoer"]]],["p-ba2ff7b7",[[1,"utrecht-icon-vrijwilligerswerk"]]],["p-d042d943",[[1,"utrecht-icon-vuurwerk"]]],["p-cab70a89",[[1,"utrecht-icon-wandelstok"]]],["p-7a9ca08e",[[1,"utrecht-icon-warm"]]],["p-4e76b7f5",[[1,"utrecht-icon-warning"]]],["p-a95cffb3",[[1,"utrecht-icon-werken"]]],["p-bf0afa65",[[1,"utrecht-icon-werkzaamheden"]]],["p-17a46aea",[[1,"utrecht-icon-whatsapp"]]],["p-446b3179",[[1,"utrecht-icon-wonen-kosten"]]],["p-baffff49",[[1,"utrecht-icon-woning-zoeken"]]],["p-1087c4b7",[[1,"utrecht-icon-youtube"]]],["p-50f71026",[[1,"utrecht-icon-zelfstandig-wonen"]]],["p-c064168e",[[1,"utrecht-icon-zoomin"]]],["p-3e989e5d",[[1,"utrecht-icon-zoomout"]]],["p-42aea3c3",[[1,"utrecht-icon-zorg-huis"]]],["p-a4e6bea5",[[1,"utrecht-icon-zwemmen"]]],["p-2b8f0651",[[1,"utrecht-logo"]]],["p-ef44eb87",[[1,"utrecht-page"]]],["p-fc2cefba",[[1,"utrecht-page-content"]]],["p-4812b1f1",[[1,"utrecht-page-footer"]]],["p-64d22158",[[1,"utrecht-page-header"]]],["p-38ca9ccc",[[1,"utrecht-pagination",{"links":[1],"next":[1],"prev":[1],"currentIndex":[2,"current-index"]}]]],["p-e0761870",[[1,"utrecht-separator"]]],["p-1496cbbd",[[1,"utrecht-sidenav",{"json":[1]}]]],["p-b0b7324a",[[1,"utrecht-table"]]],["p-82ea28a7",[[1,"utrecht-table-body"]]],["p-15506bef",[[1,"utrecht-table-caption"]]],["p-d29b0f51",[[1,"utrecht-table-cell"]]],["p-d3dc6cd5",[[1,"utrecht-table-footer"]]],["p-3e96e168",[[1,"utrecht-table-header"]]],["p-0a4d417d",[[1,"utrecht-table-header-cell",{"scope":[1]}]]],["p-ff806677",[[1,"utrecht-table-row"]]],["p-f6cf04b1",[[1,"utrecht-textbox",{"autoComplete":[513,"autocomplete"],"disabled":[516],"invalid":[516],"min":[1],"max":[1],"pattern":[1],"placeholder":[1],"readOnly":[516,"readonly"],"required":[516],"type":[513],"value":[1]}]]],["p-8a83a7a9",[[1,"utrecht-button",{"appearance":[1],"busy":[4],"disabled":[4],"type":[1]}]]],["p-c19faecc",[[1,"utrecht-digid-logo"]]],["p-6f6dd548",[[1,"utrecht-heading-2"],[1,"utrecht-heading-3"],[1,"utrecht-paragraph",{"lead":[4]}]]]]'),e)));